@import url('https://fonts.googleapis.com/css?family=Montserrat:regular,500,600,700,800,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:regular&display=swap');
img,
video,
iframe,
hr,
a,
button {
  max-width: 100%;
}

img,
video,
iframe,
hr,
a,
button {
  max-width: 100%;
}

* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type='submit'] {
  display: inline-block;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

body,
html {
  height: 100%;
  margin: 0;
}

:root {
  --text-color: #212529; /* Text color */
  --red: #d0021b;
  --gray: #7b7b7b;
  --white: #fff;
  --yellow-light-bg: #f6f3ea;
  --green-light-bg: #e1f4f3;
  --green-dark-bg: #12b590;
}

body {
  color: var(--text-color);
  background: #f5f5f5;
  font-size: 16px;
  font-family: 'Montserrat', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Helvetica Neue, Arial, Noto Sans, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', Segoe UI Symbol,
    'Noto Color Emoji';
  line-height: 140%;
  min-height: calc(100vh - 100px);
}

[class*='__container'] {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}

.text-underline {
  text-decoration: underline;
}

.text-red {
  color: var(--red);
}

.green-button {
  color: var(--white);
  background: var(--green-dark-bg);
  font-size: 19px;
  font-weight: 800;
  padding: 20px 10px;
  border-radius: 10px;
  -webkit-box-shadow: 0 2px 7px 1px rgba(0, 0, 0, 0.19);
  box-shadow: 0 2px 7px 1px rgba(0, 0, 0, 0.19);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (any-hover: hover) {
  .green-button:hover {
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  }
}

.text-bold {
  font-weight: 700;
}

.title-desktop {
  @media (max-width: 767.98px) {
    display: none;
  }
}

.title-mobile {
  @media (min-width: 767.98px) {
    display: none;
  }
}
.common-title {
  font-size: 33px;
  line-height: 140%;
  font-weight: 700;
}
@media (max-width: 767.98px) {
  .common-title {
    font-size: 29px;
  }
}
@media (max-width: 600px) {
  .common-title {
    font-size: 23px;
  }
}

.green-light-bg .problem__container {
  background: var(--green-light-bg);
}

.text-green-dark {
  color: var(--green-dark-bg);
}

.header {
  background: var(--green-dark-bg);
  padding: 10px;
}
.header__text {
  text-align: center;
  font-size: 16px;
  font-weight: 900;
  color: var(--white);
}
@media (max-width: 767.98px) {
  .header__text {
    font-size: 13px;
  }
}

.hero__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: var(--yellow-light-bg);
  padding: 30px 0;
  gap: 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 991.98px) {
  .hero__container {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    grid-template-columns: 58% 38%;
    gap: 20px;
  }
}
@media (max-width: 767.98px) {
  .hero__container {
    grid-template-columns: 1fr;
    padding: 0 0 30px 0;
  }
}
.hero__left {
  padding-left: 90px;
}
@media (max-width: 991.98px) {
  .hero__left {
    padding-left: 20px;
  }
}
@media (max-width: 767.98px) {
  .hero__left {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    padding: 0 15px;
  }
}
.hero__title {
  font-weight: 700;
  font-size: 34px;
  line-height: 130%;
}
@media (max-width: 767.98px) {
  .hero__title {
    font-size: 25px;
  }
}
.hero__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.hero__list-item {
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
}
.hero__list-item i {
  --fa-primary-color: #000000;
  --fa-secondary-color: #e8ea35;
  --fa-secondary-opacity: 1;
  font-size: 28px;
}
.hero__button {
  max-width: 367px;
  margin-top: 34px;
}
@media (max-width: 991.98px) {
  .hero__button {
    max-width: unset;
  }
}
@media (max-width: 767.98px) {
  .hero__button {
    margin-top: 20px;
  }
}
.hero__payment-options {
  margin-top: 26px;
}
@media (max-width: 767.98px) {
  .hero__payment-options {
    margin-top: 10px;
  }
}
.hero__note {
  text-align: center;
  margin-top: 26px;
  font-style: italic;
}
@media (max-width: 767.98px) {
  .hero__note {
    margin-top: 10px;
  }
}
.hero__doctor {
  background: var(--white);
  margin-top: 20px;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  display: grid;
  grid-template-columns: 74% 26%;
}
@media (max-width: 767.98px) {
  .hero__doctor {
    grid-template-columns: 55% 45%;
  }
}
.hero__doctor-info {
  padding-left: 20px;
  padding-top: 22px;
  padding-bottom: 22px;
}
.hero__doctor-title {
  font-weight: 700;
}
.hero__doctor-text {
  line-height: 150%;
  margin-top: 6px;
}
@media (max-width: 767.98px) {
  .hero__doctor-text {
    font-size: 14px;
    font-weight: 500;
  }
}
.hero__doctor-name {
  font-style: italic;
  margin-top: 14px;
}
@media (max-width: 767.98px) {
  .hero__doctor-name {
    font-size: 13px;
    font-weight: 500;
  }
}
.hero__doctor-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
@media (max-width: 767.98px) {
  .hero__right {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
.hero__video {
  border-radius: 15px;
}
@media (max-width: 991.98px) {
  .hero__video {
    border-radius: 0;
  }
}

.partners__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: var(--white);
  padding-top: 48px;
  padding-bottom: 20px;
}
@media (max-width: 991.98px) {
  .partners__container {
    padding-top: 30px;
    padding-bottom: 20px;
  }
}
@media (max-width: 600px) {
  .partners__container {
    padding-top: 15px;
    padding-bottom: 10px;
  }
}
.partners__title {
  text-align: center;
  font-weight: 700;
  font-size: 19px;
}
.partners__image {
  width: 84%;
  margin-top: 16px;
}
@media (max-width: 991.98px) {
  .partners__image {
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .partners__image {
    margin-top: 8px;
  }
}

.features__container {
  background: var(--green-light-bg);
  padding-top: 50px;
  padding-bottom: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 991.98px) {
  .features__container {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.features__title {
  max-width: 1000px;
  text-align: center;
}
.features__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1180px;
  margin-top: 30px;
}
@media (max-width: 767.98px) {
  .features__cards {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 25px;
  }
}
@media (max-width: 600px) {
  .features__cards {
    grid-template-columns: 1fr;
  }
}
.features__card {
  padding: 52px 24px;
  background: var(--white);
  border-radius: 10px;
  -webkit-box-shadow: 0 4px 13px 0 rgba(9, 65, 60, 0.1019607843);
  box-shadow: 0 4px 13px 0 rgba(9, 65, 60, 0.1019607843);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  gap: 14px;
}
@media (max-width: 991.98px) {
  .features__card {
    padding: 18px 14px;
  }
}
.features__card-video {
  width: 130px;
  height: 130px;
  border-radius: 50%;
}
.features__card-title {
  font-size: 19px;
  line-height: 140%;
  font-weight: 700;
}
.features__card-title i {
  margin-right: 4px;
  --fa-secondary-color: #44df94;
  --fa-secondary-opacity: 1;
}
.problem__container {
  background: #fefcf4;
  padding-top: 50px;
  padding-bottom: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 98px;
}
@media (max-width: 991.98px) {
  .problem__container {
    padding-top: 20px;
    padding-bottom: 30px;
    gap: 50px;
  }
}
@media (max-width: 767.98px) {
  .problem__container {
    gap: 30px;
  }
}
.problem__wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1200px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 767.98px) {
  .problem__wrap {
    grid-template-columns: 1fr;
    gap: 0px;
  }
}
@media (max-width: 767.98px) {
  .problem__text {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}
.problem__text p {
  margin-top: 24px;
  font-size: 17px;
  line-height: 140%;
}
.problem__image {
  width: 100%;
  height: auto;
  border-radius: 15px;
}
@media (max-width: 767.98px) {
  .problem__image {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin-top: 20px;
  }
}
.problem__video {
  border-radius: 15px;
  width: 100%;
  height: auto;
}
@media (max-width: 767.98px) {
  .problem__video {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin-top: 20px;
  }
}
.problem__two-videos {
  display: grid;
  border-radius: 15px;
  overflow: hidden;
  max-height: 560px;
}
.problem__two-videos .problem__video {
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 0;
  height: 100%;
}
@media (max-width: 767.98px) {
  .problem__two-videos {
    grid-template-columns: 1fr;
  }
}
.problem__list {
  margin-top: 20px;
}
.problem__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
}
@media (max-width: 767.98px) {
  .problem__list li {
    gap: 6px;
  }
}
.problem__list li .fa-circle-xmark {
  --fa-primary-color: #fff;
  --fa-secondary-color: var(--red);
  --fa-secondary-opacity: 1;
  font-size: 24px;
}
.problem__list li:not(:last-child) {
  margin-bottom: 24px;
}
.problem__list-number {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--green-dark-bg);
  color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 700;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.problem__list-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  line-height: 150%;
}
.problem__button {
  margin-top: 16px;
}

.testimonials__container {
  background: var(--green-light-bg);
  padding-top: 42px;
  padding-bottom: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 767.98px) {
  .testimonials__container {
    padding-top: 20px;
    padding-bottom: 30px;
  }
}
.testimonials__stars i {
  --fa-primary-color: #f4d53f;
  --fa-secondary-color: #f8e400;
  --fa-secondary-opacity: 1;
  color: #f8e400;
  font-size: 17px;
}
.testimonials__stars-top {
  margin-top: 10px;
}
.testimonials__stars-top i {
  font-size: 28px;
}
@media (max-width: 767.98px) {
  .testimonials__stars-top i {
    font-size: 20px;
  }
}
.testimonials__wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1180px;
  margin-top: 40px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media (max-width: 767.98px) {
  .testimonials__wrap {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 20px;
  }
}
.testimonials__item {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  max-width: 500px;
  -webkit-box-shadow: 2px 2px 8px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 2px 8px 2px rgba(0, 0, 0, 0.1);
}
.testimonials__image {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.testimonials__item-wrap {
  padding: 20px 25px;
}
@media (max-width: 991.98px) {
  .testimonials__item-wrap {
    padding: 20px 15px;
  }
}
@media (max-width: 767.98px) {
  .testimonials__item-wrap {
    padding: 20px;
  }
}
.testimonials__text {
  line-height: 150%;
}
.testimonials__author {
  margin-top: 24px;
  font-weight: 700;
}

.kit__container {
  background: var(--white);
  padding-top: 60px;
  padding-bottom: 64px;
}
@media (max-width: 767.98px) {
  .kit__container {
    padding-top: 20px;
    padding-bottom: 30px;
  }
}
.kit__wrap {
  max-width: 1180px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto;
}
@media (max-width: 991.98px) {
  .kit__wrap {
    grid-template-columns: 40% 56%;
  }
}
@media (max-width: 767.98px) {
  .kit__wrap {
    grid-template-columns: 1fr;
  }
}
.kit__image {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  aspect-ratio: 577/410;
  height: auto;
}
@media (max-width: 991.98px) {
  .kit__image {
    aspect-ratio: 1/1;
  }
}
@media (max-width: 767.98px) {
  .kit__image {
    aspect-ratio: 577/410;
    max-height: 410px;
    width: auto;
    margin: 0 auto;
  }
}
.kit__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.kit__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
  font-size: 18px;
  line-height: 140%;
}
@media (max-width: 767.98px) {
  .kit__list li {
    font-size: 16px;
  }
}
.kit__number {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--green-dark-bg);
  color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 700;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.guide__container {
  background: var(--green-dark-bg);
  padding-top: 60px;
  padding-bottom: 66px;
}
@media (max-width: 767.98px) {
  .guide__container {
    padding-top: 20px;
    padding-bottom: 30px;
  }
}
.guide__wrap {
  display: grid;
  grid-template-columns: 25% 75%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}
@media (max-width: 991.98px) {
  .guide__wrap {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}
.guide__info {
  position: relative;
  right: -20px;
  z-index: 1;
  background: var(--white);
  border-radius: 15px;
  padding: 20px 25px;
  width: 370px;
}
@media (max-width: 991.98px) {
  .guide__info {
    right: unset;
    top: 30px;
    width: 460px;
  }
}
@media (max-width: 767.98px) {
  .guide__info {
    padding: 20px 20px 32px;
    top: 20px;
    width: 100%;
  }
}
.guide__text {
  margin-top: 20px;
  line-height: 150%;
}
.guide__video {
  border-radius: 15px;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .guide__video {
    z-index: 2;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
}

.table__container {
  background: var(--white);
  padding-top: 50px;
  padding-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 767.98px) {
  .table__container {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.table__subtitle {
  text-align: center;
  color: var(--gray);
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
}
@media (max-width: 767.98px) {
  .table__subtitle {
    font-size: 18px;
  }
}
.table__title {
  text-align: center;
  margin-top: 20px;
}
.table__wrap {
  max-width: 930px;
  width: 100%;
  margin-top: 44px;
}
@media (max-width: 767.98px) {
  .table__wrap {
    margin-top: 20px;
  }
}
.table__header {
  display: grid;
  grid-template-columns: 50% repeat(3, 1fr);
  text-align: center;
  font-weight: 700;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #c1c1c1;
}
@media (max-width: 991.98px) {
  .table__header {
    grid-template-columns: minmax(105px, 400px) repeat(3, minmax(74px, 140px));
  }
}
@media (max-width: 767.98px) {
  .table__header {
    font-size: 14px;
  }
}
@media (max-width: 600px) {
  .table__header {
    font-size: 10px;
  }
}
.table__header-item {
  padding: 12px 10px;
}
@media (max-width: 767.98px) {
  .table__header-item {
    padding: 8px 4px;
  }
}
.table__row {
  display: grid;
  grid-template-columns: 50% repeat(3, 1fr);
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 991.98px) {
  .table__row {
    grid-template-columns: minmax(120px, 400px) repeat(3, minmax(60px, 140px));
  }
}
@media (max-width: 767.98px) {
  .table__row {
    font-size: 14px;
    line-height: 130%;
  }
}
.table__row:nth-child(odd) {
  background-color: rgba(0, 0, 0, 0.02);
}
.table__row-item {
  padding: 10px;
}
@media (max-width: 767.98px) {
  .table__row-item {
    padding: 8px 4px;
  }
}
.table__row-item .fa-circle-xmark {
  --fa-primary-color: #000;
  --fa-secondary-color: #dbdbdb;
  --fa-secondary-opacity: 1;
  font-size: 24px;
}
.table__row-item .fa-circle-check {
  --fa-primary-color: #000000;
  --fa-secondary-color: #e8ea35;
  --fa-secondary-opacity: 1;
  font-size: 24px;
}
.table__row-item:first-child {
  text-align: right;
}
@media (max-width: 767.98px) {
  .table__row-item:first-child {
    text-align: left;
  }
}

.advantages__container {
  background: var(--green-light-bg);
  padding-top: 66px;
  padding-bottom: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 991.98px) {
  .advantages__container {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.advantages__wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1180px;
  width: 100%;
  justify-items: center;
}
@media (max-width: 767.98px) {
  .advantages__wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 600px) {
  .advantages__wrap {
    grid-template-columns: 1fr;
  }
}
.advantages__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  max-width: 340px;
}
.advantages__image {
  width: 110px;
  height: auto;
  border-radius: 50%;
}
.advantages__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 140%;
  margin-top: 24px;
}
.advantages__text {
  line-height: 150%;
}
@media (max-width: 767.98px) {
  .advantages__text {
    margin-top: 10px;
  }
}

.offer__container {
  background: var(--white);
  padding-top: 56px;
  padding-bottom: 60px;
}
@media (max-width: 767.98px) {
  .offer__container {
    padding-top: 20px;
    padding-bottom: 30px;
  }
}
.offer__wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
}
@media (max-width: 991.98px) {
  .offer__wrap {
    grid-template-columns: 40% 58%;
  }
}
@media (max-width: 767.98px) {
  .offer__wrap {
    grid-template-columns: 1fr;
  }
}
.offer__slider {
  overflow: hidden;
  max-width: 100vw;
  width: 100%;
}
.offer__arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #e1f4f3;
  cursor: pointer;
  border-radius: 50%;
  color: #000;
  font-weight: 700;
  font-size: 22px;
  z-index: 2;
  width: 35px;
  height: 35px;
}
.offer__arrow-prev {
  left: 20px;
}
@media (max-width: 600px) {
  .offer__arrow-prev {
    left: 10px;
  }
}
.offer__arrow-next {
  right: 20px;
}
@media (max-width: 600px) {
  .offer__arrow-next {
    right: 10px;
  }
}
.offer__slide-top {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.offer__slide-top img {
  width: 100%;
  aspect-ratio: auto 557/557;
  display: block;
}
@media (max-width: 767.98px) {
  .offer__slide-top img {
    width: 100%;
    height: auto;
  }
}
.offer__slider-bottom {
  margin-top: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.offer__slider-bottom .slick-list {
  width: 100%;
  padding: 0 !important;
}
.offer__slider-bottom .slick-list .slick-track {
  width: 100% !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.offer__slide-bottom {
  cursor: pointer !important;
  overflow: hidden;
  margin: 5px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.offer__slide-bottom img {
  height: 100%;
  width: 100%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.offer__subtile {
  font-weight: 800;
  font-size: 20px;
  line-height: 140%;
  color: #d15419;
}
@media (max-width: 767.98px) {
  .offer__subtile {
    font-size: 18px;
  }
}
@media (max-width: 600px) {
  .offer__subtile {
    font-size: 16px;
  }
}
.offer__reviews {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 36px;
  margin-top: 8px;
}
@media (max-width: 1023px) {
  .offer__reviews {
    gap: 10px;
  }
}
@media (max-width: 991.98px) {
  .offer__reviews {
    font-size: 14px;
  }
}
@media (max-width: 600px) {
  .offer__reviews {
    font-size: 12px;
  }
}
.offer__reviews-stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}
.offer__reviews-stars-img {
  width: 150px;
}
@media (max-width: 991.98px) {
  .offer__reviews-stars-img {
    width: 80px;
  }
}
.offer__reviews-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
}
.offer__reviews-trustpilot {
  width: 80px;
}
.offer__desc {
  line-height: 150%;
  margin-top: 10px;
}
.offer__title-small {
  margin-top: 26px;
  font-weight: 700;
}
@media (max-width: 767.98px) {
  .offer__title-small {
    margin-top: 16px;
  }
}
.offer__cards {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}
.offer__card {
  border-radius: 10px;
  background: var(--yellow-light-bg);
  border: 1px solid #d5d5d5;
  overflow: hidden;
}
.offer__card-active .offer__card-header {
  background: var(--green-dark-bg);
  color: var(--white);
}
.offer__card-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
  background: #f0f0f0;
  padding: 12px 12px 12px 20px;
  border-bottom: 1px solid #d5d5d5;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.offer__card-header-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 700;
  gap: 6px;
}
.offer__card-header-left i {
  color: #e16d2e;
}
.offer__card-header-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.offer__card-price-old {
  text-decoration: line-through;
}
.offer__card-price-new span {
  font-weight: 700;
}
.offer__card-price-discount {
  font-size: 14px;
  font-weight: 700;
  background: #000;
  border-radius: 20px;
  padding: 2px 14px;
  color: var(--white);
}
.offer__card-body {
  padding: 20px 20px 14px;
}
.offer__card-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 7px;
}
.offer__card-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
@media (max-width: 767.98px) {
  .offer__card-list li {
    font-size: 14px;
  }
}
.offer__card-list li i {
  --fa-primary-color: #000;
  --fa-secondary-color: #e8ea35;
  --fa-secondary-opacity: 1;
  font-size: 28px;
}
.offer__collapsed li:not(:first-child) {
  display: none;
}
.offer__card-view {
  cursor: pointer;
  text-decoration: underline;
  margin-top: 7px;
}
.offer__button {
  margin-top: 20px;
}
@media (max-width: 600px) {
  .offer__button {
    font-size: 17px;
  }
}
.offer .hero__doctor {
  background: #f5f5f5;
}
.offer__payment-options {
  margin-top: 20px;
}
.offer__payment-note {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 10px;
  gap: 10px;
}
@media (max-width: 600px) {
  .offer__payment-note {
    font-size: 14px;
  }
}
.offer__features {
  margin-top: 16px;
  background: #f5f5f5;
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 40px 10px 24px;
  gap: 40px;
}
@media (max-width: 767.98px) {
  .offer__features {
    padding: 30px 10px 24px;
    gap: 20px;
  }
}
.offer__features-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 991.98px) {
  .offer__features-items {
    gap: 10px;
  }
}
@media (max-width: 600px) {
  .offer__features-items {
    grid-template-columns: repeat(2, 1fr);
  }
}
.offer__features-item {
  max-width: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
}
.offer__features-item i {
  font-size: 30px;
}
.offer__features-text {
  text-align: center;
  font-size: 12px;
  line-height: 130%;
}
.offer__features-title {
  font-weight: 700;
}

.doctor__container {
  background: var(--white);
  padding-top: 24px;
  padding-bottom: 60px;
}
@media (max-width: 767.98px) {
  .doctor__container {
    padding-top: 20px;
    padding-bottom: 30px;
  }
}
.doctor__wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}
@media (max-width: 991.98px) {
  .doctor__wrap {
    grid-template-columns: 40% 58%;
    gap: 10px;
  }
}
@media (max-width: 767.98px) {
  .doctor__wrap {
    grid-template-columns: 1fr;
    margin-top: 20px;
    gap: 0;
  }
}
@media (max-width: 767.98px) {
  .doctor__left {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}
@media (max-width: 767.98px) {
  .doctor__title {
    text-align: center;
  }
}
.doctor__text {
  margin-top: 22px;
  max-width: 510px;
  line-height: 150%;
}
@media (max-width: 767.98px) {
  .doctor__text {
    max-width: unset;
  }
}
.doctor__right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 991.98px) {
  .doctor__right {
    gap: 10px;
  }
}
@media (max-width: 767.98px) {
  .doctor__right {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}
.doctor__image {
  max-width: 274px;
  width: 100%;
  border-radius: 20px;
  display: block;
}
@media (max-width: 767.98px) {
  .doctor__image {
    max-width: unset;
  }
}

.steps__container {
  background: var(--green-light-bg);
  padding-top: 50px;
  padding-bottom: 54px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 767.98px) {
  .steps__container {
    padding-top: 20px;
    padding-bottom: 30px;
  }
}
.steps__title {
  text-align: center;
}
.steps__wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1140px;
  margin-top: 50px;
  width: 100%;
}
@media (max-width: 991.98px) {
  .steps__wrap {
    margin-top: 30px;
  }
}
@media (max-width: 767.98px) {
  .steps__wrap {
    grid-template-columns: 1fr;
    justify-items: center;
    margin-top: 20px;
  }
}
.steps__item {
  max-width: 354px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
@media (max-width: 767.98px) {
  .steps__item {
    max-width: 500px;
  }
}
.steps__item-title {
  font-size: 18px;
  font-weight: 700;
}
.steps__item-video {
  margin-top: 10px;
  border-radius: 15px;
}
.steps__item-text {
  margin-top: 20px;
}

.faq__container {
  background: var(--white);
  padding-top: 58px;
  padding-bottom: 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 767.98px) {
  .faq__container {
    padding-top: 20px;
    padding-bottom: 30px;
  }
}
.faq__title {
  text-align: center;
}
.faq__accordion {
  margin-top: 26px;
  max-width: 1200px;
  width: 100%;
}
@media (max-width: 767.98px) {
  .faq__accordion {
    margin-top: 16px;
  }
}
.faq__accordion-item:not(:first-child) {
  margin-top: 15px;
}
@media (max-width: 767.98px) {
  .faq__accordion-item:not(:first-child) {
    margin-top: 10px;
  }
}
.faq__accordion-toggle {
  font-size: 18px;
  line-height: 140%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1px solid #d6d6d6;
  padding: 12px 16px 12px 12px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 767.98px) {
  .faq__accordion-toggle {
    font-size: 19px;
    line-height: 140%;
  }
}
@media (any-hover: hover) {
  .faq__accordion-toggle:hover {
    color: var(--green-dark-bg);
  }
}
.faq__accordion-toggle i {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 14px;
}
.faq__accordion-active {
  color: var(--green-dark-bg);
}
.faq__accordion-active i {
  -webkit-transform: rotateX(180deg);
  transform: rotateX(180deg);
}
.faq__accordion-active .faq__accordion-content {
  display: block;
}
.faq__accordion-content {
  display: none;
  padding: 22px 16px 12px 12px;
  line-height: 150%;
}
@media (max-width: 767.98px) {
  .faq__accordion-content {
    padding: 12px 16px 12px 12px;
  }
}

.footer__container {
  background: var(--yellow-light-bg);
  padding-top: 30px;
  padding-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
@media (max-width: 767.98px) {
  .footer__container {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.footer__wrap {
  max-width: 1200px;
  width: 100%;
}
.footer__wrap p {
  margin-top: 20px;
  font-size: 14px;
  line-height: 150%;
}
.footer__top {
  font-size: 14px;
  line-height: 150%;
}
.footer__copy {
  font-size: 12px;
  line-height: 140%;
  margin-top: 8px;
  margin-bottom: 8px;
}
.footer__menu {
  font-size: 12px;
  line-height: 140%;
  margin-top: 4px;
}
.footer__menu a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: var(--text-color);
}
@media (any-hover: hover) {
  .footer__menu a:hover {
    color: var(--green-dark-bg);
  }
}

.sticky-cta-mobile {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1rem;
  background-color: white;
  box-shadow: 0px -4px 12px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  box-sizing: border-box;
}

.sticky-cta-mobile .green-button {
  width: 100%;
  margin: 0;
  padding: 1.2rem 1rem;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .sticky-cta-mobile {
    display: block;
  }
  footer.footer {
    padding-bottom: 72px;
  }
}
