@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --ff-heading: "Lato", sans-serif;
  --ff-body: "Noto Sans", sans-serif;
  --lh-heading: 1.2;
  --lh-body: 1.5;
  --fs-body: 16px;
  --fs-heading-one: 60px;
  --fs-heading-two: 48px;
  --fs-heading-three: 30px;
  --fs-heading-four: 24px;
  --fs-heading-five: 20px;
  --fs-heading-six: 18px;
  --c-heading: #333333;
  --c-body: #666666;
  --c-base: #00a69c;
  --c-primary: #0a0c25;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  padding: 0;
  margin: 0;
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  color: var(--c-body);
  line-height: var(--lh-body);
}

a {
  text-decoration: none;
  color: var(--c-body);
}

span,
sub,
sup,
a {
  display: inline-block;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: var(--lh-body);
  font-family: var(--ff-heading);
  color: var(--c-heading);
}

h1 > a,
h2 > a,
h3 > a,
h4 > a,
h5 > a,
h6 > a {
  color: var(--c-heading);
}

h1 {
  font-size: var(--fs-heading-one);
}

h2 {
  font-size: var(--fs-heading-two);
}

h3 {
  font-size: var(--fs-heading-three);
}

h4 {
  font-size: var(--fs-heading-four);
}

h5 {
  font-size: var(--fs-heading-five);
}

h6 {
  font-size: var(--fs-heading-six);
}

@media (max-width: 991px) {
  :root {
    --fs-heading-one: 40px;
    --fs-heading-two: 36px;
    --fs-heading-three: 28px;
    --fs-heading-four: 22px;
    --fs-heading-five: 20px;
    --fs-heading-six: 16px;
  }
}
@media (max-width: 575px) {
  :root {
    --fs-heading-one: 36px;
    --fs-heading-two: 30px;
    --fs-heading-three: 26px;
    --fs-heading-four: 20px;
    --fs-heading-five: 18px;
    --fs-heading-six: 16px;
  }
}
.cmn-btn {
  display: inline-block;
  padding: 12px 32px;
  background-color: var(--c-base);
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid var(--c-base);
}
@media (max-width: 575px) {
  .cmn-btn {
    font-size: 16px;
    padding: 10px 24px;
  }
}
.cmn-btn:hover {
  background-color: var(--c-primary);
  border-color: var(--c-primary);
}
.cmn-btn.outline {
  background-color: transparent;
  color: var(--c-base);
}
.cmn-btn.outline:hover {
  border-color: var(--c-base);
  background-color: var(--c-base);
  color: #ffffff;
}

/* header start */
header {
  width: 100%;
  padding: 18px 0;
  background-color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
}
@media (max-width: 1199px) {
  header .container {
    max-width: 100%;
    padding: 0 60px;
  }
}
@media (max-width: 575px) {
  header .container {
    padding: 0 36px;
  }
}
header .header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .header-wrapper .logo {
  font-size: 18px;
  font-weight: 600;
  color: var(--c-primary);
}
@media (max-width: 1199px) {
  header .header-wrapper .logo img {
    max-width: 200px;
  }
}
header .header-wrapper .menu-toggler {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}
header .header-wrapper .menu-toggler span {
  width: 30px;
  height: 2px;
  background-color: var(--c-primary);
  border-radius: 3px;
}
@media (max-width: 1199px) {
  header .header-wrapper .menu-toggler {
    display: flex;
  }
}
@media (max-width: 1199px) {
  header .header-wrapper .nav-menu {
    position: fixed;
    left: 0;
    top: 76px;
    right: 0;
    height: 100dvh;
    padding: 60px;
    background-color: #ffffff;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    transition: all 0.3s ease;
  }
  header .header-wrapper .nav-menu.active {
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 1199px) and (max-width: 575px) {
  header .header-wrapper .nav-menu {
    padding: 36px;
  }
}
@media (max-width: 1199px) {
  header .header-wrapper .nav-menu ul {
    flex-direction: column;
    width: 100%;
  }
}
header .header-wrapper .nav-menu ul {
  display: flex;
  gap: 25px 35px;
}
@media (max-width: 1399px) {
  header .header-wrapper .nav-menu ul {
    gap: 25px 20px;
  }
}
header .header-wrapper .nav-menu ul li a {
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s;
  font-family: var(--ff-heading);
  color: var(--c-primary);
}
@media (max-width: 1199px) {
  header .header-wrapper .nav-menu ul li a {
    font-size: 20px;
  }
}
header .header-wrapper .nav-menu ul li a:hover {
  color: var(--c-base);
}

/* header end */
/* banner start */
.banner-section {
  position: relative;
  padding: 0;
  margin: 0;
  padding-top: 80px;
  background-color: #4d4d4d;
}
.banner-section .banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
}
.banner-section .banner-content {
  position: relative;
  max-width: 650px;
}
.banner-section .banner-content .subtitle {
  font-size: 30px;
  font-style: italic;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 25px;
  line-height: 1;
  font-family: var(--ff-heading);
  text-shadow: 2px 3px 5px rgba(0, 0, 0, 0.5);
}
@media (max-width: 991px) {
  .banner-section .banner-content .subtitle {
    font-size: 24px;
  }
}
@media (max-width: 575px) {
  .banner-section .banner-content .subtitle {
    font-size: 20px;
  }
}
.banner-section .banner-content .title {
  font-size: 90px;
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1;
  text-shadow: 2px 3px 5px rgba(0, 0, 0, 0.2);
  letter-spacing: -5px;
}
@media (max-width: 991px) {
  .banner-section .banner-content .title {
    font-size: 60px;
    letter-spacing: -3px;
  }
}
@media (max-width: 575px) {
  .banner-section .banner-content .title {
    font-size: 48px;
  }
}
.banner-section .banner-content .pera {
  color: white;
}
.banner-section .banner-content .phone-img {
  margin-top: 24px;
  max-width: 620px;
  width: 100%;
}
.banner-section .scroll-icon {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  height: auto;
  animation: bounce 5s infinite;
}

/* banner end */
/* how section start */
.section-title {
  font-size: 70px;
  font-weight: 300;
  color: var(--c-primary);
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.1;
}
@media (max-width: 991px) {
  .section-title {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  .section-title {
    font-size: 40px;
    margin-bottom: 30px;
  }
}

.how-section {
  background-color: #4d4d4d;
  padding-bottom: 60px;
}

.mobile-img {
  max-width: 300px;
  width: 100%;
  display: block;
  margin-inline: auto;
}

.how-item {
  color: #ffffff;
}
@media (max-width: 991px) {
  .how-item {
    text-align: center;
  }
}
.how-item .how-icon {
  margin-bottom: 20px;
}
.how-item .how-icon img {
  max-width: 100px;
  width: 100%;
}
.how-item .how-title {
  font-size: 40px;
  font-weight: 300;
  margin-bottom: 12px;
  font-style: italic;
  color: white;
}
@media (max-width: 575px) {
  .how-item .how-title {
    font-size: 32px;
  }
}
.how-item .how-pera {
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 575px) {
  .how-item .how-pera {
    font-size: 14px;
  }
}
.how-item .how-list {
  font-size: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .how-item .how-list {
    font-size: 18px;
  }
}

/* how section end */
/* referral section start */
.referral-programs {
  display: flex;
  align-items: center;
}
.referral-programs.style--two .referral-icon {
  max-height: 250px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 150px;
}
.referral-programs.style--two .referral-content .referral-title {
  color: #999999;
}
.referral-programs.style--three {
  background-color: #f5f5f5;
}
.referral-programs.style--three .referral-icon {
  max-width: 150px;
}
.referral-programs.style--three .referral-content {
  margin-inline-start: 20px;
}
@media (max-width: 991px) {
  .referral-programs.style--three .referral-content {
    margin-inline-start: 0;
  }
}
.referral-programs.style--three .referral-content .referral-title {
  color: #808080;
  font-weight: 300;
  font-size: 70px;
  font-style: normal;
}
@media (max-width: 1199px) {
  .referral-programs.style--three .referral-content .referral-title {
    font-size: 56px;
  }
}
@media (max-width: 991px) {
  .referral-programs.style--three .referral-content .referral-title {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .referral-programs.style--three .referral-content .referral-title {
    font-size: 40px;
  }
}
.referral-programs.style--three .referral-content .radio-group {
  margin-top: 30px;
}
@media (max-width: 991px) {
  .referral-programs.style--three .referral-content .radio-group {
    justify-content: center;
  }
}
.referral-programs.style--three .referral-content .radio-group .form-check {
  display: flex;
  align-items: center;
  gap: 0 12px;
}
.referral-programs.style--three .referral-content .radio-group input {
  width: 24px;
  height: 24px;
}
.referral-programs.style--three .referral-content .radio-group label {
  font-weight: 600;
  font-size: 22px;
  line-height: 1;
}
@media (max-width: 575px) {
  .referral-programs.style--three .referral-content .radio-group label {
    font-size: 18px;
  }
}
.referral-programs.style--three .referral-content .logo-dark {
  max-width: 100%;
  margin-top: 80px;
}
@media (max-width: 1199px) {
  .referral-programs.style--three .referral-content .logo-dark {
    margin-top: 50px;
  }
}
.referral-programs.style--three .referral-content .footer-info {
  font-size: 13px;
  margin-top: 50px;
}
.referral-programs.style--three .referral-content .subscription-form {
  margin-top: 30px;
  display: flex;
  gap: 20px;
}
@media (max-width: 575px) {
  .referral-programs.style--three .referral-content .subscription-form {
    flex-direction: column;
    gap: 15px;
  }
}
.referral-programs.style--three .referral-content .subscription-form input {
  flex: 1;
  padding: 16px 24px;
  font-size: 16px;
  border: 1px solid #aaa;
  background-color: transparent;
  border-radius: 8px;
  outline: none;
  height: 80px;
  font-size: 32px;
  max-width: 600px;
}
@media (max-width: 767px) {
  .referral-programs.style--three .referral-content .subscription-form input {
    font-size: 24px;
    height: 60px;
  }
}
.referral-programs.style--three .referral-content .subscription-form .cmn-btn {
  height: 80px;
  font-size: 28px;
}
@media (max-width: 767px) {
  .referral-programs.style--three .referral-content .subscription-form .cmn-btn {
    height: 60px;
    font-size: 20px;
  }
}
.referral-programs.style--three .referral-content .link {
  color: var(--c-base);
  font-weight: 600;
}
.referral-programs.style--three .referral-content .link:hover {
  text-decoration: underline;
}
@media (max-width: 991px) {
  .referral-programs {
    padding-block: 60px;
  }
}
@media (max-width: 991px) {
  .referral-programs .referral-icon {
    display: none;
  }
}
.referral-programs .referral-content {
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: 30px;
}
@media (max-width: 991px) {
  .referral-programs .referral-content {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 575px) {
  .referral-programs .referral-content .percent-icon {
    max-width: 180px;
    width: 100%;
  }
}
.referral-programs .referral-content .referral-title {
  font-size: 35px;
  line-height: 1;
  font-weight: 700;
  font-style: italic;
  color: var(--c-body);
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .referral-programs .referral-content .referral-title {
    font-size: 30px;
  }
}
.referral-programs .referral-content .referral-pera {
  font-size: 24px;
  line-height: 1.5;
  color: var(--c-body);
  margin: 0;
}
@media (max-width: 1399px) {
  .referral-programs .referral-content .referral-pera {
    font-size: 20px;
  }
}

/* referral section end */
/* features section start */
.feature-section {
  padding: 80px 0 150px;
  position: relative;
  z-index: 1;
}
@media (min-width: 1200px) {
  .feature-section {
    min-height: 85dvh;
  }
}
@media (max-width: 991px) {
  .feature-section {
    padding: 60px 0 100px;
  }
}
.feature-section .feature-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
  z-index: -1;
}

.feature-item {
  max-width: 320px;
}
@media (max-width: 767px) {
  .feature-item {
    max-width: 100%;
  }
}
.feature-item .feature-icon {
  max-width: 100px;
  margin-inline: auto;
  text-align: center;
  display: block;
  height: 84px;
  -o-object-fit: contain;
  object-fit: contain;
}
.feature-item .feature-title {
  font-size: 24px;
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 12px;
  color: white;
}
@media (max-width: 575px) {
  .feature-item .feature-title {
    font-size: 22px;
  }
}
.feature-item .feature-pera {
  font-size: 18px;
  line-height: 1.5;
  color: white;
  text-align: justify;
}
@media (max-width: 575px) {
  .feature-item .feature-pera {
    font-size: 16px;
  }
}

/* features section end */
/* professionals section start */
.section-pera {
  line-height: 1.5;
  color: #ffffff;
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}
@media (max-width: 575px) {
  .section-pera {
    margin-bottom: 40px;
  }
}

.professionals-section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .professionals-section {
    padding: 60px 0;
  }
}
.professionals-section .professionals-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  z-index: -1;
}

.professional-slider-wrapper {
  position: relative;
  margin-top: 70px;
}
@media (max-width: 575px) {
  .professional-slider-wrapper {
    margin-top: 90px;
  }
}

.professionals-slider {
  padding-top: 20px;
  position: relative;
  z-index: 2;
}
.professionals-slider .slick-list {
  padding-inline: 0 !important;
  padding-bottom: 150px !important;
}
@media (max-width: 575px) {
  .professionals-slider .slick-list {
    padding-inline: 30px !important;
  }
}
.professionals-slider .slick-slide {
  padding: 0 12px;
}
@media (max-width: 575px) {
  .professionals-slider .slick-slide {
    padding: 0 10px;
  }
}

.professional-item {
  position: relative;
}
.professional-item img {
  width: 100%;
  opacity: 0.5;
  transition: opacity 0.3s;
  transition-delay: 0.2s;
}
@media (max-width: 575px) {
  .professional-item img {
    max-width: 325px;
    margin-inline: auto;
  }
}
.professional-item .professional-name {
  position: absolute;
  bottom: -165px;
  left: 0;
  right: 0;
  text-align: center;
  color: white;
  font-style: italic;
  opacity: 0;
  transition: opacity 0.3s;
  transition-delay: 0.2s;
  font-size: 36px;
}
@media (max-width: 1399px) {
  .professional-item .professional-name {
    font-size: 30px;
    line-height: 1;
    bottom: -130px;
  }
}
@media (max-width: 575px) {
  .professional-item .professional-name {
    bottom: -140px;
  }
}

.mobile-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-49.5%, calc(-50% - 55px));
  max-width: 400px;
  width: 100%;
  pointer-events: none;
  max-width: 20vw;
  z-index: -1;
}
@media (max-width: 1600px) {
  .mobile-frame {
    transform: translate(-49.5%, calc(-50% - 65px));
  }
}
@media (max-width: 1200px) {
  .mobile-frame {
    transform: translate(-49.5%, calc(-50% - 65px));
    max-width: 19.5vw;
  }
}
@media (max-width: 991px) {
  .mobile-frame {
    transform: translate(-49.5%, calc(-50% - 65px));
    max-width: 32.8vw;
  }
}
@media (max-width: 575px) {
  .mobile-frame {
    transform: translate(-49.5%, calc(-50% - 65px));
    max-width: 80vw;
  }
}

.slick-center img {
  opacity: 1;
}
.slick-center .professional-name {
  opacity: 1;
}

/* professionals section end */
section {
  scroll-margin-top: 76px;
}