
* {
    margin: 0;
    padding: 0;
    user-select: text;
    box-sizing: border-box;
    
    --blue: #fff;
    --dblack:#000;
    --dgreen:#009425;
    --dwhite:#fff;
    
    --lightGray: #808080;
    --darkGray: #3a3a3a;
    --bg: #ffffff;
    --light-bg: #e2f3ff;
    --orange-bg: #e2f3ff;
    --orange-bg: #f3f3f3;
    font-family: 'Nunito Sans', sans-serif;
   
}
@font-face {
  font-family: myFirstFont;
  src: url(../font/NunitoSans_7pt_Condensed-Bold.tff);
}
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #106eea;
  text-decoration: none!important;
}

a:hover {
  color: var(--blue);
  text-decoration: none!important;
}

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 #106eea;
  border-top-color: #e2eefd;
  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: var(--dgreen);
  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: var(--dblack);
  color: #fff;
}

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

.whatsapp{
    font-weight: 500;
    z-index: 99999;
   
    text-align: center;
    position: fixed;
    left: 15px;
    bottom: 15px;
    width: 90px;
    height: 90px;
    transition: all 0.4s;
    animation: blink 0.7s linear infinite;
}
.whatsapp img{
    width: 100%;  
}

@keyframes blink {
        0% {
          opacity: 0;

        }
        50% {
          opacity: .5;

        }
        100% {
          opacity: 1;
        }
      }



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

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: var(--dgreen);
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  color: #fff;
  padding: 0;
}

#topbar .contact-info i {
  font-style: normal;
  color: var(--blue);
}

#topbar .contact-info i a,
#topbar .contact-info i span {
  padding-left: 5px;
  color: var(--blue);
}

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

#topbar .contact-info i a:hover {
  color: #fff;
  text-decoration: underline;
}

#topbar .social-links a {
  color: var(--blue);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: var(--dwhite);
  transition: all 0.5s;
  z-index: 997;
  height: 85px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header.fixed-top {
  height: 80px;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 5px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.8px;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: #222222;
}

#header .logo a span {
  color: #106eea;
}

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

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

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
  font-family: 'Nunito Sans', sans-serif!important;
}

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

.navbar li {
  position: relative;
}

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

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 18px;
  font-weight: 600;
  color: green;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

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

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

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
    
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color:  var(--dblack)!important;
}


.navbar .dropdown ul {
    
  display: block;
  position: absolute;
  left: 28px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: white;
  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;
  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: #106eea;
}

.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: var(--dgreen);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: var(--dgreen);
}

@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(9, 9, 9, 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: var(--dwhite);
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: var(--dgreen);
}

.navbar-mobile>ul>li {
  padding: 0;
}

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

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: var(--blue);
}

.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: var(--blue);
}

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

--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------


.banner{
   
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 70vh;
    width: 100%;
    display: flex;
    align-items: center;
    padding-left: 80px;
}
.banner .slide{
    background-image: url(../img/diet-banner/1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 70vh;
    width: 100%;
    display: flex;
    align-items: center;
    padding-left: 80px;
}
.banner .slide1{
    background-image: url(../img/diet-banner/2.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 70vh;
    width: 100%;
    display: flex;
    align-items: center;
    padding-left: 80px;
}
.banner .slide2{
    background-image: url(../img/diet-banner/11.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 70vh;
    width: 100%;
    display: flex;
    align-items: center;
    padding-left: 80px;
}
.banner .slide3{
    background-image: url(../img/diet-banner/8.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 70vh;
    width: 100%;
    display: flex;
    align-items: center;
    padding-left: 80px;
}
.banner .slide4{
    background-image: url(../img/diet-banner/4.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 70vh;
    width: 100%;
    display: flex;
    align-items: center;
    padding-left: 80px;
}

.banner .slide5{
    background-image: url(../img/diet-banner/5.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 70vh;
    width: 100%;
    display: flex;
    align-items: center;
    padding-left: 80px;
}
.banner .slide6{
    background-image: url(../img/diet-banner/6.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 70vh;
    width: 100%;
    display: flex;
    align-items: center;
    padding-left: 80px;
}
.banner .slide7{
    background-image: url(../img/diet-banner/7.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 70vh;
    width: 100%;
    display: flex;
    align-items: center;
    padding-left: 80px;
}
.banner .slide8{
    background-image: url(../img/diet-banner/8.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 70vh;
    width: 100%;
    display: flex;
    align-items: center;
    padding-left: 80px;
}
.banner .slide9{
    background-image: url(../img/diet-banner/9.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 70vh;
    width: 100%;
    display: flex;
    align-items: center;
    padding-left: 80px;
}
.banner .slide10{
    background-image: url(../img/diet-banner/10.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 70vh;
    width: 100%;
    display: flex;
    align-items: center;
    padding-left: 80px;
}
.banner .slide11{
    background-image: url(../img/diet-banner/11.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 70vh;
    width: 100%;
    display: flex;
    align-items: center;
    padding-left: 80px;
}
.banner .slide12{
    background-image: url(../img/diet-banner/12.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 70vh;
    width: 100%;
    display: flex;
    align-items: center;
    padding-left: 80px;
}




.banner .slide_content{
    position: relative;
    top: 1%;
    color: var(--blue);
    max-width: 650px;
    padding: 25px 25px 0 25px; 
}
.banner .slide_content p{
    font-family: 'Nunito Sans', sans-serif!important;
    color: #fff;
    font-size: 1.3rem;
    margin-top: 1.4rem;
    line-height: 2rem;
    width: clamp(24rem, 34vw, 26rem);
}
.banner .slide_content h2{
    
    font-size: 42px;
    font-weight: 800;
    font-family: 'Nunito Sans', sans-serif!important;
    line-height: 3.55rem;
    margin: 10px 0;
}
.blog{
    background: var(--dblack);
}
.blog h1{
    color: var(--blue);
    font-size: 28px;
    font-weight: 800;
     font-family: 'Nunito Sans', sans-serif!important;
}
.blog h3{
     color: var(--blue);
    font-size: 18px;
    font-weight: 700;
     font-family: 'Nunito Sans', sans-serif!important;
}
.blog p{
    margin-bottom: 1.5rem;
    color: var(--dwhite);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
     font-family: 'Nunito Sans', sans-serif!important;
}


.slide_content{
    position: relative;
    top: 5%;
    color: var(--dwhite);
    max-width: 650px;
    padding: 25px 25px 0 25px;
    
}
.slide_content p{
    font-family: 'Nunito Sans', sans-serif!important;
    color: #fff;
    font-size: 1.3rem;
    margin-top: 1.4rem;
    line-height: 2rem;
    padding-bottom: 10px;
    width: clamp(24rem, 34vw, 26rem);
    
   
}
.slide_content h2{
    
    font-size: 42px;

    font-weight: 800;
    font-family: 'Nunito Sans', sans-serif!important;
    line-height: 3.55rem;
    margin: 10px 0;
}
.slide_content button_wrap{
  
}
.slide_content .btn{
    font-family: 'Nunito Sans', sans-serif!important;
    text-decoration: none;
    color: #fff;
    background-color: var(--dgreen);
    padding: 10px 42px;
    font-weight: 700;
    display: inline-block;
      margin-top: 10px;
    border-radius: 0.5rem;

    transition: all 0.15s ease-in-out;
}
.slide_content .btn:hover{
     box-shadow: 0rem 0.2rem 0.5rem var(--blue)!important;
    color: var(--dblack);
    transition: all 0.15s ease-in-out;
}


@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
    
    
    .banner .slide,
    .banner_slider .slide,
    .banner_slider .slide_two,
    .banner_slider .slide_three{
        
     height: 70vh!important;
     background-position: 76%!important;
     position: relative!important;
     isolation: isolate!important;
 
    }
    .banner .slide1{
     height: 70vh!important;
     background-position: 85%!important;
     position: relative!important;
     isolation: isolate!important;
    }
    .banner .slide2{
     height: 70vh!important;
     background-position: 85%!important;
     position: relative!important;
     isolation: isolate!important;
    }
    .banner .slide3{
     height: 70vh!important;
     background-position: 85%!important;
     position: relative!important;
     isolation: isolate!important;
    }
    
    .banner .slide4{
     height: 70vh!important;
     background-position: 85%!important;
     position: relative!important;
     isolation: isolate!important;
    }
    
    .banner .slide5{
     height: 70vh!important;
     background-position: 85%!important;
     position: relative!important;
     isolation: isolate!important;
    }
    .banner .slide6{
        height: 70vh!important;
     background-position: 85%!important;
     position: relative!important;
     isolation: isolate!important;
    }
    .banner .slide7{
        height: 70vh!important;
     background-position: 85%!important;
     position: relative!important;
     isolation: isolate!important;
    }
    .banner .slide8{
        height: 70vh!important;
     background-position: 85%!important;
     position: relative!important;
     isolation: isolate!important;
    }
    .banner .slide9{
        height: 70vh!important;
     background-position: 85%!important;
     position: relative!important;
     isolation: isolate!important;
    }
    .banner .slide10{
        height: 70vh!important;
     background-position: 85%!important;
     position: relative!important;
     isolation: isolate!important;
    }
    .banner .slide11{
        height: 70vh!important;
     background-position: 85%!important;
     position: relative!important;
     isolation: isolate!important;
    }
    .banner .slide12{
        height: 70vh!important;
     background-position: 85%!important;
     position: relative!important;
     isolation: isolate!important;
    }
    
    .banner .slide12::after,
    .banner .slide11::after,
    .banner .slide10::after,
    .banner .slide9::after,
    .banner .slide8::after,
    .banner .slide7::after,
    .banner .slide6::after,
    .banner .slide5::after,
    .banner .slide4::after,
    .banner .slide3::after,
    .banner .slide2::after,
    .banner .slide1::after,
    .banner .slide::after,
    .banner_slider .slide::after,
    .banner_slider .slide_two::after,
    .banner_slider .slide_three::after{
        content: '';
        position: absolute;
        z-index: -1;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--dblack);
        opacity: 0.7;
    }
    
    .banner .slide12,
    .banner .slide11,
    .banner .slide10,
    .banner .slide9,
    .banner .slide8,
    .banner .slide7,
    .banner .slide6,
    .banner .slide5,
    .banner .slide4,
    .banner .slide3,
    .banner .slide2,
    .banner .slide1,
    .banner .slide{
        padding-left: 0!important;
    }
    .banner .slide_content,
    .banner_slider .slide,
    .banner_slider .slide_two,
    .banner_slider .slide_three{
        padding: 5px!important;
    }
    
    .slide_content{
        top: 30%;
        justify-content: center;
        text-align: center;
        padding: 15px 15px 15px 15px;
    
}
    .banner .slide_content h2,
    .banner_slider .slide_content h2{
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        line-height: normal;
        text-align: center;
       
    }
    .slide_content p{
   
    width: -webkit-fill-available!important;
    
   
}
   
    
    .banner_slider .slide_content p{
        display: none!important;
        width: -webkit-fill-available!important;
    }
    .plan .pbox,
    .pillar .box {
        margin-bottom: 10px;
    }
    #call-to-action h3 {
        
        font-size: 30px!important;
    }
    #call-to-action h4{
        font-size: 22px!important;
        color: var(--lightGray)!important;
    }
    
   
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #hero .btn-get-started,
  #hero .btn-watch-video {
    font-size: 13px;
  }
  .digital_checkup .digi_img img{
  
      padding-top: 0px!important;  
}
    
    
    .services .our_service {
         padding-top: 0px!important;  
    }
    #services .section-title{
        padding-bottom: 0px!important;
    }
    #app{
        height: auto!important;
    }
     #app .playicon{
     margin-top: 20px!important;
}
    
    
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
    .carousel{
        margin-bottom: 0px!important;
    }  
    
}

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

.section-bg {
  background-color: #1e1e1d;
}

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

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: #1e1e1d;
  color: var(--dwhite);
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
}

.section-title h3 {
  margin: 15px 0 0 0;
    padding-bottom: 10px;
  font-size: 32px;
  font-weight: 700;
  color: var(--dgreen);
  position: relative;
  font-family: 'Nunito Sans', sans-serif!important;
}
.section-title h4{
     color: var(--lightGray);
}
.section-title h3 span {
  color: var(--blue);
}

.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 600;
 
}
.section-header h3::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: var(--dgreen);
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-header h3::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: var(--dgreen);
  bottom: 0;
  left: calc(50% - 20px);
}
@media (min-width: 1024px) {
  .section-title p {
    width: 50%;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f1f6fe;
  min-height: 40px;
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
    #app .playicon{
     margin-top: 35px!important;
}
    #app .playicon h3{
     font-size: 30px!important;
}
    #app .mob-app {
    margin-top: 5px!important;
    
}
}

.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;
  }
    .carousel{
        margin-bottom: 0px!important;
    }  
    
}

/*--------------------------------------------------------------
# Featured Services & digital_checkup
--------------------------------------------------------------*/

.why-us .content {
  padding: 30px;
  background: #1977cc!important;
  border-radius: 4px;
  color: #fff;
}

.why-us .content h3 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.why-us .content p {
  margin-bottom: 30px;
}

.why-us .content .more-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 30px 8px 30px;
  color: #fff;
  border-radius: 50px;
  transition: all ease-in-out 0.4s;
}

.why-us .content .more-btn i {
  font-size: 14px;
}

.why-us .content .more-btn:hover {
  color: #1977cc;
  background: #fff;
}

.why-us .icon-boxes .icon-box {
  text-align: center;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1)!important;
  padding: 40px 30px;
  width: 100%;
}

.why-us .icon-boxes .icon-box i {
  font-size: 40px;
  color: #1977cc;
  margin-bottom: 30px;
}

.why-us .icon-boxes .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 30px 0;
}

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



.digital_checkup{
     padding-top: 30px!important;
    padding-bottom: 50px!important;
     background-color: var(--dwhite);
}
.digital_checkup .section-title h4{
    
    padding-top: 22px;
    font-size: 18px!important;
    line-height: 30px;
    font-family: 'Nunito Sans', sans-serif!important; 
 
}
.digital_checkup .digi_img h3{
   
}
.digital_checkup .digi_img{
    background-color: var(--dwhite);
     color: var(--dblack);
   
    margin-bottom: 10px;
}
.digital_checkup .digi_img img{
  
    padding-top: 50px;
    width: 100%;
     
}




#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);
    filter: grayscale(1);
}

#sucess-stories img:hover {
  transition: all ease-in-out 0.4s;
    filter: grayscale(1)!important;
}




.video{
    background-color: var(--dgray);
}

.featured-icon-box.style4 {
    border: 1px solid #e0e0d1!important;
    padding: 33px 30px 33px;

    height: 100%;
    position: relative;
    overflow: hidden;
}

.pillar .btn,
#call-to-action .btn,
#contact .btn,
.digital_checkup .btn{ 
  margin-top: 20px!important;
    font-family: 'Nunito Sans', sans-serif!important;
    text-decoration: none;
    color: #fff;
    background-color: var(--dgreen);
    padding: 10px 40px;
    font-weight: 700;
    font-size: 18px;
    display: inline-block;
    border-radius: 0.5rem;
   
    transition: all 0.15s ease-in-out;
}
.pillar .btn:hover,
#contact .btn:hover,
#call-to-action .btn:hover,
.digital_checkup .btn:hover{
     box-shadow: 0rem 0.1rem 0.4rem var(--blue);
    color: var(--dblack);
}

#call-to-action {
 /* background: linear-gradient(rgba(0, 142, 99, 0.1), rgba(0, 0, 0, 0.1)), url(../img/ab.jpg) fixed center center; 
    
  background-size: cover; */
    background: var(--dgray);
  padding: 60px 0;
    position: relative;
}


#call-to-action h3 {
  color: #fff;
    font-size: 38px;
 
  font-weight: 500;
  line-height: 35px;
  
    position: relative;
    z-index: 10;
    padding-bottom: 10px;
}





/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services{
    background: var(--dblack);
}
.services .our_service{
    text-align: center;
    padding-top: 25px;
}



.services .our_service .service-box{
  text-align: center;
  
  padding: 20px;
  
  transition: all ease-in-out 0.3s;
  background: var(--dgray);
  

}
.services .our_service .service-box h3{
     font-family: 'Nunito Sans', sans-serif!important;
     font-size: 22px!important;
     color: var(--blue);
}
.services .our_service .service-box img{
    padding-right: 10px;
    padding-left: 10px;
}
.services .our_service .service-box:hover{
    box-shadow: 0rem 0.5rem 0.7rem var(--blue);
    transform: translateY(-0.25rem);
}


.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #f1f6fe;
  border-radius: 4px;
  border: 1px solid #deebfd;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
}

.services .icon-box .icon i {
  color: var(--blue);
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

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

.services .icon-box h4 a {
  color: #222222;
  transition: ease-in-out 0.3s;
}

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

.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(16, 110, 234, 0.1);
}

.services .icon-box:hover h4 a,
.services .icon-box:hover .icon i {
  color: #106eea;
}

.services .icon-box:hover .icon {
  border-color: #106eea;
}

#counts{
  padding: 100px 0 90px 0;
    background: #1E1E1E!important;
}

.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: #2B2B2B!important;
}

.counts .count-box i{
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 28px;
    font-weight: 400;
 background: #f2f2f2;
  color: forestgreen;
  width: 56px;
  height: 56px;
  line-height: 0;
 
  border: 5px solid #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.counts img{
    width: 100%;
}

.counts .count-box img {
    position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background: var(--dgray);
  color: #fff;
  width: 58px;
  height: 58px;
  line-height: 0;
 
  
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #fff;
  font-family: 'Nunito Sans', sans-serif!important;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: 'Nunito Sans', sans-serif!important;
  font-size: 18px;
    color: white;
}
/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  background: url("../img/t_bg4.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
}

.testimonials .section-header {
  margin-bottom: 40px;
}

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

.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}

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

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

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.4);
  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: 0 auto 15px auto;
  color: #eee;
}

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

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

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# app
--------------------------------------------------------------*/
#app{
    background-image: url("../img/app-banner.jpg");
    background-size: cover;
    background-position: center;
    padding: 0!important;
}
#app .mob-app{
    
    margin-top: 50px;
    align-items: center;
    text-align: center;
}
#app .mob-app img{
    width: 70%;
}
#app .playicon{
     
     margin-top: 100px;
}
#app .playicon img{
   
}
#app .playicon a{
    cursor: pointer;
}
#app .playicon img:hover{
    box-shadow: 0rem 0.5rem 0.7rem var(--black);
    transform: translateY(-0.25rem);
}






/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  padding: 60px 0;
}

.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 4px;
  background: var(--dwhite);
  box-shadow: 0px 2px 15px rgba(16, 110, 234, 0.15);
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}

.team .member .social a {
  transition: color 0.3s;
  color: #222222;
  margin: 0 3px;
  padding-top: 7px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  background: rgba(16, 110, 234, 0.8);
  display: inline-block;
  transition: ease-in-out 0.3s;
  color: #fff;
}

.team .member .social a:hover {
  background: #3b8af2;
}

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

.team .member .member-info {
  padding: 25px 15px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: var(--dblack);
  font-family: 'Nunito Sans', sans-serif!important;
}

.team .member .member-info span {
  display: block;
  font-size: 16px;
  font-weight: 500;
  font-family: 'Nunito Sans', sans-serif!important;
  color: var(--dgray);
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: var(--dblack);
}

.team .member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
/*.pricing{
    background: var(--dblack);
}
.pricing .table tr td:nth-child(2) {
  text-align:center!important;
}
.pricing .table tr td:nth-child(3) {
  text-align:center!important;
}
.pricing .table tr td:nth-child(4) {
  text-align:center!important;
}
.pricing .table td:nth-child(5) {
  text-align:center!important;;
}   */



.pillar{
    background: var(--dblack);
}
.pillar .btn{
    margin-top: 30px!important;
}
.pillar .box {
  padding: 20px;
  background: var(--dgray)!important;
  
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}
.pillar .box .p_img{
    
    text-align: center;
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 30px 20px 10px 20px;
  color: var(--dwhite);
  background: var(--dgray);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.5);
  border-bottom: 0.5px solid var(--dblack); 
} 
.pillar .box .p_img h3{
  padding: 20px 10px 0px 10px;
  font-size: 22px;
  font-weight: 600;
    color: var(--blue);
}
.pillar .box .p_img p{
padding-bottom: 5px;
 font-size: 18px;
  font-weight: 600;
}

.pillar .box h4 {
  font-size: 36px;
  color: #106eea;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}

.pillar .box h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pillar .box h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pillar .box ul {
  padding: 0;
  list-style: none;
  color: var(--dwhite);
  
  line-height: 20px;
  font-size: 18px;
}

.pillar .box ul li {
  padding-bottom: 16px;
}

.pillar .box ul i {
  color: var(--dwhite);
  font-size: 18px;
  padding-right: 4px;
}

.pillar .box ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pillar .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #f8f8f8;
  text-align: center;
}

.pillar .btn-buy {
  background: #106eea;
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.pillar .btn-buy:hover {
  background: #3b8af2;
}

.pillar .featured h3 {
  color: #fff;
  background: #106eea;
}

.pillar .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #106eea;
  color: #fff;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq {
  padding: 60px 0;
}

.faq .faq-list {
  padding: 0;
  list-style: none;
}

.faq .faq-list li {
  border-bottom: 1px solid #d4e5fc;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.faq .faq-list .question {
  display: block;
  position: relative;
  font-family: #106eea;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-left: 25px;
  cursor: pointer;
  color: #0d58ba;
  transition: 0.3s;
}

.faq .faq-list i {
  font-size: 16px;
  position: absolute;
  left: 0;
  top: -2px;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 25px;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list .collapsed {
  color: black;
}

.faq .faq-list .collapsed:hover {
  color: #106eea;
}

.faq .faq-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;
}

.faq .faq-list .collapsed .icon-close {
  display: none;
  transition: 0.6s;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact{
    background: var(--dwhite);
}
.contact .info-box {
background: var(--dgreen);
  justify-content: center;
    justify-items: center;
    align-items: center;
  text-align: center;
  height: 200px;
  padding: 2rem;
  margin-bottom: 10px;
}

.contact .info-box i {
  font-size: 38px;
  color: var(--dwhite);
  padding-bottom: 15px;
 
}
.contact h1{
    color: var(--dwhite);
   
}
.contact .info-box h3 {
  font-size: 20px;
  color: var(--dwhite);
  font-weight: 700;
   margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 17px;
  margin-bottom: 0;
    color: var(--dwhite);
}
.contact .info-box a{
   color: var(--dwhite)!important;
}

#contact .info-box a:hover{
    color: var(--dblack)!important;
    cursor: pointer;
}
.contact .php-email-form {

  background: var(--dgray)!important;
  padding: 30px;
}

::placeholder{
  color: var(--lightGray)!important;
  opacity: 1; /* Firefox */
}

.contact .php-email-form .error-message {
  display: none;
  color: var(--blue);
  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 .form-group {
  margin-bottom: 20px;
}

.contact .php-email-form .input-dark{
    color: var(--dwhite)!important;
}
.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
    
  font-size: 14px;
    
}

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

.contact .php-email-form input {
  padding: 10px 15px;
 background: var(--dgray);
    color: var(--dwhite)!important;
    border: 1px solid var(--lightGray);
}

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

.contact .php-email-form button[type=submit] {

  border: 0;
  padding: 10px 30px;
  color: #000;
  transition: 0.4s;
  border-radius: 4px;
    background: linear-gradient(to right, #0f9ad6 20%, #f0f0f0 40%, #f0f0f0 60%, #0f9ad6 80%);
    background-size: 200% auto;
    -webkit-animation: bright 2s linear infinite;
    /* animation: bright 1s linear infinite; */

 
}
@keyframes bright{
       0% {
		background-position: 0% 100%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 100%;
	}
      }


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

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

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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: var(--dblack)!important;
  padding: 0 0 30px 0;
  color: var(--lightGray);
  font-size: 14px;
 
}

#footer .footer-newsletter {
  padding: 50px 0;
  background: #f1f6fe;
  text-align: center;
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  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: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #106eea;
  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: #0d58ba;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: var(--dgray);
}

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

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

#footer .footer-top .footer-contact h3 span {
  color: #106eea;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
  color: #777777;
}

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

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

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

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: var(--blue);
  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: var(--lightgray);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: var(--blue);
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: var(--dblack);
  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 .footer-top .social-links a:hover {
  background: var(--dgreen);
  color: var(--dwhite);
  text-decoration: none;
}

#footer .copyright {
  text-align: center;
  float: left;
}

#footer .credits {
  float: right;
  text-align: center;
  font-size: 13px;
  color: #444444;
}

@media (max-width: 768px) {

  #footer .copyright,
  #footer .credits {
    float: none;
    text-align: center;
    padding: 2px 0;
  }
}






.plan .ph{
    font-size: 34px!important;
    text-align: center;
}
.plan{
    background: var(--dwhite);
}
.plan .btn{
    margin-top: 30px!important;
}
.plan .pbox {
  padding: 20px;
  background: #f2f2f2!important;
  
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}
.plan .pbox .p_img{
    
    text-align: center;
  font-weight: 400;
  margin: -20px -20px 20px -20px;
 
  color: #595959;
  background: var(--dgray);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.5);
  border-bottom: 0.5px solid var(--dgreen); 
} 
.plan .pbox .p_img h3{
  padding: 20px 10px 0px 10px;
  font-size: 22px;
  font-weight: 600;
    color: #595959;
}
.plan .pbox .p_img p{
padding-bottom: 5px;
 font-size: 18px;
  font-weight: 600;
}

.plan .pbox h4 {
  font-size: 36px;
  color: #106eea;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}

.plan .pbox h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.plan .pbox h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.plan .pbox ul {
  padding: 0;
  list-style: none;
  color: #595959;
  
  line-height: 20px;
  font-size: 18px;
}

.plan .pbox ul li {
  padding-bottom: 16px;
    display: flex;
    align-items: center;
    list-style: none!important;
}

.plan .pbox ul i {
  color: #595959;
  font-size: 18px;
  padding-right: 4px;
  padding-right: 20px;
}

.plan .pbox ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.plan .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #f8f8f8;
  text-align: center;
}

.plan .btn-buy {
  background: #106eea;
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.plan .btn-buy:hover {
  background: #3b8af2;
}

.plan .featured h3 {
  color: #fff;
  background: #106eea;
}

.plan .advanced {
    width: 260px;
    position: absolute;
    top: 50px;
    right: -68px;
    transform: rotate(45deg);
    z-index: 1;
    font-size: 16px;
    padding: 1px 0 3px 0;
    background: var(--blue);
    text-align: center;
    color: #fff
}

#our_mission{
  background-image: url(../img/our-mission.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  
    width: 100%;
  
}





