
* {
    margin: 0;
    padding: 0;
    user-select: text;
    box-sizing: border-box;
    
    --blue: #fff;
    --dblack:#000;
    --dblue:#181043;
    --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: #fff;
  text-decoration: none!important;
}

a:hover {
  color: var(--dblue);
  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 #181043;
  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(--dblue);
  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: 70px;
    height: 70px;
    transition: all 0.4s;
    animation: blink 0.7s linear infinite;
}
.whatsapp img{
    width: 100%;  
}




/*--------------------------------------------------------------
# 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(--dblue);
  height: 45px;
  font-size: 14px;
  transition: all 0.5s;
  color: #fff;
  padding: 0;
}

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

#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;
    font-size: 16px;
}

#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;
    font-size: 16px;
}

#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: 500;
  color: var(--dblue);
  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(--dblue)!important;
  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(--dblue)!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(--dblue);
  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(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(--dblue);
}

.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 .button_wrap a{
    background-color: #fff!important;
    color:var(--dblue)!important;
}

.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/32.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/31.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/32.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/31.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(--dblue);
    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.8;
    }
    
    .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;
       
    }
    .banner_slider .slide_content p{
        display: none!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
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services .service-item {
  background-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  transition: all 0.3s ease-in-out;
  height: 100%;
  position: relative;
  z-index: 1;
}

.featured-services .service-item:before {
  content: "";
  position: absolute;
  background: var(--dblue);
  inset: 100% 0 0 0;
  transition: all 0.3s;
  z-index: -1;
}

.featured-services .service-item .icon {
  margin-bottom: 10px;
}

.featured-services .service-item .icon i {
  color: var(--dblue);
  font-size: 36px;
  transition: ease-in-out 0.3s;
}

.featured-services .service-item h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.featured-services .service-item h4 a {
  color: var(--dblue);
  transition: ease-in-out 0.3s;
}

.featured-services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  transition: ease-in-out 0.3s;
}

.featured-services .service-item:hover h4 a,
.featured-services .service-item:hover .icon i,
.featured-services .service-item:hover p {
  color: #fff!important;
}

.featured-services .service-item:hover:before {
  background: var(--dblue);
  inset: 0;
  border-radius: 0px;
}



/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 80px 0;
  position: relative;

    background-color: var(--dblue)!important;
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

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

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

.call-to-action .cta-btn {
  font-family: var(--dblue);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 4px;
  transition: 0.3s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.call-to-action .cta-btn:hover {
  background: #fff;
  color: var(--dblue);
  border: 2px solid #fff;
}










.services .service-item {
  background-color: #fff;
  padding: 40px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.services .service-item .icon {
  width: 48px;
  height: 48px;
  position: relative;
  margin-bottom: 50px;
}

.services .service-item .icon i {
  color: color-mix(in srgb, var(--dblue), transparent 30%);
  font-size: 56px;
  transition: ease-in-out 0.3s;
  z-index: 2;
  position: relative;
}

.services .service-item .icon:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: color-mix(in srgb, var(--dblue), transparent 95%);
  border-radius: 50px;
  z-index: 1;
  top: 10px;
  right: -20px;
  transition: 0.3s;
}

.services .service-item h3 {
  color: color-mix(in srgb, var(--dblue), transparent 20%);
  font-weight: 700;
  margin: 0 0 20px 0;
  padding-bottom: 8px;
  font-size: 22px;
  position: relative;
  display: inline-block;
  border-bottom: 4px solid color-mix(in srgb, var(--heading-color), transparent 90%);
  transition: 0.3s;
}

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

.services .service-item .readmore {
  margin-top: 15px;
  display: inline-block;
  color: color-mix(in srgb, var(--dblue), transparent 30%);
}

.services .service-item:hover .icon i {
  color: var(--dblue);
}

.services .service-item:hover .icon:before {
  background: color-mix(in srgb, var(--dblue), transparent 50%);
}

.services .service-item:hover h3 {
  border-color: color-mix(in srgb, var(--dblue), transparent 10%);
  color: var(--heading-color);
}

.services .service-item:hover .readmore {
  color: var(--dblue);
}




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(--dblue);
  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(--dblue);
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-header h3::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: var(--dblue);
  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%;
     
}



.stats .stats-item {
  background-color: #fff;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.stats .stats-item i {
  color: var(--dblue);
  font-size: 42px;
  line-height: 0;
  margin-right: 20px;
}

.stats .stats-item span {
  color: var(--dblue);
  font-size: 36px;
  display: block;
  font-weight: 600;
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--dblue);
  font-size: 16px;
}







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

.testimonials .testimonial-item {
    background-color: var(--surface-color);
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    box-sizing: content-box;
    padding: 30px;
    margin: 30px 15px;
    position: relative;
    height: 100%;
}

.review .gallery-item1{
  overflow: hidden;
  background-color: #fff!important; 
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding:25px; 
  border-radius:5px; 
  margin:10px;
  
}
.review .gallery-item1 h4,
.review .gallery-item1 p{
    color: var(--dblue);
   
    font-style: italic;
}
.review .gallery-item1 p{
   
    line-height: 24px;
    font-size: 15px;
}
.slick-next:before, .slick-prev:before {
    
    color: var(--dblue)!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(--dblue);
    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;
}







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


/*--------------------------------------------------------------
# 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);
}

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



.contact .info-container {
  background-color: var(--dblue);
  height: 100%;
  padding: 20px;
}

.contact .info-item {
  width: 100%;
  margin-bottom: 20px;
  padding: 20px;
  color: #fff;
  background-color: color-mix(in srgb, #fff, transparent 90%)!important;
}

.contact .info-item:last-child {
  margin-bottom: 0;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--contrast-color), transparent 80%);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  color: var(--contrast-color);
  font-size: 20px;
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: var(--contrast-color);
  color: var(--accent-color);
}

.contact .php-email-form {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  padding: 30px;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}







@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(--dblue);
  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(--dblue); 
} 
.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%;
  
}

@media (max-width: 768px) {
    .digital_checkup .digi_img h3{
        padding-top: 10px!important;
    }
    
}
@media (max-height: 500px) {
  .digital_checkup .digi_img h3{
        padding-top: 10px!important;
    }
    .digital_checkup {
    padding-top: 5px !important;
    
}
    
}
@media (min-width: 1200px) {
    .col-xl-3 {
        flex: 0 0 auto;
        width: 25%!important;
    }
}

@media (min-width: 376px) {
    .col-sm-6 {
        flex: 0 0 auto;
        width: 50%;
    }
}


