/**Bootstrap v5.3.1*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
/*  font-family: "Open Sans", sans-serif; */
  font-family: "Roboto", sans-serif;
  color: #444444;
}

a {
  color: #0176D3;
  text-decoration: none;
}

a:hover {
  color: #032D60;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", 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 #0176D3;
  border-top-color: #1C315E;
  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: #0176D3;
  /* border: 1px solid white; */
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #1C315E;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  /* height: 90px; */
  height: 70px;
}

/* #header.header-transparent {
  //background: transparent;
} */

#header.header-scrolled {
  background: #fff;
  height: 70px;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.3);
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
}

#header .logo h1 a,
#header .logo h1 a:hover {
/*  color: #fff;*/
  color:#032D60;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 60px;
  /* border: 2px solid #032D60;
  border-radius: 50%; 
  width: 60px;*/
}

@media (max-width: 600px) {
 .logo img{
   height: 60px;
  }
}
@media (max-width: 350px) {
  .logo img{
    height: 60px;
   }
   span{
     font-size: 15px;
   }
 }
#header .social-links {
  margin: 0 0 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#header .social-links a {
  color: #032D60;
  transition: 0.3s;
  line-height: 0;
  margin-left: 15px;
}

#header .social-links a i {
  line-height: 0;
}

#header .social-links a:hover {
  color: #0176D3;
}

@media (max-width: 992px) {
  #header .social-links {
    margin: 0 15px 0 0;
  }
}

@media (max-width: 992px) {
  #header .logo {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# 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 0 10px 24px;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  color:#032D60;
  white-space: nowrap;
  transition: 0.3s;
}

.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: #0176D3;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 24px;
  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;
  font-weight: 400;
}

.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: #0176D3;
}

.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: #032D60;
  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(45, 43, 70, 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: 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: #032D60;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #0176D3;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul,
.navbar-mobile .dropdown .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,
.navbar-mobile .dropdown .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a,
.navbar-mobile .dropdown .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i,
.navbar-mobile .dropdown .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,
.navbar-mobile .dropdown .dropdown ul a:hover,
.navbar-mobile .dropdown .dropdown ul .active:hover,
.navbar-mobile .dropdown .dropdown ul li:hover>a {
  color: #1bb1dc;
}

.navbar-mobile .dropdown>.dropdown-active,
.navbar-mobile .dropdown .dropdown>.dropdown-active {
  display: block;
}


/**** Media Queries Start ***/
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {}
/**** Media Queries End ***/

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/* #hero {
  width: 100%;
  // background: url("../img/intro-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;//
  position: relative;
  padding: 85px 0 0 0;
}
#hero:before {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
} */

#hero { 
    position: relative; 
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(36, 35, 35);
    /*20% of Grey rgb(51,51,51) */
    padding: 120px 0 0 0;
    }
    #hero::before {  
        content: "";
        background-image: url('../img/hero_back.webp');
        background-size: cover;
        position: absolute;
        top: 0px;
        right: 0px;
        bottom: 0px;
        left: 0px;
        opacity: 0.2;
  }

#hero h1 {
/*  margin: 0 0 10px 0;*/
/*  font-size: 48px;*/
  font-weight: 700;
  line-height: 46px;
  color:#fff;
/*  color: rgba(255, 255, 255);*/
  /* color: rgba(255, 255, 255, 0.8); */
  text-align: center;
}

#hero h1 span {
  color: #fff;
  border-bottom: 4px solid #56C3BA;
}

#hero h2 {
  color:#fff;
/*  color: rgba(255, 255, 255);*/
  /* color: rgba(255, 255, 255, 0.8); */
  margin-bottom: 30px;
  font-size: 24px;
  text-align: center;
  line-height: 1.5;
}

#hero .btn-get-started {
/*  font-family: "Montserrat", sans-serif; */
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  background: #56C3BA;
  margin: 3px;
}

#hero .btn-get-started:hover {
  background: #17b57d;
}

#hero .btn-watch-video {
/*  font-family: "Montserrat", sans-serif; */
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 20px;
  transition: 0.5s;
  color: #fff;
  background:rgb(1,118,211);
  margin: 5px;
  border: 2px solid rgb(1,118,211);
  border-radius: 4px;
  width: 175px;
}

#hero .btn-watch-video:hover {
  background: rgb(3,45,96);
  border: 2px solid rgb(3,45,96);
  color: #fff;
}

#hero .btn-register {
/*  font-family: "Montserrat", sans-serif; */
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 20px;
  transition: 0.5s;
  color: #0176D3;
  background: #fff;
  /* background: transparent; */
  margin: 5px;
  border: 2px solid #0176D3;
  border-radius: 4px;
  width: 175px;
}

#hero .btn-register:hover {
  background: #EAF5FE;
  border: 2px solid #032D60;
  color: #032D60;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}
#hero .hero-img img {
    height: 550px;
    /* background-color:#56C3BA;
    box-shadow: 12px 5px 0px white;
    border-radius:4px;*/
  }

@media (max-width: 991px) {
  #hero {
    padding-top: 60px;
  }
  #hero .animated {
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    max-width: 50%;
    height: 100%;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 10px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 15px;
  }
}
/*#hero .hero-img img{
  height: 450px;
  width: 80%;
}*/
@media (max-width: 575px) {
  /* #hero .hero-img img {
    //height: 300px;
    //height: 40vh;
    //width: 80%;
  } */
  #hero h1 {
    font-size: 23px;
  }

  #hero h2 {
    font-size: 16px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

.hero-waves {
  display: block;
  margin-top: 20px;
  width: 100%;
  height: 60px;
  z-index: 5;
  position: relative;
}

.wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
}

.wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
}

.wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 50px 0;
  overflow: hidden;
}
@media only screen and (max-width: 600px) {
  #sec {
  padding: 10px;
}
}
.section-bg {
  background-color: #f5f8fd;
}

.section-title {
  padding-bottom: 30px;
}

.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: #0176D3;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
/*  font-family: "Poppins", sans-serif; */
  color: #1C315E;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #fafaff;
  min-height: 40px;
  margin-top: 80px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 64px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 400;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 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: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# About  Old
---------------------
.about {
  padding: 40px;
}

.about .icon-boxes h3 {
  font-size: 28px;
  font-weight: 700;
  color: #1C315E;
  margin-bottom: 1px;
}

.about .icon-box {
  margin-top: 18px;
  border-radius: 50px;
 background-color: #032D60;
  border-bottom: 3px solid ghostwhite;
  box-shadow: 0px 3px 3px 0px #a2a9ab;
}

.about .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  transition: 0.5s;
  margin: 10px;
}

.about .icon-box .icon i {
  color: #56C3BA;
  font-size: 32px;
}

.about .icon-box .title {
  margin: 5px;
  margin-left: 65px;
  font-weight: bold;
  font-size: 17px;
  padding-bottom: 5px;
  line-height: 22px;
  padding-right: 10px;
  text-align: center;
  color: white;
  padding: 10px;
}

#about .about-img img {
  width: 100%;
  border: 2px solid #fff;
  transition: 0.5s;
  height: 320px;
}

@media (max-width: 768px) 
{
  .about .icon-box .title {
    font-size: 15px;
    padding: 12px 10px 0px 0px;
  }
  #about .about-img img {
    height: 100%;
  }
}

.about .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
}

.about .icon-box .title a:hover {
  color: #56C3BA;
}

.about .icon-box .description {
  margin-left: 85px;
  line-height: 22px;
  font-size: 14px;
}

#about .about-img {
  position: relative;
  margin: 20px 20px 20px 20px;
}

#about .about-img img:hover {
  width: 100%;
  transform: scale(1.03);
}

#about .about-img::before {
  position: absolute;
  left: -21px;
  top: -20px;
  width: 80%;
  height: 82%;
  z-index: -1;
  content: "";
  background-color: #ebf1fa;
  transition: 0.5s;
}

#about .about-img::after {
  position: absolute;
  right: -21px;
  bottom: -20px;
  width: 80%;
  height: 82%;
  z-index: -1;
  content: "";
  background-color: #ebf1fa;
  transition: 0.5s;
} */

/*--------------------------------------------------------------
# About New
--------------------------------------------------------------*/
.about {
  padding: 40px 0 0 0;
}

.about .icon-boxes h3 {
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  color: #1C315E;
  margin-bottom: 15px;
}

.about .icon-box {
  margin-top: 40px;
}

.about .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid #0176D3;
  border-radius: 50px;
  transition: 0.5s;
}

.about .icon-box .icon i {
  color: #0176D3;
  font-size: 32px;
}

.about .icon-box:hover .icon {
  background: #0176D3;
  border-color: #0176D3;
}

.about .icon-box:hover .icon i {
  color: #fff;
}

.about .icon-box .title {
  margin-left: 85px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.about .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
}

.about .icon-box .title a:hover {
  color: #0176D3;
}

.about .icon-box .description {
  margin-left: 85px;
  line-height: 24px;
  font-size: 15px;
}

.about .video-box {
  background: url("../img/about.webp") center center no-repeat;
  background-size: contain;
  min-height: 300px;
  position: relative;
}

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#3f43fd 50%, rgba(63, 67, 253, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.about .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);
}

.about .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(63, 67, 253, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.about .play-btn:hover::after {
  border-left: 15px solid #3f43fd;
  transform: scale(20);
}

.about .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;
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}


/* Value Proposition Section
--------------------------------*/
#valueP {
  padding: 100px 0 100px 0;
}

#valueP img{
  height:170px;
}
/* .titleText{
  //font-size: 22px;
} */

#valueP .box {
  padding: 25px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 0px 0 rgb(0 0 0 / 20%), 0 6px 10px 0 rgb(0 0 0 / 20%);
/*  background: #fff; */
/*  box-shadow: 0 20px 39px 20px rgba(68, 88, 144, 0.1); */
/*  text-align: center; */
  height: 100%;
  background-image: url('../img/update_cardback.webp');
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border-radius: 30px;
}

.backimg{
  background-image: url('../img/b1.webp');
  background-repeat: no-repeat;
  background-size: 85% 60%;
  border-radius: 20px;
}

#valueP .icon {
  margin: 0 auto 15px auto;
  padding-top: 12px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  width: 60px;
  height: 60px;
}

#valueP .icon i {
  font-size: 36px;
  line-height: 0;
}

#valueP .title {
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 10px;
  font-size: 18px;
  text-align: center;
}

#valueP .title a {
  color: #fff;
}

#valueP .description {
/*  font-weight: 700; */
  font-size: 15px;
  line-height: 22px;
  margin-bottom: 0;
  text-align: center;
  color: #fff;
}

.valuePflexcardNumber {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  color: white;
  text-shadow: 0px 3px 3px black;
  font-weight: 500;
  font-size: 20px;
  position: relative;
}

.valuePflexcardNumberColor {
  background: #1C315E;
}

.valuePflexcardNumberColor:before {
  background: #1C315E;
}

.valuePflexcardNumberColor:after {
  background: #1C315E;
}


/* Services Section
--------------------------------*/
#services {
  padding: 60px 0 40px 0;
}

#services .box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
  text-align: center;
  height: 100%;
}

#services .box:hover {
  transform: scale(1.1);
}

#services .icon {
  margin: 0 auto 15px auto;
/*  padding-top: 12px; */
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  padding: 10px;
  background-color: #EAF5FE;
}

#services .icon i {
  font-size: 36px;
  line-height: 0;
}

#services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 15px;
}

#services .title a {
    color: #1C315E;
}

#services .box:hover .title a {
  color: #0176D3;
}

#services .description {
  font-size: 12px;
  line-height: 28px;
  margin-bottom: 0;
  text-align: left;
}


/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .icon-box {
  display: flex;
  align-items: center;
  padding: 20px;
  /* background: #f5f5ff; */
  transition: ease-in-out 0.3s;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.features .icon-box i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 1;
}

.features .icon-box h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}

.features .icon-box h3 a {
  color: #303151;
  transition: ease-in-out 0.3s;
}

.features .icon-box h3 a:hover {
  color: #1C315E;
}

.features .icon-box:hover {
  background: #ebebff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  background: #f5f5ff;
  padding: 70px 0 60px;
}

.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: #fff;
}

.counts .count-box i {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  background: #56C3BA;
  padding: 12px;
  color: #fff;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  width: 48px;
  height: 48px;
}

.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #1C315E;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
/*  font-family: "Montserrat", sans-serif; */
  font-size: 14px;
}

/*--------------------------------------------------------------
# Details
--------------------------------------------------------------*/
.details .content+.content {
  margin-top: 80px;
  margin-left: 8px;
  margin-right: 8px;
}

.details .content h3 {
  font-weight: 600;
  font-size: 26px;
  color: #1C315E;
}

.details .content ul {
  list-style: none;
  padding: 0;
}

.details .content ul li {
  padding-bottom: 10px;
}

.details .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #0176D3;
}

.details .detail-box{
  box-shadow: 0px 0px 20px rgba(3, 45, 96, 0.2);
  border-radius: 10px;
  padding: 50px;
  margin-bottom: 20px;
}

.imgPlay{
  height: 80px;
}

.details .content p:last-child {
  margin-bottom: 0;
}

.details .about-img {
  position: relative;
  margin: 0px 0px 20px 0px;
}

.details .about-img img {
  width: 100%;
  /* border: 2px solid black; */
  /* background-color: rgb(193, 192, 192); */
  transition: 0.5s;
}

.details .about-img img:hover {
  width: 100%;
  transform: scale(1.03);
}

@media only screen and (max-width: 600px) {
  .details .detail-box{
    padding: 10px;
  }
}

/* .details .about-img::before {
  position: absolute;
  left: -21px;
  top: -20px;
  width: 80%;
  height: 82%; 
  z-index: -1;
  content: "";
  background-color: #ebf1fa;
  transition: 0.5s;
}

.details .about-img::after {
  position: absolute;
  right: -21px;
  bottom: -20px;
  width: 80%;
  height: 82%; 
  z-index: -1;
  content: "";
  background-color: #ebf1fa;
  transition: 0.5s;
} */

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

/*-------------------------------------------------------------
 Testimonials Section
--------------------------------------------------------------*/
#testimonials {
  padding: 60px 0;
}

#testimonials .section-header {
  margin-bottom: 40px;
}

#testimonials .testimonials-carousel,
#testimonials .testimonials-slider {
  overflow: hidden;
}

@media (max-width: 767px) {
  #testimonials .testimonial-item {
    text-align: center;
  }
}

#testimonials .testimonial-item .testimonial-img {
  width: 120px;
  border-radius: 50%;
  border: 4px solid #fff;
  float: left;
}

@media (max-width: 767px) {
  #testimonials .testimonial-item .testimonial-img {
    float: none;
    margin: auto;
  }
}

#testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
  margin-left: 140px;
}

#testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0 0 15px 0;
  margin-left: 140px;
}

#testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 140px;
}

@media (min-width: 992px) {
  #testimonials .testimonial-item p {
    width: 80%;
  }
}

@media (max-width: 767px) {

  #testimonials .testimonial-item h3,
  #testimonials .testimonial-item h4,
  #testimonials .testimonial-item p {
    margin-left: 0;
  }
}

#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 #0176D3;
}

#testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #0176D3
}


/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  background: #fff;
}

.team .member {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.team .member .pic {
  border-radius: 4px;
  overflow: hidden;
}

.team .member img {
  transition: all ease-in-out 0.4s;
}

.team .member:hover img {
  transform: scale(1.1);
}

.team .member .member-info {
  position: absolute;
  bottom: -80px;
  left: 0px;
  right: 0px;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px 0;
  border-radius: 0 0 4px 4px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
  color: #1C315E;
  position: relative;
  padding-bottom: 10px;
}

.team .member h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #1C315E;
  bottom: 0;
  left: calc(50% - 25px);
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #1C315E;
}

.team .member .social {
  margin-top: 10px;
}

.team .member .social a {
  transition: color 0.3s;
  color: #1C315E;
}

.team .member .social a:hover {
  color: #56C3BA;
}

.team .member .social i {
  font-size: 16px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.pricing h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: #777777;
  background: #f8f8f8;
}

.pricing h4 {
  font-size: 36px;
  color: #56C3BA;
  font-weight: 600;
/*  font-family: "Poppins", sans-serif; */
  margin-bottom: 20px;
}

.pricing h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #444444;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing ul li {
  padding-bottom: 16px;
}

.pricing ul i {
  color: #56C3BA;
  font-size: 18px;
  padding-right: 4px;
}

.pricing ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #f8f8f8;
  text-align: center;
}

.pricing .btn-buy {
  background: #56C3BA;
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 50px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
/*  font-family: "Montserrat", sans-serif; */
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: #149f6e;
}

.pricing .featured h3 {
  color: #fff;
  background: #56C3BA;
}

.pricing .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #56C3BA;
  color: #fff;
}

/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li+li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
/*  font-family: "Poppins", sans-serif; */
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #0176D3;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #343a40;
}

.faq .faq-list a.collapsed:hover {
  color: #0176D3;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  color: #0176D3;
  float: left;
  width: 44px;
  height: 44px;
  background: #ececee;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  /* border: 1px solid #0176D3; */
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #1C315E;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #1C315E;
}

.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: #0176D3;
  color: #fff;
  /* border: 1px solid #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;
  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;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 20px;
  transition: 0.5s;
  color: #0176D3;
  background: transparent;
  margin: 5px;
  border: 2px solid #0176D3;
  border-radius: 4px;
  /* width: 150px; */
}

.contact .php-email-form button[type=submit]:hover {
  background: #EAF5FE;
  border: 2px solid #032D60;
  color: #032D60;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Mission
--------------------------------------------------------------*/
.mission{
  padding: 2px;
/*   font-family: "Poppins", sans-serif; */
}

.para{
  font-weight: 600;
  line-height: 1.5;
  padding-bottom: 20px;
}

/* .mission ol{
  background-color: rgb(250, 252, 253);
  border-radius: 20px;
} */

.missionList {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.missionList p{
  margin: 10px;
  padding-left: 25px;
}

.mission li{
  padding: 15px;
  /* background-color: rgb(246, 246, 246); */
  /* border-top: 5px solid rgb(114, 114, 179); */
  margin-bottom: 30px;
  box-shadow: 0px 2px 15px rgb(76, 76, 155, 0.2);
  counter-increment: step-counter;
  border-radius: 15px;
}

.mission li::before {
  content: counter(step-counter);
  margin-right: 5px;
  font-size: 80%;
  background-color: #1C315E;
  color: white;
  font-weight: bold;
  padding: 3px 8px;
  border-radius: 3px;
}

.mission li b{
  color: #1C315E;
  font-size: 18px;
}

.paraQues{
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 15px;
  background-color: #56C3BA;
  color: white;
  border-radius: 15px;
  font-size: 24px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
/* #footer {
  color: #fff;
  font-size: 14px;
  background: #111;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #1e1e1e;
} */

.comLink{
  color:#fff;
}

.comLink:hover{
  color:#0176D3;
}

#footer {
  color: #fff;
  font-size: 14px;
  background: #032D60;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #021e3f;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 22px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
  color: rgba(255, 255, 255, 0.7);
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  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: #0176D3;
  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: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #fff;
}

#footer .footer-newsletter {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px 0 0 4px;
  text-align: left;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -4px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #0176D3;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #032D60;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #fff;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  /* background: rgba(255, 255, 255, 0.08); */
  background-color: #0176D3;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #fff;
  color: #0176D3;
  text-decoration: none;
}

/***** VALUE PROPOSITION START **********/
/* #sec{
  padding: 50px;
} */
.flexbox {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: 100%;
  flex-wrap: wrap;
}

.flexcard {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 25%;
  align-items: baseline;
/*  height: 400px; */
   height: 350px;
/*  border-radius: 10px; */
/*  box-shadow: 0 0px 0px 0 rgb(0 0 0), 0 1px 10px 0 rgb(0 0 0 / 19%); */
/*  border: 1px solid black; */
   border-radius: 30px;
}

#flexcardIMG1 {
  background-image: url('../img/card1.webp');
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
#flexcardIMG2 {
  background-image: url('../img/card2.webp');
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
#flexcardIMG3 {
  background-image: url('../img/card3.webp');
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.flexcardNumber {
  width: 100%;
  display: flex;
/*  justify-content: center; */
  align-items: left;
  height: 50px;
/*  margin: 10px 0px; */
/*  border-radius: 0px 50px 50px 0px; */
  color: #1C315E;
/*  text-shadow: 0px 3px 3px black; */
  font-weight: 500;
  font-size: 20px;
  position: relative;
  padding-top: 30px;
  padding-left: 20px;
}

.flexcardTitle {
  /* text-transform: uppercase; */
  position: absolute;
  bottom: 88px;
  left: 0;
  font-size: 18px;
  font-weight: bold;
  color: #1C315E;
/*  text-shadow: 0px 3px 3pxrgb(122, 122, 182); */
  padding: 5px;
  color: white;
}

.flexcardText {
  position: absolute;
  bottom: 10px;
  left: 0;
  /* text-align: center; */
  font-weight: 500;
  font-size: 17px;
  padding: 10px;
  line-height: normal;
  color: white;
}

/*.flexcardNumber:before {
  content: '';
  width: 34px;
  height: 90px;
  position: absolute;
  left: -33px;
  top: 0px;
  border-radius: 50px 0px 0px 50px;
  z-index: -1;
  background: -moz-linear-gradient(bottom, #95B7A2, #AED2BC);
}

.flexcardNumber:after {
  content: '';
  width: 25px;
  height: 40px;
  position: absolute;
  left: -25px;
  bottom: -40px;
  border-radius: 50px 0px 0px 50px;
  z-index: -1;
}*/

.flex {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 1px auto;
  text-align: center;
  padding: 0px 10px 0px 10px;
}

img.flexcardimgItem {
  width: 70%;
}

/* flexcard COLOR */
/* .flexcardColor {
  background: #ffffff8c;
  box-shadow: 4px 8px 1px #1C315E;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.19);
} */

.flexcardNumberColor {
  background: #1C315E;
/* background: #FDFFFE;
  background: -webkit-linear-gradient(right, #FDFFFE, #1C315E);
  background: -moz-linear-gradient(right, #FDFFFE, #1C315E);
  background: linear-gradient(to left, #f1e9ff, #1C315E); */
/* box-shadow: 0px 2px 2px #1C315E; */
}

.flexcardNumberColor:before {
  background: #1C315E;
}

.flexcardNumberColor:after {
  background: #1C315E;
}

@media only screen and (max-width: 800px) {
  .flexcard {
    width: 35%;
    margin-top: 20px;
  }
  img.flexcardimgItem {
    width: 60%;
  }
}

@media only screen and (max-width: 500px) {
  .flexcard {
/*  width: 100%; */
    width: 90%;
  }
  .flexcardText {
    font-size: 17px;
  }
}

/***** VALUE PROPOSITION END **********/

/**** Know More Button Start ****/
#know_more{
  background-color: #56C3BA;
  color: #fff;
  width: 200px;
}
#know_more:hover{
  background-color: #1C315E;
  color: #fff;
  width: 200px;
}
/**** Know More Button End ****/

  .card {
    display: inline-block;
    margin: 40px;
    width: 220px;
    border: none;
  }
  @media only screen and (max-width: 500px) {
    .card {
    margin: 0px;
  }
  }
  /*@media only screen and (max-width: 500px) {
    .scrolling-wrapper {
      overflow-x: scroll;
      overflow-y: hidden;
      white-space: nowrap;
      }
    .card {
      margin:5px;
    }
  } */ 


/* Extra small devices (phones, 600px and down) */
/* @media only screen and (max-width: 900px) {
  .scrolling-wrapper {
     overflow-x: scroll;
     scroll-snap-type: x mandatory;
     overflow-y: hidden;
     white-space: nowrap;
    }
    .card {
      margin: 5px;
      scroll-snap-align: center;
    }
  }
  @media only screen and (max-width: 350px) {
    .card {
      width:200px;
      height:310px;
    }
  } */
  