@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins/Poppins-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Neue Einstellung';
  src: url('../fonts/neue-einstellung/NeueEinstellung-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Neue Einstellung Bold';
  src: url('../fonts/neue-einstellung/NeueEinstellung-Bold.woff2') format('woff');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Neue Einstellung Extra Bold';
  src: url('../fonts/neue-einstellung/NeueEinstellung-Bold.woff2') format('woff');
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/dm-sans/DMSans-VariableFont_opsz,wght.ttf') format('truetype');
  font-style: normal;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  font-family: 'Poppins', sans-serif;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  text-decoration: none;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  background-color: #ffffff;
  transition: all 0.5s;
  z-index: 997;

  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.header .branding {
  min-height: 60px;
  padding: 5px 0;
}

.header .logo {
  line-height: 1;
} 

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 600;
}

.scrolled .header {
  --background-color: #ffffff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

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

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #4A5568;
    font-weight: 500;
    font-size: 16px;
    line-height: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

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

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

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

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

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

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
  }

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

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    /*color: var(--nav-dropdown-hover-color);*/
  }

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

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

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

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: #fff;
    /*border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);*/
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    padding: 10px 20px;
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

main{
  background: #f4feff;
  margin-top: 90px;
}


/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  line-height: 0;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

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

section,
.section {
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}



/* Footer Section */

footer{
  background: #154672;
  padding: 28px 0;
}

.footer-right h2{
  font-family: Poppins;
  font-weight: 500;
  font-size: 30px;
  line-height: 100%;
  color: #fff;
}
.footer-right p{
  margin-bottom: 0;
  font-family: Poppins;
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  color: #FFFAF1;
}

/**/

.logo{

}

.header-btn {
  background: linear-gradient(225deg, #26ABE4 0%, #154672 100%);
  border: none;
  color: #fff !important;
  padding: 14px 25px !important;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  font-weight: 600;
  font-size: 14px;
  line-height: 14px;
  border-radius: 5px;
}

.header-btn:hover {
  transform: scale(1.05);
}

.header-btn:focus {
  outline: none; 
}

.banner-section{
  background-color: #D0EDF9;
  background-image: url('../images/doctor.png'); 
  background-position: top right; 
  background-repeat: no-repeat; 
  background-size: contain; 
  min-height: 580px;
}
.top-text{
  color: #154672;
  font-family: DM Sans;
  font-weight: 700;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 8%;
}
.banner-title{
  font-family: Neue Einstellung Extra Bold;
  font-weight: 800;
  color: #212529;
  font-size: 47px;
  line-height: 130%;
  text-transform: uppercase;
}
.banner-subtext{
  font-family: DM Sans;
  font-size: 18px;
  line-height: 150%;
  color: #495057;
  margin-bottom: 57px;
  margin-top: 13px;
  width: 80%;
}
.cta1 {
    font-family: DM Sans;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 40px;
    padding-top: 16px;
    padding-right: 32px;
    padding-bottom: 16px;
    padding-left: 32px;
    color: #FFFFFF;
    background: #154672;
    display: inline-flex;
    align-items: center; 
    justify-content: center;
    gap: 10px;
}
.cta1 img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}
.title2{
  font-family: Neue Einstellung Bold;
  font-style: Bold;
  font-size: 48px;
  color: #154672;
  margin-bottom: 44px;
}
.how_it_work {
    width: 78%;
    margin-bottom: 28px;
}
.how_it_work h3{
  font-weight: 700;
  font-size: 18px;
  color: #172048;
  margin: 17px 0 10px;
}
.how_it_work p{
  font-weight: 400;
  font-size: 13px;
  color: #172048;
  line-height: 160%;
}
.i1{
  max-height: 612px;
}
.divider{
  margin-top: 30px;
}
.about-subtext{
  font-size: 18px;
  color: #495057;
  width: 90%;
}
.b1{
  max-width: 460px;
  background-image: url('../images/Group 139.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top center;
  padding: 40px;
  min-height: 295px;
}
.b1 ul{
  list-style: none;
  color: #fff;
font-size: 20px;
line-height: 32px;
padding-left: 0;

}
.txt1{
  color: #495057;
  font-size: 20px;
  line-height: 37px;
  letter-spacing: 0%;
  text-align: center;
  max-width: 1119px;
  margin: 86px auto 0;
  background: #fff;
  box-shadow: 0px 10px 15px 0px #97979714;
  border-radius: 15px;
  padding: 39px 170px;
}
.box-style1{
  box-shadow: 0px 10px 15px 0px #97979714;
  border-radius: 30px;
  padding: 45px;
}
.box-style1 h2{
  font-family: Neue Einstellung Bold;
  font-weight: 700;
  font-size: 36px;
}
.box-style1 p{
  font-size: 16px;
  line-height: 185%;
line-height: 34px;

}
.box1{
  color: #172048;
  background: #F4FEFF;
}
.box2{
  background: linear-gradient(180deg, #4ED6DA 0%, #04789D 100%);
  color: #fff;
}


.txt-effect1 {
    background: radial-gradient(55.86% 1820.11% at 44.14% 50%, #26ABE4 0%, #154672 100%);

    background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      font-family: Neue Einstellung Bold;
  font-weight: 700;
  font-size: 48px;
}
.contact-title{
  font-family: Neue Einstellung;
  font-weight: 600;
  font-size: 27px;
  line-height: 100%;
  color: #154672;
  margin-top: 30px;
}
.contact-mail{
  font-family: DM Sans;
  align-items: center;
  font-size: 16px;
  line-height: 150%;
  color: #495057;
  margin-top: 20px;
  margin-bottom: 39px;
}
.contact-mail a{
  color: #495057;
}
.contact-mail img{
  vertical-align: text-top;
  width: 20px;
}
.contact-cta {
    font-family: DM Sans;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 40px;
    padding-top: 16px;
    padding-right: 32px;
    padding-bottom: 16px;
    padding-left: 32px;
    color: #FFFFFF;
    background: #26ABE4;
    display: inline-flex;
    align-items: center; 
    justify-content: center;
    gap: 10px;
}

.contact-cta img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}
.footer-right{
  text-align: center;
}
.footer-right p{
  color: #FFFAF1;
  font-size: 12px;
  margin: 10px 0;
}
.footer-right p a{
  color: #FFFAF1;
  font-size: 14px;
}
.mobile-banner{
  display: none;
}

@media(max-width: 1366px){
  .banner-title{
    font-size: 38px;
  }
  .banner-subtext, .about-subtext{
    font-size: 16px;
  }
  .txt-effect1, .title2 {
      font-size: 44px;
  }
  .b1 ul {
    font-size: 18px;
  }
  .txt1 {
    font-size: 18px;
    line-height: 34px;
  }
  .box-style1 h2 {
    font-size: 32px;
  }
  .contact-title {
      font-size: 23px;
  }
  .footer-right h2 {
    font-size: 28px;
  }
}
@media(max-width: 1199px){
  main {
    margin-top: 70px;
  }
  .banner-section {
    min-height: auto;
  }
  .b1 {
    padding: 30px;
    min-height: 270px;
  }
  .box-style1 {
    padding: 30px;
  }
  .txt1 {
    padding: 39px 126px;
    font-size: 16px;
  }
  .how_it_work {
    width: 100%;
  }
}
@media(max-width: 1024px){
    .txt-effect1, .title2 {
        font-size: 33px;
    }
    .banner-section{
        background-position: right bottom;
        background-size: 50%;
    }
    .b1 ul {
        font-size: 15px;
        line-height: 22px;
    }
}
@media(max-width: 992px){
  .footer-logo{
    text-align: center;
    margin-bottom: 30px;
  }
      .box-style1 {
        padding: 15px;
    }
    .box-style1 p {
      font-size: 14px;
      line-height: 27px;
    }
    .box-style1 h2 {
        font-size: 28px;
    }
    .txt1 {
        padding: 39px 70px;
        margin-top: 30px;
    }
    .i1 {
      max-height: 450px;
      margin: 0 auto;
      display: block;
    }
    section, .section {
        padding: 40px 0;
    }
}
@media(max-width: 767px){
  .banner-section{
    background-image: unset;
  }
  .b1 {
    background-size: 100% 100%;
  }
  .mobile-banner{
    display: block;
    margin-top: 20px;
  }
      .banner-title {
        font-size: 32px;
    }
    .b1 {
        min-height: auto;
    }
    .i1 {
        max-height: 300px;
    }
    .txt1 {
        padding: 25px;
        margin-top: 10px;
    }
    .banner-subtext{
      width: 100%;    
    }
    
}