@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');

/* Colors */
:root {
  --color-default: #212529;
  --color-primary: #140047;
  --color-secondary: rgb(231, 236, 250);
  --color-normal: #321e65;
  --color-white: #fff;

}

html,
body {
  scroll-behavior: smooth;
}

.acButton {
	border-top-left-radius:20px;
  	border-top-right-radius:20px;
  	font-weight:bold;
  	color: #140047 !important;
  	letter-spacing: 1px;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px rgb(128, 128, 128);
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 0 0 20px 20px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--color-normal);
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Poppins", sans-serif;
  color: #444444;
}

body,
html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: #110a24;
}

a:hover {
  color: #000;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
}

.h4 {
  color: #321e65;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: transparent;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
  border: 1px solid #140047;
}

p {
      text-align: justify;
}

.back-to-top i {
  font-size: 24px;
  color: var(--color-primary);
  line-height: 0;
}

.back-to-top i:hover {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: var(--color-normal);
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*============================---Top bar---======================== */
#topbar {
  background: #140047;
  padding: 8px 0;
  font-size: 14px;
}

@media screen and (max-width:500px) {
  #topbar {
    padding: 8px 20px;
    font-size: 10px;
  }
}

#topbar .contact-info i {
  font-style: normal;
  color: #fff;
  font-weight: 600;

}

#topbar .contact-info i a,
#topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
  font-weight: 600;

}

#topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
  font-weight: 600;
}

#topbar .contact-info i a:hover {
  color: #8094ce;
}

#topbar .social-links a {
  color: #bababa;
  line-height: 0;
  transition: 0.3s;
  margin-left: 10px;
  font-weight: 600;
}

#topbar .social-links a:hover {
  color: white;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 70px;
  background: #fff;
  z-index: 997;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.06);
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  padding: 10px 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #1c5c93;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 50px;
}

.scrolled-offset {
  margin-top: 70px;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  white-space: nowrap;
  padding: 10px 0 10px 20px;
}

.navbar a,
.navbar a:focus {

  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 14px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #140047;
  text-transform: capitalize;
  white-space: nowrap;
  transition: 0.3s;
  font-weight: 600;

}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  font-weight: 600;
  margin-left: 5px;
}

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 5px;
  bottom: 0;
  top: -6px;
  left: 0;
  background-color: var(--color-normal);
  visibility: hidden;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 50%;
  /* text-align: center; */
  margin-left: 34px;
}

@media screen and (max-width:550px) {

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: hidden;
  }
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #012970;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #353535;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #3e4b9e;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  background-size: cover;
  background: url("../images/bg/workflow.jpg") center top no-repeat fixed;
  background-size: cover;
  position: relative;
  min-height: 60vh;
  padding: 60px 30px 30px 20px;
}

.image img {
  animation: move 3000ms infinite alternate;
}

@keyframes move {
  0% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(15px);
  }
}

.hero h1{
  color:#140047;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 18px;
  line-height:40px;
}
@media screen and (max-width:575px){
.hero h1{
font-size: 20px;
    margin-top: 25px;
    line-height: 28px;
}
}
.hero_p {
  font-size: 24px;
  color:#321e65;
}
.hero .para{
  font-size:22px;
  color:#140047;
  font-weight:600;
 }
@media screen and (max-width:575px){
  .hero_para {
  font-size: 18px;
  color:#321e65;
}
  }
.hero h2 span {
  color: var(--color-primary);
}

@media screen and (max-width:575px) {
  .hero h2 span {
    font-size: 18px;
  }
}

.hero p {
  color: #000;
  font-weight: 400;
  margin-bottom: 30px;
  font-size:15px;
  line-height:2;
  margin-top:0px;
  text-align: justify;
}

.home_more {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 26px;
  border-radius: 28px;
  font-weight: 600;
  transition: 0.5s;
  /* background: rgba(206, 18, 18, 0.8); */
  color: var(--color-primary);
  /* color: #fff; */
  border: 1px solid rgba(36, 37, 120, 0.8);
  background: transparent;
  box-shadow: 0 8px 28px rgba(37, 81, 131, 0.2);
}

.hero .home_more:hover {
  /* background: rgba(206, 18, 18, 0.8); */
  background: transparent;
  box-shadow: 0 8px 28px rgba(45, 59, 118, 0.45);
  color: rgba(9, 17, 36, 0.8);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--font-secondary);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--color-primary);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--color-primary);
}

.hero .btn-watch-video:hover i {
  color: rgba(32, 31, 86, 0.8);
}

@media (max-width: 640px) {
  .hero h2 {
    font-size: 36px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 14px;
  }
}



/**
* Get Started Button
*/
.get-started_btn {
  margin-left: 25px;
  background: transparent;
  color: var(--color-primary);
  border-radius: 23px;
  font-weight:600;
  padding: 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
  border: 1px solid #140047;

}

@media screen and (max-width:550px) {
  .get-started_btn {
    /* visibility: hidden; */
    display: none;
  }
}

.get-started_btn:hover {
  background: var(--color-primary);
  color: #fff;
  transition: 0.3s ease;
}

@media (max-width: 768px) {
  .get-started_btn {
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }
}

/** Get started button ends **/
/**
* Mobile Navigation
*/
.mobile-nav-toggle {
  color: #1f3548;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(31, 53, 72, 0.9);
  transition: 0.3s;
  z-index: 998;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #1f3548;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #428bca;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #428bca;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f7fcfc;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 21px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
  padding-bottom: 10px;
  position: relative;
  color: var(--color-primary);
}
@media screen and (max-width:575px){
  .section-title h2{
   font-weight:600; 
  }
}
.section-title h3 {
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: var(--color-primary);
}

.section-title p {
  margin-bottom: 0;
  text-align: start;
}


.section-title h2:before,
.section-title h2:after {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--color-primary);
  display: inline-block;
}
@media screen and (max-width:575px){
.section-title h2:before,
.section-title h2:after {
  width: 13px;
}

}

.section-title h2:before {
  margin: 0 15px 6px 0;
}

.section-title h2:after {
  margin: 0 0 6px 15px;
}


/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}


.about .content ul {
  list-style: none;
  padding: 0;
}

/*--------------------------------------------------------------
  # Breadcrumbs
  --------------------------------------------------------------*/


.breadcrumbs_about {
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgb(220, 213, 213);
  word-spacing: 5px;
}

.breadcrumbs .page-header {
  padding: 140px 0 80px 0;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.breadcrumbs .page-header:before {
  content: "";
  background-color: rgba(14, 29, 52, 0.8);
  position: absolute;
  inset: 0;
}

.breadcrumbs .page-header h2 {
  font-size: 22px;
  letter-spacing: 3px;
  word-spacing: 5px;
  font-weight: 500;
  color: rgb(173, 163, 163);
}

.breadcrumbs .page-header p {
  color: rgba(255, 255, 255, 0.8);
}

.background-color {
  padding: 20px;
  background: rgba(184, 196, 179, 0.1)
}

.background-color-1 {
  padding: 20px;
  border-radius: 200px / 50px;
  background: linear-gradient(to right, rgba(184, 196, 179, 0.1), rgba(24, 129, 31, 0.1), rgba(184, 196, 179, 0.1));
}

@media screen and (max-width:500px) {
  .background-color {
    padding: 0px;
  }

  .background-color-1 {
    padding: 10px;
  }
}

/* our approach */
/* .bg-color {
     background-color: rgba(194, 178, 209, 0.2);
  } */
.bg-color {
  background-color: rgb(231, 236, 250);
}

.bg-color_1 {
  background-color: rgba(240, 240, 240, 0.5);

  /* background: #111; */

}


.divider_image {
  margin-left: 60px;
  /* margin: auto; */
  padding-bottom: 20px;
}

.divider_image img {
  width: 100%;
  height: 100px;
}

@media screen and (max-width:550px) {
  .divider_image {
    margin-left: 0px;
    padding-bottom: 20px;
  }

  .divider_image img {
    width: 100%;
    height: 45px;
  }
}


/*--------------------------------------------------------------
# Stats Counter Section
--------------------------------------------------------------*/
.stats-counter {
  padding: 40px 0;
}

.stats-counter .stats-item {
  padding: 20px 0;
  border-bottom: 1px solid #e4e4e4;
}

.stats-counter .stats-item .purecounter {
  min-width: 90px;
  padding-right: 15px;
}

.stats-counter .stats-item i {
  font-size: 44px;
  line-height: 0;
  margin-right: 15px;
}

.stats-counter .stats-item span {
  font-size: 40px;
  display: block;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 40px;
}

.stats-counter .stats-item p {
  margin: 0;
  font-family: var(--font-primary);
  font-size: 14px;
}

/* ==============blink=============== */
/* .waviy {
  position: relative;
  -webkit-box-reflect: below -20px linear-gradient(transparent, rgba(0,0,0,.2));
  font-size: 30px;
}
.waviy span {
  position: relative;
  display: inline-block;
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
  animation: waviy 1s infinite;
  animation-delay: calc(.1s * var(--i));

}
@media screen and (max-width:550px){
  .waviy span {
    font-size: 16px;
  }
}
@keyframes waviy {
  0%,40%,100% {
    transform: translateY(0)
  }
  20% {
    transform: translateY(-20px)
  }
}
/* blink */
/* @keyframes blink {
	0% {opacity: 0}
	49%{opacity: 0}
	50% {opacity: 1}
}

blink{animation: blink 0.7s infinite;}

.agimg img {
  width: 100px;
} */

*/
/* -------------------------
# Workflow
----------------------------*/

.title {color: #140047;margin-bottom: 30px;position: relative;}

 /* services */
.services {
    padding:40px;
  position: relative;
}
.services .square {
  height: 100px;
  width: 100px;
  margin: 30px auto 40px;
  position: relative;
  border-radius: 15px;
  transform: rotate(45deg);
  padding: 10px;
  background-color:#4f578f;
  box-shadow: 0px 0px 27px 0px #ccc;
  border: 2px dotted #eaf3fa;
}
.square i {
  transform: rotate(315deg);
  display: block;
  color: #eaf3fa;
  font-size: 42px;
  padding-top: 10px;
  padding-right: 5px;
}
.services .square::before {
  position: absolute;
  left: -10px;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #140047;;
  content: '';
}
.services .square::after {
  position: absolute;
  left: 50px;
  top: 66px;
  width: 1px;
  height: 88%;
  background-color:#140047;;
  content: '';
  transform: rotate(90deg);
}
.services .serv .num
 {
   width: 60px;
   height: 60px;
   background-color: #7499f1;
   box-shadow: 0px 0px 15px 0px #00a9d3;
   margin: -38px auto 15px auto;
   border-radius: 50%;
   color: #fff;
   font-size: 30px;
   padding-top: 7px;
   border: 1px dashed;
  }
.services .serv h5 {
  color: #140047;
  font-size:15px;
  text-transform:uppercase;
   }
.services .serv p {color: #777;}
.services .serv hr {
  width: 30px;
  border-top: 3px solid rgb(0 169 211);
}

/*---About----*/
.about h4{
font-size:22px;
color:#321e65;
padding:0 80px;
line-height:35px;
text-align:center;
}
.about span{
color:#493ec7;
}
@media screen and (max-width:575px){
.about h4{
padding:0 20px;
font-size:18px;
text-align:center;
}
}

/* -----------------------Testimonial section ----------*/
.heading {
    text-align: center;
    color: #454343;
    font-size: 30px;
    font-weight: 700;
    position: relative;
    margin-bottom: 70px;
    text-transform: uppercase;
    z-index: 999;
}
.white-heading{
    color: #ffffff;
}
.heading:after {
    content: ' ';
    position: absolute;
    top: 100%;
    left: 50%;
    height: 40px;
    width: 180px;
    border-radius: 4px;
    transform: translateX(-50%);
   /* background: url(img/heading-line.png); */
    background-repeat: no-repeat;
    background-position: center;
}
.white-heading:after {
    background: url(https://i.ibb.co/d7tSD1R/heading-line-white.png);
    background-repeat: no-repeat;
    background-position: center;
}

.heading span {
    font-size: 18px;
    display: block;
    font-weight: 500;
}
.white-heading span {
    color: #ffffff;
}
/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}
.testimonials .testimonial-item {
  text-align: center;
  border:1px solid #d1c7ec;
  padding:22px 20px;
  background-color: rgba(6, 48, 63, 0.1);
  border-radius: 18px;
}


.testimonials .testimonial-item .testimonial-img {
  width: 120px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 21px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #140047;
}

.testimonials .testimonial-item h4 {
  font-size: 17px;
  color: #4f4764;
  font-weight:600;
  margin-top:8px;
}
.testimonials .testimonial-item h5 {
  font-size: 10px;
  margin-top:8px;
  color:#999;
}
.testimonials .testimonial-item h6 {
  font-size: 17px;
  margin-top:16px;
  color:#5f4a93;
}
.testimonial__button{
  border:1px solid #140047;
  padding:8px 16px;
  font-size:13px;
  border-radius:20px;
}
.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #726495;
  font-size: 32px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: normal;
  line-height:30px;
  font-size:16px;
  margin: 20px auto 40px auto;
}
@media screen and (max-width:575px){
  
.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 10px 0 5px 0;
  color: #140047;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
}
.testimonials .testimonial-item h5 {
  font-size: 13px;
}
.testimonials .testimonial-item h6 {
  font-size: 14px;
}
.testimonials .testimonial-item p {
  line-height:24px;
  font-size:13px;
  }
 }
@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #999;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #140047;
  width: 14px;
  height: 14px;
}


/* ------testimonial  close-------*/
/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding: 15px 0;
  text-align: center;
}

.clients img {
  max-width: 55%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
  filter: grayscale(100%);
  cursor: pointer;

}

.clients img:hover {
  transform: scale(1.18);
  filter: none;
  cursor: pointer;
}

@media (max-width: 768px) {
  .clients img {
    max-width: 40%;
  }
}


/* case Study */

.button_1 {
  padding: 8px 18px;
  border-radius: 8px;
  background: transparent;
}

.button_1:hover {
  background: #7987e3;
  transition: 0.5s ease;
}

.button_2:hover {
  background: #7987e3;
  transition: 0.5s ease;
}

.button_2 {
  padding: 8px 18px;
  margin-left: 10px;
  border-radius: 8px;
  background: transparent;
}

@media screen and (max-width:575px) {
  .button_2 {
    margin-top: 10px;
  }
}

/*********************/
/*     Details 1     */
/*********************/
.basic-1 {
  padding-top: 2rem;
  padding-bottom: 3rem;

}

.basic-1 .image-container {
  margin-bottom: 4rem;
  margin-right: 20px;
}

.basic-1 p:last-of-type {
  margin-bottom: 2rem;
}

/*********************/
/*     Details 2     */
/*********************/
.basic-2 {
  padding-top: 4rem;
  padding-bottom: 1rem;
}

.basic-2 .image-container {
  margin-bottom: 4rem;
  margin-right: 20px;
}

.aboutmainbody {
  padding-top: 27px;
  padding-right: 85px;
  padding-bottom: 20px;
  padding-left: 100px;
}

@media screen and (max-width:550px) {
  .aboutmainbody {
    padding-top: 2px;
    padding-right: 2px;
    padding-bottom: 2px;
    padding-left: 2px;
  }
}


/* services section */


/*--------------------------------------------------------------
# What We Do
--------------------------------------------------------------*/
.what-we-do .icon-box {
  text-align: center;
  padding: 30px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  border: 1px solid #a1bae2;
  border-radius: 20px;
  min-height: 250px;
}

.what-we-do .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #eaf4fb;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
}

.what-we-do .icon-box .icon i {
  color: #012970;
  font-size: 28px;
}

.what-we-do .icon-box h4 {
  font-weight: 600;
  margin-bottom: 15px;
  margin-top: 10px;
  font-size: 18px;
}

.what-we-do .icon-box h4 a {
  color: #384046;
  transition: ease-in-out 0.3s;
}

.what-we-do .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.what-we-do .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  border: 1px solid #140047;
}

.what-we-do .icon-box:hover h4 a,
.what-we-do .icon-box:hover .icon i {
  color: #012970;
}


/*****************/
/*    Case Study section    */
/*****************/

.caseStudy_btn1 {
  margin-top: 20px;
  margin-right: 20px;
  margin-bottom: 8px;
  padding: 5px 15px;
  border-radius: 6px;
  border: 1px solid #bcbee8;
}

.caseStudy_btn1:hover {
  background: rgb(210, 218, 231);
  transition: 0.5s ease;
  border: 1px solid #140047;
}

.caseStudy_btn2 {
  margin-right: 20px;
  margin-bottom: 8px;
  padding: 5px 15px;
  border: 1px solid #bcbee8;
  border-radius: 6px;
}

.caseStudy_btn2:hover {
  background: rgb(210, 218, 231);
  transition: 0.5s ease;
  border: 1px solid #140047;
}

.caseStudy_buttons {
  text-align: center;
}

.caseStudy_font {
  font-size: 18px;
  color: #0d0f30;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 500;
}

@media screen and (max-width: 575px) {
  .caseStudy_font {
    font-size: 14px;
  }

  .caseStudy_para {
    font-size: 14px;
    font-weight: 500;

  }
}

.caseStudy_para {
  margin-bottom: 20px;
}

.caseStudy_font2 {
  font-size: 20px;
  color: #0d0f30;
  margin-bottom: 15px;
}

.counter {
  padding-top: 9.5rem;
  padding-bottom: 5rem;
  background: url('...') center center no-repeat;
  background-size: cover;
}

.counter h2 {
  margin-bottom: 1.5rem;
  color: #ffffff;
  text-align: center;
  font-size: 16px;
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-flters {
  padding: 0 0 20px 0;
  margin: 0 auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-flters li:hover,
.portfolio .portfolio-flters li.filter-active {
  color: var(--color-primary);
}

.portfolio .portfolio-flters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-flters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-flters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-wrap {
  /* box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1); */
  border-radius: 10px;
  height: 100%;
  overflow: hidden;
}

.portfolio .portfolio-wrap img {
  transition: 0.3s;
  position: relative;
  z-index: 1;
}

.portfolio .portfolio-wrap .portfolio-info {
  padding: 25px 20px;
  /* background-color: #fff; */
  position: relative;
  border-top: 1px solid #f3f3f3;
  z-index: 2;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 16px;
  font-weight: 600;
  padding-right: 50px;
  color: var(--color-primary);
}

.portfolio .portfolio-wrap .portfolio-info h4 a {
  color: var(--color-default);
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info h4 a:hover {
  color: var(--color-primary);
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: #6c757d;
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.09);
}


/*--------------------------------------------------------------
# Recent Blog Posts Section
--------------------------------------------------------------*/
.recent-blog-posts .post-item {
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}

.recent-blog-posts .post-item .post-img img {
  transition: 0.5s;
}

.recent-blog-posts .post-item .post-date {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--color-primary);
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
}

.recent-blog-posts .post-item .post-content {
  padding: 30px;
}

.recent-blog-posts .post-item .post-title {
  font-size: 18px;
  color: var(--color-normal);
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 15px;
}

.recent-blog-posts .post-item .meta i {
  font-size: 16px;
  color: var(--color-primary);
}

.recent-blog-posts .post-item .meta span {
  font-size: 15px;
  color: #455d92;
}

.recent-blog-posts .post-item hr {
  color: #888;
  margin: 20px 0;
}

.recent-blog-posts .post-item .readmore {
  display: flex;
  align-items: center;
  font-weight: 500;
  line-height: 1;
  transition: 0.3s;
  color: #8f8fa3;
  border: 1px solid #8f8fa3;
  border-radius: 10px;
  display: inline-block;
  padding: 8px 16px;
  text-align: center;
  background: transparent;
}

.recent-blog-posts .post-item .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.recent-blog-posts .post-item:hover .post-title,
.recent-blog-posts .post-item:hover .readmore {
  color: var(--color-primary);
}

.recent-blog-posts .post-item:hover .readmore {
  color: var(--color-primary);
  background: #140047;
  color: #fff;
  transition: 0.5s ease;
}

.recent-blog-posts .post-item:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog .blog-pagination {
  margin-top: 30px;
  color: #455d92;
}

.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog .blog-pagination li a {
  color: var(--color-normal);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
  background: var(--color-primary);
  color: #fff;
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
  color: var(--color-white);
}

/*--------------------------------------------------------------
# Blog Posts List
--------------------------------------------------------------*/
.blog .posts-list .post-item {
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}

.blog .posts-list .post-img img {
  transition: 0.5s;
}

.blog .posts-list .post-date {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--color-primary);
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
}

.blog .posts-list .post-content {
  padding: 30px;
}

.blog .posts-list .post-title {
  font-size: 24px;
  color: var(--color-normal);
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 15px;
}

.blog .posts-list .meta i {
  font-size: 16px;
  color: var(--color-primary);
}

.blog .posts-list .meta span {
  font-size: 15px;
  color: #455d92;
}

.blog .posts-list p {
  margin-top: 20px;
}

.blog .posts-list hr {
  color: #888;
  margin-bottom: 20px;
}

.blog .posts-list .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: #455d92;
}

.blog .posts-list .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.blog .posts-list .post-item:hover .post-title,
.blog .posts-list .post-item:hover .readmore {
  color: var(--color-primary);
}

.blog .posts-list .post-item:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Blog Details
--------------------------------------------------------------*/
.blog .blog-details {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.blog .blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog .blog-details .title {
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 20px 0 0 0;
  color: var(--color-normal);
}

.blog .blog-details .content {
  margin-top: 20px;
}

.blog .blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  color: #140047;
  font-weight: bold;
}

.blog .blog-details .content blockquote {
  overflow: hidden;
  background-color: rgba(82, 86, 94, 0.06);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .blog-details .content blockquote p {
  color: var(--color-normal);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--color-primary);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .blog-details .meta-top {
  margin-top: 20px;
  color: #6c757d;
}

.blog .blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog .blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: var(--color-primary);
}

.blog .blog-details .meta-top a {
  color: #6c757d;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
  transition: 0.3s;
}

.blog .blog-details .meta-top a:hover {
  color: var(--color-primary);
}

.blog .blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid rgba(82, 86, 94, 0.15);
}

.blog .blog-details .meta-bottom i {
  color: #455d92;
  display: inline;
}

.blog .blog-details .meta-bottom a {
  color: rgba(82, 86, 94, 0.8);
  transition: 0.3s;
}

.blog .blog-details .meta-bottom a:hover {
  color: var(--color-primary);
}

.blog .blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog .blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog .blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--color-default);
  content: ",";
}

.blog .blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog .blog-details .meta-bottom .share i {
  padding-left: 5px;
}

.blog .post-author {
  padding: 20px;
  margin-top: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .post-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog .post-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: var(--color-normal);
}

.blog .post-author .social-links {
  margin: 0 10px 10px 0;
}

.blog .post-author .social-links a {
  color: rgba(82, 86, 94, 0.5);
  margin-right: 5px;
}

.blog .post-author p {
  font-style: italic;
  color: rgba(108, 117, 125, 0.8);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Sidebar
--------------------------------------------------------------*/
.blog .sidebar {
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0;
  color: var(--color-normal);
}

.blog .sidebar .sidebar-item+.sidebar-item {
  margin-top: 40px;
}

.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid rgba(82, 86, 94, 0.3);
  padding: 3px 10px;
  position: relative;
}

.blog .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
}

.blog .sidebar .search-form form input[type=text]:focus {
  outline: none;
}

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: var(--color-primary);
  color: var(--color-white);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.blog .sidebar .search-form form button i {
  line-height: 0;
}

.blog .sidebar .search-form form button:hover {
  background: rgba(254, 185, 0, 0.8);
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li+li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: var(--color-normal);
  transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
  color: var(--color-default);
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: rgba(54, 77, 89, 0.4);
  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item {
  display: flex;
}

.blog .sidebar .recent-posts .post-item+.post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  max-width: 80px;
  margin-right: 15px;
}

.blog .sidebar .recent-posts h4 {
  font-size: 15px;
  font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
  color: var(--color-normal);
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: var(--color-primary);
}

.blog .sidebar .recent-posts time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: rgba(54, 77, 89, 0.4);
}

.blog .sidebar .tags {
  margin-bottom: -10px;
}

.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .tags ul li {
  display: inline-block;
}

.blog .sidebar .tags ul a {
  color: #455d92;
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid rgba(131, 136, 147, 0.4);
  display: inline-block;
  transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
  color: var(--color-white);
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: rgba(131, 136, 147, 0.8);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Blog Comments
--------------------------------------------------------------*/
.blog .comments {
  margin-top: 30px;
}

.blog .comments .comments-count {
  font-weight: bold;
  color: var(--color-primary);
}

.blog .comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog .comments .comment .comment-img {
  margin-right: 14px;
}

.blog .comments .comment .comment-img img {
  width: 60px;
}

.blog .comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog .comments .comment h5 a {
  font-weight: bold;
  color: var(--color-normal);
  transition: 0.3s;
}

.blog .comments .comment h5 a:hover {
  color: var(--color-primary);
}

.blog .comments .comment h5 .reply {
  padding-left: 10px;
  color: var(--color-normal);
}

.blog .comments .comment h5 .reply i {
  font-size: 20px;
}

.blog .comments .comment time {
  display: block;
  font-size: 14px;
  color: rgba(82, 86, 94, 0.8);
  margin-bottom: 5px;
}

.blog .comments .comment.comment-reply {
  padding-left: 40px;
}

.blog .comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
  color: var(--color-normal);
}

.blog .comments .reply-form p {
  font-size: 14px;
}

.blog .comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .comments .reply-form input:focus {
  box-shadow: none;
  border-color: rgba(33, 12, 128, 0.8);
}

/* contact form slecet box css */
.reply-form select {
  border-radius: 4px !important;
  padding: 10px 10px !important;
  font-size: 14px !important;
}

.reply-form select:focus {
  box-shadow: none;
  border-color: rgba(33, 12, 128, 0.8);
}

/* contact form slecet box css */

.blog .comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: rgba(33, 12, 128, 0.8);
}

.blog .comments .reply-form .form-group {
  margin-bottom: 25px;
}

.blog .comments .reply-form .btn-primary {
  border-radius: 6px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--color-normal);

}

.blog .comments .reply-form .btn-primary:hover {
  color: var(--color-white);
  background-color: var(--color-primary);
}

.color_primary {
  color: #140047;
  text-transform: uppercase;
  font-size: 16px;
}

.color_p_secondary {
  color: rgb(62, 59, 59);
  font-size: 14px;
}

/*=====================Projects============ */
/********************/
/*     Projects     */
/********************/
.filter {
  padding-top: 9.25rem;
  padding-bottom: 5.625rem;
  text-align: center;
}

.filter h2 {
  margin-bottom: 2.625rem;
}

.filter .button-group {
  margin-bottom: 1rem;
}

.filter .button {
  margin-bottom: 0.75rem;
  border: none;
  background-color: transparent;
  color: #222222;
  font-weight: 600;
  font-size: 1rem;
}

.filter .button:hover,
.filter .button.is-checked {
  color: #ff5574;
}

.filter .grid {
  margin-right: auto;
  max-width: 351px;
  margin-left: auto;
}

.filter .element-item {
  margin-bottom: 3rem;
}

.filter .element-item a {
  text-decoration: none;
}

.filter .element-item img {
  margin-bottom: 1.125rem;
  border-radius: 8px;
  border: 1px solid #5e6576;
}

.filter .element-item p {
  text-align: left;
}

.filter .element-item p strong {
  color: #222222;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  color: #ff7f5d;
  float: left;
  width: 44px;
  height: 44px;
  background: #fff8f6;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #150517;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #62176b;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #ff7f5d;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 4px;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #ff7f5d;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: #ff7f5d;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #ff9377;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.color_social_links_text {
  color: #140047;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  word-spacing: 4px;

}

.color_social_links {
  color: #140047;
  font-weight: 600;
  font-size: 16px;
}

/* Contact us form  */

.reply-form {
  margin-top: 0px;
  padding: 40px;
}

.reply-form h4 {
  font-weight: bold;
  font-size: 22px;
  color: var(--color-normal);
}

@media screen and (max-width:575px) {
  .reply-form h4 {
    font-size: 17px;
  }
}

.reply-form p {
  font-size: 14px;
  color: red;
  margin-bottom: 30px;
}

.reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.reply-form input:focus {
  box-shadow: none;
  border-color: rgba(33, 12, 128, 0.8);
}

.reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.reply-form textarea:focus {
  box-shadow: none;
  border-color: rgba(33, 12, 128, 0.8);
}

.reply-form .form-group {
  margin-bottom: 25px;
}

.reply-form .btn-primary {
  border-radius: 6px;
  padding: 10px 20px;
  background-color: var(--color-normal);
  cursor: pointer;

}

.reply-form .btn-primary:hover {
  color: var(--color-primary);
  background-color: transparent;
  border: 1px solid #140047;
  cursor: pointer;
}


/*--------------------------
 FOOTER
----------------------*/
#footer {
  padding-bottom: 16px;
  position: relative;
  /* background-color:rgb(231, 236, 250); */
  /* background: url("../img/cta-bg.jpg"); */
  /* background: var(--color-secondary); */
  background: linear-gradient(45deg, rgba(139, 134, 167, 0.3) 0%, rgba(203, 175, 230, 0.1) 100%), url("../images/footer/footer-bg.jpg") center center no-repeat;
  border-top: 1px solid #eee;

}

@media screen and (max-width: 575px) {
  #footer {
    /* background: var(--color-secondary); */
    background: linear-gradient(to bottom, rgb(231, 236, 250), rgb(213, 221, 245));
  }
}

.footer-widget ul li {
  padding: 5px 0px;
  list-style: none;
}

.footer-widget p {
  margin-bottom: 5px;
  font-size: 14px;
  color: #483577;
  line-height: 1.5rem;
}

.footer-widget h4 {
  margin-bottom: 20px;
  color: var(--color-primary);
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
}

.footer-widget ul {
  padding-left: 0px;
}

.footer-widget ul li a {
  color: #483577;
  font-size: 14px;
}

.footer-widget ul li a:hover {
  color: var(--color-primary);
}


.footer-blog li img {
  width: 70px;
  height: 70px;
  float: left;
  margin-right: 20px;
}

.footer-blog li h5 {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 22px;
  text-transform: capitalize;
}

.footer-blog li a.read-more {
  font-size: 13px;
}

.footer-blog li {
  margin-bottom: 15px;
}

.footer-copy {
  letter-spacing: 1px;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid #ad9fd0;
}

.footer-copy p {
  text-transform: capitalize;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-primary);
  letter-spacing: 0px;
}

.footer-text h6 {
  margin-bottom: 10px;
}

.footer-text p span {
  color: #483577;

}

.footer-text p.mail {
  color: #483577;

}

.bg-main {
  background: #F4F8FB;
}

.footer-widget a {
  color: #321e65;
}

/* //////////////////////////// */

.font-left {
  margin-left: 25px;
}

.font-left:hover {
  transition: 0.5s ease;
  color: #352bc1;
}


.tech_span {
  padding: 10px 10px;
  display: inline-block;
  margin-bottom: 10px;
  border: 1px solid #a8a8a8;
  border-radius: 15px;
  width: 95px;
  height: 80px;
  text-align: center;
  text-transform: uppercase;
  font-size: 13px;
  margin-right: 7px;
}

.tech_span img {
  width: 30px;
  border: 1px solid #ddd;
  padding: 3px;
  border-radius: 5px;
  height: 30px;
  display: block;
  margin: 0 auto;
  margin-bottom: 10px;
}

/* Call To Action Section
--------------------------------*/
#call-to-action {
  background: linear-gradient(rgba(0, 142, 99, 0.1), rgba(0, 0, 0, 0.1)), url(../images/bg/cta_bg.jpg) fixed center center;
  background-size: cover;
  padding: 60px 0;
}
@media screen and (max-width:575px){
  #call-to-action {
  margin:0 10px;
  border-radius:10px;
}
 }
#call-to-action h4 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}
@media screen and (max-width:575px){
  #call-to-action h4{
   font-size:22px;
   font-weight: 600;
   padding:15px;
    
  }
}
@media screen and (max-width:575px) {
  #call-to-action h3 {
    font-size: 18px;
  }

  #call-to-action {
    padding: 30px 0;
  }
}

#call-to-action p {
  color: #fff;
}

#call-to-action .cta-btn {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 24px;
  border-radius: 20px;
  transition: 0.5s
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

@media screen and (max-width : 575px) {
  #call-to-action .cta-btn {
    font-family: "Poppins", sans-serif;
    font-size: 10px;
    padding: 8px 20px;
  }
}

/* Call To Action Section
--------------------------------*/


/* Facts Section
--------------------------------*/
#facts {
  background: url("../images/facts/ff.jpg") center top no-repeat fixed;
  background-size: cover;
  padding: 60px 0 0 0;
  position: relative;
}

#facts::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.88);
  z-index: 9;
}

#facts .container {
  position: relative;
  z-index: 10;
}

#facts .counters span {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 48px;
  display: block;
  color: #18d26e;
}

#facts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #111;
}

#facts .facts-img {
  text-align: center;
  padding-top: 30px;
}

.whatswidget-widget-wrapper {
  font-family: "Helvetica Neue", "Apple Color Emoji", Helvetica, Arial,
    sans-serif !important;
  font-size: 16px !important;
  position: fixed !important;
  bottom: 20px !important;
  right: 30px !important;
  z-index: 1001 !important;
}

.whatswidget-conversation {
  background-color: #e4dcd4 !important;
  background-image: url("https://www.oflox.com/blog/wp-content/uploads/2021/01/wpbg.png") !important;
  background-repeat: repeat !important;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 5px 40px !important;
  width: 250px !important;
  height: 300px !important;
  border-radius: 10px !important;
  transition-duration: 0.5s !important;
  margin-bottom: 80px !important;
}

.whatswidget-conversation-header {
  background-color: white !important;
  padding: 10px !important;
  padding-left: 25px !important;
  box-shadow: 0px 1px #00000029 !important;
  font-weight: 600 !important;
  border-top-left-radius: 10px !important;
  border-top-right-radius: 10px !important;
}

.whatswidget-conversation-message {
  line-height: 1.2em !important;
  background-color: white !important;
  padding: 10px !important;
  margin: 10px !important;
  margin-left: 15px !important;
  border-radius: 5px !important;
}

.whatswidget-conversation-message-outer {
  background-color: #fff !important;
  padding: 10px !important;
  margin: 10px !important;
  margin-left: 0px !important;
  border-radius: 5px !important;
  box-shadow: rgba(0, 0, 0, 0.342) 0px 2.5px 10px !important;
  cursor: pointer !important;
  animation: nudge 2s linear infinite !important;
  margin-bottom: 70px !important;
}

.whatswidget-text-header-outer {
  font-weight: bold !important;
  font-size: 90% !important;
}

.whatswidget-text-message-outer {
  font-size: 90% !important;
}

.whatswidget-conversation-cta {
  border-radius: 25px !important;
  width: 175px !important;
  font-size: 110% !important;
  padding: 10px !important;
  margin: 0 auto !important;
  text-align: center !important;
  background-color: #23b123 !important;
  color: white !important;
  font-weight: bold !important;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 2.5px 10px !important;
  transition: 1s !important;
  position: absolute !important;
  top: 62% !important;
  left: 10% !important;
}

.whatswidget-conversation-cta:hover {
  transform: scale(1.1) !important;
  filter: brightness(1.3) !important;
}

.whatswidget-cta {
  text-decoration: none !important;
  color: white !important;
}

.whatswidget-cta-desktop {
  display: none !important;
}

.whatswidget-cta-mobile {
  display: inherit !important;
}

@media (min-width: 48em) {
  .whatswidget-cta-desktop {
    display: inherit !important;
  }

  .whatswidget-cta-mobile {
    display: none !important;
  }
}

.whatswidget-button-wrapper {
  position: fixed !important;
  bottom: 15px !important;
  right: 15px !important;
}

.whatswidget-button {
  position: relative !important;
  right: 0px !important;
  background-color: #31d831 !important;
  border-radius: 100% !important;
  width: 60px !important;
  height: 60px !important;
  box-shadow: 2px 1px #0d630d63 !important;
  transition: 1s !important;
}

.whatswidget-icon {
  width: 42px !important;
  height: 42px !important;
  position: absolute !important;
  bottom: 10px !important;
  left: 10px !important;
}

.whatswidget-button:hover {
  filter: brightness(115%) !important;
  transform: rotate(15deg) scale(1.15) !important;
  cursor: pointer !important;
}

@keyframes nudge {

  20%,
  100% {
    transform: translate(0, 0);
  }

  0% {
    transform: translate(0, 5px);
    transform: rotate(2deg);
  }

  10% {
    transform: translate(0, -5px);
    transform: rotate(-2deg);
  }
}

.whatswidget-link {
  position: absolute !important;
  bottom: 90px !important;
  right: 5px !important;
  opacity: 0.5 !important;
}

.whtsapp-button-web{
	position: fixed;
    bottom: 20px;
    right: 20px;
    background: #4dc247;
    padding: 7px 12px 5px 0px;
    border-radius: 50%;
}
.whtsapp-button-web .color_social_links{
    color: #ffffff;
    font-weight: 600;
    font-size: 26px;
    text-align:center;
}

/* Product section starts */
.products{
  padding: 30px 0;
  width: 100%;
  background-image:linear-gradient(45deg,
  rgba(40, 40, 40, 0.75),
  rgba(8,83,156, 0.75)), url('../images/bg/productBG.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.product__small__box{
  width: 100%;
  padding: 10px 0;
  /* height: 40vh; */
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 10px;
  background-color:white;
  box-shadow: 0 10px 15px 0 rgb(0 0 0 / 10%);
  background-image:linear-gradient(45deg,
  rgba(151, 182, 245, 0.2),
  rgba(79, 237, 243, 0.1));
}
.product__small__box:hover{
  background-color:rgb(240, 243, 255);
}
.product__small__box__image img{
  width: 150px;
  height: 150px;
}
.product__small__box__contents{
  padding: 20px 0;
  text-align: center;
}
.product__small__box__contents h4{
  font-size: 18px;
  color: #140832;
}
.product__small__box__contents p{
  text-align: center;
  color: #848590;
  padding: 0 20px;
  font-size: 14px;
}
.product__button{
  font-size: 12px;
  border: 1px solid #140047;
  padding: 7px 15px;
  border-radius: 20px;
  color: #140047;
}
.product__button:hover{
  border: 1px solid #140047;
  color: #fff;
  background: #140047;
}

/* Product section ends */
