/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 99; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}
.modal__closer {
  position: fixed;
  top: 0;
  bottom: 0;
  display: block;
}
@media screen and (max-width: 768px) {
  .modal__closer {
    display: none;
  }
}
.modal-content {
  background-color: #fefefe;
  margin: 0 0 0 auto;
  border: none;
  width: 50%;
  height: 100%;
  transition: left 0.6s ease-in-out;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .modal-content {
    width: 100%;
  }
}
.modal__content {
  max-height: 100%;
  overflow: auto;
  padding: 70px 11%;
  margin-top: auto;
  margin-bottom: auto;
}
@media screen and (max-width: 768px) {
  .modal__content {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.modal.opened {
  display: block;
  opacity: 1;
}
.modal.opened .modal-content {
  left: 50%;
}
@media screen and (max-width: 768px) {
  .modal.opened .modal-content {
    left: 0;
  }
}
.modal.opened .modal__closer {
  width: 50%;
  left: 0;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .modal.opened .modal__closer {
    display: none;
  }
}
.modal {
  /* The Close Button */
}
.modal .close {
  top: 20px;
  left: calc(50% + 20px);
  position: absolute;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .modal .close {
    left: 10px;
    top: 10px;
  }
}
.modal .close svg {
  transition: all 0.2s ease-in-out;
}
@media screen and (max-width: 768px) {
  .modal .close svg {
    width: 20px;
    height: auto;
  }
}
.modal .close:hover, .modal .close:focus {
  color: #00A18C;
}
.modal .close:hover svg, .modal .close:focus svg {
  fill: #00A18C;
}
.modal__title {
  margin-bottom: 28px;
  font-weight: 800;
  font-size: 40px;
}
@media screen and (max-width: 768px) {
  .modal__title {
    margin-bottom: 16px;
    font-size: 24px;
  }
}
.modal__text {
  font-family: "Inter Tight", sans-serif;
  font-size: 20px;
  line-height: 140%;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .modal__text {
    font-size: 14px;
    margin-bottom: 16px;
  }
}
.modal__form__input {
  margin-bottom: 30px;
}
.modal__form__input label {
  font-family: "Inter Tight", sans-serif;
  display: block;
  font-weight: 400;
  font-size: 18px;
  color: #848797;
  margin-bottom: 5px;
}
.modal__form__input input[type=text] {
  border: none;
  padding: 3px 0;
  border-bottom: 1px solid #C6D4DE;
  width: 100%;
  font-size: 18px;
}
.modal__form__input input[type=text]:focus {
  border-color: #00A18C;
  outline: none;
}
.modal__form__input input[type=text].error {
  border-color: #EB5757;
}
.modal__form__input textarea {
  border: 1px solid #C6D4DE;
  border-radius: 14px;
  min-height: 150px;
  width: 100%;
  padding: 10px 20px;
}
.modal__form__input textarea:focus {
  border-color: #00A18C;
  outline: none;
}
.modal__form__input textarea.error {
  border-color: #EB5757;
}
.modal__form__footer {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.modal__form__footer .btn {
  width: calc(50% - 10px);
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .modal__form__footer .btn {
    margin-right: 0;
    width: 100%;
    margin-bottom: 10px;
  }
}
.modal__form__footer .pd_text {
  margin-left: auto;
  width: calc(50% - 10px);
}
@media screen and (max-width: 768px) {
  .modal__form__footer .pd_text {
    margin-left: 0;
    width: 100%;
  }
}

html {
  scroll-behavior: smooth;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #F7F8FA;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #1E3246;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #00A18C;
}

body {
  font-family: "Raleway", sans-serif;
  background: #fff;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #1E3246;
}
body.modal_opened {
  overflow: hidden;
}

* {
  box-sizing: border-box;
}

a, button {
  cursor: pointer;
}

.container {
  width: 1540px;
  max-width: calc(100% - 20px);
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1550px) {
  .container {
    width: 1200px;
  }
}
@media screen and (max-width: 1200px) {
  .container {
    width: 1100px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .container {
    max-width: calc(100% - 30px);
    width: 900px;
  }
}
@media screen and (max-width: 768px) {
  .container {
    max-width: 100%;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 768px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 8;
    background: #fff;
  }
}
.header__top {
  background: #EBF4FA;
  position: relative;
}
.header__top__link {
  padding: 12px 30px;
  text-align: center;
  font-weight: 700;
  text-decoration: none;
  color: #8FA2AF;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.035em;
  font-feature-settings: "pnum" on, "lnum" on;
}
@media screen and (max-width: 1024px) {
  .header__top__link {
    padding: 10px 20px;
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  .header__top__link {
    font-size: 12px;
    text-align: left;
    padding-left: 20px;
    padding-right: 40px;
  }
}
.header .close {
  position: absolute;
  width: 16px;
  height: 16px;
  background-image: url(../img/svg/close.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  top: 12px;
  right: 30px;
  display: block;
}
@media screen and (max-width: 768px) {
  .header .close {
    width: 14px;
    height: 14px;
    right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .header__socrow {
    display: none;
  }
}
.header__socials {
  width: 100%;
  display: flex;
  padding: 14px 0;
  justify-content: flex-end;
  font-weight: 500;
  font-size: 14px;
  font-family: "Inter Tight", sans-serif;
}
.header__socials__item {
  margin-left: 30px;
  color: #8599A9;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}
.header__socials__item__icon {
  margin-right: 7px;
  display: block;
}
.header__socials__item:hover {
  color: #00A18C;
}
.header__socials__item:hover svg {
  fill: #00A18C;
}
.header__main {
  border-top: 1px solid #EAF2F7;
  border-bottom: 1px solid #EAF2F7;
}
@media screen and (max-width: 768px) {
  .header__main {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.header__main > .container {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.header__logo {
  display: flex;
  flex-flow: row;
  align-items: center;
}
.header__logo__img img {
  width: 200px;
  display: block;
  height: auto;
}
@media screen and (max-width: 1550px) {
  .header__logo__img img {
    width: 180px;
  }
}
@media screen and (max-width: 768px) {
  .header__logo__img img {
    width: 130px;
  }
}
.header__logo__slogan {
  padding-left: 15px;
  font-family: "Inter Tight", sans-serif;
  color: #AAC9C6;
  font-weight: 500;
  font-size: 14px;
  max-width: 165px;
}
@media screen and (max-width: 1550px) {
  .header__logo__slogan {
    font-size: 13px;
  }
}
@media screen and (max-width: 1024px) {
  .header__logo__slogan {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .header__logo__slogan {
    display: none;
  }
}
.header__contacts {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  margin-left: auto;
}
@media screen and (max-width: 1550px) {
  .header__contacts {
    padding-top: 10px;
  }
}
@media screen and (max-width: 768px) {
  .header__contacts {
    display: none;
  }
}
.header__contacts__item {
  display: flex;
  flex-flow: column;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-left: 40px;
}
@media screen and (max-width: 1550px) {
  .header__contacts__item {
    padding-top: 15px;
    padding-bottom: 15px;
    margin-left: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .header__contacts__item {
    padding-top: 10px;
    padding-bottom: 10px;
    margin-left: 20px;
  }
}
.header__contacts__top {
  font-weight: 700;
  font-size: 20px;
  display: block;
  text-decoration: none;
  color: #1E3246;
}
@media screen and (max-width: 1550px) {
  .header__contacts__top {
    font-size: 18px;
  }
}
@media screen and (max-width: 1024px) {
  .header__contacts__top {
    font-size: 16px;
  }
}
.header__contacts__min {
  padding-top: 6px;
  font-weight: 500;
  color: #8599A9;
  font-size: 16px;
  text-decoration: none;
}
@media screen and (max-width: 1550px) {
  .header__contacts__min {
    font-size: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .header__contacts__min {
    font-size: 14px;
  }
}
.header__contacts__messengers {
  display: flex;
  align-self: flex-start;
  padding-top: 17px;
  padding-left: 7px;
}
@media screen and (max-width: 768px) {
  .header__contacts__messengers {
    display: none;
  }
}
.header__consult {
  border-left: 1px solid #EAF2F6;
  border-right: 1px solid #EAF2F6;
  display: flex;
  align-items: center;
  padding: 15px 30px;
  text-decoration: none;
  margin-left: 80px;
}
@media screen and (max-width: 1550px) {
  .header .header__consult {
    margin-left: 20px;
    padding: 10px;
  }
}
@media screen and (max-width: 1200px) {
  .header .header__consult {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .header .header__consult {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .header .header__consult {
    display: none;
  }
}
.header__consult__img {
  border: 5px solid #EDF2F8;
  border-radius: 100%;
  position: relative;
}
.header__consult__img::after {
  top: -5px;
  right: -5px;
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: #00A18C;
  border: 2px solid #FFFFFF;
  position: absolute;
  border-radius: 100%;
}
.header__consult__img img {
  border-radius: 100%;
  display: block;
  width: 50px;
  height: auto;
  border: 1px solid #A9C9ED;
}
@media screen and (max-width: 1550px) {
  .header__consult__img img {
    width: 45px;
  }
}
.header__consult__txt {
  padding-left: 10px;
  color: #1E3246;
  font-weight: 500;
  font-family: "Inter Tight", sans-serif;
}
@media screen and (max-width: 1550px) {
  .header__consult__txt {
    padding-left: 8px;
  }
}
.header__consult__slider {
  border-left: none;
  border-right: none;
  padding: 0;
  margin-left: 25px;
}
@media screen and (max-width: 1024px) {
  .header__consult__slider {
    margin-left: 0;
    margin-top: 20px;
  }
}
.header__consult__slider .header__consult__img {
  border-color: #fff;
}
.header__bot {
  border-bottom: 1px solid #EAF2F7;
}
.header__menu {
  display: flex;
  flex-flow: row wrap;
}
@media screen and (max-width: 768px) {
  .header__menu {
    display: none;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .menu_opened .header__menu {
    display: flex;
    flex-direction: column;
  }
}
.header__menu__item a {
  padding: 25px;
  line-height: 1;
  position: relative;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1E3246;
  font-size: 15px;
  text-decoration: none;
  font-weight: 600;
}
@media screen and (max-width: 1550px) {
  .header__menu__item a {
    padding: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .header__menu__item a {
    padding: 20px 15px;
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .header__menu__item a {
    padding: 20px 0;
  }
}
.header__menu__item__icon {
  display: inline-flex;
  align-items: center;
  margin-bottom: 3px;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .header__menu__item__icon {
    display: none;
  }
}
.header__menu__item__icon svg {
  fill: #00A18C;
}
@media screen and (max-width: 1024px) {
  .header__menu__item__icon svg {
    width: 15px;
    height: auto;
  }
}
.header__menu__item__brd {
  border-left: 1px solid #EAF2F6;
  border-right: 1px solid #EAF2F6;
  padding-left: 15px;
  padding-right: 15px;
  margin-right: 15px;
}
@media screen and (max-width: 1024px) {
  .header__menu__item__brd {
    margin-right: 10px;
    padding-right: 10px;
    padding-left: 10px;
  }
}
@media screen and (max-width: 768px) {
  .header__menu__item__brd {
    border: none;
    padding-left: 0;
    padding-right: 0;
  }
}
.header__menu__item__color a {
  color: #D8554E;
}
.header__menu__item__inlinesign {
  display: inline-flex;
  margin-left: 5px;
  width: 28px;
  height: 28px;
  border-radius: 100%;
  background: #FAE8E7;
  align-items: center;
  justify-content: center;
  margin-top: -7px;
  margin-bottom: -6px;
}
.header__menu__item__topsign {
  color: #00A18C;
  margin-top: -15px;
  font-weight: 400;
  font-family: "Inter Tight", sans-serif;
}
.header__mobile {
  display: none;
}
@media screen and (max-width: 768px) {
  .header__mobile {
    display: flex;
    margin-left: auto;
  }
  .header__mobile__btn {
    border: 1px solid #00A18C;
    border-radius: 100%;
    width: 44px;
    height: 44px;
    display: inline-flex;
    background: #fff;
    color: #00A18C;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
  }
  .header__mobile__btn__menu {
    flex-direction: column;
    padding-left: 13px;
    padding-right: 13px;
    position: relative;
  }
  .header__mobile__btn__menu span {
    display: block;
    width: 100%;
    height: 2px;
    background: #00A18C;
    margin: 2px auto;
    transition: all 0.2s ease-in-out;
    max-width: 16px;
  }
  .header__mobile__btn__menu span:last-child {
    width: 50%;
    margin-right: 0;
  }
  .menu_opened .header__mobile__btn__menu span:last-child {
    display: none;
  }
  .menu_opened .header__mobile__btn__menu span:first-child {
    transform: rotate(45deg);
    position: absolute;
    width: 16px;
  }
  .menu_opened .header__mobile__btn__menu span:nth-child(2) {
    transform: rotate(-45deg);
  }
}

.messenger_link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  background-color: #00A18C;
  margin: 3px;
  transition: all 0.2s ease-in-out;
}
.messenger_link__viber {
  background: #802AEE;
}
.messenger_link__tg {
  background: #2AABEE;
}
.messenger_link__wa {
  background: #29D04E;
}
.messenger_link:hover {
  opacity: 0.8;
}

.footer {
  margin-top: 140px;
  background: #F7F8FA;
  font-family: "Inter Tight", sans-serif;
}
@media screen and (max-width: 1024px) {
  .footer {
    margin-top: 90px;
  }
}
@media screen and (max-width: 768px) {
  .footer {
    margin-top: 70px;
  }
}
.footer__bottom {
  background: #F0F2F5;
  padding: 40px 0;
}
.footer__bottom__content {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
}
.footer__copy {
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  color: #BAC0CB;
  text-align: right;
}
@media screen and (max-width: 1024px) {
  .footer__copy {
    width: 100%;
    text-align: left;
  }
}
.footer__copy__txt {
  margin-bottom: 5px;
}
.footer__copy__link {
  color: #00A18C;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .footer__copy__link {
    margin-top: 15px;
    display: inline-block;
  }
}
.footer__age {
  display: inline-flex;
  align-items: center;
  max-width: 565px;
  font-weight: 500;
  font-size: 16px;
}
@media screen and (max-width: 1024px) {
  .footer__age {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .footer__age {
    margin-bottom: 30px;
    flex-wrap: wrap;
    font-size: 14px;
  }
}
.footer__age__icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 100%;
  background: #00A18C;
  color: #fff;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.footer__age__txt {
  padding-left: 14px;
  line-height: 140%;
  color: #848797;
  width: calc(100% - 42px);
}
@media screen and (max-width: 768px) {
  .footer__age__txt {
    width: 100%;
    padding-left: 0;
    padding-top: 10px;
  }
}

.section {
  padding-top: 140px;
}
@media screen and (max-width: 1550px) {
  .section {
    padding-top: 100px;
  }
}
@media screen and (max-width: 1024px) {
  .section {
    padding-top: 90px;
  }
}
@media screen and (max-width: 768px) {
  .section {
    padding-top: 70px;
  }
}
.section__title {
  margin-top: 0;
  font-weight: 700;
  font-size: 50px;
  margin-bottom: 40px;
}
@media screen and (max-width: 1550px) {
  .section__title {
    font-size: 40px;
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 1024px) {
  .section__title {
    font-size: 36px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .section__title {
    font-size: 30px;
  }
}
.section__title__sub {
  font-weight: 400;
  font-size: 30px;
  padding-top: 10px;
}
@media screen and (max-width: 1550px) {
  .section__title__sub {
    font-size: 26px;
    padding-top: 8px;
  }
}
@media screen and (max-width: 1024px) {
  .section__title__sub {
    font-size: 26px;
  }
}
@media screen and (max-width: 768px) {
  .section__title__sub {
    font-size: 24px;
  }
}
.section__head {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .section__head {
    flex-wrap: wrap;
  }
}
.section__head .section__title {
  width: 50%;
}
@media screen and (max-width: 1024px) {
  .section__head .section__title {
    width: 100%;
  }
}
.section__head__doctor {
  width: 50%;
}
@media screen and (max-width: 1024px) {
  .section__head__doctor {
    width: 100%;
  }
}
.section + .section__grey {
  margin-top: 140px;
}
@media screen and (max-width: 1550px) {
  .section + .section__grey {
    margin-top: 100px;
  }
}
@media screen and (max-width: 1024px) {
  .section + .section__grey {
    margin-top: 90px;
  }
}
@media screen and (max-width: 768px) {
  .section + .section__grey {
    margin-top: 40px;
  }
}
.section__grey {
  padding-bottom: 140px;
  background: #F7F8FA;
}
@media screen and (max-width: 1550px) {
  .section__grey {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 1024px) {
  .section__grey {
    padding-bottom: 90px;
  }
}
@media screen and (max-width: 768px) {
  .section__grey {
    padding-bottom: 40px;
  }
}
.section__grey + .section__grey {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .section__bottom .btn {
    width: 100%;
  }
}

.service_top {
  background-color: #EBF4FA;
  background-image: url("../img/service_top.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .service_top {
    padding-top: 104px;
  }
}
.service_top .container {
  position: relative;
}
.service_top__img {
  position: absolute;
  right: 6.25%;
  bottom: 0;
  height: calc(100% - 50px);
  z-index: 2;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .service_top__img {
    right: 20px;
    width: 40%;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .service_top__img {
    position: relative;
    height: auto;
    width: 100%;
    bottom: unset;
    right: unset;
  }
}
.service_top__img img {
  height: 100%;
  width: auto;
  display: block;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .service_top__img img {
    height: auto;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .service_top__img img {
    height: auto;
    width: 100%;
  }
}
.service_top__imgcircle {
  position: absolute;
  right: 3%;
  bottom: 28%;
  width: 200px;
  z-index: 3;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .service_top__imgcircle {
    right: 20px;
    bottom: unset;
    top: 50px;
  }
}
@media screen and (max-width: 768px) {
  .service_top__imgcircle {
    bottom: 20px;
    width: 165px;
  }
}
.service_top__imgcircle img {
  width: 100%;
  height: auto;
  display: block;
}
.service_top__imgcircle_back {
  position: absolute;
  right: 36%;
  bottom: 10%;
  width: 200px;
  z-index: 1;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .service_top__imgcircle_back {
    right: -20px;
    bottom: 20%;
    width: 150px;
  }
}
.service_top__imgcircle_back img {
  height: 100%;
  width: auto;
  display: block;
}
.service_top__content {
  padding-top: 85px;
  padding-bottom: 85px;
  max-width: 820px;
}
@media screen and (max-width: 1550px) {
  .service_top__content {
    max-width: 650px;
    padding-top: 65px;
    padding-bottom: 65px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .service_top__content {
    padding-top: 40px;
    padding-bottom: 40px;
    max-width: 60%;
  }
}
@media screen and (max-width: 768px) {
  .service_top__content {
    padding-top: 50px;
    padding-bottom: 10px;
  }
}
.service_top__content h1 {
  margin-top: 0;
  margin-bottom: 20px;
}
.service_top__text {
  font-size: 26px;
  line-height: 170%;
  margin-bottom: 80px;
}
@media screen and (max-width: 1550px) {
  .service_top__text {
    line-height: 150%;
    font-size: 20px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 1024px) {
  .service_top__text {
    font-size: 20px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .service_top__text {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.service_top__list {
  padding-left: 0;
  margin-bottom: 30px;
  font-size: 20px;
  list-style: none;
}
@media screen and (max-width: 1024px) {
  .service_top__list {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .service_top__list {
    font-size: 16px;
  }
}
.service_top__list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
}
.service_top__list li:before {
  position: absolute;
  background-image: url("../img/svg/check.svg");
  width: 15px;
  height: 15px;
  content: "";
  left: 0;
  top: 4px;
  display: block;
}
.service_top__btns {
  margin-top: 50px;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .service_top__btns {
    margin-top: 30px;
  }
  .service_top__btns .btn {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .service_top__btns {
    margin-top: 30px;
  }
  .service_top__btns .btn {
    width: 100%;
  }
}

h1 {
  margin-top: 0;
  margin-bottom: 20px;
  color: #1E3246;
  font-weight: 700;
  font-size: 60px;
}
@media screen and (max-width: 1550px) {
  h1 {
    margin-bottom: 16px;
    font-size: 48px;
  }
}
@media screen and (max-width: 1024px) {
  h1 {
    font-size: 40px;
  }
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
}

.btn {
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: uppercase;
  background: transparent;
  border: 2px solid #00A18C;
  color: #00A18C;
  padding-left: 40px;
  padding-right: 40px;
  font-weight: 600;
  font-size: 14px;
  font-family: "Raleway", sans-serif;
  border-radius: 14px;
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
.btn:hover {
  background: #00A18C;
  color: #fff;
}
.btn__green {
  background: #00A18C;
  color: #fff;
}
.btn__green:hover {
  background: #00C0A7;
  border-color: #00C0A7;
}
.btn__grad {
  background: linear-gradient(85.88deg, #00A18C 62.24%, #08BFA8 103.91%);
  color: #fff;
  border-color: transparent;
  transition: none;
}
.btn__grad:hover {
  background: #00C0A7;
  border-color: #00C0A7;
}
.btn__white {
  color: #00A18C;
  border-color: #fff;
  background: #fff;
}
.btn__white:hover {
  background: #00C0A7;
  color: #fff;
}
.btn__fixed {
  background: #00A18C;
  color: #fff;
  border-radius: 0;
  width: 100%;
}

.quote {
  margin-bottom: 60px;
  border-left: 3px solid #00A18C;
  padding-left: 20px;
  max-width: 900px;
  color: #8599A9;
  font-family: "Inter Tight", sans-serif;
  font-size: 18px;
  line-height: 150%;
}
@media screen and (max-width: 1550px) {
  .quote {
    max-width: 800px;
    font-size: 17px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .quote {
    margin-bottom: 50px;
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .quote {
    margin-bottom: 40px;
    font-size: 16px;
    padding-left: 15px;
    border-width: 2px;
  }
}
.quote__grey {
  margin-top: 30px;
  margin-bottom: 30px;
  max-width: 1140px;
  padding: 45px;
  background: #F7F8FA;
  border-radius: 14px;
}
@media screen and (max-width: 1024px) {
  .quote__grey {
    padding: 20px;
  }
}
.quote__grey .quote {
  color: #848797;
  margin-bottom: 0;
  max-width: 100%;
}

.doctor_md {
  display: flex;
  font-family: "Inter Tight", sans-serif;
  font-size: 16px;
  line-height: 150%;
}
@media screen and (max-width: 1550px) {
  .doctor_md {
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  .doctor_md {
    font-size: 14px;
  }
}
.doctor_md__img {
  width: 120px;
}
@media screen and (max-width: 1550px) {
  .doctor_md__img {
    width: 100px;
  }
}
@media screen and (max-width: 768px) {
  .doctor_md__img {
    width: 80px;
  }
}
.doctor_md__img img {
  width: 100%;
  height: auto;
  border-radius: 100%;
}
.doctor_md__info {
  width: calc(100% - 120px);
  padding-left: 25px;
  display: flex;
  flex-flow: column;
}
@media screen and (max-width: 1550px) {
  .doctor_md__info {
    width: calc(100% - 100px);
    padding-left: 20px;
  }
}
@media screen and (max-width: 768px) {
  .doctor_md__info {
    width: calc(100% - 80px);
    padding-left: 15px;
  }
}
.doctor_md__title {
  padding: 5px 0 10px;
  color: #00A18C;
}
.doctor_md__txt {
  color: #848797;
}

.services__list {
  display: flex;
  flex-flow: row wrap;
  margin-left: -5px;
  margin-right: -5px;
}
.services__list__item {
  padding: 5px;
  width: 25%;
}
@media screen and (max-width: 1024px) {
  .services__list__item {
    width: 33.3333%;
  }
}
@media screen and (max-width: 768px) {
  .services__list__item {
    width: 50%;
  }
}

.service__link {
  padding: 30px;
  border: 2px solid #E5E9F1;
  background: #E5E9F1;
  border-radius: 14px;
  min-height: 240px;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.2s ease-in-out;
  line-height: 1.3;
}
@media screen and (max-width: 1024px) {
  .service__link {
    padding: 20px;
  }
}
@media screen and (max-width: 768px) {
  .service__link {
    min-height: 140px;
    padding: 10px;
  }
}
.service__link__title {
  margin-top: auto;
  transition: all 0.2s ease-in-out;
  color: #1E3246;
  font-weight: 600;
  font-size: 30px;
}
@media screen and (max-width: 1550px) {
  .service__link__title {
    font-size: 26px;
  }
}
@media screen and (max-width: 1024px) {
  .service__link__title {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .service__link__title {
    font-size: 18px;
  }
}
.service__link__text {
  transition: all 0.2s ease-in-out;
  overflow: hidden;
  max-height: 0;
  height: 0;
  opacity: 0;
  padding-top: 0;
  font-family: "Inter Tight", sans-serif;
}
.service__link__icon {
  position: absolute;
  top: 20px;
  right: 20px;
}
@media screen and (max-width: 768px) {
  .service__link__icon {
    top: 10px;
    right: 10px;
  }
}
.service__link:hover {
  background: #fff;
}
.service__link:hover .service__link__title {
  color: #00A18C;
}
.service__link:hover .service__link__text {
  max-height: 80px;
  height: auto;
  opacity: 1;
  padding-top: 10px;
}
@media screen and (max-width: 768px) {
  .service__link:hover .service__link__text {
    display: none;
  }
}
.service__link:hover .service__link__icon svg {
  fill: #00A18C;
}

.etap {
  display: flex;
  flex-flow: column;
  height: 100%;
  min-height: 400px;
  padding: 24px 20px;
  background: #EBF4FA;
  border-radius: 14px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .etap {
    min-height: unset;
  }
}
.etap * {
  z-index: 2;
}
.etap__number {
  margin-bottom: 25px;
  color: #00A18C;
  font-weight: 600;
  font-size: 30px;
}
@media screen and (max-width: 768px) {
  .etap__number {
    margin-bottom: 10px;
    font-size: 22px;
  }
}
.etap__title {
  font-weight: 600;
  font-size: 30px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1550px) {
  .etap__title {
    margin-bottom: 16px;
    font-size: 26px;
  }
}
@media screen and (max-width: 768px) {
  .etap__title {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
.etap__title:first-child {
  padding-top: 15px;
}
@media screen and (max-width: 768px) {
  .etap__title:first-child {
    padding-top: 0;
  }
}
.etap__text {
  font-weight: 400;
  font-size: 18px;
  font-family: "Inter Tight", sans-serif;
  line-height: 150%;
}
@media screen and (max-width: 1550px) {
  .etap__text {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .etap__text {
    font-size: 16px;
  }
}

.etapi__content {
  display: flex;
  flex-flow: row wrap;
  margin-left: -20px;
  margin-right: -20px;
}
@media screen and (max-width: 1024px) {
  .etapi__content {
    margin-left: 0;
    margin-right: 0;
  }
}
.etapi__col {
  width: 50%;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 1200px) and (max-width: 1550px) {
  .etapi__col {
    width: 60%;
  }
  .etapi__col:last-child {
    width: 40%;
  }
}
@media screen and (max-width: 1024px) {
  .etapi__col {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }
}
.etapi__list {
  display: flex;
  flex-flow: row wrap;
  margin-left: -5px;
  margin-right: -5px;
}
@media screen and (max-width: 768px) {
  .etapi__list {
    margin-bottom: 30px;
  }
}
.etapi__list__item {
  width: 50%;
  padding: 5px;
}
@media screen and (max-width: 768px) {
  .etapi__list__item {
    width: 100%;
  }
}
.etapi__list__item:nth-child(2) .etap {
  overflow: hidden;
}
.etapi__list__item:nth-child(2) .etap:before {
  position: absolute;
  background: #FCF6F3;
  filter: blur(100px);
  content: "";
  display: block;
  pointer-events: none;
  width: 380px;
  height: 380px;
  border-radius: 100%;
  top: -120px;
  left: -60px;
  z-index: 1;
}

.doctor_slide {
  background-color: #EBF4FA;
  border-radius: 14px;
  background-image: url(../img/doctor_slide_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 0 8%;
}
@media screen and (max-width: 768px) {
  .doctor_slide {
    background-image: none;
    padding: 0;
  }
}
.doctor_slide__content {
  display: flex;
  flex-flow: row wrap;
}
.doctor_slide__img {
  width: 40%;
  padding-top: 20px;
  display: flex;
  flex-flow: column;
}
@media screen and (max-width: 768px) {
  .doctor_slide__img {
    width: 100%;
  }
}
.doctor_slide__img img {
  width: 100%;
  height: auto;
  margin-top: auto;
}
.doctor_slide__imgtmp {
  width: 29%;
  display: flex;
  flex-flow: column;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .doctor_slide__imgtmp {
    width: 50%;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
  }
}
.doctor_slide__imgtmp .imground {
  width: 100%;
  padding-top: 100%;
  position: relative;
  border: 3px solid #00A18C;
  border-radius: 100%;
}
.doctor_slide__imgtmp img {
  width: 90%;
  height: auto;
  margin-top: auto;
  position: absolute;
  top: 5%;
  left: 5%;
  border-radius: 100%;
}
.doctor_slide__info {
  width: 40%;
  margin-right: 10%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .doctor_slide__info {
    width: 100%;
    margin-right: 0;
    padding: 30px 20px;
  }
}

.doctor__name {
  font-weight: 300;
  font-size: 46px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1550px) {
  .doctor__name {
    font-size: 36px;
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 768px) {
  .doctor__name {
    font-size: 22px;
    margin-bottom: 16px;
  }
}
.doctor__profession {
  font-weight: 700;
  font-size: 20px;
  font-family: "Inter Tight", sans-serif;
  margin-bottom: 40px;
}
@media screen and (max-width: 1550px) {
  .doctor__profession {
    font-size: 18px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .doctor__profession {
    margin-bottom: 20px;
    font-size: 16px;
  }
}
.doctor__txt {
  margin-bottom: 100px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  font-family: "Inter Tight", sans-serif;
  color: #8595A2;
}
@media screen and (max-width: 1550px) {
  .doctor__txt {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 768px) {
  .doctor__txt {
    margin-bottom: 40px;
  }
}
.section__doctors {
  overflow: hidden;
}
.section__doctors .swiper__doctors {
  overflow: visible !important;
}

.swiper-button-next,
.swiper-button-prev {
  color: rgba(163, 188, 201, 0.5);
  opacity: 1;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: #00A18C;
  opacity: 0.9;
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0;
}

.text__content {
  font-family: "Inter Tight", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
}
@media screen and (max-width: 768px) {
  .text__content {
    font-size: 16px;
    line-height: 130%;
  }
}
.text__content p {
  margin-bottom: 20px;
  max-width: 1010px;
}
.text__content h3 {
  margin-top: 50px;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .text__content h3 {
    font-size: 20px;
    margin-bottom: 16px;
  }
}
.text__content ul {
  padding-left: 0;
  margin-bottom: 30px;
  list-style: none;
}
.text__content ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}
.text__content ul li:before {
  position: absolute;
  border-radius: 100%;
  width: 6px;
  height: 6px;
  content: "";
  left: 0;
  top: 10px;
  display: block;
  background: #00A18C;
}

.section__gallery {
  overflow: hidden;
}
.section__gallery .swiper__gallery {
  overflow: visible !important;
}

.gallery__photo {
  display: block;
}
.gallery__photo img {
  width: 100%;
  height: auto;
  display: block;
}

.video {
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  border-radius: 14px;
}
@media screen and (max-width: 768px) {
  .video {
    height: auto;
    flex-direction: column;
  }
}
.video video {
  position: absolute;
  width: 100%;
  height: 96%;
  border-radius: 14px;
  background: #dde0e5 linear-gradient(360deg, #1E3246 -7.5%, rgba(30, 50, 70, 0.369737) 20.96%, rgba(30, 50, 70, 0.144007) 34.22%, rgba(30, 50, 70, 0) 47.5%);
}
@media screen and (max-width: 768px) {
  .video video {
    position: unset;
    height: auto;
  }
}
.video__title {
  display: flex;
  padding-top: 10px;
  top: 96%;
  position: absolute;
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  color: #848797;
  font-family: "Inter Tight", sans-serif;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .video__title {
    position: relative;
    top: unset;
    display: block;
  }
}

.section__prices__content {
  display: flex;
  margin: 40px -5px;
}
@media screen and (max-width: 1024px) {
  .section__prices__content {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  .section__prices__content {
    margin-top: 30px;
    margin-bottom: 20px;
  }
}

.prices__etap {
  margin: 5px;
  width: calc(50% - 10px);
  border: 1px solid #E6E9EF;
  border-radius: 14px;
  position: relative;
  padding: 2.5% 4%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .prices__etap {
    width: 100%;
    padding: 30px 20px;
  }
}
.prices__etap__title {
  width: 100%;
  margin-bottom: 35px;
  text-align: center;
  font-weight: 500;
  font-size: 22px;
  line-height: 130%;
  color: #848797;
  font-family: "Inter Tight", sans-serif;
}
@media screen and (max-width: 768px) {
  .prices__etap__title {
    margin-bottom: 30px;
  }
}
.prices__etap__delimeter {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  line-height: 1;
  color: #848797;
}
@media screen and (max-width: 768px) {
  .prices__etap__delimeter:nth-child(5) {
    display: none;
  }
}
.prices__etap + .prices__etap:before {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #00A18C;
  border-radius: 100%;
  background: #fff;
  font-size: 34px;
  font-weight: 500;
  position: absolute;
  left: -35px;
  top: 50%;
  margin-top: -30px;
  border: 1px solid #E6E9EF;
}
@media screen and (max-width: 1024px) {
  .prices__etap + .prices__etap:before {
    left: 50%;
    top: -5px;
    margin-left: -30px;
  }
}
.prices__etap__item {
  display: flex;
  flex-flow: column;
}
@media screen and (max-width: 768px) {
  .prices__etap__item {
    width: 45%;
    margin-bottom: 30px;
  }
}
.prices__etap__item__img {
  margin-bottom: 5px;
}
.prices__etap__item__img img {
  width: 80px;
  display: block;
  height: auto;
  margin: 0 auto;
}
.prices__etap__item__title {
  font-family: "Inter Tight", sans-serif;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
}
.prices__etap__item__icon {
  width: 26px;
  height: 26px;
  border-radius: 100%;
  background: #DBF4F4;
  cursor: help;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
}
.prices__etap__item__icon__text {
  position: absolute;
  transition: all 0.2s ease-in-out;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  top: calc(100% + 5px);
  width: 300px;
  margin-left: -150px;
  left: 50%;
  padding: 10px;
  border-radius: 10px;
  color: #fff;
  background: #00A18C;
  font-size: 14px;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .prices__etap__item__icon__text {
    width: 200px;
    margin-left: -100px;
  }
}
.prices__etap__item__icon__text:before {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 5px 5px 5px;
  border-color: transparent transparent #00A18C transparent;
  position: absolute;
  bottom: 100%;
  content: "";
  left: calc(50% - 5px);
}
.prices__etap__item__icon:hover {
  background: #00A18C;
}
.prices__etap__item__icon:hover svg {
  fill: #FFF;
}
.prices__etap__item__icon:hover .prices__etap__item__icon__text {
  opacity: 1;
  visibility: visible;
}

.infobox {
  padding: 30px 33px;
  background: #F7F8FA;
  border-radius: 14px;
}
@media screen and (max-width: 1550px) {
  .infobox {
    padding: 20px 30px;
  }
}
@media screen and (max-width: 768px) {
  .infobox {
    padding: 20px;
    font-size: 13px;
    margin-bottom: 30px;
  }
}
.infobox p:first-child {
  margin-top: 0;
}
.infobox p:last-child {
  margin-bottom: 0;
}

.prices_table__head {
  margin-bottom: 35px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1550px) {
  .prices_table__head {
    margin-bottom: 26px;
  }
}
@media screen and (max-width: 768px) {
  .prices_table__head {
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
}
.prices_table__currencies {
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .prices_table__currencies {
    margin-left: 0;
  }
}
.prices_table__title {
  font-weight: 600;
  font-size: 30px;
}
@media screen and (max-width: 1550px) {
  .prices_table__title {
    font-size: 26px;
  }
}
@media screen and (max-width: 768px) {
  .prices_table__title {
    font-size: 20px;
    margin-bottom: 20px;
    width: 100%;
    padding-right: 50px;
    position: relative;
  }
}
.prices_table__body {
  width: 100%;
  overflow: auto;
}
.prices_table__body table {
  width: 100%;
  font-family: "Inter Tight", sans-serif;
  margin-bottom: 30px;
}
@media screen and (max-width: 1550px) {
  .prices_table__body table {
    margin-bottom: 20px;
  }
}
.prices_table__body table th {
  font-weight: normal;
  text-align: left;
}
.prices_table__body table th p {
  margin: 0;
}
.prices_table__body table th, .prices_table__body table td {
  padding: 10px;
  vertical-align: top;
}
@media screen and (max-width: 1550px) {
  .prices_table__body table th, .prices_table__body table td {
    padding: 8px;
  }
}
@media screen and (max-width: 768px) {
  .prices_table__body table th, .prices_table__body table td {
    padding: 7px;
  }
}
.prices_table__body table th:first-child, .prices_table__body table td:first-child {
  padding-left: 0;
}
.prices_table__body table th:last-child, .prices_table__body table td:last-child {
  padding-right: 0;
}
.prices_table__body table td {
  text-align: right;
  width: 115px;
}
@media screen and (max-width: 1550px) {
  .prices_table__body table td {
    width: 80px;
  }
}
@media screen and (max-width: 768px) {
  .prices_table__body table td {
    width: auto;
  }
}
.prices_table__body table td:nth-child(2) {
  padding-right: 10px;
}
.prices_table__body table tr {
  background-image: url("../img/svg/tr.svg");
  background-repeat: repeat-x;
  background-size: auto 1px;
  background-position: 0 35px;
}
@media screen and (max-width: 1550px) {
  .prices_table__body table tr {
    background-position: 0 28px;
  }
}
.prices_table__name {
  font-size: 20px;
  line-height: 130%;
  color: #1E3246;
  display: inline-block;
  background: #fff;
  padding-right: 14px;
}
@media screen and (max-width: 1550px) {
  .prices_table__name {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .prices_table__name {
    font-size: 15px;
  }
}
.prices_table__subname {
  font-size: 16px;
  line-height: 130%;
  color: #848797;
  background: #fff;
  padding-right: 14px;
}
@media screen and (max-width: 1550px) {
  .prices_table__subname {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .prices_table__subname {
    font-size: 14px;
  }
}

.newprice,
.oldprice,
.price {
  font-family: "Inter Tight", sans-serif;
  font-size: 16px;
  background: #fff;
  position: relative;
  padding-top: 5px;
  padding-bottom: 5px;
  margin-top: -5px;
  margin-bottom: -5px;
  white-space: nowrap;
}
@media screen and (max-width: 1550px) {
  .newprice,
  .oldprice,
  .price {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .newprice,
  .oldprice,
  .price {
    font-size: 15px;
  }
}
.newprice .val,
.oldprice .val,
.price .val {
  font-size: 20px;
}
@media screen and (max-width: 1550px) {
  .newprice .val,
  .oldprice .val,
  .price .val {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .newprice .val,
  .oldprice .val,
  .price .val {
    font-size: 18px;
  }
}

.newprice {
  color: #00A18C;
}

.oldprice {
  color: #EB5757;
}
.oldprice:before {
  height: 2px;
  width: 100%;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  background: #EB5757;
  transform: rotate(-15deg);
}

.installment {
  display: flex;
  justify-content: space-between;
  background: #F7F8FA;
  border-radius: 14px;
  padding: 25px 30px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1550px) {
  .installment {
    padding: 20px 25px;
  }
}
@media screen and (max-width: 768px) {
  .installment {
    flex-wrap: wrap;
  }
}
.installment__info {
  width: 70%;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  font-family: "Inter Tight", sans-serif;
}
@media screen and (max-width: 1550px) {
  .installment__info {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .installment__info {
    width: 100%;
  }
}
.installment__info p {
  margin-top: 0;
  margin-bottom: 6px;
}
.installment__cards {
  width: 27%;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .installment__cards {
    order: -1;
    width: 100%;
    margin-bottom: 10px;
  }
}
.installment__cards img {
  width: 100%;
  display: block;
  height: auto;
}

.show_more {
  font-family: "Inter Tight", sans-serif;
  display: inline-block;
  color: #848797;
  text-decoration: underline;
  text-decoration-color: #D4DEE5;
}
.show_more:hover {
  color: #00A18C;
  text-decoration-color: #8FA2AF;
}

.form_radio_btn_group {
  display: flex;
  margin-left: auto;
  align-items: center;
  font-family: "Inter Tight", sans-serif;
  font-size: 16px;
}
.form_radio_btn {
  display: inline-block;
}
.form_radio_btn input[type=radio] {
  display: none;
}
.form_radio_btn label {
  display: inline-block;
  cursor: pointer;
  padding: 0px 15px;
  line-height: 34px;
  user-select: none;
  border: 2px solid #EBF4FA;
  margin-left: -2px;
}
.form_radio_btn label:hover {
  color: #00A18C;
}
.form_radio_btn:first-child label {
  border-radius: 11px 0 0 11px;
}
.form_radio_btn:last-child label {
  border-radius: 0 11px 11px 0;
}
.form_radio_btn input[type=radio]:checked + label {
  color: #00A18C;
}
.form_radio_btn input[type=radio]:disabled + label {
  color: #666;
  background: #F7F8FA;
  cursor: not-allowed;
}

.row {
  margin-left: -15px;
  margin-right: -15px;
  display: flex;
  flex-flow: row wrap;
}
.row .col {
  padding: 0 15px;
}
.row .col3-4 {
  width: 75%;
}
@media screen and (max-width: 1024px) {
  .section__infotable .row .col3-4, .section__prices_table .row .col3-4 {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .row .col3-4 {
    width: 100%;
  }
}
.row .col1-4 {
  width: 25%;
}
@media screen and (max-width: 1024px) {
  .section__infotable .row .col1-4, .section__prices_table .row .col1-4 {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .row .col1-4 {
    width: 100%;
  }
}
.row .col1-2 {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .row .col1-2 {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .section__faq .row .col1-2 {
    width: 100%;
  }
}
.row__sp {
  margin-left: -5px;
  margin-right: -5px;
}
.row__sp .col {
  padding: 0 5px;
}

.form {
  padding: 55px 36px;
  background: #EBF4FA;
  border-radius: 14px;
}
@media screen and (max-width: 1550px) {
  .form {
    padding: 40px 24px;
  }
}
.form__title {
  margin-bottom: 35px;
  font-weight: 800;
  font-size: 24px;
}
@media screen and (max-width: 1550px) {
  .form__title {
    margin-bottom: 30px;
    font-size: 20px;
  }
}
.form form {
  display: flex;
  flex-direction: column;
}
.form__input {
  margin-bottom: 10px;
}
@media screen and (max-width: 1550px) {
  .form__input {
    margin-bottom: 8px;
  }
}
.form__input input[type=text], .form__input textarea {
  height: 60px;
  background: #FFFFFF;
  border: 2px solid transparent;
  border-radius: 10px;
  font-size: 18px;
  display: flex;
  width: 100%;
  align-items: center;
  padding: 10px 20px;
}
.form__input input[type=text].error, .form__input textarea.error {
  border-color: #EB5757;
}
.form__input textarea {
  min-height: 180px;
  align-items: flex-start;
}
.form__btns .btn {
  width: 100%;
}
.form__footer {
  padding-top: 24px;
}
@media screen and (max-width: 1550px) {
  .form__footer {
    padding-top: 16px;
  }
}

.pd_text {
  font-weight: 400;
  font-size: 15px;
  line-height: 130%;
  color: #848797;
  font-family: "Inter Tight", sans-serif;
}
@media screen and (max-width: 1550px) {
  .pd_text {
    font-size: 14px;
  }
}
.pd_text a {
  display: inline-block;
  border-bottom: 1px dashed #848797;
  text-decoration: none;
  color: #848797;
}
.pd_text a:hover {
  color: #00A18C;
  border-color: #00A18C;
}

.survival {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.survival__video {
  width: 37%;
  border-radius: 14px;
}
@media screen and (max-width: 1550px) {
  .survival__video {
    width: 40%;
  }
}
@media screen and (max-width: 1024px) {
  .survival__video {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .survival__video {
    order: 2;
    width: 100%;
  }
}
.survival__video img {
  width: 100%;
  display: block;
  height: auto;
  border-radius: 14px;
}
.survival__list {
  width: 58%;
  display: flex;
  flex-flow: column;
}
@media screen and (max-width: 1024px) {
  .survival__list {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .survival__list {
    width: 100%;
  }
}
.survival__list__item {
  margin-bottom: 10px;
}
@media screen and (max-width: 1550px) {
  .survival__list__item {
    margin-bottom: 8px;
  }
}

.survival_brand {
  background: #FFFFFF;
  border-radius: 10px;
  width: 100%;
  display: flex;
  padding: 15px;
}
@media screen and (max-width: 1550px) {
  .survival_brand {
    padding: 13px;
  }
}
@media screen and (max-width: 768px) {
  .survival_brand {
    flex-wrap: wrap;
    padding: 20px;
  }
}
.survival_brand__img {
  width: 25%;
  display: flex;
  align-items: center;
  padding: 2% 4% 2% 2%;
}
@media screen and (max-width: 768px) {
  .survival_brand__img {
    width: 100%;
    margin-bottom: 20px;
    padding: 0;
  }
}
.survival_brand__img img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 768px) {
  .survival_brand__img img {
    width: 50%;
  }
}
.survival_brand__info {
  width: 75%;
  border-left: 1px dashed #A9B1C0;
  padding-left: 8%;
}
@media screen and (max-width: 768px) {
  .survival_brand__info {
    width: 100%;
    padding-left: 0;
    border-left: none;
  }
}
.survival_brand__title {
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  font-family: "Inter Tight", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
}
@media screen and (max-width: 1550px) {
  .survival_brand__title {
    font-size: 18px;
  }
}
.survival_brand__country {
  display: inline-flex;
  align-items: center;
  font-weight: 300;
  color: #848797;
}
.survival_brand__country:before {
  width: 4px;
  height: 4px;
  border-radius: 100%;
  content: "";
  background: #00A18C;
  margin: 0 10px;
  display: block;
}
.survival_brand__text {
  font-family: "Inter Tight", sans-serif;
  font-size: 15px;
  line-height: 140%;
  color: #848797;
  max-width: 440px;
}
@media screen and (max-width: 1550px) {
  .survival_brand__text {
    font-size: 14px;
  }
}

.block_kt {
  padding: 5% 10%;
  background-color: #EBF4FA;
  border-radius: 14px;
  background-image: url(../img/block_bg.jpg);
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .block_kt {
    padding: 40px 20px;
    background-image: url(../img/block_bg_m.jpg);
    padding-bottom: 180px;
  }
}
.block_kt__title {
  max-width: 680px;
  margin-bottom: 40px;
  font-weight: 800;
  font-size: 40px;
}
@media screen and (max-width: 1550px) {
  .block_kt__title {
    font-size: 30px;
    max-width: 560px;
  }
}
@media screen and (max-width: 1024px) {
  .block_kt__title {
    font-size: 30px;
    max-width: 70%;
  }
}
@media screen and (max-width: 768px) {
  .block_kt__title {
    text-align: center;
    font-size: 20px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .block_kt .btn {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
}

.block_gr {
  background-color: #00A18C;
  background-image: url("../img/block_gr_bg.jpg");
  background-size: cover;
  background-position: center left;
  border-radius: 14px;
  padding: 20px 5% 20px 40%;
  min-height: 160px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .block_gr {
    padding: 20px;
    min-height: 180px;
    background: #00A18C;
  }
}
@media screen and (max-width: 768px) {
  .block_gr {
    margin-bottom: 20px;
  }
}
.block_gr__title {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 8px;
}
.block_gr__text {
  font-family: "Inter Tight", sans-serif;
  font-size: 18px;
}

.block_grey_out {
  background-color: #EBF4FA;
  border-radius: 14px;
  padding: 20px 5% 20px 40%;
  min-height: 160px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .block_grey_out {
    padding: 20px;
    min-height: 180px;
  }
}
.block_grey_out__img {
  width: 40%;
  position: absolute;
  left: 0%;
  bottom: 0;
}
@media screen and (max-width: 1024px) {
  .block_grey_out__img {
    display: none;
  }
}
.block_grey_out__img img {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
}
.block_grey_out__img_l {
  left: 0;
  top: 0;
  bottom: unset;
}
.block_grey_out__img_l img {
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  top: 0;
  bottom: unset;
}
.block_grey_out__title {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 8px;
}
.block_grey_out__text {
  font-family: "Inter Tight", sans-serif;
  font-size: 18px;
}

.block_green_full {
  background-color: #00A18C;
  background-image: url("../img/block_green_bg.jpg");
  background-size: cover;
  background-position: center right;
  border-radius: 14px;
  padding: 14px;
  min-height: 160px;
  display: flex;
  flex-flow: row wrap;
  position: relative;
  color: #fff;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .block_green_full {
    padding: 50px 30px;
    background-image: url("../img/block_green_bg_m.jpg");
  }
}
.block_green_full__img {
  width: 17%;
  position: absolute;
  left: 0.5%;
  bottom: 0;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .block_green_full__img {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .block_green_full__img {
    display: none;
  }
}
.block_green_full__img img {
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
}
.block_green_full__info {
  margin-left: 22%;
  width: 38%;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .block_green_full__info {
    margin-left: 0;
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  .block_green_full__info {
    margin-left: 0;
    width: 100%;
  }
}
.block_green_full__title {
  font-weight: 600;
  font-size: 30px;
}
@media screen and (max-width: 1550px) {
  .block_green_full__title {
    font-size: 26px;
  }
}
@media screen and (max-width: 768px) {
  .block_green_full__title {
    margin-bottom: 8px;
    font-size: 22px;
    font-weight: 700;
  }
}
.block_green_full__text {
  font-family: "Inter Tight", sans-serif;
  font-size: 18px;
  margin-bottom: 13px;
}
@media screen and (max-width: 1550px) {
  .block_green_full__text {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .block_green_full__text {
    font-size: 16px;
  }
}
.block_green_full__phone {
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 34px;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .block_green_full__phone {
    font-size: 28px;
  }
}
.block_green_full__phone span {
  opacity: 0.5;
}
.block_green_full__btns {
  padding-left: 0;
}
@media screen and (max-width: 1550px) {
  .block_green_full__btns {
    padding-left: 20px;
  }
}
@media screen and (max-width: 768px) {
  .block_green_full__btns {
    width: 100%;
    padding-top: 30px;
    padding-left: 0;
  }
  .block_green_full__btns .btn {
    width: 100%;
  }
}

.sp_tabs__head {
  display: flex;
  flex-flow: row wrap;
}
@media screen and (max-width: 768px) {
  .sp_tabs__head {
    margin-bottom: 25px;
  }
}
.sp_tabs__link {
  padding: 10px 10px 8px;
  border: 1px solid transparent;
  display: block;
  margin-right: 10px;
  margin-bottom: 30px;
  font-family: "Inter Tight", sans-serif;
  font-size: 20px;
  color: #848797;
  background: transparent;
  border-radius: 13px;
}
@media screen and (max-width: 768px) {
  .sp_tabs__link {
    margin-bottom: 5px;
    margin-right: 5px;
    font-size: 15px;
  }
}
.sp_tabs__link > span {
  padding-bottom: 2px;
  border-bottom: 1px dashed #848797;
}
.sp_tabs__link:hover {
  cursor: pointer;
  color: #00A18C;
}
.sp_tabs__link:hover > span {
  border-color: #00A18C;
}
.sp_tabs__link.active {
  background: #F7F8FA;
  border: 1px solid #E9ECF2;
  color: #00A18C;
}
.sp_tabs__link.active > span {
  border-color: transparent;
}
.sp_tabs__tab {
  display: none;
}
.sp_tabs__tab.active {
  display: block;
}

.sp_tab__content {
  display: flex;
  flex-flow: row wrap;
}
.sp_tab__main {
  width: 60%;
  font-family: "Inter Tight", sans-serif;
  font-size: 20px;
  line-height: 150%;
}
@media screen and (max-width: 1024px) {
  .sp_tab__main {
    width: 100%;
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .sp_tab__main {
    font-size: 16px;
  }
}
.sp_tab__main ul {
  padding-left: 0;
  margin-bottom: 30px;
  list-style: none;
}
.sp_tab__main ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}
.sp_tab__main ul li:before {
  position: absolute;
  border-radius: 100%;
  width: 6px;
  height: 6px;
  content: "";
  left: 0;
  top: 10px;
  display: block;
  background: #00A18C;
}
.sp_tab__col {
  width: 33%;
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .sp_tab__col {
    width: 100%;
  }
}
.sp_tab__title {
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 24px;
  font-family: "Raleway", sans-serif;
}
@media screen and (max-width: 768px) {
  .sp_tab__title {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 15px;
  }
}
.sp_tab__title:first-child {
  margin-top: 0;
}

.grey_info_list {
  background: #F7F8FA;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  padding: 8% 10%;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .grey_info_list {
    padding: 20px;
    flex-flow: row wrap;
  }
}
.grey_info_list__item {
  display: flex;
  flex-flow: row;
  align-items: center;
  margin: 10px 0;
}
.grey_info_list__img {
  width: 120px;
}
.grey_info_list__img img {
  width: 100%;
  border-radius: 100%;
  height: auto;
  display: block;
}
.grey_info_list__text {
  width: calc(100% - 140px);
  margin-left: auto;
  font-family: "Inter Tight", sans-serif;
  font-size: 18px;
  line-height: 150%;
  color: #848797;
}
.grey_info_list__title {
  font-weight: 700;
  font-size: 16px;
  color: #00A18C;
}

.table {
  font-family: "Inter Tight", sans-serif;
  font-size: 18px;
  line-height: 150%;
}
@media screen and (max-width: 1550px) {
  .table {
    font-size: 16px;
  }
}
.table_responsive {
  border: 2px solid #F2F4F8;
  border-radius: 14px;
  padding: 40px 60px;
  width: 100%;
  overflow: auto;
}
@media screen and (max-width: 1550px) {
  .table_responsive {
    padding: 20px 40px;
  }
}
.table th {
  border-bottom: 2px solid #F2F4F8;
  text-align: left;
  font-weight: 600;
  color: #848797;
  padding: 18px 18px 18px 0;
  vertical-align: top;
}
@media screen and (max-width: 1550px) {
  .table th {
    padding: 14px 14px 14px 0;
  }
}
.table td {
  padding: 30px 18px 30px 0;
  border-bottom: 1px solid #F2F4F8;
  vertical-align: top;
}
@media screen and (max-width: 1550px) {
  .table td {
    padding: 20px 14px 20px 0;
  }
}
.table td:last-child {
  padding-right: 0;
}
.table tr:last-child td {
  border-bottom: none;
}
.table_3 th, .table_3 td {
  width: 33.33333%;
}

.nuans {
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  padding: 40px;
  border-radius: 14px;
  background-color: #EBF4FA;
  background-image: url("../img/nuans_bg.svg");
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 1550px) {
  .nuans {
    padding: 30px;
  }
}
.nuans__title {
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 30px;
  line-height: 130%;
}
@media screen and (max-width: 1550px) {
  .nuans__title {
    font-size: 26px;
    margin-bottom: 16px;
  }
}
.nuans__text {
  font-family: "Inter Tight", sans-serif;
  font-size: 16px;
  line-height: 150%;
}
@media screen and (max-width: 1550px) {
  .nuans__text {
    font-size: 15px;
  }
}

.video_yt {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  padding-top: 65%;
  width: 100%;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .video_yt {
    width: 500px;
    padding-top: 325px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .video_yt {
    margin-bottom: 30px;
  }
}
.video_yt lite-youtube,
.video_yt iframe {
  border-radius: 14px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.faq {
  display: flex;
  flex-direction: column;
  font-family: "Inter Tight", sans-serif;
  line-height: 140%;
}
.faq__question {
  font-weight: 500;
  font-size: 20px;
  color: #1E3246;
}
@media screen and (max-width: 1550px) {
  .faq__question {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .faq__question {
    font-size: 18px;
  }
}
.faq__question:hover {
  color: #00A18C;
}
.faq__answer {
  font-size: 18px;
  max-height: 0;
  padding-top: 0;
  transition: all 0.2s ease-in-out;
  opacity: 0;
  height: auto;
}
@media screen and (max-width: 1550px) {
  .faq__answer {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .faq__answer {
    font-size: 16px;
  }
}
.faq__icon {
  position: absolute;
  width: 16px;
  height: 16px;
  top: 36px;
  right: 36px;
  display: block;
}
@media screen and (max-width: 1550px) {
  .faq__icon {
    top: 24px;
    right: 24px;
  }
}
.faq__icon > span:first-child {
  height: 16px;
  width: 2px;
  border-radius: 1px;
  background: #00A18C;
  margin-top: -8px;
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  margin-left: -1px;
}
.faq__icon > span {
  transition: all 0.2s ease-in-out;
}
.faq__icon > span:last-child {
  width: 16px;
  height: 2px;
  border-radius: 1px;
  background: #00A18C;
  position: absolute;
  display: block;
  margin-left: -8px;
  top: 50%;
  left: 50%;
  margin-top: -1px;
}
.faq__item {
  padding: 30px 60px 30px 30px;
  background: #FFFFFF;
  border-radius: 14px;
  margin-bottom: 2px;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 1550px) {
  .faq__item {
    padding: 20px 50px 20px 20px;
  }
}
.faq__item:last-child {
  margin-bottom: 0;
}
.faq__item.opened .faq__question {
  color: #00A18C;
}
.faq__item.opened .faq__answer {
  max-height: 500px;
  opacity: 1;
  padding-top: 20px;
}
.faq__item.opened .faq__icon > span:first-child {
  transform: rotate(90deg);
}

.mobile_fxd_btns {
  display: none;
}
@media screen and (max-width: 768px) {
  .mobile_fxd_btns {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 6;
  }
}

/*@media screen and (max-width: 1550px) {
  body {
    display: none;
  }
}*/

/*# sourceMappingURL=styles.css.map */
