body {
  font-family: 'Open Sans', sans-serif;
  color: #444444;
}
#main {
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff', endColorstr='#fff',GradientType=1);
  background-color: #fff;
  /* Optional: Add vendor prefixes for additional compatibility */
  -webkit-background-color: #fff; /* Safari, Chrome */
  -moz-background-color: #fff; /* Firefox */
  -o-background-color: #fff; /* Opera */
  -ms-background-color: #fff; /* Internet Explorer */
}
/* @font-face {
  font-family: 'poppinsregular';
  src: url('../fonts/poppins-regular.woff2') format('woff2'),
    url('../fonts/poppins-regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
} */
a {
  color: #062247;
  text-decoration: none;
}

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

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: '';
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #062247;
  border-top-color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

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

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

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #1884bd;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

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

.back-to-top:hover {
  background: #1884bd;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}
/* .fixed-top {
  position: relative !important;
} */
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: transparent;
  transition: all 0.5s;
  z-index: 997;
  padding: 10px 0;
}

#header.header-scrolled {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  background-image: linear-gradient(110deg, #21e8e5 0%, #102e9a 100%);

  /* Standard syntax */
  background: linear-gradient(to right, #21e8e5, #102e9a);

  /* Vendor prefixes for older versions of some browsers */
  background: -webkit-linear-gradient(
    to right,
    #21e8e5,
    #102e9a
  ); /* Safari 5.1-6, Chrome 10-25 */
  background: -moz-linear-gradient(
    to right,
    #21e8e5,
    #102e9a
  ); /* Firefox 3.6-15 */
  background: -o-linear-gradient(
    to right,
    #21e8e5,
    #102e9a
  ); /* Opera 11.1-12 */
  background: -ms-linear-gradient(to right, #21e8e5, #102e9a); /* IE 10 */

  /* For IE 6-9 */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#21e8e5', endColorstr='#102e9a',GradientType=1);

  padding: 5px 0px;
}
#header.header-scrolled .logo img {
  max-height: 60px !important;
}

#header .logo {
  font-size: 26px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

#header .logo a {
  color: #0b2341;
}

#header .logo img {
  max-height: 80px;
}

/*--------------------------------------------------------------
# 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 a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  font-size: 14px;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
  text-transform: uppercase;
}

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

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

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #062247;
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #235392;
}

.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;
}

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

.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
}

.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: #062247;
}

.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%;
  }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
  color: #fff;
  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(4, 12, 21, 0.9);
  transition: 0.3s;
  z-index: 999;
}

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

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 0px;
  bottom: 0px;
  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: 14px;
  color: #0b2341;
}

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

.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: #062247;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 90vh;
  background-color: rgba(4, 12, 21, 0.8);
  overflow: hidden;
  position: relative;
  /* margin-top: -105px; */
}
/* #hero .carousel-inner .active {
  background-image: linear-gradient(to bottom right, #1d99cc, #8fb0b5);
} */
#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-item {
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

#hero .carousel-item::before {
  content: '';
  /* background-color: rgba(4, 12, 21, 0.5); */
}

#hero .carousel-container {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 82px;
  left: 50px;
  right: 50px;
}

#hero h2 {
  color: #fff;
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

#hero p {
  animation-delay: 0.4s;
  color: #fff;
  margin-top: 10px;
}
.align-center-md {
  align-items: center;
}
@media (min-width: 1200px) {
  #hero p {
    width: 90%;
  }
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 1;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: #062247;

  background-image: linear-gradient(110deg, #102e9a 0%, #2a8a88 100%);

  /* Standard syntax */
  background: linear-gradient(to right, #21e8e5, #102e9a);

  /* Vendor prefixes for older versions of some browsers */
  background: -webkit-linear-gradient(
    to right,
    #21e8e5,
    #102e9a
  ); /* Safari 5.1-6, Chrome 10-25 */
  background: -moz-linear-gradient(
    to right,
    #21e8e5,
    #102e9a
  ); /* Firefox 3.6-15 */
  background: -o-linear-gradient(
    to right,
    #21e8e5,
    #102e9a
  ); /* Opera 11.1-12 */
  background: -ms-linear-gradient(to right, #21e8e5, #102e9a); /* IE 10 */

  /* For IE 6-9 */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#21e8e5', endColorstr='#102e9a',GradientType=1);
}

#hero .btn-get-started {
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: #444;
  animation-delay: 0.8s;
  background: #fff;
  margin-top: 15px;
}

#hero .btn-get-started:hover {
  background: #425479;
  color: #fff;
}
#clientname,
#aboutcompany {
  padding-top: 0px;
}
@media (max-width: 992px) {
  #hero {
    height: 100vh;
  }

  #hero .carousel-container {
    text-align: center;
    top: 74px;
  }
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 30px;
  }
}

@media (min-width: 1024px) {
  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 50px 0;
}

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

.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: 'Poppins', sans-serif;
}

.section-title h2::after {
  content: '';
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #f38b74;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
  color: #395e8e;
}

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

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

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li + li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #062247;
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 5px;
  transition: 0.3s;
  line-height: 1;
  color: #062247;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #062247;
}

.about .content .btn-learn-more:hover {
  background: #062247;
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding-top: 0;
}

.counts .count-box {
  box-shadow: -10px -5px 40px 0 rgba(0, 0, 0, 0.1);
  padding: 30px;
  width: 100%;
}

.counts .count-box i {
  display: block;
  font-size: 30px;
  color: #062247;
  float: left;
}

.counts .count-box span {
  font-size: 42px;
  line-height: 24px;
  display: block;
  font-weight: 700;
  color: #0b2341;
  margin-left: 50px;
}

.counts .count-box p {
  padding: 30px 0 0 0;
  margin: 0;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
}

.counts .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #164682;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  transition: ease-in-out 0.3s;
}

.counts .count-box a:hover {
  color: #2169c4;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us {
  padding: 0;
}

.why-us .content {
  padding: 60px 100px 0 100px;
}

.why-us .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: #123a6d;
}

.why-us .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.why-us .content p {
  font-size: 15px;
  color: #848484;
}

.why-us .video-box {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 400px;
  position: relative;
}

.why-us .accordion-list {
  padding: 0 100px 60px 100px;
}

.why-us .accordion-list ul {
  padding: 0;
  list-style: none;
}

.why-us .accordion-list li + li {
  margin-top: 15px;
}

.why-us .accordion-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
}

.why-us .accordion-list a {
  display: block;
  position: relative;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding-right: 30px;
  outline: none;
  color: #0b2341;
  cursor: pointer;
}

.why-us .accordion-list span {
  color: #062247;
  font-weight: 600;
  font-size: 18px;
  padding-right: 10px;
}

.why-us .accordion-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.why-us .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.why-us .accordion-list .icon-show {
  display: none;
}

.why-us .accordion-list a.collapsed {
  color: #0b2341;
}

.why-us .accordion-list a.collapsed:hover {
  color: #062247;
}

.why-us .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.why-us .accordion-list a.collapsed .icon-close {
  display: none;
}

.why-us .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#062247 50%, rgba(237, 80, 46, 0.4) 52%);

  /* Standard syntax */
  background: linear-gradient(to right, #21e8e5, #102e9a);

  /* Vendor prefixes for older versions of some browsers */
  background: -webkit-linear-gradient(
    to right,
    #21e8e5,
    #102e9a
  ); /* Safari 5.1-6, Chrome 10-25 */
  background: -moz-linear-gradient(
    to right,
    #21e8e5,
    #102e9a
  ); /* Firefox 3.6-15 */
  background: -o-linear-gradient(
    to right,
    #21e8e5,
    #102e9a
  ); /* Opera 11.1-12 */
  background: -ms-linear-gradient(to right, #21e8e5, #102e9a); /* IE 10 */

  /* For IE 6-9 */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#21e8e5', endColorstr='#102e9a',GradientType=1);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.why-us .play-btn::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.why-us .play-btn::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(237, 80, 46, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.why-us .play-btn:hover::after {
  border-left: 15px solid #062247;
  transform: scale(20);
}

.why-us .play-btn:hover::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

@media (max-width: 1024px) {
  .why-us .content,
  .why-us .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .why-us .content {
    padding-top: 30px;
  }

  .why-us .accordion-list {
    padding-bottom: 30px;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  background: #fefefe;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #062247;
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transform-style: preserve-3d;
  position: relative;
  z-index: 2;
}

.services .icon-box .icon i {
  color: #fff;
  font-size: 28px;
}

.services .icon-box .icon::before {
  position: absolute;
  content: '';
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: #1b477f;
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
  z-index: 1;
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #0b2341;
}

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

.services .icon-box:hover {
  background: #062247;
  border-color: #062247;
}

.services .icon-box:hover .icon {
  background: #fff;
}

.services .icon-box:hover .icon i {
  color: #062247;
}

.services .icon-box:hover .icon::before {
  background: #e1e1e1;
}

.services .icon-box:hover h4 a,
.services .icon-box:hover p {
  color: #fff;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
  padding-left: 50px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 30px 15px;
  min-height: 200px;
  box-shadow: 0px 0px 20px 0px rgba(11, 35, 65, 0.1);
  position: relative;
  background: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid #fff;
  position: absolute;
  left: -45px;
}

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

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #6b7c93;
  font-size: 26px;
}

.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: italic;
  margin: 15px auto 15px auto;
}

.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 #062247;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #062247;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  padding: 80px 0;
  background: #0b2341;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;

  border: 2px solid #1b477f;
  color: #fff;
  background-color: #1b477f;
}

.cta .cta-btn:hover {
  background: #fff;
  border: 2px solid #1b477f;
  color: #1b477f;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #0b2341;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #062247;
}

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

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #0b2341;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #1a5298;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #123a6d;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #062247;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-item .portfolio-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-links a:hover {
  color: #f59f8c;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details
  .portfolio-details-slider
  .swiper-pagination
  .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #062247;
}

.portfolio-details
  .portfolio-details-slider
  .swiper-pagination
  .swiper-pagination-bullet-active {
  background-color: #062247;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(11, 35, 65, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  text-align: center;
  margin-bottom: 20px;
  background: #343a40;
  position: relative;
  overflow: hidden;
}

.team .member .member-info {
  opacity: 0;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

.team .member .member-info-content {
  position: absolute;
  left: 50px;
  right: 0;
  bottom: 0;
  transition: bottom 0.4s;
}

.team .member .member-info-content h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: #fff;
}

.team .member .member-info-content span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}

.team .member .social {
  position: absolute;
  left: -50px;
  top: 0;
  bottom: 0;
  width: 50px;
  transition: left ease-in-out 0.3s;
  background: rgba(11, 35, 65, 0.5);
  text-align: center;
}

.team .member .social a {
  transition: color 0.3s;
  display: block;
  color: #fff;
  margin-top: 15px;
}

.team .member .social a:hover {
  color: #062247;
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .member:hover .member-info {
  background: linear-gradient(
    0deg,
    rgba(11, 35, 65, 0.9) 0%,
    rgba(11, 35, 65, 0.8) 20%,
    rgba(0, 212, 255, 0) 100%
  );

  /* Standard syntax */
  background: linear-gradient(to right, #21e8e5, #102e9a);

  /* Vendor prefixes for older versions of some browsers */
  background: -webkit-linear-gradient(
    to right,
    #21e8e5,
    #102e9a
  ); /* Safari 5.1-6, Chrome 10-25 */
  background: -moz-linear-gradient(
    to right,
    #21e8e5,
    #102e9a
  ); /* Firefox 3.6-15 */
  background: -o-linear-gradient(
    to right,
    #21e8e5,
    #102e9a
  ); /* Opera 11.1-12 */
  background: -ms-linear-gradient(to right, #21e8e5, #102e9a); /* IE 10 */

  /* For IE 6-9 */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#21e8e5', endColorstr='#102e9a',GradientType=1);
  opacity: 1;
  transition: 0.4s;
}

.team .member:hover .member-info-content {
  bottom: 30px;
  transition: bottom 0.4s;
}

.team .member:hover .social {
  left: 0;
  transition: left ease-in-out 0.3s;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .row {
  padding-top: 40px;
}

.pricing .box {
  padding: 80px 40px;
  margin-bottom: 30px;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
  background: #fff;
  text-align: center;
}

.pricing h3 {
  font-weight: 300;
  margin-bottom: 15px;
  font-size: 28px;
}

.pricing h4 {
  font-size: 46px;
  color: #0b2341;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 25px;
}

.pricing h4 span {
  color: #bababa;
  font-size: 18px;
  display: block;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #999;
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding-bottom: 12px;
}

.pricing ul i {
  color: #062247;
  font-size: 18px;
  padding-right: 4px;
}

.pricing ul .na {
  color: #ccc;
}

.pricing ul .na i {
  color: #ccc;
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .get-started-btn {
  display: inline-block;
  padding: 10px 40px 11px 40px;
  border-radius: 4px;
  color: #0b2341;
  transition: none;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
  border: 2px solid #0b2341;
  background: #fff;
}

.pricing .get-started-btn:hover {
  background: #0b2341;
  color: #fff;
}

.pricing .featured {
  z-index: 10;
  padding: 100px 40px;
  border: 4px solid #062247;
}

.pricing .featured .get-started-btn {
  background: #062247;
  color: #fff;
  border-color: #062247;
}

.pricing .featured .get-started-btn:hover {
  background: #235392;
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-item {
  margin: 20px 0;
  padding: 20px 0;
  border-bottom: 1px solid #e9f1fb;
}

.faq .faq-item i {
  color: #669ee5;
  font-size: 20px;
  float: left;
  line-height: 0;
  padding: 13px 0 0 0;
  margin: 0;
}

.faq .faq-item h4 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  margin: 0 0 10px 28px;
  font-family: 'Poppins', sans-serif;
}

.faq .faq-item p {
  font-size: 15px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #0b2341;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;
  background: #fff;
}

.contact .info-box i {
  font-size: 32px;
  color: #1cabcd;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #fbdad2;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
  background: #fff;
}

.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;
  animation: animate-loading 1s linear infinite;
}

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

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

.contact .php-email-form input {
  padding: 10px 15px;
}

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

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

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

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

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

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f6f9fd;
  min-height: 40px;
  margin-top: 82px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 74px;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 600;
  color: #0b2341;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #123a6d;
  content: '/';
}

::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

/* Track */

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */

::-webkit-scrollbar-thumb {
  background: #062247;
}

/* Handle on hover */

::-webkit-scrollbar-thumb:hover {
  background: #144f9b;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer-logo img {
  max-width: 65px;
}
#footer {
  background: #0f3361;
  background-image: linear-gradient(110deg, #102e9a 0%, #21e8e5 100%);

  /* Standard syntax */
  background: linear-gradient(to right, #102e9a, #21e8e5);

  /* Vendor prefixes for older versions of some browsers */
  background: -webkit-linear-gradient(
    to right,
    #102e9a,
    #21e8e5
  ); /* Safari 5.1-6, Chrome 10-25 */
  background: -moz-linear-gradient(
    to right,
    #102e9a,
    #21e8e5
  ); /* Firefox 3.6-15 */
  background: -o-linear-gradient(
    to right,
    #102e9a,
    #21e8e5
  ); /* Opera 11.1-12 */
  background: -ms-linear-gradient(to right, #102e9a, #21e8e5); /* IE 10 */

  /* For IE 6-9 */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#21e8e5', endColorstr='#102e9a',GradientType=1);
  padding: 0 0 0px 0;
  color: #fff;
  font-size: 14px;
}
.footerlink {
  padding-bottom: 15px;
}
#footer .footer-top {
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 15px;
  background: #05101e;
  border-top: 4px solid #062247;
  text-align: center;
  padding: 30px 20px;
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: 'Raleway', sans-serif;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  background: #1884bd;
}

#footer .footer-top .social-links a:hover {
  color: #fff;
  background: #062247;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #235392;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #235392;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type='email'] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type='submit'] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px 2px 20px;
  background: #062247;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type='submit']:hover {
  background: #235392;
}

/* #footer .copyright {
  border-top: 1px solid #0f2f57;
  text-align: center;
  padding-top: 30px;
} */
.copyright {
  font-size: 13px;
}
#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}
.footerlink a {
  color: #fff !important;
}
#footermenu {
  padding-top: 20px;
  color: #fff;
}
#footer .footer-top {
  padding: 0px 0 10px 0;
  position: relative;
}
#footer .copyright-wrap {
  border-top: 1px solid #fff;
}
.text-center {
  text-align: center !important;
}
.background-image2 {
  background-image: linear-gradient(
    to right top,
    #1db08b,
    #18b677,
    #10a9b7,
    #1891d0,
    #105f8a
  );

  /* Standard syntax */
  background: linear-gradient(
    to right top,
    #1db08b,
    #18b677,
    #10a9b7,
    #1891d0,
    #105f8a
  );

  /* Vendor prefixes for older versions of some browsers */
  background: -webkit-linear-gradient(
    to right top,
    #1db08b,
    #18b677,
    #10a9b7,
    #1891d0,
    #105f8a
  ); /* Safari 5.1-6, Chrome 10-25 */
  background: -moz-linear-gradient(
    to right top,
    #1db08b,
    #18b677,
    #10a9b7,
    #1891d0,
    #105f8a
  ); /* Firefox 3.6-15 */
  background: -o-linear-gradient(
    to right top,
    #1db08b,
    #18b677,
    #10a9b7,
    #1891d0,
    #105f8a
  ); /* Opera 11.1-12 */
  background: -ms-linear-gradient(
    to right top,
    #1db08b,
    #18b677,
    #10a9b7,
    #1891d0,
    #105f8a
  ); /* IE 10 */

  /* For IE 6-9 */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#21e8e5', endColorstr='#102e9a',GradientType=1);
}
.background-image3 {
  background-image: linear-gradient(
    to left bottom,

    #102e9a,
    #3655c7,
    #5e7cea,
    #5199eb,
    #43b5e9,
    #3ac3e7,
    #21e8e5
  );

  /* Standard syntax */
  background: linear-gradient(
    to left bottom,

    #102e9a,
    #3655c7,
    #5e7cea,
    #5199eb,
    #43b5e9,
    #3ac3e7,
    #21e8e5
  );

  /* Vendor prefixes for older versions of some browsers */
  background: -webkit-linear-gradient(
    to left bottom,

    #102e9a,
    #3655c7,
    #5e7cea,
    #5199eb,
    #43b5e9,
    #3ac3e7,
    #21e8e5
  ); /* Safari 5.1-6, Chrome 10-25 */
  background: -moz-linear-gradient(
    to left bottom,

    #102e9a,
    #3655c7,
    #5e7cea,
    #5199eb,
    #43b5e9,
    #3ac3e7,
    #21e8e5
  ); /* Firefox 3.6-15 */
  background: -o-linear-gradient(
    to left bottom,

    #102e9a,
    #3655c7,
    #5e7cea,
    #5199eb,
    #43b5e9,
    #3ac3e7,
    #21e8e5
  ); /* Opera 11.1-12 */
  background: -ms-linear-gradient(
    to left bottom,

    #102e9a,
    #3655c7,
    #5e7cea,
    #5199eb,
    #43b5e9,
    #3ac3e7,
    #21e8e5
  ); /* IE 10 */

  /* For IE 6-9 */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#21e8e5', endColorstr='#102e9a',GradientType=1);
}

.background-image1 {
  /* background-image: linear-gradient(
    to right top,

    #d16ba5,
    #c777b9,
    #ba83ca,
    #9b7bd3,
    #7969a0,
    #3659cb,
    #3659cb
  ); */
  background-image: linear-gradient(
    to right top,

    #20e6e4,
    #007bbb,
    #0b3ca0
  );

  /* Standard syntax */
  background: linear-gradient(
    to right top,

    #20e6e4,
    #007bbb,
    #0b3ca0
  );

  /* Vendor prefixes for older versions of some browsers */
  background: -webkit-linear-gradient(
    to right top,

    #20e6e4,
    #007bbb,
    #0b3ca0
  ); /* Safari 5.1-6, Chrome 10-25 */
  background: -moz-linear-gradient(
    to right top,

    #20e6e4,
    #007bbb,
    #0b3ca0
  ); /* Firefox 3.6-15 */
  background: -o-linear-gradient(
    to right top,

    #20e6e4,
    #007bbb,
    #0b3ca0
  ); /* Opera 11.1-12 */
  background: -ms-linear-gradient(
    to right top,

    #20e6e4,
    #007bbb,
    #0b3ca0
  ); /* IE 10 */

  /* For IE 6-9 */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#21e8e5', endColorstr='#102e9a',GradientType=1);
}
@media (max-width: 575px) {
  #footer .footer-top .footer-info {
    margin: -20px 0 30px 0;
  }
}
@media (min-width: 768px) {
  .solutionbox .col-md-2 {
    flex: 0 0 auto;
    width: 20%;
  }
}
.pageheading h2 {
  font-size: 45px;
  line-height: 60px;
  color: #102e9a;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  background-image: linear-gradient(110deg, #102e9a 0%, #21e8e5 100%);

  text-align: center;
}
.pageheading p {
  font-size: 20px;
  color: #000;
  -webkit-text-fill-color: initial;
}
.max-750 {
  max-width: 750px;
  margin: 0 auto;
}
.feature-box {
  border-radius: 0px 0px 0px 0px;
  border-style: solid;
  border-width: 2px 2px 2px 2px;
  border-color: #f6ebf9;
  margin: 15px 0px;
}
.elementor-icon {
  margin-bottom: 20px;
}
/* .elementor-icon img {
  max-width: 43%;
} */

/* .feature-box:hover .feature-box-wrap {
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
} */

.feature-box-wrap {
  text-align: center;
  padding: 50px 15px 10px 15px;
  width: 100%;
  overflow: hidden;
  will-change: transform;
  transition: transform 0.3s ease-in-out; /* Add this line for smooth transition */
}
.feature-box:hover {
  background-color: #fff;
  border-color: #fff !important;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -moz-transform: translate3d(0, -3px, 0);
  -o-transform: translate3d(0, -3px, 0);
  -ms-transform: translate3d(0, -3px, 0);
  -webkit-transform: translate3d(0, -3px, 0);
  transform: translate3d(0, -3px, 0);
}
.feature-box:hover .feature-box-wrap {
  transform: translateY(-30px);
}
.elementor-button-wrapper {
  margin-top: 15px;
  opacity: 0;
  -webkit-transform: translateY(20px);
  -moz-transform: translateY(20px);
  -ms-transform: translateY(20px);
  -o-transform: translateY(20px);
  transform: translateY(20px);
}

.feature-box:hover .elementor-button-wrapper {
  transform: translateY(-8px);
  opacity: 1;
}
.elementor-button-text {
  font-size: 13px;
}
.feature-box:hover .elementor-button-text {
  font-size: 13px;

  color: #102e9a;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  background-image: linear-gradient(110deg, #102e9a 0%, #0a5c5a 100%);

  text-align: center;
}
.pb-30 {
  padding-bottom: 30px;
}
.elementor-button-content-wrapper {
  border-bottom: 1px solid #102e9a;
}

.Support-box {
  margin-top: 30px;
  border-radius: 30px;
  /* background-image: linear-gradient(
    40deg,
    rgba(78, 179, 141, 0.89) 35%,
    rgba(18, 43, 184, 0.71) 100%
  ); */
  background-image: linear-gradient(to right top, #20e6e4, #007bbb, #0b3ca0);

  /* Standard syntax */
  background: linear-gradient(to right, #21e8e5, #102e9a);

  /* Vendor prefixes for older versions of some browsers */
  background: -webkit-linear-gradient(
    to right,
    #21e8e5,
    #102e9a
  ); /* Safari 5.1-6, Chrome 10-25 */
  background: -moz-linear-gradient(
    to right,
    #21e8e5,
    #102e9a
  ); /* Firefox 3.6-15 */
  background: -o-linear-gradient(
    to right,
    #21e8e5,
    #102e9a
  ); /* Opera 11.1-12 */
  background: -ms-linear-gradient(to right, #21e8e5, #102e9a); /* IE 10 */

  /* For IE 6-9 */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#21e8e5', endColorstr='#102e9a',GradientType=1);
}
.Support-box-text {
  padding: 3em 5px 0px 7em;
  color: #fff;
}

.Support-box-h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 45px;
  margin-bottom: 20px;
}
.Support-box-p {
  font-size: 25px;
  font-weight: 400;
  margin-bottom: 20px;
}
.Support-box-img img {
  margin-top: -161px;
  width: 94%;
  bottom: 0;
  position: absolute;
}

.Support-box-img {
  width: 100%;
  position: relative;
  height: 100%;
  vertical-align: middle;
}
.btn-learn-more {
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: #444;
  animation-delay: 0.8s;
  background: #fff;
  margin-top: 15px;
}
.btn-learn-more:hover {
  background: #425479;

  color: #fff;
}
.Support-boxBtn {
  padding-bottom: 60px;
}
.heading-h2 {
  font-size: 45px;
  line-height: 60px;
  color: #102e9a;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  background-image: linear-gradient(110deg, #102e9a 0%, #21e8e5 100%);

  text-align: center;
}
.selectinfo {
  text-align: center;
  padding: 15px;
  margin-bottom: 20px;
}
/* .selectinfobox img {
  width: 32%;
} */
.selectinfobox h3 {
  font-size: 20px;
  color: #102e9a;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  background-image: linear-gradient(110deg, #102e9a 0%, #21e8e5 100%);

  text-align: center;
}
.selectinfobox p {
  font-size: 14px;
}

.carousel-wrap {
  margin: 0px;
  padding: 0px;
  width: 100%;
  position: relative;
}
/* fix blank or flashing items on carousel */

.clientdetials .homeBanner {
  text-align: center;
}
.clientdetials .homeBanner img {
  width: 80%;
}
.owl-carousel .owl-item img.sliderService {
  width: 35px;
}
#slider1 .owl-prev {
  width: 25px;
  height: 25px;
  padding: 0px;
  opacity: 1 !important;
  background-repeat: no-repeat;
  background: url('../images/Larrow.png') !important;
  background-image: 100% 100%;
}
#slider1 .owl-next {
  width: 25px;
  height: 25px;
  padding: 0px;
  opacity: 1 !important;
  background-repeat: no-repeat;
  background: url('../images/Rarrow.png') !important;
  background-image: 100% 100%;
}

#slider1 .owl-nav {
  display: none !important;
}
.mobileshow {
  display: none;
}

#header.header-scrolled-ch {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  background-image: linear-gradient(110deg, #21e8e5 0%, #102e9a 100%);

  /* Standard syntax */
  background: linear-gradient(to right, #21e8e5, #102e9a);

  /* Vendor prefixes for older versions of some browsers */
  background: -webkit-linear-gradient(
    to right,
    #21e8e5,
    #102e9a
  ); /* Safari 5.1-6, Chrome 10-25 */
  background: -moz-linear-gradient(
    to right,
    #21e8e5,
    #102e9a
  ); /* Firefox 3.6-15 */
  background: -o-linear-gradient(
    to right,
    #21e8e5,
    #102e9a
  ); /* Opera 11.1-12 */
  background: -ms-linear-gradient(to right, #21e8e5, #102e9a); /* IE 10 */

  /* For IE 6-9 */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#21e8e5', endColorstr='#102e9a',GradientType=1);
  padding: 5px 0px;
}
#header.header-scrolled-ch .logo img {
  max-height: 60px !important;
}
.headerTop {
  background-color: #ebeff8;
  background-image: url(https://cdn-hhmgb.nitrocdn.com/qmZjphfUcbUjHRfRyzGMarJPsnYzrBiK/assets/images/optimized/rev-0bb8314/wp-content/uploads/2022/06/it-infastructure.jpg);
  background-position: -30% -131px;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 58px;
  min-height: 250px;
}
.headerTop-text {
  height: 250px;
  width: 100%;
  font-size: 40px;
  color: #fff;
  padding: 10px;
  padding-top: 92px;
}

.pageheight {
  margin-top: 70px;
}
.text-left-set {
  text-align: left !important;
}
.pageheadingset {
}
.pageheadingset h2 {
  font-size: 45px;
  line-height: 60px;
  color: #102e9a;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  background-image: linear-gradient(110deg, #102e9a 0%, #21e8e5 100%);

  text-align: center;
  display: inline-block;
}
#Services-page {
  padding-bottom: 0px !important;
}
#Solutions.Solutionstext {
  padding-top: 0px !important;
}
.privacy-page p {
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 25px;
}
.privacy-page h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
}
.privacy-page h2 {
  font-size: 16px;
  text-align: left;
  padding: 0px 0px 20px 0px !important;
  margin: 0px;
  font-weight: 600;
}
.privacy-page a {
  color: #27c3d0;
}
.mtb20 {
  margin-top: 50px;
  margin-bottom: 20px;
}
.thkMsg {
  height: fit-content !important;
  background: #fff;
  padding: 3%;
  border-radius: 11px;
  height: 349px;
  margin-top: 70px !important;
  margin-left: 24%;
  margin-right: 24%;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
  margin-bottom: 5% !important;
}
.center-div {
  padding: 30px 20px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
  max-width: 400px;
  margin: 0 auto;
  border-radius: 20px;
}
.center-div h2 {
  margin-top: 20px;
  font-size: 45px;
  line-height: 60px;
  color: #102e9a;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  background-image: linear-gradient(110deg, #102e9a 0%, #21e8e5 100%);
  text-align: center;
  display: block;
}
.minheight {
  min-height: 210px;
}
#backhome {
  display: inline-block;
  cursor: pointer;
  padding: 4px 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-image: linear-gradient(110deg, #102e9a 0%, #21e8e5 100%);
  color: #fff;
}
#backhome:hover {
  background-image: linear-gradient(110deg, #21e8e5 0%, #102e9a 100%);
  color: #fff;
}
.headingpage {
  font-size: 20px;
  line-height: 22px;
  color: #102e9a;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  background-image: linear-gradient(110deg, #102e9a 0%, #21e8e5 100%);
  text-align: center;
  display: inline-block;
}
.contactform {
  color: #0b2341;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px;
  background: #fff;
  min-height: 404px;
  padding-top: 57px;
}

.submitbtn {
  margin: 25px 10px 21px 10px;
  border: 1px solid #ccc;
  background-color: #fff;
  border-radius: 5px;
  padding: 5px 40px;
  background-image: linear-gradient(110deg, #21e8e5 0%, #102e9a 100%);
  color: #fff;
}

.submitbtn:hover {
  background-image: linear-gradient(110deg, #102e9a 0%, #21e8e5 100%);
  color: #fff;
}
.gettouch {
  padding: 0px 10px 10px 10px;
  font-size: 20px;
  color: #777777;
  font-weight: 700;
}
.ContactNow {
  padding: 6px 16px;
  font-size: 13px;

  border-radius: 5px;
  background-image: linear-gradient(110deg, #21e8e5 0%, #102e9a 100%);
  color: #fff !important;
}
.ContactNow:hover {
  background-image: linear-gradient(110deg, #102e9a 0%, #21e8e5 100%);
  color: #fff !important;
}
.callbox a {
  color: #05a7ac !important;
}
@media only screen and (max-width: 786px) {
    .feature-box {
      width: 90% !important;      
    }
  .contactform,
  .minheight {
    min-height: auto;
  }
  .pageheadingset h2 {
    font-size: 28px;
    line-height: 30px;
  }
  .selectinfobox h3 {
    font-size: 18px;
    line-height: 22px;
  }
  .solutionbox .col-sm-6 {
    width: 49%;
  }
  .pageheading h2 {
    font-size: 28px;
    line-height: 30px;
  }
  .pageheadingset p {
    font-size: 15px;
    line-height: 18px;
    text-align: left;
  }
  .pageheading p {
    font-size: 15px;
    line-height: 18px;
    text-align: center;
  }
  .navbar-mobile ul {
    background-image: linear-gradient(110deg, #0896c4 0%, #0753aa 100%);

    /* Standard syntax */
    background: linear-gradient(to right, #21e8e5, #102e9a);

    /* Vendor prefixes for older versions of some browsers */
    background: -webkit-linear-gradient(
      to right,
      #21e8e5,
      #102e9a
    ); /* Safari 5.1-6, Chrome 10-25 */
    background: -moz-linear-gradient(
      to right,
      #21e8e5,
      #102e9a
    ); /* Firefox 3.6-15 */
    background: -o-linear-gradient(
      to right,
      #21e8e5,
      #102e9a
    ); /* Opera 11.1-12 */
    background: -ms-linear-gradient(to right, #21e8e5, #102e9a); /* IE 10 */

    /* For IE 6-9 */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#21e8e5', endColorstr='#102e9a',GradientType=1);
  }

  .navbar-mobile a:hover,
  .navbar-mobile .active,
  .navbar-mobile li:hover > a {
    color: #fff;
  }
  .navbar-mobile a,
  .navbar-mobile a:focus {
    color: #fff;
  }
  .mobilehide {
    display: none;
  }
  .mobileshow {
    display: block;
  }
  .hero-txt a {
    margin-bottom: 20px;
  }
  .hero-txtimg img {
    max-width: 80%;
  }
  #hero {
    margin-top: 0px;
  }
  #hero h2 {
    font-size: 20px;
  }
  #hero p {
    font-size: 15px;
  }
  #hero .carousel-container {
    left: 15px;
    right: 15px;
  }
  #hero h2 {
    margin-top: 20px;
  }
  #hero .carousel-control-prev {
  }
  .navbar-mobile ul {
    top: 69px;
    right: 0px;
    bottom: 0px;
    left: 0px;
  }
  #hero .carousel-control-next-icon,
  #hero .carousel-control-prev-icon {
    width: 25px;
    height: 25px;
    font-size: 17px;
  }
  #hero .btn-get-started {
    padding: 10px 18px;
    margin: 0px !important;
    margin-bottom: 15px !important;
  }
  #slider1 .owl-nav {
    display: block !important;
  }
  #slider1 .owl-dots {
    display: none !important;
  }

  #slider1 .owl-nav {
    display: block !important;
  }
  #slider1 .owl-dots {
    display: none !important;
  }
  .owl-buttons .owl-prev {
    width: 25px;
    height: 25px;
    padding: 0px;
    opacity: 1 !important;
    background-repeat: no-repeat;
    background: url('../images/Larrow.png') !important;
    background-image: 100% 100%;
  }
  .owl-buttons .owl-next {
    width: 25px;
    height: 25px;
    padding: 0px;
    opacity: 1 !important;
    background-repeat: no-repeat;
    background: url('../images/Rarrow.png') !important;
    background-image: 100% 100%;
  }

  #header {
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    background-image: linear-gradient(110deg, #0896c4 0%, #0753aa 100%);

    /* Standard syntax */
    background: linear-gradient(to right, #21e8e5, #102e9a);

    /* Vendor prefixes for older versions of some browsers */
    background: -webkit-linear-gradient(
      to right,
      #21e8e5,
      #102e9a
    ); /* Safari 5.1-6, Chrome 10-25 */
    background: -moz-linear-gradient(
      to right,
      #21e8e5,
      #102e9a
    ); /* Firefox 3.6-15 */
    background: -o-linear-gradient(
      to right,
      #21e8e5,
      #102e9a
    ); /* Opera 11.1-12 */
    background: -ms-linear-gradient(to right, #21e8e5, #102e9a); /* IE 10 */

    /* For IE 6-9 */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#21e8e5', endColorstr='#102e9a',GradientType=1);
    padding: 5px 0px;
  }
  #header .logo img {
    max-height: 60px !important;
  }
  #header.header-scrolled {
    background-image: linear-gradient(110deg, #0896c4 0%, #0753aa 100%);

    /* Standard syntax */
    background: linear-gradient(to right, #21e8e5, #102e9a);

    /* Vendor prefixes for older versions of some browsers */
    background: -webkit-linear-gradient(
      to right,
      #21e8e5,
      #102e9a
    ); /* Safari 5.1-6, Chrome 10-25 */
    background: -moz-linear-gradient(
      to right,
      #21e8e5,
      #102e9a
    ); /* Firefox 3.6-15 */
    background: -o-linear-gradient(
      to right,
      #21e8e5,
      #102e9a
    ); /* Opera 11.1-12 */
    background: -ms-linear-gradient(to right, #21e8e5, #102e9a); /* IE 10 */

    /* For IE 6-9 */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#21e8e5', endColorstr='#102e9a',GradientType=1);
  }
  .navbar-mobile {
    background: transparent !important;
  }
  .Support-box-img img {
    margin-top: 0px;
    position: relative !important;
  }
  .Support-box-text {
    padding: 30px;
  }
  .Support-box-h2 {
    font-size: 22px;
    line-height: 27px;
  }
  .Support-box-p {
    font-size: 15px;
    line-height: 18px;
  }
  .Support-box-img img {
    width: 100% !important;
  }
  .Support-boxBtn {
    padding-bottom: 10px;
  }
  .heading-h2 {
    font-size: 28px;
    line-height: 30px;
  }
  .selectinfo {
    margin-bottom: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
  }
  /* .selectinfobox img {
    width: 20%;
  } */
  /* .elementor-icon img {
    max-width: 20%;
  } */
  .footer-logo img {
    max-width: 85px;
    margin-bottom: 25px;
  }
  #footer .social-links {
    display: flex;
  }
  #footer .social-links .footerlink {
    padding-bottom: 0px;
    padding-top: 6px;
    padding-right: 10px;
  }
  section {
    padding: 30px 0px !important;
  }
  #Support {
    padding-top: 0px !important;
  }
  .feature-box .feature-box-wrap {
    transform: translateY(-30px);
  }
  .elementor-button-wrapper {
    opacity: 1;
  }
  .feature-box .elementor-button-wrapper {
    transform: translateY(-8px);
    opacity: 1;
  }
}

@media only screen and (max-width: 500px) {
  .copyright {
    font-size: 13px;
    padding: 0px 30px;
  }
  #hero {
    height: 540px;
  }
  .solutionbox .col-sm-6 {
    width: 100% !important;
  }
  .feature-box {
    margin: 0px!important;
    width: 100% !important;
    margin-bottom: 20px !important;

  }


}


.whatsapp-draggable {
  position: fixed; /* Remains fixed on the page */
  bottom: 8px;
  right: 60px;
  z-index: 1000;
  cursor: grab; /* Indicates draggable element */
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
}
#hero
.owl-dots{
position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-right: 15%;
    margin-bottom: 1rem;
    margin-left: 15%;
}
.feature-box
.elementor-button{
background-color:transparent !important;
}

.feature-box:hover .elementor-button-wrapper a,
.feature-box .elementor-button-wrapper a{
  padding: 0px !important;
}
/* @media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1140px;
    }
    .elementor-540 .elementor-element.elementor-element-e3612e9.e-con{
       max-width: 1140px;
    }

} */

/* #hero #heroCarousel {
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 82px;
    left: 50px;
    right: 50px;
} */
#heroCarousel {
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 82px;
 
}

@media (min-width: 768px) {
    .elementor-540 .elementor-element.elementor-element-e3612e9 {
        --width: 100%;
    }
}


  .custom-slide {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            padding: 40px;
            background: #f9f9f9;
            border-radius: 12px;
            min-height: 350px;
        }

        .custom-slide .text {
            flex: 1;
            animation: slideInLeft 1s ease forwards;
            opacity: 0;
        }

        .owl-item.active .custom-slide .text {
            opacity: 1;
        }

        .custom-slide .text h2 {
            font-size: 28px;
            margin-bottom: 15px;
        }

        .custom-slide .text p {
            font-size: 18px;
            color: #555;
        }

        .custom-slide .image {
            flex: 1;
            text-align: center;
        }

        .custom-slide .image img {
            max-width: 100%;
            border-radius: 12px;
        }

        @keyframes slideInLeft {
            from {
                transform: translateX(-40px);
                opacity: 0;
            }

            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        .elementor-element.elementor-element-7202983.e-flexe-con-boxed.e-con.e-parent.e-lazyloaded{
margin: 0px 0px 0px 0px !important;
padding: 0px 0px 0px 0px !important;
width: 100% !important;
max-width: 100% !important;
        }
        .elementor-element-7202983 .e-con-inner,
        .elementor-element-550ddd2 .e-con-inner{
margin: 0px 0px 0px 0px !important;
padding: 0px 0px 0px 0px !important;
width: 100% !important;
max-width: 100% !important;
        }
        .elementor-element-7202983,
        .elementor-element-550ddd2 {
margin: 0px 0px 0px 0px !important;
padding: 0px 0px 0px 0px !important;
width: 100% !important;
max-width: 100% !important;
        }
       
 .delayedDiv {
        opacity: 0.5;
  animation: fadeIn 1s ease forwards !important;
  animation-delay: 2s !important;
    }
#heroCarousel .owl-item .container
    .delayedDiv.show {
      opacity: 1 !important;
    }
    .delayedDiv{

    }

    .delayed-box {
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  animation-delay: 2s;
}

/* Fade-in animation */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}


    .owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot
#hero .owl-carousel .owl-nav{
  width: 100%;

}
#hero .owl-carousel .owl-nav button.owl-prev{
 position: absolute;
 left: 30px;
 top:35%;
     font-size: 30px;
    line-height: 0;
    color: rgba(255, 255, 255, 0.5);
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    transition: 0.3s;
}
#hero .owl-carousel .owl-nav button.owl-next{
position: absolute;
 right: 30px;

 font-size: 30px;
    line-height: 0;
    color: rgba(255, 255, 255, 0.5);
 top:35%;
  width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    transition: 0.3s;
}
.ast-site-identity{
  padding: 10px !important;
}
        /* #heroCarousel .owl-item .container .hero-txt,
        #heroCarousel .owl-item .container .hero-txtimg
        {
display: none;
        } */


body.inner-page header{

    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    background-image: linear-gradient(110deg, #21e8e5 0%, #102e9a 100%);
    background: linear-gradient(to right, #21e8e5, #102e9a);
    background: -webkit-linear-gradient( to right, #21e8e5, #102e9a );
    background: -moz-linear-gradient( to right, #21e8e5, #102e9a );
    background: -o-linear-gradient( to right, #21e8e5, #102e9a );
    background: -ms-linear-gradient(to right, #21e8e5, #102e9a);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#21e8e5', endColorstr='#102e9a',GradientType=1);
 
}
.wpforms-submit{
  margin: 25px 10px 21px 10px;
  border: 1px solid #ccc;
  background-color: #fff;
  border-radius: 5px;
  padding: 5px 40px;
  background-image: linear-gradient(110deg, #21e8e5 0%, #102e9a 100%);
  color: #fff;
font-weight: 400 !important;
text-transform: capitalize !important;
}

.wpforms-submit:hover {
  background-image: linear-gradient(110deg, #102e9a 0%, #21e8e5 100%);
  color: #fff;
}
.gettouch .wpforms-field input,.gettouch .wpforms-field textarea{
font-size: 14px !important;
}
.gettouch .wpforms-field .wpforms-submit{
font-size: 14px !important;
}


.custom-form-set{
text-align: left !important;
}
.custom-form-set label{
font-size: 13px;
margin-bottom: 5px;
}
.custom-form-set input,
.custom-form-set textarea,
.custom-form-set select{
font-size: 13px;
}
.custom-form-set
.form-radio-set{
      margin-top: -20px;
}
.custom-form-set
.wpcf7-list-item.first{
margin-left: 0px !important;
}

.custom-form-set
.wpcf7-submit{
  margin: 25px 10px 21px 10px;
  border: 1px solid #ccc;
  background-color: #fff;
  border-radius: 5px;
  padding: 5px 40px;
  background-image: linear-gradient(110deg, #21e8e5 0%, #102e9a 100%);
  color: #fff;
font-weight: 400 !important;
text-transform: capitalize !important;
font-size: 16px;
    padding: 10px 30px;
}

.custom-form-set
.wpcf7-submit:hover {
  background-image: linear-gradient(110deg, #102e9a 0%, #21e8e5 100%);
  color: #fff;
}





.contactform{
text-align: left !important;
}
.contactform label{
font-size: 13px;
margin-bottom: 5px;
}
.contactform input,
.contactform textarea,
.contactform select{
font-size: 13px;
}
.contactform
.form-radio-set{
      margin-top: -20px;
}
.contactform
.wpcf7-list-item.first{
margin-left: 0px !important;
}

.contactform
.wpcf7-submit{
  margin: 25px 10px 21px 10px;
  border: 1px solid #ccc;
  background-color: #fff;
  border-radius: 5px;
  padding: 5px 40px;
  background-image: linear-gradient(110deg, #21e8e5 0%, #102e9a 100%);
  color: #fff;
font-weight: 400 !important;
text-transform: capitalize !important;
font-size: 16px;
    padding: 10px 30px;
}

.contactform
.wpcf7-submit:hover {
  background-image: linear-gradient(110deg, #102e9a 0%, #21e8e5 100%);
  color: #fff;
}
.ast-desktop .ast-primary-header-bar .main-header-menu > .menu-item{
      line-height: 46px;
}
.ast-builder-menu-1 .main-header-menu > .menu-item > .sub-menu{
  background-image: linear-gradient(110deg, #1883bc 0%, #102e9a 100%);
    background: linear-gradient(to right, #1883bc, #102e9a);
    background: -webkit-linear-gradient( to right, #1883bc, #102e9a );
    border-radius: 0px 0px 5px 5px;
    border-color: #1886bd!important;
}


.feature-card {
            background: white;
            padding: 25px 25px 10px 25px;
            border-radius: 20px;
            box-shadow:0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); 
            border: 1px solid #ccc;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        min-height: 340px;
            margin-bottom: 20px;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(
    to right top,

    #20e6e4,
    #007bbb,
    #0b3ca0
  );
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 18px 0 rgb(43 59 93 / 20%);
            
          }

        .feature-icon {
            width: 50px;
            height: 50px;
            border-radius: 20px;
      background: linear-gradient(
    to right top,

    #20e6e4,
    #007bbb,
    #0b3ca0
  );
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: white;
            font-size: 2rem;
        }
.feature-icon i{
  font-size: 24px;
}
        .feature-card h3 {
            font-size: 24px;
            font-weight: 700;
            color:  #2d3748;
            margin-bottom: 1rem;
        }

        .feature-card p {
            color:  #2d3748;
             font-size: 14px;
             margin-bottom: 0px;
        }

       #hero.cardshadow h2{
text-shadow: -1px 2px 10px rgba(0,0,0,0.2);
       }
       #hero.cardshadow p{
text-shadow: -1px 2px 10px rgba(0,0,0,0.2);
       }


        /* Image-based sections */
        .image-showcase {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin: 0 0;
            padding: 30px;
            border-radius: 30px;
            background: linear-gradient(135deg,  rgba(32, 230, 228, 0.7) 0%, rgba(0, 123, 187, 0.7) 100%),
                        url('../images/1.avif') center/cover;
                                    /* background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.9) 100%),
                        url('../images/1.avif') center/cover; */

            box-shadow: 0 10px 18px 0 rgb(43 59 93 / 20%);
        }

        /* .image-showcase.reverse {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.9) 100%),
          
                        url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover;
            direction: rtl;
        } */

        .image-showcase.reverse > * {
            direction: ltr;
        }

        .showcase-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: var(--shadow-lg);
            transition: all 0.3s ease;
        }

        .showcase-image:hover {
            transform: scale(1.05);
            box-shadow: var(--shadow-xl);
        }

        .showcase-content {
            background: rgba(255, 255, 255, 1);
            padding: 2rem;
            border-radius: 20px;
            backdrop-filter: blur(10px);
        }

        .showcase-content h3 {
            font-size: 2rem;
            font-weight: 700;
      
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
                color: #102e9a;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    background-image: linear-gradient(110deg, #102e9a 0%, #21e8e5 100%);
        }

        .showcase-content h3 i {
            color: #ff6b6b;
            font-size: 1.75rem;
        }

        .showcase-content p {
            font-size: 1.1rem;
            color: var(--text-secondary);
            line-height: 1.7;
        }
        .image-showcase img{
          border-radius: 20px;
            box-shadow: 0 10px 18px 0 rgb(43 59 93 / 20%);
        }
.m-0{
  margin: 0px;
}
.col-md2-seNew1 h3{
           font-size: 16px;
    }

     .feature-box {
      background: #fff;
      border-radius: 16px;
      padding: 20px;
      width: 220px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      text-align: center;
      transition: transform 0.3s ease;
    }

    .feature-box:hover {
      transform: translateY(-5px);
    }

    .feature-box i {
      font-size: 36px;
      color: #fb6107;
      margin-bottom: 15px;
    }

    .feature-title {
      font-size: 16px;
      font-weight: bold;
      color: #333;
    }
.col-md2-seNew1 h3 {
    -webkit-text-fill-color: initial;
    background-clip: text;
    -webkit-background-clip: initial;
    background-image: none;
    font-weight: 500 !important;
    color: #2d3748;
    font-weight: normal;
    font-size: 14px;
        font-family: 'Open Sans', sans-serif;
}
.col-md2-seNew1 i{
  font-size: 35px;
    line-height: 60px;
    color: #102e9a;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    background-image: linear-gradient(110deg, #102e9a 0%, #21e8e5 100%);
    text-align: center;

}

.cta-section {
            color: white;
            border-radius: 30px;
            padding: 4rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-content {
            position: relative;
            z-index: 1;
        }

        .cta-section h2 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            color: #fff;
        }

        .cta-section p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    line-height: 25px;
    margin-top: 11px;
}

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }


       .btn-n1 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 7px 20px;
    border-radius: 7px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

        .btn-primary-n1 {
            background: white;
            color: #198ec0;
            box-shadow: var(--shadow-lg);
        }

        .btn-primary-n1:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-xl);
        }

        .btn-secondary-n1 {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
        }

        .btn-secondary-n1:hover {
            background: rgba(255, 255, 255, 1);
            border-color: rgba(255, 255, 255, 0.5);
             color: #198ec0;
        }



         .cta-new {
     background-color: #e9e9e9;
    padding: 40px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: -20px !important;
    }
    .cta-new h2 {
      font-size: 1.5rem;
      margin-bottom: 15px;
    }
    .cta-new p {
      margin-bottom: 25px;
      font-size: 1rem;
    }
    .cta-new button {
      padding: 12px 25px;
      font-size: 1rem;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      margin: 0 10px; 


    background-image: linear-gradient(110deg, #21e8e5 0%, #102e9a 100%);
    color: #fff;
    font-weight: 400 !important;
    text-transform: capitalize !important;


    }
    .cta-new button:hover{
      background-image: linear-gradient(110deg, #102e9a 0%, #21e8e5 100%);
    }
    .cta-new a {
      padding: 12px 25px;
      font-size: 1rem;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      margin: 0 10px; 


    background-image: linear-gradient(110deg, #21e8e5 0%, #102e9a 100%);
    color: #fff;
    font-weight: 400 !important;
    text-transform: capitalize !important;


    }
    .cta-new a:hover{
      background-image: linear-gradient(110deg, #102e9a 0%, #21e8e5 100%);
    }
    .cta-new .demo {
      background-color: #007bff;
      color: #fff;
    }
    .cta-new .trial {
      background-color: #28a745;
      color: #fff;
    }
.cta-new .heading-h2{
font-size: 40px;
}

/* ---------- Testimonials ---------- */
   blockquote {
      background-color: #fff;
      border: 1px solid #f0f0f0;
      border-left:5px solid #03A9F4;
      padding: 22px 25px;
      border-radius: 10px;
      font-style: italic;
      margin-bottom: 25px;
      position: relative;
          box-shadow: 0 10px 18px 0 rgb(43 59 93 / 20%);
          width: 700px;
          margin: 0 auto;
    }
    /* blockquote::before {
    
      font-weight: 900;
      position: absolute;
      top: -12px;
      left: 15px;
      font-size: 1.3rem;
      color: #ff5a1f;
    } */

.product-from-main{
  margin: 0 auto;
    max-width: 500px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 30px;
    padding-top: 30px;
}
.product-from-main input,
.product-from-main textarea
{
      width: 100%;
    padding: 8px 10px !important;
    font-size: 14px;
}
.product-from-main label{
  display: block;
  font-size: 14px;

}
.product-from-main textarea{
  max-height: 80px;
}
.product-from-main .p-set1 p {
    margin-bottom: 0px;
    text-align: center;
}
.product-from-main .p-set1 .wpcf7-submit {
    padding: 12px 25px !important;
    font-size: 1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin: 0 10px;
    background-image: linear-gradient(110deg, #21e8e5 0%, #102e9a 100%);
    color: #fff;
    font-weight: 400 !important;
    text-transform: capitalize !important;
    max-width: 130px;
    margin: 0 auto;
}
.product-from-main .p-set1
.wpcf7-submit:hover{
      background-image: linear-gradient(110deg, #102e9a 0%, #21e8e5 100%);
    }
    .product-from-main .p-set1
.wpcf7-spinner{
display: block;
}
  #indiaDiv, #intlDiv {
      display: none;
      padding: 20px;
      border: 1px solid #ccc;
      margin-top: 10px;
    }
    .max-width200{
      max-width: 300px !important;
    }
    .slider-h2View {
    text-shadow: -1px 2px 10px rgba(0, 0, 0, 0.2);
        font-size: 30px;
        color: #fff !important;
}
   #horizontal-slider.owl-carousel .item {
     padding-left: 4px;
     padding-right: 4px;
     padding-bottom: 0px ;
    }
    .product-1pb{
      padding-bottom: 10px !important;
    }
    .slider-btn{
color: #23b5c7;
    padding: 3px 20px;
    background: #fff;
    border-radius: 7px;
    margin: 10px 0px;
    display: inline-block;
    font-size: 13px;
    cursor: pointer;
    }
    .pageheading h3.sliderh3 {
   font-size: 33px;
    line-height: 36px;
    color: #102e9a;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    background-image: linear-gradient(110deg, #102e9a 0%, #21e8e5 100%);
    text-align: center;
}
.elementor-element.elementor-element-6360fd2{
padding: 0px;
margin: 0px;
}
.elementor-element.elementor-element-6360fd2
.e-con-inner{
padding: 0px;
margin: 0px;
max-width: 100%;
}
.pb-0{
  padding-bottom: 0px !important;
}
.bottomSet1{
  margin-bottom: -20px !important;
}
#horizontal-slider .feature-card{
padding: 0px;
}
.slider-top-absolute{
position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding:30px 20px;}

.slider-top-absolute h3{
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #102e9a;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    background-image: linear-gradient(110deg, #102e9a 0%, #2e9593 100%);
}
.slider-top-absolute p{
   font-size: 20px;
}
#horizontal-slider
.feature-card{
  border: 0px ;
}
.testimonial-card{
  display: flex;
}
.testimonial-card-img {
  width: 30%;
    max-width:200px;
    height: 200px;    
}

.testimonial-card-img img{
  width: 100%;
   border-radius: 20px;
}
.testimonial-card-text{
 width: 70%;
    padding-left: 30px;
}
.contactpage br{
  margin: 0px;
  height: 0px;
  line-height: 0px;

}


/* upastithi */
.btn-get-new{
  color: #68D585;  
}
.btn-get-new:hover{
 color: #4caf50;  
}
.owl-carousel .owl-item img.max-widthSeUP{
  max-width: 45px;
}
.section-client{
  padding: 20px 0px;
}
.elementor-1581 .elementor-element.elementor-element-45af4d8{
 background-color: #F5F5F5; 
}
.section-client{
  background-color: #F5F5F5; 
}
.campaigns-box{
  display: flex;
}
.campaigns-box-img{
max-width: 50px;
}
.campaigns-box-img img{
width: 100%;
}
.campaigns-box-text h2{
 font-size: 20px;
    color: #161C2D;
    margin-bottom: 10px;
}
.campaigns-box-text p{
  font-size: 17px;
  color: #161C2D;
}
.section-campaigns,
.section-product{
 background-color: #F5F5F5; 
}
.page-product-text h2{
    font-size: 36px;
  color: #161C2D;
}
.page-product-text p{
    font-size: 17px;
  color: #161C2D;
}
.setMpview1{
  margin-bottom: 30px;
}
.sect-info{
  padding: 0px;
  background-color: #F5F5F5; 
  margin: 0px;
}
.sect-info p {
    padding: 30px 0px;
    background-color: #F5F5F5;
    margin: 0px;
    font-size: 23px;
    text-align: center;
    color: #161c2d;
}

.Get-in-touchText{font-size: 20px;margin-top: -10px;color: #000;font-weight: 600;}
.heading-h4{
   font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;  
    align-items: center;
    gap: 0.75rem;
  color: #161C2D;
    text-align: center;
}

#OurTeam .card {
    width: 240px;
    background: transparent;
    padding: 15px;
    border-radius: var(--br);
    transition: 0.5s;
    border: 0px solid #fff;
    text-align: center;
    margin:0px 30px;
}
#OurTeam
.card:hover img {
  box-shadow: 0px 3px 10px 5px #e9e9e9;
}
#OurTeam
.card img {
  max-width: 100%;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  border: 4px solid var(--bc, #000);
}
#OurTeam
h1 {
font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
  text-align: center;
    align-items: center;
    gap: 0.75rem;
    color: #161C2D;
}
#OurTeam
h2 {
  font-size: 20px;
  margin: 15px 0 5px;
}
#OurTeam
.card .role {
  font-size: 80%;
  color: #444;
  margin-bottom: 0px;
}
#OurTeam
.card a {
  background: var(--btn, #000);
  color: #fff;
  padding: 10px 15px;
  width: 100%;
  display: block;
  border-radius: var(--br);
  text-decoration: none;
  margin-top: 15px;
}
.bg-upsati{
  background-color: #F5F5F5 !important;
}
.pt30{
  padding-top: 30px;
}
.m-b-30{
  margin-bottom: 30px;
}
.testimonial-bg{
  background-color: #F5F5F5 !important; 
}
.bg-upsati .image-showcase{

            background: linear-gradient(135deg,  rgba(22, 28, 45, 0.7) 0%, rgba(0, 123, 187, 0.7) 100%),
                        url('../images/2.avif') center/cover;    
                                       


}
@media (max-width: 767px) {
  #OurTeam .card img {
    max-width: 50%;
    margin: 0 auto;}
  #OurTeam
  .row {
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px;
  }
#OurTeam
  .card {
    flex: 0 0 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}

@media (max-width: 420px) {
  #OurTeam
  .card {
    flex: 0 0 calc(100% - 20px);
    max-width: calc(100% - 20px);
  }
}


@media (min-width: 768px) {
  .page-product-text{
    padding: 0px 20px;
  }
    .col-md2-seNew1 {
               width: 20%;
    }
}

@media (min-width: 922px) {
    .ast-container {
        max-width: 100%;
    }
}


.elementor-1511 .elementor-element.elementor-element-2f6b61e .e-con-inner{
    max-width: 95%;
    margin: 0 auto;
}


@media (max-width: 922px) {
.site-logo-img img{
    max-width: 60px !important;
      max-height: 60px !important;
}
.ast-theme-transparent-header [data-section="section-header-mobile-trigger"] .ast-button-wrap .ast-mobile-menu-trigger-fill{
  background: transparent !important;
}


.ast-builder-menu-1 .main-header-menu > .menu-item > .sub-menu{
           background-color: transparent !important;
        background: transparent !important;
}

}