.container {
  width: 100%;
  max-width: 1562px;
  padding: 0 10px;
  margin: 0 auto;
}
.review_container, .faq_container {
    padding: 0 38px;
}
.home__contacts {
  max-width: unset;
}

.container.full {
  padding: 0 10px !important;
  max-width: 100%;
}

@media (min-width: 768px) {
  .container.full {
    padding: 0 32px !important;
  }
}

@media (min-width: 1600px) {
  .services__head {
    max-width: 1614px !important;
    padding: 0 36px !important;
  }

}

.services__head-home {
  max-width: unset !important;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 36px;
}

.container.centered {
  display: flex;
  justify-content: center;
}

/* dropdown */

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-button {
  color: #121C1E;
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
}

.dropdown-button img {
  margin-left: 5px;
  margin-bottom: 3px;
  transition: .2s;
}

.dropdown-button.active img {
  transform: rotate(-90deg);
}

/* nav */

.nav .nav-list {
  display: flex;
  flex-direction: row;
  gap: 48px;
}

.nav .nav-list.column {
  flex-direction: column !important;
  gap: 24px !important;
}

/* buttons */

.btn {
  padding: 11px 0 15px;
  text-align: center;
  color: #121C1E;
  font-size: 20px;
  font-weight: 400;
  border-radius: 14px;
}


.burger-menu {
  width: 52px;
  height: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.burger-menu span {
  display: block;
  background-color: #ffffff;
  width: 15px;
  height: 2px;
  transition: .2s;
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translateX(3px) translateY(2px);
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translateX(5px) translateY(-3.5px);
}

.btn.pink {
  background-color: #FFE4E4;
  padding: 11px 0 15px;
}

.btn.pink:hover {
  background-color: #FFE4E490;
}

.btn.blue {
  background-color: #E9F0FC;
}

.btn.blue:hover {
  background-color: #E9F0FC90;
}

.btn.green {
  background-color: #E4FFEA;
}

.btn.green:hover {
  background-color: #E4FFEA90;
}

.btn.dark {
  background-color: #121C1E;
}

.btn.dark:hover {
  background-color: #121C1E90;
}

.btn.white {
  background-color: #ffffff;
}

.btn.white img {
  margin-bottom: 3px;
}

.btn.blue img {
  margin-bottom: 3px;
}

.btn.white:hover {
  background-color: #ffffff90;
}

.btn.transparent {
  border: 1px solid #666666;
}

@media (max-width: 768px) {
  .btn {
    width: 100%;
  }
}

/* link */

.link {
  position: relative;
}

.link::before {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #121C1E;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.link:hover::before {
  transform: scaleX(1);
}

/* breadcrumbs */

.breadcrumbs {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}

.breadcrumbs {
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  color: #ffffff70;
}

.breadcrumbs a {
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  /* color: #ffffff70; */
}

/* video */

.videos__list__item {
  width: 100%;
  max-width: 756px;
}


.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 36px;
  background: #000;
  overflow: hidden;
}

.articles__card .video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: unset;
  border-radius: 36px;
  background: #000;
  overflow: hidden;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-radius: 100%;
  background-color: #FFFFFFCC;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}

.play-button:hover {
  background-color: #ffffff;
}

iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
}

/* accordion */

.accordion {
  width: 100%;
  margin: 0 auto;
}

.accordion-item {
  border-bottom: 1px solid #121C1E4D;
}

.accordion-item:first-child {
  border-top: 1px solid #121C1E4D;
}

.accordion input[type="checkbox"] {
  display: none;
}

.accordion-label {
  font-weight: 400;
  font-size: 32px;
  line-height: 42px;
  color: #121C1E;

  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 48px 0;
  cursor: pointer;
  transition: background 0.3s;
}

.accordion-arrow {
  line-height: 0px;
  display: inline-block;
  background-color: #EDF0F5;
  padding: 16px 30px;
  border-radius: 32px;
}

.accordion-arrow img {
  margin-bottom: 2px;
  transition: transform 0.3s ease;
}

.accordion input[type="checkbox"]:checked+label .accordion-arrow img {
  transform: rotate(90deg);
}

.accordion input[type="checkbox"]:checked+label .accordion-arrow {
  background-color: #E9F0FC;
}

.accordion-content {
  margin-top: -12px;
  padding: 12px 0 0 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease, transform 0.4s ease, padding 0.4s ease;
  opacity: 0;
  transform: translateY(-10px);

  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  color: #212429;

  width: 100%;
  max-width: 1200px;
}

.accordion-inner {
  padding: 12px 10px 48px 0;
}

.accordion input[type="checkbox"]:checked~.accordion-content {
  /* max-height: 500px; */
  opacity: 1;
  transform: translateY(0);
}

.accordion-inner img, .accordion-inner video {
  width: 100%;
  max-width: 700px;
  margin-top: 48px;
  
}
 .accordion-inner video {
  height: auto;
  max-height: 500px;
 }
@media (max-width: 568px) {
   .accordion-inner video {
  max-height: 300px;
 }
}
@media (max-width: 768px) {
  .accordion-label {
    padding: 22px 0;
    font-size: 18px;
    line-height: 140%;

  }

  .accordion-content {
    font-size: 18px;
    line-height: 140%;
  }
}

.accordion-min-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.accordion-min-header .arrow {
  margin-top: 8px;
}

.accordion-min-content {
  margin-top: 12px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-min.open>.accordion-min-content {
  max-height: 500px;
  /* при необходимости увеличь */
}

.accordion-min .arrow img {
  transition: transform 0.3s ease;
}

.accordion-min.open>.accordion-min-header .arrow img {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}


/* local components */

.section {
  margin-top: 144px;
}

.section-mini {
  margin-top: 30px;
}

.section__title {
  font-weight: 400;
  font-size: 48px;
  font-style: Regular;
  line-height: 62px;
  color: #121C1E;
}

@media (max-width: 768px) {
  .section__title {
    font-size: 24px;
    line-height: 140%;
  }

  .section {
    margin-top: 80px;
  }
}

.reviews__title {
  font-weight: 400;
  font-size: 48px;
  font-style: Regular;
  line-height: 62px;
  color: #121C1E;
  margin-left: 50px;
}

@media (max-width: 768px) {
  .reviews__title {
    font-size: 32px;
    line-height: 140%;
    margin-left: 28px;
  }
}

.contacts__title {
  font-weight: 400;
  font-size: 48px;
  font-style: Regular;
  line-height: 62px;
  color: #121C1E;
}

@media (max-width: 768px) {
  .contacts__title {
    font-size: 32px;
    line-height: 140%;
  }
}

.contacts {
  margin-top: 80px;
}

/* menu */

.menu {
  display: none;
}

.menu,
.menu-services {
  margin-top: -30px;
  background-color: #FFFFFF;
  border-radius: 18px;
  padding: 68px 48px 42px 48px;
}

.menu-services {
  display: none;
  gap: 60px;
}

.menu.active {
  display: flex;
}

.menu-section,
.menu-part {
  display: flex;
}

.menu {
  flex-direction: column;
}

.menu .menu-section {
  flex-direction: row;
  justify-content: space-between;
}

.menu .menu-section .menu-part {
  flex-direction: column;
}

.menu-block nav {
  display: flex;
  flex-direction: row;
  gap: 93px;
}

.menu-block nav ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.menu-block nav ul li a {
  font-weight: 400;
  font-style: Regular;
  font-size: 32px;
  line-height: 42px;
  cursor: pointer;
}

.contacts-data {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contacts-data a {
  font-weight: 400;
  font-style: Regular;
  font-size: 32px;
  line-height: 42px;
}


.socials ul {
  margin-top: 106px;
  display: flex;
  flex-direction: row !important;
  align-items: center;
  gap: 26px;
}

.menu-body {
  padding-right: 150px;
}

.menu-footer {
  margin-top: 55px;
}

@media (max-width: 1500px) {
  .menu-block nav {
    gap: 40px;
  }

  .menu-body {
    padding-right: 0;
  }
}

@media (max-width: 1240px) {
  .menu-block nav {
    gap: 20px;
  }
}

.menu-services .menu-section .menu-part {
  gap: 60px;
  width: 100%;
  max-width: 340px;
}

.menu-services .menu-section .menu-part .menu-block h4 {
  font-weight: 500;
  font-style: Regular;
  font-size: 24px;
  line-height: 140%;
  color: #121C1E;
}

.menu-services .menu-section .menu-part .menu-block ul {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.menu-services .menu-section .menu-part .menu-block ul li a {
  color: #121C1EB2;
}

.menu-services .menu-section .menu-part .menu-block ul li a:hover {
  color: #090e0f;
}

@media (max-width: 1640px) {
  .menu-services .menu-section {
    gap: 20px;
  }
}

.menu-label-1 {
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  line-height: 150%;
}

.menu-mobile .menu-section .menu-part nav ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Dropdown для мобильного меню "Услуги" */
.menu-mobile .menu-dropdown {
  position: relative;
}

.menu-mobile .menu-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.menu-mobile .menu-dropdown-arrow {
  margin-top: 7px;
  transition: transform 0.2s ease;
  transform: rotate(-90deg);
  margin-bottom: 3px;
}

.menu-mobile .menu-dropdown.active .menu-dropdown-arrow {
  transform: rotate(0deg);
}

.menu-mobile .menu-dropdown-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, margin-top 0.3s ease;
  margin-top: 0;
  padding-left: 0;
  list-style: none;
}

.menu-mobile .menu-dropdown.active .menu-dropdown-content {
  margin-top: 14px;
}

.menu-mobile .menu-dropdown-content li {
  margin-left: 20px;
}

.accordion-min-content ul {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.accordion-min-content ul li a {
  font-weight: 350;
  font-style: Book;
  font-size: 14px;
  line-height: 20px;
}

.menu-mobile .menu-section .menu-part .contacts-data {
  margin-top: 36px;
  gap: 12px;
}

.menu-mobile .menu-section .menu-part .contacts-data a {
  font-weight: 400;
  font-style: Regular;
  font-size: 24px;
  line-height: 140%;
}

.menu-mobile .menu-section .menu-part .contacts {
  margin-top: 28px;
}

.menu-mobile .menu-section .menu-part .socials {
  margin-top: -48px;
  margin-left: auto;
  margin-right: auto;
}

.menu-mobile .menu-section .menu-part .copyright {
  margin-top: 48px;
}

.menu-mobile .menu-section .menu-part .copyright,
.rocket-bussines__one-love {
  font-weight: 350;
  font-style: Book;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: center;
}

/* input */

.input-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid #121C1E4D;
  padding-bottom: 17px;
  gap: 17px;
}

.input-container input {
  width: 100%;
  border: none;

  font-weight: 400;
  font-style: Regular;
  font-size: 24px;
  line-height: 140%;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
}

.header__inner {
  margin-top: 32px;
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: #FFFFFF;
  border-radius: 18px;
  padding: 0 6px 0 43px;
  justify-content: space-between;
  height: 64px;
}

@media (max-width: 768px) {
  .header__inner .logo img {
    width: 78px;
    height: 31px;
  }
}

.header__content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 42px;
}

.header__actions {
  padding-left: 33px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.header__actions #btn-o-hirurge {
  width: 100%;
  height: 56px;
  max-width: 161px;
  min-width: 161px;
}

.header__actions #btn-zapis-na-priem {
  width: 100%;
  max-width: 218px;
  min-width: 218px;
}

@media (max-width: 1560px) {
  .header__actions #btn-o-hirurge {
    display: none;
  }
}

@media (max-width: 800px) {
  .header__actions #btn-zapis-na-priem {
    color: transparent;
    position: relative;
    width: 100%;
    max-width: 120px;
    min-width: 120px;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    padding: 0;
  }

  .header__actions #btn-zapis-na-priem::after {
    content: "Запись";
    color: black;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
  }
}

@media (max-width: 768px) {
  .header__actions .burger-menu {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 360px) {
  .header__actions #btn-zapis-na-priem {
    display: none;
  }
}

@media (max-width: 1380px) {
  .header .dropdown {
    display: none;
  }
}

@media (max-width: 1240px) {
  .header .nav {
    display: none;
  }
}

@media (max-width: 768px) {
  .header__inner {
    height: 58px;
  }
}

@media (max-width: 640px) {
  .header .phone {
    display: none;
  }
}

.intro {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 1080px;
  padding-top: 96px;
  overflow-x: hidden;
  overflow-y: hidden;
  border-radius: 0 0 16px 16px;
}

.intro__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-items: normal;
  justify-content: center;
  height: 100%;
}

.intro__inner .title {
  margin-top: 20px;
  font-weight: 400;
  font-size: 62px;
  line-height: 78px;
  color: #121C1E;
}

.intro__inner .anastesia__title {
  margin-top: 20px;
  font-weight: 400;
  font-size: 62px;
  line-height: 78px;
  color: #ffffff;
}

.intro__inner #btn-zapis-na-priem {
  width: 100%;
  margin-top: 38px;
  max-width: 342px;
  min-width: 342px;
  font-weight: 400;
  font-size: 24px;
  line-height: 140%;
}

.intro__inner .btn-back {
  background-color: #fff;
  border-radius: 100%;
  width: 46px;
  height: 46px;
  display: none;
}

@media (max-width: 768px) {
  .intro__inner .breadcrumbs {
    display: none;
  }

  .intro__inner .btn-back {
    display: block;
  }

  .intro__inner .title {
    margin-top: 18px;
    font-weight: 400;
    font-size: 32px;
    line-height: 42px;
  }

  .intro__inner #btn-zapis-na-priem {
    width: 100%;
    margin-top: 24px;
    font-weight: 400;
    max-width: 100%;
    min-width: 100%;
    font-size: 20px;
    line-height: 150%;
    padding: 10.5px 0 10.5px 0;
  }
}

@media (max-width: 340px) {
  .intro__inner #btn-zapis-na-priem {
    width: 100%;
    max-width: 212px;
    min-width: 212px;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
  }
}

.intro .swiper-wrapper {
  margin-left: 40px;
}

.intro__cards {
  margin-top: 38px;
}

.intro__cards__list {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}

.intro__cards__list li {
  height: -webkit-fill-available;
}

@media (max-width: 768px) {
  .intro__cards {
    margin-top: 24px;
    margin-right: -5vw;
    margin-left: -5vw;
    overflow: hidden;
  }

  .intro__cards__list {
    overflow: scroll;
    padding-left: 5vw;
  }
}

.intro__cards.mobile {
  display: none;
}

.intro .swiper-slide {
  height: -webkit-fill-available;
}

@media (max-width: 960px) {
  .intro .swiper-slide {
    width: 100% !important;
    max-width: 412px !important;
    min-width: 412px !important;
  }
}

@media (max-width: 640px) {
  .intro .swiper-slide {
    width: 100% !important;
    max-width: 312px !important;
    min-width: 312px !important;
  }
}

.intro__card {
  background-color: #FFFFFF;
  border-radius: 18px;
  padding: 36px;
  height: 100%;
}

.intro__card__content {
  margin-top: 24px;
}

.intro__card__content p {
  font-weight: 400;
  font-size: 24px;
  line-height: 140%;
  vertical-align: bottom;
}

@media (max-width: 768px) {
  .intro__card__content {
    margin-top: 56px;
  }

  .intro__card__content p {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
  }
}

@media (max-width: 960px) {
  .intro__card {
    background-color: #FFFFFF;
    border-radius: 18px;
    padding: 18px;
    width: 100%;
    max-width: 412px;
    min-width: 412px;
  }
}

@media (max-width: 640px) {
  .intro__card {
    width: 100%;
    max-width: 312px;
    min-width: 312px;
  }
}

@media (max-width: 960px) {
  .intro__cards {
    display: none;
  }

  .intro__cards.mobile {
    display: block;
  }
}

@media (max-width: 560px) {
  .intro {
    height: 849px;
  }
}

.info__inner {
  width: 100%;
  max-width: 830px;
}

.info__title {
  text-align: center;
}

.info__list {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.info__card {
  background-color: #FFFFFF;
  border-radius: 18px;
  padding: 34px 38px;
  border-radius: 36px;
  width: 100%;
}

.info__card img {
  display: block;
  margin: 0 auto;
}

.info__card__title {
  font-weight: 400;
  font-size: 32px;
  line-height: 42px;
  margin-top: 24px;
}

.info__card__descr {
  margin-top: 14px;
  font-weight: 400;
  font-size: 24px;
  line-height: 140%;
}

@media (max-width: 768px) {
  .info__card {
    background-color: #FFFFFF;
    border-radius: 18px;
    padding: 32px 26px 26px 26px;
  }

  .info__card__title {
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
  }

  .info__card__descr {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
  }
}

@media (max-width: 768px) {
  .info__list {
    margin-top: 38px;
    gap: 16px;
  }
}

.anesthesia__stages {
  padding-left: 31px;
}

.anesthesia__stages__head {
  display: flex;
  flex-direction: row;
}

.anesthesia__stages .swiper-buttons-container {
  margin-left: auto;
}

.anesthesia__stages .swiper .swiper-slide {
  width: 100%;
  max-width: 460px;
  min-width: 460px;
}

.anesthesia__stages .swiper .swiper-slide .anesthesia__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #FFFFFF;
  border-radius: 18px;
  padding: 36px;
  width: 100%;
  max-height: 460px;
  min-height: 460px;
  max-width: 460px;
  min-width: 460px;
  gap: 30px;
  align-items: start;
}

.anesthesia__stages .swiper .swiper-slide .anesthesia__card__index {
  background-color: #EDF0F5;
  border-radius: 33px;
  padding: 4px 25px;
  width: -moz-fit-content;
  width: fit-content;
}

.anesthesia__stages .swiper .swiper-slide .anesthesia__card__index span {
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
}

.anesthesia__stages .swiper .swiper-slide .anesthesia__card__title {
  font-weight: 400;
  font-size: 32px;
  line-height: 42px;
}

.anesthesia__stages .swiper .swiper-slide .anesthesia__card__descr {
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
}

@media (max-width: 768px) {
  .anesthesia__stages .swiper .swiper-slide .anesthesia__card {
    gap: 0;
    width: 100%;
    max-height: 400px;
    min-height: 400px;
    max-width: 252px;
    min-width: 252px;
  }

  .anesthesia__stages .swiper .swiper-slide .anesthesia__card__title {
    margin-top: 28px;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
  }

  .anesthesia__stages .swiper .swiper-slide .anesthesia__card__descr {
    margin-top: 16px;
    font-weight: 350;
    font-size: 14px;
    line-height: 20px;
  }
}

@media (max-width: 768px) {
  .anesthesia__stages .swiper .swiper-slide {
    width: 100%;
    max-width: 252px;
    min-width: 252px;
  }
}

.doctors {
  margin-left: 32px;
}

.doctors__head {
  display: flex;
  flex-direction: row;
}

.doctors .swiper-buttons-container {
  margin-left: auto;
}

.doctors .swiper-slide {
  width: 100%;
  max-width: 838px;
  min-width: 838px;
}

.doctors__card {
  width: 100%;
  min-height: 563px;
  max-width: 838px;
  min-width: 838px;
  background-color: #FFFFFF;
  border-radius: 18px;
  padding: 18px;
  border-radius: 36px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  align-items: start;
}

.doctors__card__check {
  margin-top: 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 11px;
}

.doctors__card__check span {
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: rgba(33, 36, 41, 0.6980392157);
}

.doctors__card__name {
  font-weight: 400;
  font-size: 24px;
  line-height: 140%;
}

.doctors__card__info {
  margin-top: 16px;
}

.doctors__card__info-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-items: start;
  gap: 12px;
}

.doctors__card__info-item p:nth-child(1) {
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: #212429;
}

.doctors__card__info-item p:nth-child(2) {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: rgba(33, 36, 41, 0.6980392157);
}

.doctors__card__descr {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.doctors__card__descr p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
}

.doctors__card .btn-more {
  display: none;
  margin-bottom: auto;
  width: 100%;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: rgba(33, 36, 41, 0.6980392157);
}

@media (max-width: 768px) {
  .doctors__card {
    width: 100%;
    min-height: 620px;
    max-width: 332px;
    min-width: 332px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .doctors__card__name {
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
  }

  .doctors__card .doctors__card__info-item {
    display: none;
  }

  .doctors__card .doctors__card__info-item:nth-child(1) {
    display: block;
  }

  .doctors__card__descr {
    display: none;
  }

  .doctors__card .btn-more {
    display: block;
  }
}

@media (max-width: 768px) {
  .doctors .swiper-slide {
    width: 100%;
    max-width: 332px;
    min-width: 332px;
  }
}

.videos__descr {
  margin-top: 20px;
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  color: rgba(33, 36, 41, 0.6980392157);
}

.videos .btn {
  display: block;
  width: 100%;
  max-width: 342px;
  min-width: 342px;
  margin: 40px auto 0 auto;
}

@media (max-width: 768px) {
  .videos__descr {
    margin-top: 14px;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
  }

  .videos .btn {
    padding: 5.5px 0 10.5px 0;
  }
}

.faq {
  background-color: #FFFFFF;
  border-radius: 18px;
  padding: 140px 0;
  border-radius: 36px;
}

.faq .accordion {
  margin-top: 40px;
}

@media (max-width: 768px) {
  .faq {
    padding: 0;
    background-color: transparent;
  }
}

.consultation__inner {
  background-image: url("../assets/img/banner-consult.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 512px;
  border-radius: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-items: start;
  justify-content: center;
}

.consultation__block {
  margin-left: 90px;
  width: 100%;
  max-width: 650px;
}

.consultation__buttons {
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.consultation__buttons button,
.consultation__buttons a {
  width: 100%;
  font-size: 24px;
}

.consultation__buttons button {
  line-height: 150%;
  max-width: 300px;
}

.consultation__buttons a {
  max-width: 330px;
}

@media (max-width: 1024px) {
  .consultation__inner {
    background-image: url("../assets/img/banner-mobile.png");
    height: 650px;
    background-color: rgba(213, 217, 220, 0.4392156863);
  }

  .consultation__block {
    height: 100%;
    max-width: 100%;
    margin-left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-items: start;
    justify-content: space-between;
    padding: 21px 24px 47px 24px;
  }

  .consultation__buttons {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 32px;
  }

  .consultation__buttons button,
  .consultation__buttons a {
    max-width: 100% !important;
    padding: 11px 0 16px 0;
    font-size: 18px;
  }
}

.reviews .swiper {
  margin-top: 80px;
}

.reviews .swiper .swiper-slide {
  width: 100%;
  max-width: 380px;
  min-width: 380px;
}

@media (max-width: 768px) {
  .reviews .swiper .swiper-slide {
    max-width: 380px;
    min-width: unset;
  }

  .swiper-slide {
    width: auto !important;
  }
}

.reviews .swiper .swiper-buttons-container {
  margin-top: 70px;
  margin-left: auto;
}

@media (max-width: 1100px) {
  .reviews .swiper {
    margin-top: 38px;
  }
}

.reviews__head {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1100px) {
  .reviews__head {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-items: start;
    gap: 49px;
  }
}

.reviews__buttons {
  margin-right: 45px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.reviews__buttons a:nth-child(1) {
  width: 100%;
  max-width: 430px;
  min-width: 430px;
}

.reviews__buttons a:nth-child(2) {
  width: 100%;
  max-width: 342px;
  min-width: 342px;
}

@media (max-width: 1100px) {
  .reviews__buttons {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    width: 100%;
  }

  .reviews__buttons a {
    min-width: 0 !important;
    width: 100%;
    max-width: 100% !important;
    padding: 5px 0 11px 0;
  }
}

@media (max-width: 768px) {
  .reviews__buttons {
    max-width: unset;
  }

  .reviews__buttons a {
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
  }
}

.reviews__card {
  background-color: #FFFFFF;
  border-radius: 18px;
  padding: 26px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 380px;
  min-width: 380px;
  align-items: start;
  border-radius: 36px;
  height: 422px;
}

.reviews__card__date {
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  color: #666666;
}

.reviews__card__title {
  margin-top: 16px;
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  color: #121C1E;
}

.reviews__card__descr {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 9;
  overflow: hidden;
  margin-top: 8px;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: rgba(18, 28, 30, 0.6980392157);
}

.reviews__card__more {
  margin: auto auto 0 auto;
  opacity: 0;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  transition: 0.2s;
}

.reviews__card__more img {
  margin-left: 10px;
}

@media (max-width: 768px) {}

.reviews__card.expanded {
  height: -moz-fit-content;
  height: fit-content;
}

.reviews__card.expanded .reviews__card__descr {
  -webkit-line-clamp: unset;
}

@media (max-width: 768px) {
  .reviews__card {
    width: 100%;
    max-width: 254px;
    min-width: 254px;
    height: 326px;
    padding: 18px;
  }

  .reviews__card__date {
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: #666666;
  }

  .reviews__card__title {
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
  }

  .reviews__card__descr {
    margin-top: 14px;
    font-weight: 350;
    font-size: 14px;
    line-height: 20px;
  }
}

.reviews__card .reviews__card__more {
  opacity: 1 !important;
}

.contacts__content {
  margin-top: 80px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.contacts__content .contacts__part,
.contacts__content .map {
  background-color: #FFFFFF;
  border-radius: 18px;
  padding: 0 50px;
  border-radius: 36px;
  width: 100%;
  height: 730px;
}

@media (max-width: 1240px) {
  .contacts__content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .contacts__content {
    margin-top: 38px;
  }

  .contacts__content .contacts__part,
  .contacts__content .map {
    padding: 26px;
    height: 380px;
  }
}

.contacts__part {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-items: start;
  justify-content: center;
}

@media (max-width: 560px) {
  .contacts__part .contacts__part__inner {
    width: 100%;
  }
}

.contacts .map {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.contacts__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-items: start;
  gap: 8px;
}

.contacts__item span:nth-child(1) {
  font-weight: 400;
  font-size: 24px;
  line-height: 140%;
  color: #666666;
}

.contacts__item span:nth-child(2) {
  font-weight: 400;
  font-size: 32px;
  line-height: 42px;
  color: #121C1E;
}

@media (max-width: 768px) {
  .contacts__item span:nth-child(1) {
    font-weight: 350;
    font-size: 14px;
    line-height: 20px;
  }

  .contacts__item span:nth-child(2) {
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
  }
}

.contacts__item:nth-child(2) {
  margin-top: 60px;
}

@media (max-width: 768px) {
  .contacts__item:nth-child(2) {
    margin-top: 22px;
  }
}

.contacts__buttons {
  margin-top: 120px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 38px;
}

.contacts__buttons .contacts__link__wrapper {
  border: 1px solid #666666;
  border-radius: 14px;
  text-align: center;
  padding: 5.5px 30px 12.5px 30px;
  width: 100%;
  max-width: 318px;
}

.contacts__buttons .contacts__link__wrapper .contacts__link {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .contacts__buttons {
    margin-top: 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .contacts__buttons .contacts__link__wrapper {
    max-width: 100% !important;
    padding: 2px 0 7px 0;
    font-weight: 400;
    font-size: 24px;
    line-height: 140%;
  }
}

.footer {
  border-radius: 36px 36px 0 0;
  background-color: #121C1E;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-items: start;
  padding: 116px 115px 34px 115px;
}

@media (max-width: 1370px) {
  .footer__inner {
    padding: 70px 30px 34px 30px;
  }
}

.footer__top {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-items: start;
  justify-content: space-between;
  width: 100%;
}

.footer__top__part {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-items: start;
  width: 100%;
  max-width: 338px;
}

.footer__top__part__title {
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  color: #FFFFFF;
  margin-bottom: 25px;
}

@media (max-width: 1100px) {
  .footer__top__part__title {
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
  }
}

.footer__top__part__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-items: start;
  gap: 24px;
}

.footer__top__part__list .footer__top__part__item a {
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: #B4B4B4;
}

.footer__top__part__list.navigations .footer__top__part__item a {
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  color: #FFFFFF;
}

.footer__top__part__list.row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

@media (max-width: 1100px) {
  .footer__top__part__list {
    gap: 14px;
  }

  .footer__top__part__list.row {
    margin-left: auto;
    margin-right: auto;
  }

  .footer__top__part__list.socials {
    margin: 60px auto 0 auto;
  }

  .footer__top__part__list.socials .footer__top__part__item {
    text-align: center;
    width: 100%;
  }

  .footer__top__part__list.socials .footer__top__part__item a {
    font-weight: 32px !important;
    font-size: 24px !important;
  }

  .footer__top__part__list .footer__top__part__item a {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #B4B4B4;
  }

  .footer__top__part__list.navigations .footer__top__part__item a {
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
  }
}

.footer__top__part .buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-items: start;
  gap: 22px;
}

@media (max-width: 1100px) {
  .footer__top__part .buttons {
    margin: 0 auto;
  }
}

@media (max-width: 1100px) {
  .footer__top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }

  .footer__top .footer__top__part.navigations {
    order: -1;
  }
}

.footer__bottom {
  margin-top: 43px;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
}

.footer__bottom__part {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-items: start;
  gap: 135px;
  margin-left: 219px;
}

.footer__bottom__part a {
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: #858585;
}

.footer__bottom button {
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: #FFFFFF;
  margin-left: auto;
}

@media (max-width: 1100px) {
  .footer__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer__bottom__part {
    margin-top: 41px;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-items: center;
    margin-left: 0;
    gap: 14px;
  }

  .footer__bottom button {
    display: none;
  }
}

.intro-aboutme {
  padding-top: 0;
  z-index: -2;
}

.intro-aboutme .breadcrumbs a,
.intro-aboutme .breadcrumbs span {
  color: #121C1E;
}

.intro-aboutme .title {
  color: #121C1E;
}

.intro-aboutme .intro__description {
  width: 100%;
  max-width: 655px;
  font-weight: 400;
  font-size: 24px;
  line-height: 140%;
  margin-top: 38px;
  margin-bottom: 38px;
}

.intro-aboutme .intro__content {
  padding-right: 36px;
}

.intro-aboutme .intro__buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.intro-aboutme .intro__buttons button {
  padding: 10.5px 28px;
  font-weight: 400;
  font-size: 24px;
  line-height: 140%;
}

.intro-aboutme .intro__buttons a {
  justify-content: center;
  padding: 10.5px 28px;
  font-weight: 400;
  font-size: 24px;
  line-height: 140%;
}

.intro-aboutme .intro__buttons button:nth-child(2) {
  display: flex;
  flex-direction: row;
  gap: 12px;
}

.intro-aboutme .intro__buttons button:nth-child(2) span {
  font-weight: 400;
  font-size: 24px;
  line-height: 140%;
  color: #3981F1;
}

.intro-aboutme .intro__buttons button:nth-child(2) span strong {
  font-weight: 400;
  font-size: 24px;
  line-height: 140%;
  color: #FF4A37;
}

.intro-aboutme .intro__buttons button:nth-child(2) img {
  margin-top: 5px;
}

@media (max-width: 768px) {
  .intro-aboutme {
    background-image: url("../assets/img/intro-bg-about-mob.webp") !important;
    position: relative;
    height: 849px;
  }

  .intro-aboutme .fog {
    position: absolute;
    bottom: -120px;
    right: -30px;
    width: 100vw;
    height: 561px;
    z-index: -1;
    background: linear-gradient(180deg, rgba(214, 210, 207, 0) 0%, #D6D2CF 49.89%);
  }

  .intro-aboutme .btn-back {
    margin-bottom: 400px;
  }

  .intro-aboutme .intro__content {
    position: absolute;
    bottom: 30px;
  }

  .intro-aboutme .intro__description {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
  }

  .intro-aboutme .intro__buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-items: start;
  }

  .intro-aboutme .intro__buttons button {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    display: flex;
    justify-content: center;
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
  }

  .intro-aboutme .intro__buttons button span {
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
  }

  .intro-aboutme .intro__buttons a {
    justify-content: center;
    padding: 10.5px 28px;
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
  }

}

@media (max-width: 768px) {
  .intro-pacient {
    background-image: url(../assets/img/intro-bg4-mob.webp) !important;
    position: relative;
    height: 987px;
  }
}

.competencies__inner {
  background-color: #EDF0F5;
  border-radius: 36px;
  padding: 80px 0;
}

@media (max-width: 768px) {
  .competencies__inner {
    padding: 22px;
    margin: 0 13px;
  }
}

.competencies__wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-items: start;
}

@media (max-width: 768px) {
  .competencies__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.competencies__part {
  width: 50%;
}

@media (max-width: 768px) {
  .competencies__part {
    width: 100%;
  }
}

.competencies__title {
  font-weight: 400;
  font-size: 48px;
  line-height: 62px;
}

@media (max-width: 768px) {
  .competencies__title {
    font-weight: 400;
    font-size: 24px;
    line-height: 140%;
  }
}

.competencies__descr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
}

@media (max-width: 768px) {
  .competencies__descr {
    margin-top: 18px;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    gap: 20px;
  }
}

.approach-work__inner {
  background-color: #FFFFFF;
  border-radius: 36px;
  padding: 42px 0 25px 0;
}

.approach-work__subtitle {
  margin-top: 30px;
  font-weight: 400;
  font-size: 32px;
  line-height: 42px;
  width: 100%;
  max-width: 1103px;
}

@media (max-width: 768px) {
  .approach-work__subtitle {
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
  }
}

.approach-work__descr {
  margin-top: 60px;
  display: grid;
  flex-direction: row;
  align-items: center;
  align-items: start;
  gap: 30px;
  font-size: 20px;
  grid-template-columns: repeat(2, 1fr);
}

.approach-work__descr__part {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50%;
  gap: 30px;
}

.approach-work__descr__part p {
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
}

@media (max-width: 768px) {
  .approach-work__descr {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 16px;
    gap: 15px;
  }

  .approach-work__descr__part {
    width: 100%;
  }

  .approach-work__descr__part p {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
  }
}

.approach-work .swiper-buttons-container {
  margin-left: auto;
  margin-right: 150px;
  margin-top: 60px;
}

.approach-work .swiper-buttons-container .swiper-button-prev,
.approach-work .swiper-buttons-container .swiper-button-next {
  background-color: #FAF9FB;
}

@media (max-width: 768px) {
  .approach-work .swiper-buttons-container {
    padding-top: 60px;
    margin-right: auto;
  }
}

.approach-work .swiper-wrapper {
  gap: 24px;
  margin-left: 30px;
}

@media (max-width: 768px) {
  .approach-work .swiper-wrapper {
    gap: 12px;
    margin-left: 18px;
  }
}

.approach-work .swiper-slide {
  width: 100%;
  max-width: 720px;
  min-width: 720px;
}

@media (max-width: 768px) {
  .approach-work .swiper-slide {
    width: 100%;
    max-width: 288px;
    min-width: 288px;
    height: 264px;
  }
}

.approach-work__card {
  position: relative;
  width: 100%;
  max-width: 720px;
  min-width: 720px;
  height: 660px;
  border-radius: 24px;
  overflow: hidden;
}

.approach-work__card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.4s;
}

.approach-work__card__text {
  opacity: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 142px;
  padding: 26px 48px;
  background-color: rgba(104, 104, 104, 0.4);
  transition: 0.2s;
}

.approach-work__card__text p {
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
  color: #ffffff;
}

@media (max-width: 768px) {
  .approach-work__card {
    width: 100%;
    max-width: 288px;
    min-width: 288px;
    height: 264px;
  }

  .approach-work__card__text {
    opacity: 1;
    padding: 15px 16px;
    height: 110px;
  }

  .approach-work__card__text p {
    font-weight: 350;
    font-size: 14px;
    line-height: 20px;
  }
}

.approach-work__card:hover img {
  transform: scale(1.1);
}

.approach-work__card:hover .approach-work__card__text {
  opacity: 1;
}

.certificates__head {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.certificates__head .swiper-buttons-container {
  margin-top: 40px;
}

.certificates .swiper-wrapper {
  margin-left: 30px;
}

@media (max-width: 768px) {
  .certificates .swiper-wrapper {
    margin-left: 13px;
  }
}

.preparations__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-items: start;
  gap: 150px;
}

@media (max-width: 1200px) {
  .preparations__inner {
    gap: 40px;
  }
}

.preparations__content {
  width: 100%;
  max-width: 768px;
}

@media (max-width: 1024px) {
  .preparations__content {
    max-width: 100%;
  }
}

.preparations__descr {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.preparations__descr p {
  font-weight: 400;
  font-size: 20px;
  line-height: 150%;
}

@media (max-width: 768px) {
  .preparations__descr p {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
  }
}

.preparations__images {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-items: start;
  gap: 30px;
}

.preparations__images-part {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.preparations__images-part:nth-child(1) {
  margin-bottom: 87px;
}

.preparations__images-part:nth-child(2) {
  margin-top: 87px;
}

@media (max-width: 768px) {
  .preparations__images {
    gap: 17px;
  }

  .preparations__images-part {
    gap: 17px;
  }

  .preparations__images-part img {
    width: 160px;
  }
}

@media (max-width: 350px) {
  .preparations__images {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .preparations__images-part img {
    width: 100%;
  }

  .preparations__images-part:nth-child(1) {
    margin-bottom: 0;
  }

  .preparations__images-part:nth-child(2) {
    margin-top: 0;
  }
}

.preparations__images.mobile {
  display: none;
}

@media (max-width: 1024px) {
  .preparations__images.mobile {
    margin-top: 38px;
    display: flex;
    justify-content: center;
  }

  .preparations__images {
    display: none;
  }
}

.services__head {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.services__head-home a {
  font-weight: 400;
  font-size: 24px;
  line-height: 140%;
  padding: 13px 48px;
}

@media (max-width: 768px) {

  .services__head-home {
    max-width: unset !important;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 10px;
  }

  .services__head-home a {
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    padding: 13px 48px;
    margin: 10px 0px;
  }
}

.services__head-home a img {
  margin-bottom: 5px;
  margin-left: 20px;
}

.services__head button {
  font-weight: 400;
  font-size: 24px;
  line-height: 140%;
  padding: 13px 48px;
}

.services__head button img {
  margin-bottom: 5px;
  margin-left: 20px;
}

@media (max-width: 1160px) {
  .services__head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 33px;
    align-items: start;
  }

  .services__head button {
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    padding: 5px 23px 11px 36px;
  }

  .services__head button img {
    margin-bottom: 2.5px;
    margin-left: 10px;
  }
}

.services__descr {
  display: none;
  font-weight: 350;
  font-size: 14px;
  line-height: 20px;
  color: rgba(33, 36, 41, 0.6980392157);
  width: 100%;
  max-width: 314px;
}

@media (max-width: 768px) {
  .services__descr {
    display: inline;
  }
}

.services .swiper-wrapper {
  margin-left: 30px;
}

@media (max-width: 1024px) {
  .services .swiper-wrapper {
    gap: 11px;
  }
}

@media (max-width: 768px) {
  .services .swiper-wrapper {
    margin-left: 11px;
  }
}

.services .swiper-slide {
  width: 100%;
  max-width: 450px;
  min-width: 450px;
}

@media (max-width: 1024px) {
  .services .swiper-slide {
    width: 100%;
    max-width: 254px;
    min-width: 254px;
  }

  .services .swiper-slide img {
    width: 100%;
  }
}

.mobile-992 {
  display: none;
}

@media (max-width: 992px) {
  .mobile-992 {
    display: block;
  }
}

.interaction-home {
  margin-bottom: 122px;
  padding-top: 256px;
}

@media (max-width: 992px) {
  .interaction-home {
    padding-top: 130px;
  }
}

.interaction-home .breadcrumbs {
  color: rgba(33, 36, 41, 0.7);
}

.interaction-home .breadcrumbs a {
  color: rgba(33, 36, 41, 0.7);
}

@media (max-width: 992px) {
  .interaction-home .breadcrumbs {
    display: none;
  }
}

.interaction-home__head {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

@media (max-width: 992px) {
  .interaction-home__head {
    flex-direction: column-reverse;
    gap: 20px;
  }
}

.interaction-home__subtitle {
  max-width: 420px;
  width: 100%;
  margin-bottom: 56px;
  font-size: 24px;
  line-height: 140%;
  color: rgba(33, 36, 41, 0.7);
}

@media (max-width: 1280px) {
  .interaction-home__subtitle {
    margin-bottom: 25px;
  }
}

@media (max-width: 768px) {
  .intro-prices {
    background-image: url(../assets/img/intro-bg3-mob.webp) !important;
    position: relative;
    height: 987px;
  }
}

@media (max-width: 565px) {
  .sp-popular-services .swiper-buttons-container {
    display: none;
  }

  .sp-popular-services .swiper-slide {
    width: 260px !important;
  }
}

.sp-popular-service {
  display: flex;
  flex-direction: column;
  align-items: start;
  height: 346px;
  padding: 32px 36px 36px;
  background: #EDF0F5;
  border-radius: 24px;
}

@media (max-width: 565px) {
  .sp-popular-service {
    height: 195px;
    padding: 16px;
  }
}

.sp-service-tag {
  display: inline-block;
  padding: 3px 25px 8px;
  font-size: 18px;
  line-height: 140%;
  color: #FFF;
  border-radius: 33px;
}

.sp-service-tag--red {
  background: #FF93A5;
}

.sp-service-tag--blue {
  background: #A1AFE7;
}

.sp-service-tag--pink {
  background: #FDC3B0;
}

.sp-service-tag--skyblue {
  background: #B0D0FD;
}

.sp-service-tag--purple {
  background: #D0B0FD;
}

@media (max-width: 565px) {
  .sp-service-tag {
    padding: 0px 12px 4px;
    font-size: 14px;
    line-height: 20px;
  }
}

.sp-popular-service__tag {
  margin-bottom: 30px;
}

@media (max-width: 565px) {
  .sp-popular-service__tag {
    margin-bottom: 8px;
  }
}

.sp-service-name {
  font-size: 24px;
  font-weight: 400;
  line-height: 140%;
  color: #121C1E;
}

@media (max-width: 565px) {
  .sp-service-name {
    font-size: 16px;
    line-height: 150%;
  }
}

.interaction-home__button {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 342px;
  width: 100%;
  height: 60px;
  font-size: 24px;
  line-height: 140%;
  border-radius: 14px;
  background: #E9F0FC;
}

@media (max-width: 1280px) {
  .interaction-home__button {
    height: 46px;
    font-size: 20px;
    line-height: 150%;
  }
}

.interaction-home__link {
  display: flex;
  align-items: end;
  gap: 48px;
  font-size: 62px;
  line-height: 78px;
  color: rgba(18, 28, 30, 0.3);
  -webkit-tap-highlight-color: transparent;
}

@media (max-width: 1280px) {
  .interaction-home__link {
    justify-content: space-between;
    font-size: 24px;
    line-height: 140%;
  }
}

.interaction-home__icon {}

.sp-service-pricebox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  margin-top: auto;
}

.sp-service-price {
  font-size: 32px;
  line-height: 42px;
  color: #121C1E;
}

@media (max-width: 565px) {
  .sp-service-price {
    font-size: 18px;
    line-height: 140%;
  }
}

.sp-service-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: #FFF;
  border-radius: 50%;
  transform: translateY(-5px);
  -webkit-tap-highlight-color: transparent;
}

@media (max-width: 1280px) {
  .interaction-home__icon {
    width: 46px;
    height: 46px;
    transform: translateY(7px);
  }
}

.interaction-home__mobileicon {
  margin-bottom: 20px;
}

.interaction-home__mobileicon svg {
  transform: rotate(180deg);
}

@media (max-width: 992px) {
  .interaction-home__mobileicon {
    transform: none;
  }
}

.interactions__box {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .interactions__box {}
}

.sp-services-sliderbox {
  overflow: hidden;
  padding-left: 30px;
}

@media (max-width: 565px) {
  .sp-services-sliderbox {
    padding-left: 13px;
  }
}

.swiper.sp-services-slider {
  width: 1930px;
  margin-left: 0;
  overflow: visible;
}

.swiper.sp-services-slider .swiper-wrapper {
  gap: 0;
}

@media (max-width: 565px) {
  .swiper.sp-services-slider {
    width: 260px;
  }
}


.sp-pricebox {
  margin-bottom: 140px;
}

@media (max-width: 768px) {
  .sp-pricebox {
    margin-bottom: 80px;
  }
}

.sp-price-titlebox {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .sp-price-titlebox {
    gap: 18px;
    margin-bottom: 28px;
  }
}

.sp-price-titleicon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 86px;
  height: 86px;
  background: #FFF;
  border-radius: 50%;
}

@media (max-width: 768px) {
  .sp-price-titleicon {
    width: 42px;
    height: 42px;
  }

  .sp-price-titleicon svg {
    transform: scale(0.6);
  }
}

.sp-price-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.sp-price-items--grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 768px) {
  .sp-price-items--grid2 {
    grid-template-columns: 1fr;
  }
}

.sp-price-items--mb {
  margin-bottom: 60px;
}

@media (max-width: 768px) {
  .sp-price-items--mb {
    margin-bottom: 40px;
  }
}

.interaction {
  padding: 48px 124px;
  background: #FFF;
  border-radius: 36px;
}

@media (max-width: 992px) {
  .interaction {
    padding: 22px;
    border-radius: 24px;
  }
}

.interaction__head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 38px;
}

@media (max-width: 768px) {
  .interaction__head {
    margin-bottom: 22px;
  }
}

.interaction__numbox {
  display: flex;
}

@media (max-width: 768px) {
  .interaction__numbox {
    width: 100%;
    justify-content: start;
  }
}

.interaction__num {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 38px 7px;
  font-size: 18px;
  line-height: 140%;
  background: #EDF0F5;
  border-radius: 33px;
}

@media (max-width: 768px) {
  .interaction__num {
    font-size: 16px;
    line-height: 150%;
  }
}

.interaction__name {
  font-size: 24px;
  line-height: 140%;
  color: rgba(18, 28, 30, 0.7);
}

@media (max-width: 768px) {
  .interaction__name {
    font-size: 18px;
  }
}

.interaction__date {
  margin-left: auto;
  font-size: 20px;
  line-height: 150%;
  color: rgba(18, 28, 30, 0.5);
}

@media (max-width: 768px) {
  .interaction__date {
    font-size: 18px;
    line-height: 150%;
  }
}

.interaction__body {
  max-width: 930px;
  width: 100%;
  font-size: 20px;
  line-height: 150%;
}

@media (max-width: 768px) {
  .interaction__body {
    font-size: 16px;
  }
}

.interaction__body p {
  font-size: 20px;
  line-height: 150%;
}

@media (max-width: 768px) {
  .interaction__body p {
    font-size: 16px;
  }
}

.interaction__text {
  font-size: 20px;
  line-height: 150%;
}

@media (max-width: 768px) {
  .interaction__text {
    font-size: 16px;
  }
}

.interaction__viewfoto {
  margin-top: 38px;
  padding: 12px 43px 15px;
  font-size: 18px;
  line-height: 140%;
  color: rgba(23, 23, 23, 0.7);
  background: #E9F0FC;
  border-radius: 14px;
}

@media (max-width: 768px) {
  .interaction__viewfoto {
    margin-top: 22px;
  }
}

.interaction__link {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-top: 38px;
}

@media (max-width: 768px) {
  .interaction__link {
    margin-top: 22px;
  }
}

.interaction-more {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 348px;
  width: 100%;
  height: 60px;
  margin: 0 auto;
  font-size: 24px;
  line-height: 140%;
  background: #FFF;
  border-radius: 14px;
}

@media (max-width: 768px) {
  .interaction-more {
    max-width: 312px;
    height: 46px;
    font-size: 20px;
    line-height: 150%;
  }
}

.interaction-answer {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .interaction-answer {
    gap: 15px;
  }
}

@media (max-width: 380px) {
  .interaction-answer {
    flex-direction: column;
  }
}

.interaction-answer__avatar {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
}

@media (max-width: 768px) {
  .interaction-answer__avatar {
    width: 54px;
    height: 54px;
  }
}

.interaction-answer__name {
  margin-bottom: 4px;
  font-size: 24px;
  line-height: 140%;
}

@media (max-width: 768px) {
  .interaction-answer__name {
    font-size: 18px;
  }
}

.interaction-answer__status {
  display: block;
  margin-bottom: 16px;
  font-size: 18px;
  line-height: 140%;
  color: rgba(18, 28, 30, 0.7);
}

@media (max-width: 768px) {
  .interaction-answer__status {
    font-size: 16px;
    line-height: 150%;
  }
}

.sp-price-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 13px 28px 17px;
  background: #FFF;
  border-radius: 18px;
}

@media (max-width: 992px) {
  .sp-price-item {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .sp-price-item {
    padding: 18px;
  }
}

.sp-serviceval {
  font-size: 20px;
  line-height: 150%;
}

@media (max-width: 768px) {
  .sp-serviceval {
    font-size: 18px;
    line-height: 140%;
  }
}

.sp-serviceval--name {
  max-width: 505px;
  width: 100%;
}


.sp-price-pricetitle {
  margin-bottom: 30px;
  font-size: 32px;
  line-height: 42px;
  font-weight: 400;
}

@media (max-width: 768px) {
  .sp-price-pricetitle {
    margin-bottom: 22px;
    padding-left: 25px;
    font-size: 20px;
    line-height: 150%;
  }
}

/* Pagination */

.pagination {
  display: flex;
  flex-direction: row;
}

.pagination a {
  padding: 0 12px;
  font-weight: 400;
  font-size: 24px;
  line-height: 140%;
  color: #121C1E80;
}

.pagination a.active {
  color: #121C1E;
}

@media (max-width: 768px) {
  .pagination a {
    font-size: 20px;
  }
}

/* modal */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #121C1E40;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  z-index: 120000;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: white;
  padding: 67px;
  border-radius: 36px;
  transform: translateY(-50px);
  transition: transform 0.3s ease-in-out;
  max-width: 500px;
  width: 90%;
  margin: 20px 0;
  max-height: 98vh;
  overflow-y: auto;
}

.modal h2 {
  font-weight: 400;
  font-style: Regular;
  font-size: 40px;
  line-height: 52px;
  text-align: center;
}

.modal h3 {
  margin-top: 14px;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 140%;
  color: #212429B2;
  text-align: center;
}

.modal-body {
  margin-top: 29px;
}

.modal-overlay.active .modal {
  transform: translateY(0);
}

.close-modal-btn {
  position: absolute;
  top: 35px;
  right: 35px;
  font-size: 52px;
  cursor: pointer;
  background: none;
  border: none;
}

.open-modal-btn {
  cursor: pointer;
  transition: background 0.3s;
}


@media (max-width: 768px) {
  .close-modal-btn {
    top: 22px;
    right: 22px;
  }

  .modal {
    width: 100%;
    margin: 0 12px;
    padding: 44px 25px 34px 25px;
  }

  .modal h2 {
    font-size: 32px;
    line-height: 42px;
  }

  .modal h3 {
    font-size: 16px;
  }
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.input,
.textarea {
  position: relative;
  border: 1px solid #2124294D;
  border-radius: 14px;
  padding: 9.5px 23px 12px 23px;

  transition: all .2s;
}

.input.error {
  border-color: #FF9DBC;
}

.input label {
  color: #FF9DBC;
  position: absolute;
  top: 12.5px;
  right: 23px;

  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 150%;
}

input,
textarea {
  padding: 0;
  border: 0;
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  line-height: 150%;
  width: 100%;
}

.input.error input {
  width: 50%;
}



textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #212429B2;
}

.file-upload {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.file-upload-btn {
  display: flex;
  flex-direction: row;
  background-color: #ECEBE8;
  color: #171717B2;
  padding: 9px 35px 13px 35px;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  line-height: 150%;

  transition: background-color 0.3s;
}

.file-upload-btn img {
  margin-left: 22px;
}

/* .file-upload-btn:hover {
    background-color: #45a049;
} */

.file-upload-input {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.file-count {
  margin-left: 10px;
  font-size: 14px;
  color: #666;
}

.custom-checkbox {
  display: inline-block;
  position: relative;
  cursor: pointer;
  user-select: none;
  margin: 10px;
}

.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  background-color: transparent;
  /* Прозрачный фон */
  border: 2px solid #555;
  border-radius: 4px;
  transition: all 0.2s;
  vertical-align: middle;
  margin-right: 10px;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid #333;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.custom-checkbox:hover input~.checkmark {
  border-color: #777;
}

.custom-checkbox input:checked~.checkmark {
  border-color: #666;
}

.custom-checkbox input:checked~.checkmark:after {
  display: block;
}

.custom-checkbox input:disabled~.checkmark {
  border-color: #444;
  cursor: not-allowed;
}

.custom-checkbox input:disabled~.checkmark:after {
  border-color: #444;
}

.checkbox-label {
  margin-bottom: 7px;
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  line-height: 150%;
}

.checkbox-label a {
  color: #2124294D !important;
}

.btn.bright-green {
  background-color: #C1FF06;
}

.btn.bright-green:hover {
  background-color: #C1FF0690;
}

.intro.light-intro {
  background-position: right;
}

.intro.light-intro .intro__inner .title {
  color: #fff;
}

.intro__btn-container {
  display: flex;
  margin-top: 20px;
  gap: 12px;
}

.intro.light-intro .intro__subtitle {
  font-size: 40px;
  line-height: 52px;
  color: #121c1e;
  font-weight: 400;
  margin-top: 38px;
}

.intro.light-intro .breadcrumbs a {
  color: #212429b2;
}

.intro.light-intro .breadcrumbs {
  color: #212429b2;
}

.mob-only {
  display: none;
}

@media screen and (max-width: 768px) {
  .intro.light-intro .intro__subtitle {
    font-size: 24px;
    line-height: 1.4;
    margin-top: 16px;
  }

  .pc-only {
    display: none;
  }

  .mob-only {
    display: inline;
  }

  .intro__text {
    font-size: 16px;
    line-height: 1.5;
    margin-top: 16px;
    color: #212429B2;
  }
}

.operation {
  margin-top: 144px;
}

.white-section {
  background-color: #ffffff;
  border-radius: 0 0 36px 36px;
}

.operation__content {
  border-top: 1px solid #121c1e4d;
  padding-top: 48px;
  padding-bottom: 140px;
}

.operation__title {
  margin-bottom: 40px;
}

.operation__content__title {
  font-size: 32px;
  line-height: 42px;
  margin-bottom: 28px;
  font-weight: 400;
}

.operation__content__text {
  font-size: 20px;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .operation {
    margin-top: 80px;
  }

  .operation__content {
    margin-top: 38px;
    padding-top: 38px;
    padding-bottom: 80px;
  }

  .operation__title {
    margin-bottom: 38px;
  }

  .operation__content__title {
    font-size: 18px;
    line-height: 1.4;
  }

  .operation__content__text {
    font-size: 16px;
  }
}


.price_increase_reasons {
  margin: 140px auto;
}

.price_increase_reasons__subtitle {
  color: #212429b2;
  font-size: 20px;
  margin-top: 20px;
}

.price_increase_reasons__list {
  display: grid;
  grid-template-columns: 4fr 4fr 7fr;
  gap: 24px;
  margin-top: 60px;
}

.price_increase_reasons__item {
  background-color: #ffffff;
  border-radius: 36px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 92px;
}

.price_increase_reasons__img_container {
  background-color: #ff9dbc;
  padding: 15px;
  border-radius: 50%;
}

.price_increase_reasons__text {
  font-size: 24px;
  line-height: 1.4;
}

@media screen and (max-width: 968px) {
  .price_increase_reasons__list {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 12px;
  }

  .price_increase_reasons__item:nth-child(1) {
    grid-area: 1 / 1 / 2 / 2;
  }

  .price_increase_reasons__item:nth-child(2) {
    grid-area: 1 / 2 / 2 / 3;
  }

  .price_increase_reasons__item:nth-child(3) {
    grid-area: 2 / 1 / 3 / 3;
  }
}

@media screen and (max-width: 768px) {
  .price_increase_reasons {
    margin: 80px auto;
  }

  .price_increase_reasons__subtitle {
    margin-top: 12px;
  }
}

@media screen and (max-width: 600px) {
  .price_increase_reasons__img_container {
    padding: 13px;
  }

  .price_increase_reasons__img_container>img {
    width: 33px;
    height: 33px;
  }

  .price_increase_reasons__list {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 38px;
  }

  .price_increase_reasons__item:nth-child(1),
  .price_increase_reasons__item:nth-child(2),
  .price_increase_reasons__item:nth-child(3) {
    grid-area: auto;
  }

  .price_increase_reasons__text {
    font-size: 20px;
    line-height: 1.5;
  }
}

.indications_contraindications {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 140px;
}

.indications_contraindications:has(.indications_contraindications__item:only-child) {
  display: block;
}

@media screen and (max-width: 968px) {
  .indications_contraindications {
    grid-template-columns: 1fr;
  }
}

.indications_contraindications__item {
  background-color: #ffffff;
  padding: 38px 48px 48px 48px;
  border-radius: 36px;
}

.indications_contraindications__item__title {
  font-size: 40px;
  line-height: 52px;
  font-weight: 400;
  margin-bottom: 30px;
}

.indications_contraindications__list__item {
  font-size: 20px;
  line-height: 1.5;
  display: flex;
  gap: 14px;
}

.indications_contraindications__list__item:not(:last-child) {
  margin-bottom: 22px;
}

.indications_contraindications__list__item.contraindications::before,
.indications_contraindications__list__item.indications::before {
  content: "";
  min-width: 24px;
  width: 24px;
  height: 24px;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 8px;
}

.indications_contraindications__list__item.indications::before {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.2491 2.60824C20.6635 2.2138 21.2148 1.99573 21.7868 2.00006C22.3589 2.00439 22.9069 2.23077 23.3152 2.63144C23.7235 3.03211 23.9601 3.57573 23.9753 4.14758C23.9904 4.71943 23.7828 5.2748 23.3962 5.69648L11.6609 20.3729C11.4591 20.5903 11.2156 20.7647 10.9448 20.8858C10.6741 21.0069 10.3817 21.0721 10.0852 21.0776C9.78865 21.0831 9.49405 21.0287 9.21902 20.9178C8.94398 20.8068 8.69414 20.6415 8.48444 20.4318L0.702083 12.6494C0.485358 12.4475 0.311528 12.2039 0.190963 11.9334C0.0703986 11.6628 0.00556913 11.3707 0.000343294 11.0745C-0.00488254 10.7783 0.0496024 10.4841 0.160547 10.2094C0.271491 9.93476 0.436622 9.68525 0.646089 9.47578C0.855556 9.26631 1.10507 9.10118 1.37974 8.99024C1.65441 8.87929 1.94861 8.82481 2.2448 8.83003C2.54098 8.83526 2.83308 8.90009 3.10367 9.02065C3.37425 9.14122 3.61778 9.31505 3.81973 9.53177L9.97855 15.6877L20.1933 2.67295L20.2491 2.60824Z' fill='%23C0FFCE'/%3E%3C/svg%3E%0A");
}

.indications_contraindications__list__item.contraindications::before {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.53114 2.53114C2.87134 2.19105 3.33268 2 3.81371 2C4.29475 2 4.75609 2.19105 5.09629 2.53114L11.511 8.94581L17.9256 2.53114C18.2678 2.20069 18.726 2.01784 19.2017 2.02197C19.6773 2.02611 20.1323 2.21689 20.4687 2.55324C20.805 2.88959 20.9958 3.34459 20.9999 3.82024C21.0041 4.2959 20.8212 4.75414 20.4908 5.09629L14.0761 11.511L20.4908 17.9256C20.8212 18.2678 21.0041 18.726 20.9999 19.2017C20.9958 19.6773 20.805 20.1323 20.4687 20.4687C20.1323 20.805 19.6773 20.9958 19.2017 20.9999C18.726 21.0041 18.2678 20.8212 17.9256 20.4908L11.511 14.0761L5.09629 20.4908C4.75414 20.8212 4.2959 21.0041 3.82024 20.9999C3.34459 20.9958 2.88959 20.805 2.55324 20.4687C2.21689 20.1323 2.02611 19.6773 2.02197 19.2017C2.01784 18.726 2.20069 18.2678 2.53114 17.9256L8.94581 11.511L2.53114 5.09629C2.19105 4.75609 2 4.29475 2 3.81371C2 3.33268 2.19105 2.87134 2.53114 2.53114Z' fill='%23FF9DBC'/%3E%3C/svg%3E%0A");
}

@media screen and (max-width: 768px) {
  .indications_contraindications {
    margin-bottom: 80px;
    gap: 20px;
  }

  .indications_contraindications__item__title {
    font-size: 24px;
    margin-bottom: 22px;
    line-height: 1.4;
  }

  .indications_contraindications__list__item {
    font-size: 16px;
  }

  .indications_contraindications__item {
    padding: 28px;
  }
}


.work_stages {
  margin: 140px auto;
}

@media screen and (max-width: 768px) {
  .work_stages {
    margin: 80px auto;
  }
}

.work_stages__container {
  background-color: #ffffff;
  padding: 18px 63px 18px 18px;
  border-radius: 36px;
  display: flex;
  gap: 50px;
  align-items: center;
  margin-top: 60px;
}

.work_stages__img {
  border-radius: 36px;
  max-width: 651px;
  width: 48%;
  aspect-ratio: 1 / 1;
}

.work_stages__list {
  list-style-type: disc;
}

.work_stages__item::marker {
  color: #e9f0fc;
  /* font-size: 20px;  */
}

.work_stages__item {
  font-size: 20px;
  line-height: 1.5;
}

.work_stages__item:not(:last-child) {
  margin-bottom: 22px;
}

@media screen and (max-width: 968px) {
  .work_stages__container {
    flex-direction: column;
    gap: 0;
  }
}

@media screen and (max-width: 600px) {
  .work_stages__container {
    padding: 0;
    margin-top: 38px;
  }

  .work_stages__img {
    width: 100%;
  }

  .work_stages__list {
    padding: 22px;
    margin-left: 22px;
  }
}

.after_before {
  margin: 140px auto;
}

.after_before__head {
  display: flex;
  flex-direction: row;
}

.after_before__head__content {
  display: flex;
  gap: 35px;
  align-items: flex-end;
}

.after_before .swiper-buttons-container {
  margin-left: auto;
}

.after_before .swiper .swiper-slide {
  width: 100%;
  max-width: 460px;
  min-width: 460px;
}

.after_before .swiper .swiper-slid:first-child {
  margin-left: 31px;
}

.after_before .swiper .swiper-slide .after_before__card {
  border-radius: 24px;
  width: 100%;
  max-width: 460px;
  min-width: 460px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.after_before__wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 120px;
  height: 60px;
  cursor: pointer;
  background: #FFFFFF;
  border-radius: 14px;
  padding: 0 2px;
}

.after_before__switch {
  appearance: none;
  position: absolute;
  inset: 0;
  margin: 0;
  cursor: pointer;
  z-index: 2;
}

.after_before__switch::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 2px;
  background: #EDF0F5;
  border-radius: 14px;
  transform: translateY(-50%);
  transition: transform 0.3s ease, background 0.3s ease;
  z-index: 1;
  width: 56px;
  aspect-ratio: 1 / 1;
}

.after_before__switch:checked::before {
  transform: translate(60px, -50%);
}

.after_before__icon-left,
.after_before__icon-right {
  position: relative;
  z-index: 3;
  font-size: 20px;
  pointer-events: none;
  width: 56px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.after_before__icon-left>img,
.after_before__icon-right>img {
  width: 24px;
  height: 24px;
}

.after_before__card__content {
  width: 100%;
  height: 100%;
  background-color: #EDF0F5;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 30px;
  background-image: url("data:image/svg+xml,%3Csvg width='38' height='38' viewBox='0 0 38 38' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M31.3539 26.7528C35.3938 23.1475 37.6262 19.0625 37.6262 19.0625C37.6262 19.0625 30.5012 6 18.6262 6C16.3451 6.00596 14.0895 6.48132 12 7.3965L13.8287 9.22762C15.3671 8.67009 16.99 8.38166 18.6262 8.375C23.6612 8.375 27.8389 11.149 30.9002 14.2104C32.3752 15.6902 33.6961 17.3159 34.8428 19.0625C34.7066 19.2683 34.5522 19.4963 34.3796 19.7465C33.584 20.8865 32.4084 22.4065 30.9002 23.9146C30.5092 24.3073 30.0999 24.692 29.6724 25.0689L31.3539 26.7528Z' fill='%23121C1E' fill-opacity='0.5'/%3E%3Cpath d='M26.828 21.7931C27.358 20.3107 27.4562 18.7083 27.1111 17.1724C26.766 15.6364 25.9918 14.23 24.8786 13.1168C23.7654 12.0036 22.359 11.2294 20.823 10.8843C19.2871 10.5392 17.6847 10.6374 16.2023 11.1674L18.1569 13.122C19.0697 12.9913 20.0003 13.0751 20.875 13.3665C21.7498 13.658 22.5447 14.1492 23.1966 14.8011C23.8486 15.4531 24.3398 16.248 24.6313 17.1227C24.9227 17.9975 25.0064 18.9281 24.8758 19.8409L26.828 21.7931ZM19.8384 24.8782L21.7907 26.8305C20.3083 27.3605 18.7059 27.4586 17.1699 27.1135C15.6339 26.7684 14.2275 25.9942 13.1144 24.881C12.0012 23.7679 11.227 22.3615 10.8819 20.8255C10.5368 19.2895 10.6349 17.6871 11.1649 16.2047L13.1195 18.1594C12.9889 19.0721 13.0726 20.0027 13.3641 20.8775C13.6555 21.7522 14.1467 22.5471 14.7987 23.1991C15.4507 23.8511 16.2455 24.3422 17.1203 24.6337C17.9951 24.9252 18.9257 25.0089 19.8384 24.8782Z' fill='%23121C1E' fill-opacity='0.5'/%3E%3Cpath d='M7.95625 12.9912C7.52875 13.3712 7.11867 13.7567 6.726 14.1478C5.25104 15.6276 3.93011 17.2533 2.7835 18.9999L3.24662 19.6839C4.04225 20.8239 5.21788 22.3439 6.726 23.8521C9.78738 26.9134 13.9674 29.6874 19 29.6874C20.7005 29.6874 22.3013 29.3716 23.7975 28.8324L25.6262 30.6659C23.5367 31.5811 21.2812 32.0565 19 32.0624C7.125 32.0624 0 18.9999 0 18.9999C0 18.9999 2.23012 14.9126 6.27238 11.3097L7.95388 12.9936L7.95625 12.9912ZM32.4092 34.0907L3.90925 5.59068L5.59075 3.90918L34.0908 32.4092L32.4092 34.0907Z' fill='%23121C1E' fill-opacity='0.5'/%3E%3C/svg%3E%0A");
  background-position: center;
  background-repeat: no-repeat;
  transition: all .2s linear;
}

.after_before__card__content:hover,
.after_before__card__content.opened {
  background-color: transparent;
  background-image: none;
}

.after_before__card__content:hover .after_before__card__text {
  background-color: #1B1B1B4D;
  color: #FFFFFF;
}

.after_before__card__text {
  font-size: 13px 18px 18px 18px;
  line-height: 1.4;
  color: #121C1E80;
  padding: 28px;
  transition: all .2s linear;
}

@media (max-width: 768px) {
  .after_before .swiper .swiper-slide .after_before__card {
    gap: 0;
    width: 100%;
    max-width: 252px;
    min-width: 252px;
  }

  .after_before {
    margin: 80px auto;
  }
}

@media (max-width: 768px) {
  .after_before .swiper .swiper-slide {
    width: 100%;
    max-width: 252px;
    min-width: 252px;
  }
}

@media screen and (max-width: 600px) {
  .after_before__wrapper {
    display: none;
  }
}

.service_operation__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

.service_operation__header__links {
  display: flex;
  gap: 12px;
}

.service_operation {
  margin: 140px auto;
}

.service_operation__header__link {
  border-radius: 14px;
  font-size: 20px;
  line-height: 1.5;
  padding: 8.5px 29px 13px;
  transition: all .2s linear;
}

@media screen and (max-width: 768px) {
  .service_operation {
    margin: 80px auto;
  }

  .service_operation__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .service_operation__header__links {
    flex-direction: column;
    margin-top: 22px;
  }
}
.interaction__text {
  font-size: 20px;
  line-height: 150%;
}

@media (max-width: 768px) {
  .interaction__text {
    font-size: 16px;
  }
}



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