@charset "UTF-8";
@font-face {
  font-weight: 400;
  font-family: "Involve";
  src: url("../fonts/Involve-Regular.otf");
  font-display: swap;
}
@font-face {
  font-weight: 500;
  font-family: "Involve";
  src: url("../fonts/Involve-Medium.otf");
  font-display: swap;
}
@font-face {
  font-weight: 600;
  font-family: "Involve";
  src: url("../fonts/Involve-SemiBold.otf");
  font-display: swap;
}
@font-face {
  font-weight: 700;
  font-family: "Involve";
  src: url("../fonts/Involve-Bold.otf");
  font-display: swap;
}
html {
  font-size: 16px;
  font-family: "Involve", sans-serif;
  font-weight: 400;
  font-style: normal;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  position: relative;
  margin: 0;
  overflow-y: scroll;
  color: #000000;
  background-color: #eff5f9;
  scrollbar-gutter: stable;
}
body.hidden {
  overflow: hidden;
}

a,
button,
input,
textarea {
  font-family: "Involve", sans-serif;
  text-decoration: none;
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 15px 24px;
  box-sizing: border-box;
  font-weight: 600;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: 0.01em;
  text-align: center;
  color: #fdfdfd;
  border: none;
  border-radius: 60px;
  background-color: #53ace9;
  transition-property: background-color, color, border;
  transition-timing-function: ease-out;
  transition-duration: 0.2s;
  cursor: pointer;
}
.button:hover {
  background-color: #2f85c0;
}
.button_link {
  padding: 10px;
  padding-left: 20px;
}
.button_link::after {
  content: "";
  display: block;
  flex: 0 0 auto;
  width: 36px;
  aspect-ratio: 1;
  box-sizing: border-box;
  border-radius: 36px;
  background: url(../assets/icons/arrow-black.svg) center/cover no-repeat;
  background-color: #ffffff;
  transform: rotate(90deg);
}

.container {
  max-width: 1560px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}
@media (max-width: 1440px) {
  .container {
    padding: 0 20px;
  }
}
@media (max-width: 576px) {
  .container {
    padding: 0 15px;
  }
}

.section {
  padding: 72px 0;
}
@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }
}

.rating {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.rating__star {
  display: block;
  flex: 0 0 auto;
  width: 21px;
  height: 21px;
  background-position: center;
  background-size: 21px;
  background-repeat: no-repeat;
}
.rating__star.empty {
  background-image: url("../assets/icons/star-full.svg");
  opacity: 0;
}
.rating__star.full {
  background-image: url("../assets/icons/star-full.svg");
}
.rating__star.half {
  background-image: url("../assets/icons/star-half.svg");
}

.custom-select {
  position: relative;
  display: inline-block;
  width: 100%;
}
.custom-select > select {
  display: none;
}
.custom-select__trigger {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 16px 20px;
  box-sizing: border-box;
  font-weight: 400;
  font-size: 12px;
  line-height: 117%;
  letter-spacing: 0.02em;
  color: #555f73;
  text-align: left;
  border: none;
  border-radius: 100px;
  outline-color: #2f85c0;
  background-color: #eff5f9;
  cursor: pointer;
}
.custom-select__trigger::after {
  content: "";
  display: inline-block;
  width: 12px;
  aspect-ratio: 1;
  background: url(../assets/icons/dropdown.svg) center/12px no-repeat;
  transition: transform ease-out 0.2s;
}
.custom-select.active .custom-select__trigger::after {
  transform: rotate(180deg);
}
.custom-select__list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 10;
  display: block;
  max-height: 0;
  margin: 10px 0 0;
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
  list-style: none;
  border: none;
  border-radius: 16px;
  background-color: #eff5f9;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
  transition: max-height 0.2s ease;
}
.custom-select.active .custom-select__list {
  max-height: 200px;
  overflow-y: auto;
}
.custom-select__option {
  padding: 10px 12px;
  font-weight: 400;
  font-size: 12px;
  line-height: 117%;
  letter-spacing: 0.02em;
  color: #555f73;
  cursor: pointer;
}
.custom-select__option[data-value=""] {
  color: #878e9c;
}
.custom-select__option:hover {
  background: #f0f0f0;
}

.custom-file-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  padding: 8px 9px;
  padding-left: 20px;
  box-sizing: border-box;
  border: 1px solid #bad5e8;
  border-radius: 100px;
  background-color: #eff5f9;
}
.custom-file-input:has(.custom-file-input__input:required:user-invalid) {
  border: 1px solid #f46036;
}
.custom-file-input__name {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  letter-spacing: 0.01em;
  text-align: left;
  color: #293241;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.custom-file-input__label {
  flex: 0 0 auto;
  padding: 11px 12px;
  border-radius: 100px;
  background: #d3edff;
  cursor: pointer;
}
.custom-file-input__label-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  letter-spacing: 0.01em;
  text-align: center;
  color: #293241;
}
.custom-file-input__input {
  display: block;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.date-field {
  display: inline-block;
  width: 100%;
}
.date-field__wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}
.date-field__input {
  display: block;
  width: 100%;
  min-height: 3rem;
  padding: 16px 36px 16px 20px;
  box-sizing: border-box;
  font-weight: 400;
  font-size: 12px;
  line-height: 117%;
  letter-spacing: 0.02em;
  color: #293241;
  border: none;
  border-radius: 100px;
  outline-color: #2f85c0;
  background-color: #eff5f9;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.date-field__input::-webkit-calendar-picker-indicator {
  opacity: 0;
  cursor: pointer;
}
.date-field__input.is-invalid {
  border-color: #e74c3c;
}
.date-field__icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: url(../assets/icons/calendar.svg) center/cover no-repeat;
  background-size: contain;
  cursor: pointer;
}
.date-field__placeholder {
  position: absolute;
  left: 10px;
  top: 50%;
  padding: 10px 0 10px 10px;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: #878e9c;
  background-color: #eff5f9;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity 0.15s ease;
}
.date-field__placeholder.is-visible {
  opacity: 1;
}

.header {
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  z-index: 999;
  transition-property: top;
  transition-timing-function: ease-out;
  transition-duration: 0.2s;
  will-change: top;
}
@media (max-width: 768px) {
  .header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
  }
}
.header.fixed {
  position: fixed;
  top: 0;
}
@media (max-width: 768px) {
  .header.fixed {
    top: 0;
  }
}
.header.transformed.fixed {
  top: -200px;
}
@media (max-width: 768px) {
  .header.transformed.fixed {
    top: 0;
  }
}
.header__wrapper {
  position: relative;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 12px;
}
@media (max-width: 768px) {
  .header__wrapper {
    padding: 16px 10px 10px;
    border-radius: 0 0 20px 20px;
    background-color: #ffffff;
  }
}
.header.fixed .header__wrapper {
  border-radius: 0 0 20px 20px;
  background-color: #ffffff;
}
.header__logo {
  flex: 0 0 auto;
}
.header__logo-link {
  display: inline-block;
}
.header__logo-link-image {
  display: block;
  max-width: 100%;
  width: 151px;
  height: auto;
}
@media (max-width: 768px) {
  .header__logo-link-image {
    width: 116px;
  }
}
.header__nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  flex: 1 1 100%;
  padding-left: 28px;
  padding-right: 18px;
}
@media (max-width: 768px) {
  .header__nav {
    justify-content: flex-end;
    padding-right: 0;
  }
}
.header__nav-menu {
  padding: 5px;
  border-radius: 50px;
  background-color: #d3edff;
}
.header__nav-menu-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  text-align: center;
  color: #293241;
  border: 3px solid #ffffff;
  border-radius: 50px;
  background-color: #ffffff;
  transition-property: background-color;
  transition-timing-function: ease-out;
  transition-duration: 0.2s;
  will-change: background-color;
  cursor: pointer;
}
.header__nav-menu-button:hover {
  background-color: #d3edff;
}
.header__nav-menu-button.active {
  background-color: #b5ddf9;
}
.header__nav-menu-button::after {
  content: "";
  display: inline-block;
  flex: 0 0 auto;
  width: 12px;
  aspect-ratio: 1;
  background: url(../assets/icons/menu.svg) center/cover no-repeat;
}
.header__nav-block {
  display: flex;
  align-items: center;
  padding: 5px;
  border-radius: 50px;
  background-color: #d3edff;
}
@media screen and (max-width: 992px) {
  .header__nav-block {
    display: none;
  }
}
.header__nav-block-services, .header__nav-block-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  text-align: center;
  color: #293241;
  border: 3px solid #ffffff;
  border-radius: 50px;
  background-color: #ffffff;
  transition-property: background-color;
  transition-timing-function: ease-out;
  transition-duration: 0.2s;
  will-change: background-color;
  cursor: pointer;
}
.header__nav-block-services:hover, .header__nav-block-link:hover {
  background-color: #d3edff;
}
.header__nav-block-services:active, .header__nav-block-link:active {
  background-color: #b5ddf9;
}
.header__nav-block-services::after {
  content: "";
  display: inline-block;
  flex: 0 0 auto;
  width: 12px;
  aspect-ratio: 1;
  background: url(../assets/icons/dropdown.svg) center/cover no-repeat;
  transition: transform ease-out 0.2s;
}
.header__nav-block-services.active {
  background-color: #b5ddf9;
}
.header__nav-block-services.active::after {
  transform: rotate(180deg);
}
.header__nav-block-link {
  display: flex;
}
.header__services {
  position: fixed;
  inset: 0;
  z-index: 10;
  padding: 160px 0 40px 20px;
  box-sizing: border-box;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0);
  pointer-events: none;
  transition-property: background-color, -webkit-backdrop-filter;
  transition-property: background-color, backdrop-filter;
  transition-property: background-color, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: ease-out;
  transition-duration: 0.4s;
  will-change: background-color, backdrop-filter;
}
@media (max-width: 1024px) {
  .header__services {
    padding: 160px 0 40px;
  }
}
@media (max-width: 768px) {
  .header__services {
    display: none;
  }
}
.header__services.active {
  pointer-events: all;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  background-color: rgba(0, 0, 0, 0.05);
}
.header__services::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}
.header__services-body {
  position: relative;
  z-index: 10;
  display: flex;
  max-width: calc(100dvw - 60px);
  width: 940px;
  box-sizing: border-box;
  padding: 12px;
  border-radius: 20px;
  background-color: #ffffff;
  transform: translateY(-120dvh);
  transition: transform ease-out 0.4s;
  will-change: transform;
}
@media (max-width: 1024px) {
  .header__services-body {
    max-width: calc(100dvw - 40px);
  }
}
.header__services.active .header__services-body {
  transform: translateY(0);
}
.header__services-menu {
  display: flex;
  flex-direction: column;
  flex: 0 0 200px;
  gap: 4px;
  padding: 30px;
  box-sizing: border-box;
}
.header__services-menu-link {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #293241;
  transition-property: color;
  transition-timing-function: ease-out;
  transition-duration: 0.4s;
  will-change: color;
}
.header__services-menu-link:hover {
  color: #2f85c0;
}
.header__services-menu-link.active {
  color: #2f85c0;
}
.header__services-wrapper {
  display: flex;
  justify-content: space-between;
  flex: 1 1 100%;
  border-radius: 20px 0 0 20px;
  background-color: #f5f8fb;
}
.header__services-submenu {
  padding: 30px 42px;
}
.header__services-submenu-item {
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  min-height: 100%;
  display: none;
}
.header__services-submenu-item.active {
  display: flex;
}
.header__services-submenu-item-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.header__services-submenu-item-links-link {
  font-weight: 400;
  font-size: 16px;
  line-height: 175%;
  color: #293241;
  transition-property: color, opacity, filter;
  transition-timing-function: ease-out;
  transition-duration: 0.4s;
  will-change: color, opacity, filter;
}
.header__services-submenu-item-links-link_hot::after {
  content: "🔥";
}
.header__services-submenu-item-links-link:hover {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: #293241;
}
.header__services-submenu-item-links:has(.header__services-submenu-item-links-link:hover) .header__services-submenu-item-links-link:not(:hover) {
  filter: grayscale(100%);
  opacity: 0.35;
}
.header__services-submenu-item-info {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: #878e9c;
}
.header__services-promotion {
  flex: 0 0 49.5132127955%;
  max-width: 49.5132127955%;
  padding: 24px 12px 12px;
  box-sizing: border-box;
  border-radius: 20px;
  background-color: #d3edff;
}
.header__services-promotion-tag {
  margin: 0 0 12px;
  padding-left: 20px;
  font-weight: 400;
  font-size: 12px;
  line-height: 117%;
  letter-spacing: 0.02em;
  color: #555f73;
}
.header__services-promotion-title {
  margin: 0 0 16px;
  padding-left: 20px;
  font-weight: 400;
  font-size: 24px;
  line-height: 108%;
  color: #293241;
}
.header__services-promotion-title b {
  font-weight: 400;
  color: #2f85c0;
}
.header__services-promotion-signup {
  margin: 0 0 44px;
  padding-left: 20px;
}
.header__services-promotion-signup-button {
  padding: 10px 13px;
  font-weight: 700;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0.02em;
  color: #fdfdfd;
}
.header__services-promotion-figure {
  margin: 0;
}
.header__services-promotion-figure-image {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 18px;
}
.header.fixed .header__services {
  padding-top: 100px;
}
.header__callback {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}
@media (max-width: 768px) {
  .header__callback {
    display: none;
  }
}
.header__callback-phone {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 48px;
  aspect-ratio: 1;
  box-sizing: border-box;
  border: 3px solid #53ace9;
  border-radius: 48px;
  background-color: #ffffff;
  cursor: pointer;
}
.header__callback-phone::before {
  content: "";
  position: relative;
  z-index: 10;
  display: inline-block;
  flex: 0 0 auto;
  width: 20px;
  aspect-ratio: 1;
  background: url(../assets/icons/phone-black.svg) center/cover no-repeat;
  transition-property: filter;
  transition-timing-function: ease-out;
  transition-duration: 0.2s;
  will-change: filter;
}
.header__callback-phone:hover::before {
  filter: brightness(0%) invert(100%);
}
.header__callback-phone::after {
  content: "";
  position: absolute;
  z-index: 1;
  display: inline-block;
  flex: 0 0 auto;
  width: calc(100% - 2px);
  aspect-ratio: 1;
  border: 2px solid #ffffff;
  border-radius: 48px;
  background-color: #2f85c0;
  opacity: 0;
  transition-property: opacity;
  transition-timing-function: ease-out;
  transition-duration: 0.2s;
  will-change: opacity;
}
.header__callback-phone:hover::after {
  opacity: 1;
}
.header__callback-signup {
  align-items: center;
  gap: 8px;
  padding: 6px 6px 6px 16px;
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0.01em;
  color: #fdfdfd;
}

.top-nav {
  position: relative;
  z-index: 1000;
}
@media (max-width: 768px) {
  .top-nav {
    display: none;
  }
}
.top-nav__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 11px 24px;
  border-radius: 0 0 20px 20px;
  background-color: #fdfdfd;
}
.top-nav__info {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  gap: 48px;
}
.top-nav__info-item {
  flex: 0 1 auto;
}
@media (max-width: 1024px) {
  .top-nav__info-item_subscribe {
    display: none;
  }
}
.top-nav__info-item-title {
  margin: 0 0 9px;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #293241;
}
.top-nav__info-item-title-link {
  color: inherit;
  transition: color ease-out 0.2s;
  cursor: pointer;
}
.top-nav__info-item-title-link:hover {
  color: #2f85c0;
}
.top-nav__info-item-links {
  display: flex;
  gap: 25px;
}
.top-nav__info-item-links-link {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0;
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0.02em;
  color: #878e9c;
  text-align: left;
  border: none;
  background-color: rgba(253, 253, 253, 0);
  transition: color ease-out 0.2s;
  cursor: pointer;
}
.top-nav__info-item-links-link:hover {
  color: #2f85c0;
}
.top-nav__info-item_subscribe .top-nav__info-item-title {
  margin-bottom: 5px;
}
.top-nav__info-item_subscribe .top-nav__info-item-links {
  margin-left: -4px;
}
.top-nav__info-item_subscribe .top-nav__info-item-links-link {
  padding: 4px;
}
.top-nav__info-item_location:has(.top-nav__info-item-links-link:hover) .top-nav__info-item-title-link {
  color: #2f85c0;
}
.top-nav__info-item_location:has(.top-nav__info-item-title-link:hover) .top-nav__info-item-links-link {
  color: #2f85c0;
}
.top-nav__info-item-text {
  font-weight: 400;
  font-size: 12px;
  line-height: 117%;
  letter-spacing: 0.02em;
  color: #878e9c;
}
.top-nav__phone {
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  gap: 4px;
}
.top-nav__phone-link {
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  color: #293241;
  transition: color ease-out 0.2s;
  cursor: pointer;
}
.top-nav__phone-link:hover {
  color: #2f85c0;
}
.top-nav__phone-button {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0;
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0.02em;
  color: #878e9c;
  text-align: left;
  border: none;
  background-color: rgba(253, 253, 253, 0);
  transition: color ease-out 0.2s;
  cursor: pointer;
}
.top-nav__phone-button:hover {
  color: #2f85c0;
}
.top-nav__social {
  display: flex;
  align-content: inherit;
  flex: 0 0 auto;
  gap: 15px;
}
.top-nav__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 40px;
  aspect-ratio: 1;
  border-radius: 40px;
  background-color: #d3edff;
  transition-property: background-color;
  transition-timing-function: ease-out;
  transition-duration: 0.2s;
  cursor: pointer;
}
.top-nav__social-link:hover {
  background-color: #2f85c0;
}
.top-nav__social-link-icon {
  display: block;
  max-width: 100%;
  max-height: 20px;
  width: 20px;
  height: auto;
  transition-property: filter;
  transition-timing-function: ease-out;
  transition-duration: 0.2s;
}
.top-nav__social-link-icon_max {
  max-height: 24px;
  width: 24px;
}
.top-nav__social-link:hover .top-nav__social-link-icon {
  filter: brightness(0%) invert(100%);
}

.main-nav {
  position: fixed;
  inset: 0;
  z-index: 10;
  padding: 160px 0 40px 20px;
  box-sizing: border-box;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0);
  pointer-events: none;
  transition-property: background-color, -webkit-backdrop-filter;
  transition-property: backdrop-filter, background-color;
  transition-property: backdrop-filter, background-color, -webkit-backdrop-filter;
  transition-timing-function: ease-out;
  transition-duration: 0.4s;
}
@media (max-width: 1024px) {
  .main-nav {
    padding: 160px 0 40px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    padding: 80px 20px 40px;
  }
}
body:has(.header.fixed) .main-nav {
  padding-top: 100px;
}
@media (max-width: 768px) {
  body:has(.header.fixed) .main-nav {
    padding-top: 80px;
  }
}
.main-nav.active {
  pointer-events: all;
  background-color: rgba(0, 0, 0, 0.05);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}
.main-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}
.main-nav__desktop {
  position: relative;
  z-index: 10;
  display: flex;
  max-width: calc(100dvw - 60px);
  width: 1190px;
  box-sizing: border-box;
  padding: 12px;
  border-radius: 20px;
  background-color: #ffffff;
  transform: translateY(-120dvh);
  transition: transform ease-out 0.4s;
}
@media (max-width: 1024px) {
  .main-nav__desktop {
    max-width: calc(100dvw - 40px);
  }
}
@media (max-width: 768px) {
  .main-nav__desktop {
    display: none;
  }
}
.main-nav__desktop-menu {
  flex: 0 0 297px;
  min-width: 210px;
  width: 100%;
  padding: 30px;
  box-sizing: border-box;
}
@media (max-width: 1440px) {
  .main-nav__desktop-menu {
    flex: 0 1 297px;
  }
}
.main-nav__desktop-menu-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.main-nav__desktop-menu-links-item-link {
  font-weight: 400;
  font-size: 24px;
  line-height: 125%;
  color: #293241;
  transition-property: color;
  transition-timing-function: ease-out;
  transition-duration: 0.2s;
}
.main-nav__desktop-menu-links-item-link:hover {
  color: #2f85c0;
}
.main-nav__desktop-wrapper {
  display: flex;
  justify-content: space-between;
  flex: 1 1 auto;
  border-radius: 20px 0 0 20px;
  background-color: #f5f8fb;
}
.main-nav__desktop-services {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 30px 42px;
  box-sizing: border-box;
}
@media (max-width: 1024px) {
  .main-nav__desktop-services {
    padding: 30px;
  }
}
.main-nav__desktop-services-title {
  margin: 0 0 24px;
  font-weight: 400;
  font-size: 24px;
  line-height: 125%;
  color: #293241;
}
.main-nav__desktop-services-menu {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  gap: 4px;
  margin: 0 0 24px;
  padding: 0;
  list-style-type: none;
}
.main-nav__desktop-services-menu-item-link {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #293241;
  transition-property: color;
  transition-timing-function: ease-out;
  transition-duration: 0.2s;
}
.main-nav__desktop-services-menu-item-link:hover {
  color: #2f85c0;
}
.main-nav__desktop-services-search {
  position: relative;
}
.main-nav__desktop-services-search-input {
  display: block;
  width: 100%;
  padding: 12px 52px;
  box-sizing: border-box;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #555e72;
  border: 1px solid rgba(85, 95, 115, 0.15);
  border-radius: 42px;
  outline-color: rgba(85, 95, 115, 0.25);
  background: url(../assets/icons/search.svg) left 12px center/24px no-repeat;
  background-color: #ffffff;
}
.main-nav__desktop-services-search-input::-webkit-input-placeholder {
  color: rgba(85, 94, 114, 0.5);
}
.main-nav__desktop-services-search-input::-moz-placeholder {
  color: rgba(85, 94, 114, 0.5);
}
.main-nav__desktop-services-search-input::placeholder {
  color: rgba(85, 94, 114, 0.5);
}
.main-nav__desktop-services-search-button {
  position: absolute;
  top: 50%;
  right: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 36px;
  padding: 0;
  aspect-ratio: 1;
  border: none;
  border-radius: 36px;
  background-color: #d9d9d9;
  transform: translateY(-50%);
  transition: background-color ease-out 0.2s;
  cursor: pointer;
}
.main-nav__desktop-services-search-button:hover {
  background-color: #2f85c0;
}
.main-nav__desktop-services-search-button::before {
  content: "";
  display: block;
  width: 20px;
  aspect-ratio: 1;
  background: url(../assets/icons/arrow-black.svg) center/28px no-repeat;
  transform: rotate(90deg);
  transition: filter ease-out 0.2s;
}
.main-nav__desktop-services-search-button:hover::before {
  filter: brightness(0%) invert(100%);
}
.main-nav__desktop-patients {
  flex: 0 0 calc(50% + 10px);
  padding: 30px 42px;
  box-sizing: border-box;
  border-radius: 20px;
  background-color: #d3edff;
}
@media (max-width: 1024px) {
  .main-nav__desktop-patients {
    padding: 30px;
  }
}
.main-nav__desktop-patients-title {
  margin: 0 0 24px;
  font-weight: 400;
  font-size: 24px;
  line-height: 125%;
  color: #293241;
}
.main-nav__desktop-patients-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 74px;
  padding: 0;
  list-style-type: none;
}
.main-nav__desktop-patients-menu-item-link {
  flex: 0 0 auto;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #293241;
  transition-property: color;
  transition-timing-function: ease-out;
  transition-duration: 0.2s;
}
.main-nav__desktop-patients-menu-item-link:hover {
  color: #2f85c0;
}
.main-nav__desktop-patients-figure {
  margin: 0;
}
.main-nav__desktop-patients-figure-image {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 18px;
}
.main-nav.active .main-nav__desktop {
  transform: translateY(0);
}
.main-nav__mobile {
  position: relative;
  z-index: 10;
  max-width: calc(100dvw - 40px);
  max-height: calc(100dvh - 80px);
  width: 100%;
  padding: 12px 16px 16px;
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 20px;
  background-color: #ffffff;
  transform: translateY(-120dvh);
  transition: transform ease-out 0.4s;
  display: none;
}
@media (max-width: 768px) {
  .main-nav__mobile {
    display: block;
  }
}
.main-nav__mobile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 0 24px;
}
.main-nav__mobile-top-info {
  padding-left: 16px;
}
.main-nav__mobile-top-info-address {
  margin: 0 0 8px;
}
.main-nav__mobile-top-info-address-link {
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: #293241;
}
.main-nav__mobile-top-info-worktime {
  font-weight: 400;
  font-size: 12px;
  line-height: 117%;
  letter-spacing: 0.02em;
  color: #878e9c;
}
.main-nav__mobile-top-close {
  flex: 0 0 auto;
}
.main-nav__mobile-top-close-button {
  display: block;
  width: 37px;
  aspect-ratio: 1;
  padding: 0;
  border: none;
  background: url(../assets/icons/close.svg) center/20px no-repeat;
  cursor: pointer;
}
.main-nav__mobile-main {
  max-height: calc(100dvh - 190px);
  margin-right: -6px;
  padding-right: 6px;
  box-sizing: border-box;
  overflow-y: auto;
  scrollbar-color: #53ace9 #eff5f9;
}
.main-nav__mobile-main-content {
  overflow: hidden;
}
.main-nav__mobile-search {
  position: relative;
  margin: 0 0 30px;
}
.main-nav__mobile-search-input {
  display: block;
  width: 100%;
  padding: 12px 52px;
  box-sizing: border-box;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #555e72;
  border: 1px solid rgba(85, 95, 115, 0.15);
  border-radius: 42px;
  outline-color: rgba(85, 95, 115, 0.25);
  background: url(../assets/icons/search.svg) left 12px center/24px no-repeat;
  background-color: #ffffff;
}
.main-nav__mobile-search-input::-webkit-input-placeholder {
  color: rgba(85, 94, 114, 0.5);
}
.main-nav__mobile-search-input::-moz-placeholder {
  color: rgba(85, 94, 114, 0.5);
}
.main-nav__mobile-search-input::placeholder {
  color: rgba(85, 94, 114, 0.5);
}
.main-nav__mobile-search-button {
  position: absolute;
  top: 50%;
  right: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 36px;
  padding: 0;
  aspect-ratio: 1;
  border: none;
  border-radius: 36px;
  background-color: #d9d9d9;
  transform: translateY(-50%);
  transition: background-color ease-out 0.2s;
  cursor: pointer;
}
.main-nav__mobile-search-button:hover {
  background-color: #2f85c0;
}
.main-nav__mobile-search-button::before {
  content: "";
  display: block;
  width: 20px;
  aspect-ratio: 1;
  background: url(../assets/icons/arrow-black.svg) center/28px no-repeat;
  transform: rotate(90deg);
  transition: filter ease-out 0.2s;
}
.main-nav__mobile-search-button:hover::before {
  filter: brightness(0%) invert(100%);
}
.main-nav__mobile-nav {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0 0 30px;
}
.main-nav__mobile-nav-menu {
  position: static;
  background-color: #ffffff;
  opacity: 1;
  transform: translateX(0);
  transition-property: opacity, transform;
  transition-timing-function: linear;
  transition-duration: 0.3s;
}
.main-nav__mobile-nav-menu.hidden {
  position: absolute;
  z-index: 999;
  opacity: 0;
  transform: translateX(120dvw);
}
.main-nav__mobile-nav-menu-back {
  display: flex;
  align-items: center;
  gap: 16px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 0 4px;
  padding: 8px 16px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #878e9c;
}
.main-nav__mobile-nav-menu-back::before {
  content: "";
  display: block;
  flex: 0 0 auto;
  width: 24px;
  height: 16px;
  box-sizing: border-box;
  background: url(../assets/icons/arrow-back.svg) center/24px no-repeat;
  filter: brightness(0%);
}
.main-nav__mobile-nav-menu-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.main-nav__mobile-nav-menu-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px dashed #d9d9d9;
}
.main-nav__mobile-nav-menu-title-link {
  display: inline-block;
  width: 100%;
  padding: 6px 8px 6px 16px;
  box-sizing: border-box;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #2f85c0;
}
.main-nav__mobile-nav-menu-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 6px 8px 6px 16px;
  box-sizing: border-box;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #293241;
  border-bottom: 1px dashed #d9d9d9;
  cursor: pointer;
}
.main-nav__mobile-nav-menu-more::after {
  content: "";
  display: block;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  box-sizing: border-box;
  background: url(../assets/icons/arrow-black.svg) center/28px no-repeat;
  transform: rotate(90deg);
  filter: brightness(0%);
}
.main-nav__mobile-nav-menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px dashed #d9d9d9;
}
.main-nav__mobile-nav-menu-item-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 6px 8px 6px 16px;
  box-sizing: border-box;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #293241;
}
.main-nav__mobile-contacts {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.main-nav__mobile-contacts-phone, .main-nav__mobile-contacts-social {
  width: 100%;
}
.main-nav__mobile-contacts-social {
  background-color: #bad5e8;
}
.main-nav.active .main-nav__mobile {
  transform: translateY(0);
}

.main-screen {
  padding-top: 12px;
  overflow: hidden;
}
.main-screen__wrapper {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 15px 12px;
}
.main-screen__top {
  display: flex;
  flex-wrap: wrap;
  flex: 1 1 100%;
  gap: 15px 12px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .main-screen__top {
    position: relative;
    display: flex;
    align-items: flex-end;
    gap: 0;
    height: 620px;
    padding: 8px;
  }
}
.main-screen__info {
  display: flex;
  justify-content: center;
  flex-direction: column;
  flex: 0 0 calc(50% - 6px);
  max-width: calc(50% - 6px);
  padding: 120px 68px 72px;
  box-sizing: border-box;
  border-radius: 17px;
  background-color: #fdfdfd;
}
@media (max-width: 1440px) {
  .main-screen__info {
    padding: 112px 48px 48px;
  }
}
@media (max-width: 1024px) {
  .main-screen__info {
    padding: 96px 28px 32px;
  }
}
@media (max-width: 768px) {
  .main-screen__info {
    flex: 1 1 auto;
    max-width: none;
    padding: 18px;
    box-sizing: border-box;
    border-radius: 20px;
  }
}
.main-screen__info-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 0 0 74px;
}
@media (max-width: 1440px) {
  .main-screen__info-breadcrumbs {
    margin-bottom: 62px;
  }
}
@media (max-width: 1024px) {
  .main-screen__info-breadcrumbs {
    margin-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .main-screen__info-breadcrumbs {
    position: absolute;
    top: 24px;
    left: 24px;
    right: 24px;
    z-index: 10;
    margin-bottom: 0;
  }
}
.main-screen__info-breadcrumbs-link, .main-screen__info-breadcrumbs-current {
  flex: 0 0 auto;
  font-weight: 400;
  font-size: 12px;
  line-height: 117%;
  letter-spacing: 0.02em;
}
.main-screen__info-breadcrumbs-link {
  position: relative;
  color: #878e9c;
  transition: color ease-out 0.2s;
}
.main-screen__info-breadcrumbs-link:hover {
  color: #2f85c0;
}
.main-screen__info-breadcrumbs-link::before {
  content: "";
  position: absolute;
  left: calc(100% + 10px);
  top: 50%;
  display: block;
  width: 4px;
  aspect-ratio: 1;
  border-radius: 4px;
  background-color: #293241;
  transform: translateX(-50%) translateY(-50%);
}
.main-screen__info-breadcrumbs-current {
  color: #293241;
}
.main-screen__info-title {
  margin: 0 0 24px;
  font-weight: 500;
  font-size: 72px;
  font-size: clamp(52px, 5vw, 72px);
  line-height: 100%;
  letter-spacing: -0.01em;
  color: #293241;
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: break-word;
  -webkit-hyphens: auto;
          hyphens: auto;
}
@media (max-width: 1024px) {
  .main-screen__info-title {
    font-size: 52px;
    font-size: clamp(36px, 5vw, 52px);
  }
}
@media (max-width: 768px) {
  .main-screen__info-title {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 36px;
  }
}
.main-screen__info-description {
  max-width: 430px;
  margin: 0 0 64px;
  font-weight: 400;
  font-size: 20px;
  line-height: 135%;
  color: #555f73;
}
@media (max-width: 1024px) {
  .main-screen__info-description {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .main-screen__info-description {
    margin-bottom: 32px;
    font-size: 14px;
  }
}
.main-screen__info-signup-button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.main-screen__photo {
  flex: 0 0 calc(50% - 6px);
  max-width: calc(50% - 6px);
  margin: 0;
  overflow: hidden;
  border-radius: 17px;
}
@media (max-width: 768px) {
  .main-screen__photo {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-width: none;
  }
}
.main-screen__photo-image {
  display: block;
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .main-screen__photo-image {
    max-width: none;
    width: 1500px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.main-screen__achievements {
  display: flex;
  flex-wrap: wrap;
  flex: 1 1 100%;
  gap: 12px;
}
.main-screen__achievements-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 0 0 calc(33.3333333333% - 8px);
  gap: 8px;
  min-height: 215px;
  padding: 24px;
  box-sizing: border-box;
  border-radius: 17px;
  background-color: #fdfdfd;
}
@media (max-width: 1440px) {
  .main-screen__achievements-item {
    min-height: 188px;
  }
}
@media (max-width: 768px) {
  .main-screen__achievements-item {
    flex: 1 1 100%;
  }
}
.main-screen__achievements-item-title {
  font-weight: 400;
  font-size: 48px;
  line-height: 88%;
  text-align: center;
  color: #2f85c0;
}
.main-screen__achievements-item-description {
  font-weight: 400;
  font-size: 18px;
  line-height: 133%;
  text-align: center;
  color: #555f73;
}

.first-screen {
  padding-top: 12px;
  overflow: hidden;
}
.first-screen__wrapper {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 15px 12px;
}
.first-screen__info {
  display: flex;
  justify-content: center;
  flex-direction: column;
  flex: 0 0 calc(50% - 6px);
  max-width: calc(50% - 6px);
  padding: 120px 68px 72px;
  box-sizing: border-box;
  border-radius: 17px;
  background-color: #fdfdfd;
}
@media (max-width: 1440px) {
  .first-screen__info {
    padding: 112px 48px 48px;
  }
}
@media (max-width: 1024px) {
  .first-screen__info {
    padding: 96px 28px 32px;
  }
}
@media (max-width: 768px) {
  .first-screen__info {
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    flex: 0 1 auto;
    max-width: none;
    padding: 18px;
    border-radius: 20px;
  }
}
.first-screen__info-title {
  margin: 0 0 24px;
  font-weight: 500;
  font-size: 72px;
  font-size: clamp(52px, 5vw, 72px);
  line-height: 100%;
  letter-spacing: -0.01em;
  color: #293241;
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: break-word;
  -webkit-hyphens: auto;
          hyphens: auto;
}
@media (max-width: 1024px) {
  .first-screen__info-title {
    font-size: 52px;
    font-size: clamp(36px, 5vw, 52px);
  }
}
@media (max-width: 768px) {
  .first-screen__info-title {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 36px;
  }
}
.first-screen__info-description {
  max-width: 430px;
  margin: 0 0 64px;
  font-weight: 400;
  font-size: 20px;
  line-height: 135%;
  color: #555f73;
}
@media (max-width: 1024px) {
  .first-screen__info-description {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .first-screen__info-description {
    margin-bottom: 32px;
    font-size: 14px;
  }
}
.first-screen__info-signup-button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.first-screen__photo {
  flex: 0 0 calc(50% - 6px);
  max-width: calc(50% - 6px);
  margin: 0;
  overflow: hidden;
  border-radius: 17px;
}
@media (max-width: 768px) {
  .first-screen__photo {
    display: flex;
    justify-content: flex-end;
    flex: 1 1 100%;
    max-width: 100%;
    height: 620px;
    border-radius: 20px;
  }
}
.first-screen__photo-image {
  display: block;
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .first-screen__photo-image {
    min-width: 768px;
    width: auto;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.first-screen__services {
  flex: 1 1 100%;
  max-width: 100%;
}
.first-screen__services .swiper {
  overflow: visible;
}
@media (max-width: 1024px) {
  .first-screen__services .swiper {
    padding-bottom: 52px;
  }
}
@media (max-width: 1024px) {
  .first-screen__services .swiper:has(.swiper-pagination-lock) {
    padding-bottom: 0;
  }
}
.first-screen__services .swiper-wrapper {
  align-items: stretch;
}
.first-screen__services .swiper-slide {
  max-width: calc(33.3333333333% - 12px);
  width: 100%;
  height: auto;
}
@media (max-width: 1024px) {
  .first-screen__services .swiper-slide {
    min-width: 320px;
  }
}
.first-screen__services .swiper-pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
.first-screen__services .swiper-pagination-bullet {
  display: block;
  width: 20px;
  height: 20px;
  margin: 0 !important;
  box-sizing: border-box;
  border: 1px solid #878e9c;
  background-color: rgba(253, 253, 253, 0);
  opacity: 1;
}
.first-screen__services .swiper-pagination-bullet-active {
  border-color: #53ace9;
  background-color: #53ace9;
}
.first-screen__service {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px;
  box-sizing: border-box;
  border-radius: 15px;
  background-color: #fdfdfd;
}
.first-screen__service-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 0 0 7px;
}
.first-screen__service-top-tag {
  padding: 8px 12px;
  font-weight: 400;
  font-size: 12px;
  line-height: 117%;
  letter-spacing: 0.02em;
  text-align: center;
  color: #667085;
  border: 0.5px solid rgba(102, 112, 133, 0.3);
  border-radius: 50px;
}
.first-screen__service-top-icon {
  margin: 0;
}
.first-screen__service-top-icon-image {
  display: block;
  max-width: 100%;
  width: 140px;
  height: auto;
  border-radius: 15px;
}
@media (max-width: 1024px) {
  .first-screen__service-top-icon-image {
    width: 120px;
  }
}
.first-screen__service-info {
  display: flex;
  align-items: flex-start;
  flex: 1 1 100%;
  width: 100%;
}
.first-screen__service-info-content {
  display: block;
  width: 100%;
}
.first-screen__service-info-price {
  font-weight: 500;
  font-size: 40px;
  line-height: 120%;
  color: #2f85c0;
}
.first-screen__service-info-title-link {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  font-weight: 400;
  font-size: 20px;
  line-height: 125%;
  color: #555f73;
  transition: color ease-out 0.2s;
}
@media (max-width: 1024px) {
  .first-screen__service-info-title-link {
    font-size: 18px;
  }
}
.first-screen__service-info-title-link::after {
  content: "";
  display: block;
  flex: 0 0 auto;
  width: 24px;
  padding: 0;
  aspect-ratio: 1;
  box-sizing: border-box;
  border: none;
  border-radius: 24px;
  background: url(../assets/icons/arrow-black.svg) center/36px no-repeat;
  background-color: rgba(253, 253, 253, 0);
  transform: rotate(90deg);
  transition-property: filter, transform;
  transition-timing-function: ease-out;
  transition-duration: 0.2s;
  cursor: pointer;
}
.first-screen__service-info-title-link-text {
  max-width: 250px;
}
@media (max-width: 1024px) {
  .first-screen__service-info-title-link-text {
    max-width: 230px;
  }
}
.first-screen__service:hover .first-screen__service-info-title-link {
  color: #2f85c0;
}
.first-screen__service:hover .first-screen__service-info-title-link::after {
  transform: rotate(45deg);
  filter: brightness(0) saturate(100%) invert(63%) sepia(16%) saturate(2512%) hue-rotate(176deg) brightness(74%) contrast(106%);
}

.about__wrapper {
  display: block;
  padding: 131px 0 0;
  background: url(../assets/about-bg.png) center/contain no-repeat;
}
@media (max-width: 1440px) {
  .about__wrapper {
    padding-top: 124px;
  }
}
@media (max-width: 1024px) {
  .about__wrapper {
    padding-top: 55px;
    background-size: 116%;
  }
}
@media (max-width: 768px) {
  .about__wrapper {
    padding-top: 96px;
    background-size: 600px;
    background-position: top left;
  }
}
.about__title {
  max-width: 1130px;
  margin: 0 auto 24px;
  font-weight: 400;
  font-size: 64px;
  line-height: 100%;
  text-align: center;
  color: #293241;
}
@media (max-width: 1024px) {
  .about__title {
    font-size: 48px;
  }
}
@media (max-width: 768px) {
  .about__title {
    font-size: 32px;
    text-align: left;
  }
}
.about__title-image {
  display: inline-block;
  max-width: 100%;
  width: 168px;
  height: auto;
  vertical-align: middle;
}
@media (max-width: 1024px) {
  .about__title-image {
    width: 127px;
  }
}
@media (max-width: 768px) {
  .about__title-image {
    width: 100px;
  }
}
.about__description {
  margin: 0 auto 56px;
  max-width: 438px;
  font-weight: 400;
  font-size: 18px;
  line-height: 133%;
  text-align: center;
  color: #555f73;
}
@media (max-width: 1024px) {
  .about__description {
    margin-bottom: 42px;
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .about__description {
    margin: 0 0 42px;
    font-size: 14px;
    text-align: left;
  }
}
.about__more {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .about__more {
    justify-content: flex-start;
  }
}
.about__more-link {
  display: flex;
}

.services__wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 56px;
}
@media (max-width: 1024px) {
  .services__wrapper {
    gap: 42px;
  }
}
@media (max-width: 768px) {
  .services__wrapper {
    gap: 0;
  }
}
.services__title {
  flex: 0 1 517px;
  margin: 0;
  font-weight: 400;
  font-size: 56px;
  line-height: 107%;
  color: #293241;
}
@media (max-width: 1024px) {
  .services__title {
    flex: 0 1 403px;
    font-size: 48px;
  }
}
@media (max-width: 768px) {
  .services__title {
    margin-bottom: 16px;
    font-size: 32px;
  }
}
.services__description {
  flex: 0 1 487px;
  max-width: calc(100% - 517px - 56px);
  margin-top: 10px;
  font-weight: 400;
  font-size: 18px;
  line-height: 133%;
  color: #555f73;
}
@media (max-width: 1440px) {
  .services__description {
    flex: 0 1 433px;
  }
}
@media (max-width: 1024px) {
  .services__description {
    flex: 0 1 403px;
    max-width: calc(100% - 403px - 42px);
    margin: 0;
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .services__description {
    flex: 1 1 100%;
    max-width: none;
    margin-top: 0;
    margin-bottom: 42px;
    font-size: 14px;
  }
}
.services__content {
  display: flex;
  flex-wrap: wrap;
  flex: 1 1 100%;
  gap: 24px;
}
@media (max-width: 768px) {
  .services__content {
    margin: 0 0 42px;
  }
}
.services__item {
  display: flex;
  flex-direction: column;
  flex: 0 0 calc(33.3333333333% - 16px);
  gap: 72px;
  max-width: calc(33.3333333333% - 16px);
  padding: 24px;
  box-sizing: border-box;
  border-radius: 20px;
  background-color: #fdfdfd;
}
@media (max-width: 1024px) {
  .services__item {
    flex: 0 0 calc(50% - 12px);
    max-width: calc(50% - 12px);
  }
}
@media (max-width: 768px) {
  .services__item {
    flex: 1 1 100%;
    gap: 64px;
    max-width: none;
  }
}
.services__item-info {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.services__item-info-content {
  flex: 0 1 277px;
}
@media (max-width: 768px) {
  .services__item-info-content {
    flex: 0 1 250px;
  }
}
.services__item-info-content-name {
  margin: 0 0 16px;
  font-weight: 400;
  font-size: 32px;
  line-height: 113%;
  color: #293241;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}
@media (max-width: 768px) {
  .services__item-info-content-name {
    font-size: 24px;
  }
}
.services__item-info-content-price {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px 9px;
  box-sizing: border-box;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.02em;
  line-height: 100%;
  text-align: center;
  color: #555f73;
  border: 1px solid #555f73;
  border-radius: 20px;
}
.services__item-info-icon {
  flex: 0 0 80px;
  max-width: 80px;
  width: 100%;
  margin: 0;
}
@media (max-width: 768px) {
  .services__item-info-icon {
    flex: 0 0 60px;
    max-width: 60px;
  }
}
.services__item-info-icon-image {
  display: block;
  max-width: 100%;
  height: auto;
}
.services__item-list {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex: 1 1 100%;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
@media (max-width: 768px) {
  .services__item-list {
    gap: 10px;
  }
}
.services__item-list-item {
  padding-bottom: 8px;
  border-bottom: 1px dashed #d9d9d9;
}
.services__item-list-item-link {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #293241;
  transition-property: color;
  transition-timing-function: ease-out;
  transition-duration: 0.2s;
}
@media (max-width: 768px) {
  .services__item-list-item-link {
    font-size: 14px;
  }
}
.services__item-list-item-link:hover {
  color: #2f85c0;
}
.services__item-list-item-link::after {
  content: "";
  display: block;
  width: 24px;
  aspect-ratio: 1;
  background: url(../assets/icons/arrow-black.svg) center/34px no-repeat;
  transform: rotate(45deg);
  transition-property: filter, transform;
  transition-timing-function: ease-out;
  transition-duration: 0.2s;
}
@media (max-width: 768px) {
  .services__item-list-item-link::after {
    width: 16px;
    background-size: 28px;
  }
}
.services__item-list-item-link:hover::after {
  transform: rotate(90deg);
  filter: brightness(0) saturate(100%) invert(63%) sepia(16%) saturate(2512%) hue-rotate(176deg) brightness(74%) contrast(106%);
}
.services__more {
  display: flex;
  justify-content: center;
  flex: 1 1 100%;
}

.contacts__wrapper {
  position: relative;
  max-width: 1360px;
  margin: 0 auto;
  padding-top: 56px;
  padding-left: 91px;
  padding-right: 500px;
  padding-bottom: 65px;
  box-sizing: border-box;
  border-radius: 25px;
  background-color: #fdfdfd;
}
@media (max-width: 1440px) {
  .contacts__wrapper {
    padding-top: 60px;
    padding-left: 65px;
    padding-right: 450px;
    padding-bottom: 42px;
  }
}
@media (max-width: 1024px) {
  .contacts__wrapper {
    padding-top: 48px;
    padding-left: 48px;
    padding-right: 380px;
    padding-bottom: 39px;
  }
}
@media (max-width: 768px) {
  .contacts__wrapper {
    padding: 24px;
    padding-bottom: 0;
  }
}
.contacts__info {
  position: relative;
  z-index: 2;
  max-width: 624px;
}
@media (max-width: 1024px) {
  .contacts__info {
    max-width: 540px;
  }
}
@media (max-width: 768px) {
  .contacts__info {
    max-width: none;
    margin-bottom: 32px;
  }
}
.contacts__info-title {
  margin: 0 0 24px;
  font-weight: 400;
  font-size: 48px;
  line-height: 108%;
  color: #293241;
}
@media (max-width: 1024px) {
  .contacts__info-title {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .contacts__info-title {
    margin-bottom: 16px;
    font-size: 24px;
  }
}
.contacts__info-description {
  max-width: 418px;
  margin: 0 0 46px;
  font-weight: 400;
  font-size: 18px;
  line-height: 133%;
  color: #555f73;
}
@media (max-width: 1024px) {
  .contacts__info-description {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .contacts__info-description {
    margin-bottom: 42px;
    font-size: 14px;
  }
}
.contacts__info-main {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
@media (max-width: 768px) {
  .contacts__info-main {
    flex-direction: column;
    gap: 42px;
  }
}
.contacts__info-main-social {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 768px) {
  .contacts__info-main-social {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.contacts__info-main-social-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 9px;
  min-width: 207px;
  font-weight: 400;
  font-size: 32px;
  line-height: 113%;
  color: #293241;
  transition-property: color;
  transition-timing-function: ease-out;
  transition-duration: 0.2s;
}
@media (max-width: 768px) {
  .contacts__info-main-social-link {
    min-width: auto;
    font-size: 20px;
  }
}
.contacts__info-main-social-link:hover {
  color: #2f85c0;
}
.contacts__info-main-social-link::after {
  content: "";
  display: block;
  flex: 0 0 auto;
  width: 40px;
  aspect-ratio: 1;
  background: url(../assets/icons/arrow-black.svg) center/cover no-repeat;
  transform: rotate(45deg);
  transition-property: transform, filter;
  transition-timing-function: ease-out;
  transition-duration: 0.2s;
}
@media (max-width: 768px) {
  .contacts__info-main-social-link::after {
    width: 24px;
  }
}
.contacts__info-main-social-link:hover::after {
  transform: rotate(90deg);
  filter: brightness(0) saturate(100%) invert(63%) sepia(16%) saturate(2512%) hue-rotate(176deg) brightness(74%) contrast(106%);
}
.contacts__info-main-details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 0 0 300px;
  gap: 4px;
}
@media (max-width: 768px) {
  .contacts__info-main-details {
    flex: 0 1 auto;
  }
}
.contacts__info-main-details-disclaimer {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #555f73;
}
.contacts__info-main-details-phone-link {
  font-weight: 400;
  font-size: 32px;
  line-height: 113%;
  color: #293241;
  transition-property: color;
  transition-timing-function: ease-out;
  transition-duration: 0.2s;
}
@media (max-width: 768px) {
  .contacts__info-main-details-phone-link {
    font-size: 24px;
  }
}
.contacts__info-main-details-phone-link:hover {
  color: #2f85c0;
}
.contacts__info-main-consult {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 0 0 300px;
  gap: 4px;
}
@media (max-width: 768px) {
  .contacts__info-main-consult {
    flex: 0 1 auto;
  }
}
.contacts__info-main-consult-disclaimer {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #555f73;
}
.contacts__info-main-consult-callback-link, .contacts__info-main-consult-callback-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 9px;
  font-weight: 400;
  font-size: 32px;
  line-height: 113%;
  color: #293241;
  transition-property: color;
  transition-timing-function: ease-out;
  transition-duration: 0.2s;
  cursor: pointer;
}
@media (max-width: 768px) {
  .contacts__info-main-consult-callback-link, .contacts__info-main-consult-callback-button {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 24px;
  }
}
.contacts__info-main-consult-callback-link:hover, .contacts__info-main-consult-callback-button:hover {
  color: #2f85c0;
}
.contacts__info-main-consult-callback-link::after, .contacts__info-main-consult-callback-button::after {
  content: "";
  display: block;
  flex: 0 0 auto;
  width: 40px;
  aspect-ratio: 1;
  background: url(../assets/icons/arrow-black.svg) center/cover no-repeat;
  transform: rotate(45deg);
  transition-property: transform, filter;
  transition-timing-function: ease-out;
  transition-duration: 0.2s;
  pointer-events: none;
}
@media (max-width: 768px) {
  .contacts__info-main-consult-callback-link::after, .contacts__info-main-consult-callback-button::after {
    width: 24px;
  }
}
.contacts__info-main-consult-callback-link:hover::after, .contacts__info-main-consult-callback-button:hover::after {
  transform: rotate(90deg);
  filter: brightness(0) saturate(100%) invert(63%) sepia(16%) saturate(2512%) hue-rotate(176deg) brightness(74%) contrast(106%);
}
.contacts__info-main-consult-callback-button {
  padding: 0;
  border: none;
  background-color: rgba(255, 255, 255, 0);
  cursor: pointer;
}
.contacts__photo {
  position: absolute;
  right: 10px;
  bottom: 0;
  margin: 0;
}
@media (max-width: 1024px) {
  .contacts__photo {
    right: -20px;
  }
}
@media (max-width: 768px) {
  .contacts__photo {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.contacts__photo-image {
  display: block;
  max-width: 100%;
  width: 645px;
  height: auto;
}
@media (max-width: 1440px) {
  .contacts__photo-image {
    width: 562px;
  }
}
@media (max-width: 1024px) {
  .contacts__photo-image {
    width: 501px;
  }
}
@media (max-width: 768px) {
  .contacts__photo-image {
    width: 100%;
  }
}

.experts {
  overflow: hidden;
}
.experts__title {
  max-width: 810px;
  margin: 0 auto 24px;
  font-weight: 400;
  font-size: 56px;
  line-height: 107%;
  text-align: center;
  color: #293241;
}
@media (max-width: 1024px) {
  .experts__title {
    font-size: 48px;
  }
}
@media (max-width: 768px) {
  .experts__title {
    margin-bottom: 16px;
    font-size: 32px;
  }
}
.experts__description {
  max-width: 490px;
  margin: 0 auto 24px;
  font-weight: 400;
  font-size: 18px;
  line-height: 133%;
  text-align: center;
  color: #555f73;
}
@media (max-width: 1024px) {
  .experts__description {
    margin-bottom: 16px;
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .experts__description {
    font-size: 14px;
  }
}
.experts__controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  margin: 0 0 24px;
}
@media (max-width: 768px) {
  .experts__controls {
    gap: 16px;
    margin-bottom: 16px;
  }
}
.experts__controls-prev, .experts__controls-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  padding: 0;
  aspect-ratio: 1;
  border: none;
  border-radius: 50px;
  background-color: #53ace9;
  transition-property: background-color, color, border;
  transition-timing-function: ease-out;
  transition-duration: 0.2s;
  cursor: pointer;
}
.experts__controls-prev:hover, .experts__controls-next:hover {
  background-color: #2f85c0;
}
@media (max-width: 768px) {
  .experts__controls-prev, .experts__controls-next {
    width: 38px;
  }
}
.experts__controls-prev::before, .experts__controls-next::before {
  content: "";
  display: block;
  width: 40px;
  aspect-ratio: 1;
  background: url(../assets/icons/arrow-black.svg) center/cover no-repeat;
  filter: brightness(0%) invert(100%);
}
.experts__controls-prev::before {
  transform: rotate(-90deg);
}
.experts__controls-next::before {
  transform: rotate(90deg);
}
.experts__slider {
  margin: 0 0 56px;
}
@media (max-width: 1024px) {
  .experts__slider {
    margin-bottom: 42px;
  }
}
.experts__slider .swiper {
  overflow: visible;
}
.experts__slider .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 345px;
  height: auto;
}
@media (max-width: 576px) {
  .experts__slider .swiper-slide {
    max-width: 310px;
  }
}
.experts__slider .swiper-slide-active {
  max-width: 375px;
}
@media (max-width: 576px) {
  .experts__slider .swiper-slide-active {
    max-width: 310px;
  }
}
.experts__doctor {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 20px;
}
.experts__doctor-photo {
  position: absolute;
  inset: 0;
  z-index: 1;
  margin: 0;
}
.experts__doctor-photo-image {
  display: block;
  max-width: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.experts__doctor-experience {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  aspect-ratio: 1/1;
  font-weight: 400;
  font-size: 32px;
  line-height: 25%;
  text-align: center;
  color: #293241;
  background: url(../assets/icons/experience-icon.svg) center/cover no-repeat;
}
.experts__doctor-info {
  position: relative;
  z-index: 1;
  padding: 14px;
  border-radius: 23px;
  background-color: #fdfdfd;
}
.experts__doctor-info-name {
  margin: 0 0 12px;
  font-weight: 400;
  font-size: 28px;
  line-height: 115%;
  color: #293241;
}
@media (max-width: 576px) {
  .experts__doctor-info-name {
    font-size: 24px;
  }
}
.experts__doctor-info-role {
  margin: 0 0 18px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #555f73;
}
@media (max-width: 576px) {
  .experts__doctor-info-role {
    margin-bottom: 16px;
    font-size: 14px;
  }
}
.experts__doctor-info-signup-button {
  width: 100%;
  text-align: center;
}
.experts .swiper-slide .experts__doctor {
  min-height: 426px;
  padding: 10px 14px 14px;
}
@media (max-width: 576px) {
  .experts .swiper-slide .experts__doctor {
    min-height: 442px;
    padding: 14px;
  }
}
.experts .swiper-slide .experts__doctor-info {
  padding: 14px;
}
@media (max-width: 576px) {
  .experts .swiper-slide .experts__doctor-info {
    padding: 14px;
  }
}
.experts .swiper-slide-active .experts__doctor {
  min-height: 507px;
  padding: 10px 24px 24px;
}
@media (max-width: 576px) {
  .experts .swiper-slide-active .experts__doctor {
    min-height: 442px;
    padding: 14px;
  }
}
.experts .swiper-slide-active .experts__doctor-info {
  padding: 14px 24px 24px;
}
@media (max-width: 576px) {
  .experts .swiper-slide-active .experts__doctor-info {
    padding: 14px;
  }
}
.experts .swiper-slide-prev .experts__doctor, .experts .swiper-slide-next .experts__doctor {
  min-height: 466px;
  padding: 14px 18px 18px;
}
@media (max-width: 576px) {
  .experts .swiper-slide-prev .experts__doctor, .experts .swiper-slide-next .experts__doctor {
    min-height: 442px;
    padding: 14px;
  }
}
.experts .swiper-slide-prev .experts__doctor-info, .experts .swiper-slide-next .experts__doctor-info {
  padding: 18px;
}
@media (max-width: 576px) {
  .experts .swiper-slide-prev .experts__doctor-info, .experts .swiper-slide-next .experts__doctor-info {
    padding: 14px;
  }
}
.experts__more {
  display: flex;
  align-items: center;
  justify-content: center;
}
.experts__more-link {
  width: auto;
}

.ratings__wrapper {
  position: relative;
  display: flex;
  justify-content: flex-end;
  padding: 72px;
  box-sizing: border-box;
}
@media (max-width: 1440px) {
  .ratings__wrapper {
    padding: 28px 38px;
  }
}
@media (max-width: 1024px) {
  .ratings__wrapper {
    padding: 24px;
  }
}
@media (max-width: 768px) {
  .ratings__wrapper {
    display: block;
    margin: 0 -20px;
    padding: 16px 20px 32px;
    border-radius: 32px;
    background-color: #fdfdfd;
  }
}
@media (max-width: 576px) {
  .ratings__wrapper {
    margin: 0 -15px;
    padding: 16px 15px 32px;
  }
}
.ratings__photo {
  position: absolute;
  inset: 0;
  z-index: 1;
  margin: 0;
  overflow: hidden;
  border-radius: 35px;
}
@media (max-width: 768px) {
  .ratings__photo {
    position: static;
    display: flex;
    justify-content: flex-start;
    border-radius: 20px;
  }
}
.ratings__photo-image {
  display: block;
  max-width: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .ratings__photo-image {
    max-width: none;
    height: 407px;
    width: auto;
  }
}
.ratings__main {
  position: relative;
  z-index: 2;
  max-width: 520px;
  padding: 36px 42px 50px;
  box-sizing: border-box;
  border-radius: 30px;
  background-color: #fdfdfd;
}
@media (max-width: 1024px) {
  .ratings__main {
    max-width: 433px;
    padding: 32px;
    padding-bottom: 34px;
  }
}
@media (max-width: 768px) {
  .ratings__main {
    max-width: none;
    padding: 32px 17px 0;
    background-color: rgba(253, 253, 253, 0);
  }
}
.ratings__main-title {
  margin: 0 0 24px;
  font-weight: 400;
  font-size: 56px;
  line-height: 107%;
  color: #293241;
}
@media (max-width: 1024px) {
  .ratings__main-title {
    margin-bottom: 12px;
    font-size: 48px;
  }
}
@media (max-width: 576px) {
  .ratings__main-title {
    margin-bottom: 16px;
    font-size: 32px;
  }
}
.ratings__main-description {
  margin: 0 0 42px;
  font-weight: 400;
  font-size: 18px;
  line-height: 133%;
  color: #555f73;
}
@media (max-width: 1024px) {
  .ratings__main-description {
    margin-bottom: 24px;
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .ratings__main-description {
    margin-bottom: 32px;
    font-size: 14px;
  }
}
.ratings__main-sources {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.ratings__main-source {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex: 0 0 calc(50% - 6px);
  gap: 16px 4px;
  min-height: 144px;
  padding: 8px 12px;
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 2px 3px 10px 0 rgba(41, 50, 65, 0.07);
  background-color: #f6f6f6;
  transition: box-shadow ease-out 0.2s;
}
@media (max-width: 576px) {
  .ratings__main-source {
    min-height: 100px;
  }
}
.ratings__main-source:hover {
  box-shadow: 2px 3px 19px 0 rgba(47, 133, 192, 0.2);
}
.ratings__main-source-title {
  position: relative;
  z-index: 2;
  flex: 0 0 calc(100% - 54px);
  max-width: calc(100% - 54px);
  font-weight: 400;
  font-size: 24px;
  line-height: 133%;
  color: #293241;
}
@media (max-width: 576px) {
  .ratings__main-source-title {
    flex: 0 0 calc(100% - 30px);
    max-width: calc(100% - 30px);
    font-size: 18px;
  }
}
.ratings__main-source-rating {
  position: relative;
  z-index: 2;
  flex: 0 0 50px;
  font-weight: 400;
  font-size: 32px;
  line-height: 112%;
  text-align: right;
  color: #293241;
}
@media (max-width: 576px) {
  .ratings__main-source-rating {
    flex: 0 0 26px;
    font-size: 18px;
  }
}
.ratings__main-source-more {
  display: flex;
  align-items: flex-end;
  flex: 1 1 100%;
}
.ratings__main-source-more-link {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  flex: 1 1 auto;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: #878e9c;
  transition-property: color;
  transition-timing-function: ease-out;
  transition-duration: 0.2s;
}
@media (max-width: 576px) {
  .ratings__main-source-more-link {
    font-size: 14px;
  }
}
.ratings__main-source-more-link::after {
  content: "";
  display: block;
  flex: 0 0 auto;
  width: 18px;
  aspect-ratio: 1;
  box-sizing: border-box;
  background: url(../assets/icons/arrow-black.svg) center/24px no-repeat;
  transform: rotate(45deg);
  filter: grayscale(100%) brightness(200%);
  transition-property: filter, transform;
  transition-timing-function: ease-out;
  transition-duration: 0.2s;
}
.ratings__main-source-bg {
  position: absolute;
  top: calc(100% - 48px);
  left: calc(100% - 136px);
  max-width: 136px;
  font-size: 70px;
  font-weight: 700;
  line-height: 100%;
  color: rgba(253, 253, 253, 0.8);
}
@media (max-width: 576px) {
  .ratings__main-source-bg {
    left: calc(100% - 120px);
    font-size: 64px;
  }
}
.ratings__main-source:hover .ratings__main-source-more-link {
  color: #2f85c0;
}
.ratings__main-source:hover .ratings__main-source-more-link::after {
  transform: rotate(90deg);
  filter: brightness(0) saturate(100%) invert(63%) sepia(16%) saturate(2512%) hue-rotate(176deg) brightness(74%) contrast(106%);
}

.cases__info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin: 0 0 56px;
}
@media (max-width: 1024px) {
  .cases__info {
    margin-bottom: 42px;
  }
}
@media (max-width: 768px) {
  .cases__info {
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
  }
}
.cases__info-title {
  flex: 0 0 auto;
  margin: 0;
  font-weight: 400;
  font-size: 56px;
  line-height: 107%;
  color: #293241;
}
@media (max-width: 1024px) {
  .cases__info-title {
    font-size: 48px;
  }
}
@media (max-width: 768px) {
  .cases__info-title {
    font-size: 32px;
  }
}
.cases__info-description {
  flex: 0 1 433px;
  margin: 0;
  margin-top: 10px;
  font-weight: 400;
  font-size: 18px;
  line-height: 133%;
  color: #555f73;
}
@media (max-width: 1024px) {
  .cases__info-description {
    margin-top: 0;
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .cases__info-description {
    flex: 1 1 100%;
    font-size: 14px;
  }
}
.cases__cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 768px) {
  .cases__cards {
    gap: 12px;
  }
}
.cases__card {
  padding: 24px;
  border-radius: 20px;
  background-color: #fdfdfd;
}
@media (max-width: 768px) {
  .cases__card {
    padding: 16px;
    padding-top: 14px;
    padding-right: 10px;
    border-radius: 15px;
  }
}
.cases__card-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 768px) {
  .cases__card-heading {
    align-items: flex-end;
  }
}
.cases__card-heading-title {
  flex: 0 1 auto;
  max-width: 480px;
  font-weight: 400;
  font-size: 32px;
  line-height: 112%;
  color: #293241;
  white-space: normal;
  overflow-wrap: break-word;
  word-wrap: break-word;
  transition: color ease-out 0.2s;
}
@media (max-width: 1024px) {
  .cases__card-heading-title {
    flex: 0 0 calc(100% - 400px - 12px);
  }
}
@media (max-width: 768px) {
  .cases__card-heading-title {
    flex: 1 1 100%;
    max-width: calc(100% - 74px);
    font-size: 24px;
  }
}
.cases__card-heading-title:hover {
  color: #2f85c0;
}
.cases__card-heading-right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 0 0 567px;
  gap: 16px;
}
@media (max-width: 1440px) {
  .cases__card-heading-right {
    flex: 0 0 400px;
    max-width: 400px;
  }
}
@media (max-width: 1024px) {
  .cases__card-heading-right {
    flex: 0 0 42.5%;
    min-width: 360px;
  }
}
@media (max-width: 768px) {
  .cases__card-heading-right {
    flex: 0 0 auto;
    min-width: auto;
  }
}
.cases__card-heading-right:not(:has(.cases__card-heading-doctor)) {
  justify-content: flex-end;
}
.cases__card-heading-doctor {
  display: flex;
  align-items: center;
  gap: 18px;
}
@media (max-width: 768px) {
  .cases__card-heading-doctor {
    display: none;
  }
}
.cases__card-heading-doctor-avatar {
  flex: 0 0 auto;
  margin: 0;
}
.cases__card-heading-doctor-avatar-image {
  display: block;
  max-width: 100%;
  width: 80px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 80px;
}
.cases__card-heading-doctor-info-role {
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: #293241;
}
.cases__card-heading-doctor-info-name {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #555f73;
}
.cases__card-heading-toggler-button {
  display: block;
  flex: 0 0 auto;
  width: 50px;
  padding: 0;
  aspect-ratio: 1;
  border: none;
  border-radius: 50px;
  background: url(../assets/icons/arrow-black.svg) center/40px no-repeat;
  background-color: #f6f6f6;
  transform: rotate(180deg);
  transition-property: transform, background-color;
  transition-timing-function: ease-out;
  transition-duration: 0.2s;
  cursor: pointer;
}
.cases__card-heading-toggler-button:hover {
  background-color: #d3edff;
}
.cases__card.active .cases__card-heading-toggler-button {
  background-color: #d3edff;
  transform: rotate(360deg);
}
.cases__card-panel {
  max-height: 0;
  overflow: hidden;
  transition-property: max-height;
  transition-timing-function: ease-out;
  transition-duration: 0.2s;
}
.cases__card-panel-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0 0;
}
@media (max-width: 768px) {
  .cases__card-panel-wrapper {
    flex-wrap: wrap;
    gap: 24px;
  }
}
.cases__card-panel-doctor {
  align-items: center;
  gap: 18px;
  margin: 20px 0 12px;
  display: none;
}
@media (max-width: 768px) {
  .cases__card-panel-doctor {
    display: flex;
    flex: 1 1 100%;
  }
}
.cases__card-panel-doctor-avatar {
  flex: 0 0 auto;
  margin: 0;
}
.cases__card-panel-doctor-avatar-image {
  display: block;
  max-width: 100%;
  width: 80px;
  height: auto;
  aspect-ratio: 1;
  border-radius: 80px;
}
.cases__card-panel-doctor-info-role {
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: #293241;
}
.cases__card-panel-doctor-info-name {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #555f73;
}
.cases__card-panel-info {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex: 1 1 auto;
  gap: 24px;
  padding: 32px;
  border-radius: 20px;
  background-color: #f6f6f6;
}
@media (max-width: 1024px) {
  .cases__card-panel-info {
    flex-wrap: wrap;
    padding: 24px;
    background-color: rgba(253, 253, 253, 0);
  }
}
@media (max-width: 768px) {
  .cases__card-panel-info {
    padding: 0;
  }
}
.cases__card-panel-info-main {
  display: flex;
  flex-direction: column;
  flex: 1 1 200px;
  min-width: 240px;
  gap: 32px;
}
@media (max-width: 768px) {
  .cases__card-panel-info-main {
    order: 1;
  }
}
.cases__card-panel-info-main-title {
  margin: 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: #293241;
}
.cases__card-panel-info-main-list {
  max-width: 264px;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
@media (max-width: 1024px) {
  .cases__card-panel-info-main-list {
    max-width: none;
  }
}
.cases__card-panel-info-main-list-item-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #555f73;
  border-bottom: 1px dashed #d9d9d9;
  transition: color ease-out 0.2s;
}
.cases__card-panel-info-main-list-item-link:hover {
  color: #2f85c0;
}
.cases__card-panel-info-main-list-item-link::after {
  content: "";
  display: inline-block;
  flex: 0 0 auto;
  width: 24px;
  aspect-ratio: 1;
  background: url(../assets/icons/arrow-black.svg) center/36px no-repeat;
  transform: rotate(45deg);
  transition-property: filter, transform;
  transition: transform ease-out 0.2s;
}
.cases__card-panel-info-main-list-item-link:hover::after {
  transform: rotate(90deg);
  filter: brightness(0) saturate(100%) invert(63%) sepia(16%) saturate(2512%) hue-rotate(176deg) brightness(74%) contrast(106%);
}
.cases__card-panel-info-main-more {
  display: flex;
  align-items: flex-end;
  flex: 1 1 100%;
}
.cases__card-panel-info-main-more-link {
  padding: 10px 22px;
}
.cases__card-panel-info-photo {
  margin: 0;
  max-width: 280px;
}
@media (max-width: 1024px) {
  .cases__card-panel-info-photo {
    flex: 1 1 240px;
    min-width: 240px;
    max-width: none;
  }
}
@media (max-width: 768px) {
  .cases__card-panel-info-photo {
    order: 0;
  }
}
.cases__card-panel-info-photo-image {
  display: block;
  max-width: 100%;
  height: auto;
}
.cases__card-panel-details {
  flex: 0 0 567px;
  box-sizing: border-box;
  border-radius: 20px;
  padding: 32px;
  background-color: #f6f6f6;
}
@media (max-width: 1440px) {
  .cases__card-panel-details {
    flex: 0 0 400px;
  }
}
@media (max-width: 1024px) {
  .cases__card-panel-details {
    flex: 0 1 360px;
    padding: 24px;
  }
}
@media (max-width: 768px) {
  .cases__card-panel-details {
    flex: 1 1 100%;
  }
}
.cases__card-panel-details-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cases__card-panel-details-list-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cases__card-panel-details-list-item-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: #293241;
}
.cases__card-panel-details-list-item-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #555f73;
}
.cases__more {
  display: flex;
  justify-content: flex-start;
  margin: 56px 0 0;
}
@media (max-width: 768px) {
  .cases__more {
    justify-content: center;
    margin-top: 42px;
  }
}

.reviews {
  overflow: hidden;
}
.reviews__title {
  max-width: 990px;
  margin: 0 auto 24px;
  font-weight: 400;
  font-size: 56px;
  line-height: 107%;
  text-align: center;
  color: #293241;
}
@media (max-width: 1024px) {
  .reviews__title {
    font-size: 48px;
  }
}
@media (max-width: 768px) {
  .reviews__title {
    margin-bottom: 16px;
    font-size: 32px;
  }
}
.reviews__description {
  max-width: 323px;
  margin: 0 auto 24px;
  font-weight: 400;
  font-size: 18px;
  line-height: 133%;
  text-align: center;
  color: #555f73;
}
@media (max-width: 1024px) {
  .reviews__description {
    margin-bottom: 16px;
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .reviews__description {
    font-size: 14px;
  }
}
.reviews__controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  margin: 0 0 24px;
}
@media (max-width: 768px) {
  .reviews__controls {
    gap: 16px;
    margin-bottom: 16px;
  }
}
.reviews__controls-prev, .reviews__controls-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  padding: 0;
  aspect-ratio: 1;
  border: none;
  border-radius: 50px;
  background-color: #53ace9;
  transition-property: background-color, color, border;
  transition-timing-function: ease-out;
  transition-duration: 0.2s;
  cursor: pointer;
}
.reviews__controls-prev:hover, .reviews__controls-next:hover {
  background-color: #2f85c0;
}
@media (max-width: 768px) {
  .reviews__controls-prev, .reviews__controls-next {
    width: 38px;
  }
}
.reviews__controls-prev::before, .reviews__controls-next::before {
  content: "";
  display: block;
  width: 40px;
  aspect-ratio: 1;
  background: url(../assets/icons/arrow-black.svg) center/cover no-repeat;
  filter: brightness(0%) invert(100%);
}
.reviews__controls-prev::before {
  transform: rotate(-90deg);
}
.reviews__controls-next::before {
  transform: rotate(90deg);
}
.reviews__slider {
  margin: 0 0 56px;
}
@media (max-width: 1024px) {
  .reviews__slider {
    margin-bottom: 42px;
  }
}
.reviews__slider .swiper {
  overflow: visible;
}
.reviews__slider .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 408px;
  width: 100%;
}
.reviews__card {
  display: block;
  width: 100%;
}
.reviews__card-no-video {
  padding: 24px;
  box-sizing: border-box;
  border-radius: 20px;
  background-color: #fdfdfd;
}
.reviews__card-no-video-info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 48px;
}
.reviews__card-no-video-info-main-name {
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: #293241;
}
.reviews__card-no-video-info-main-details {
  margin: 8px 0 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #293241;
}
.reviews__card-no-video-info-avatar {
  flex: 0 0 100px;
  max-width: 100px;
  margin: 0;
}
.reviews__card-no-video-info-avatar-image {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 18px;
}
.reviews__card-no-video-text {
  margin: 0 0 24px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #293241;
}
.reviews__card-no-video-more-link {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: #878e9c;
  transition: color ease-out 0.2s;
}
.reviews__card-no-video-more-link:hover {
  color: #2f85c0;
}
.reviews__card-with-video {
  position: relative;
  min-height: 461px;
  padding: 24px;
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 20px;
  background-color: #e1dddd;
}
.reviews__card-with-video-info {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 48px;
}
.reviews__card-with-video-info-main-name {
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: #293241;
}
.reviews__card-with-video-info-main-details {
  margin: 8px 0 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #293241;
}
.reviews__card-with-video-info-play {
  flex: 0 0 auto;
}
.reviews__card-with-video-info-play-button {
  display: inline-block;
  width: 45px;
  aspect-ratio: 1;
  border: none;
  background: url(../assets/icons/play.svg) center/cover no-repeat;
  cursor: pointer;
}
.reviews__card-with-video-photo {
  position: absolute;
  inset: 0;
  z-index: 1;
  margin: 0;
}
.reviews__card-with-video-photo-image {
  display: block;
  max-width: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.reviews__more {
  display: flex;
  align-items: center;
  justify-content: center;
}
.reviews__more-link {
  width: auto;
}

.callback__wrapper {
  position: relative;
  padding: 115px;
}
@media (max-width: 1440px) {
  .callback__wrapper {
    padding: 64px;
  }
}
@media (max-width: 768px) {
  .callback__wrapper {
    padding: 12px;
    border-radius: 25px;
    background-color: #fdfdfd;
  }
}
.callback__photo {
  position: absolute;
  inset: 0;
  z-index: 1;
  margin: 0;
}
@media (max-width: 768px) {
  .callback__photo {
    position: static;
  }
}
.callback__photo-image {
  display: block;
  max-width: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 25px;
}
.callback__content {
  position: relative;
  z-index: 2;
  max-width: 444px;
  padding: 42px;
  box-sizing: border-box;
  border-radius: 25px;
  background-color: #fdfdfd;
}
@media (max-width: 1440px) {
  .callback__content {
    max-width: 422px;
  }
}
@media (max-width: 1024px) {
  .callback__content {
    padding: 27px 31px;
  }
}
@media (max-width: 768px) {
  .callback__content {
    max-width: 100%;
    padding: 32px 12px 12px;
  }
}
.callback__title {
  margin: 0 0 16px;
  font-weight: 400;
  font-size: 48px;
  line-height: 100%;
  color: #293241;
}
@media (max-width: 1024px) {
  .callback__title {
    font-size: 42px;
  }
}
@media (max-width: 768px) {
  .callback__title {
    margin-bottom: 12px;
    font-size: 32px;
  }
}
.callback__description {
  margin: 0 0 32px;
  font-weight: 400;
  font-size: 18px;
  line-height: 133%;
  color: #555f73;
}
@media (max-width: 768px) {
  .callback__description {
    margin-bottom: 24px;
    font-size: 14px;
  }
}
.callback__form-input {
  display: block;
  width: 100%;
  margin: 0 0 12px;
  padding: 16px 20px;
  box-sizing: border-box;
  font-weight: 400;
  font-size: 12px;
  line-height: 117%;
  letter-spacing: 0.02em;
  color: #293241;
  border: none;
  border-radius: 100px;
  outline-color: #2f85c0;
  background-color: #eff5f9;
}
.callback__form-input::-webkit-input-placeholder {
  color: #878e9c;
}
.callback__form-input::-moz-placeholder {
  color: #878e9c;
}
.callback__form-input::placeholder {
  color: #878e9c;
}
.callback__form-select {
  display: block;
  width: 100%;
  margin: 0 0 12px;
}
.callback__form-agreement {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 16px 0 32px;
}
@media (max-width: 768px) {
  .callback__form-agreement {
    margin-bottom: 24px;
  }
}
.callback__form-agreement::before {
  content: "";
  display: block;
  flex: 0 0 auto;
  width: 22px;
  height: 20px;
  background: url(../assets/icons/checkbox-default.svg) center/cover no-repeat;
}
.callback__form-agreement:has(.callback__form-agreement-checkbox:checked)::before {
  background-image: url(../assets/icons/checkbox-checked.svg);
}
.callback__form-agreement-checkbox {
  position: absolute;
  top: 8px;
  left: 7px;
  display: block;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}
.callback__form-agreement-text {
  font-weight: 400;
  font-size: 12px;
  line-height: 117%;
  letter-spacing: 0.02em;
  color: #878e9c;
}
.callback__form-submit {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.seo-block__title {
  margin: 0 0 46px auto;
  max-width: calc(50% - 56px);
  font-weight: 400;
  font-size: 56px;
  line-height: 107%;
  color: #293241;
}
@media (max-width: 1440px) {
  .seo-block__title {
    max-width: none;
    margin: 0 0 46px;
    text-align: center;
  }
}
@media (max-width: 1024px) {
  .seo-block__title {
    margin-bottom: 40px;
    font-size: 48px;
  }
}
@media (max-width: 768px) {
  .seo-block__title {
    margin-bottom: 32px;
    font-size: 32px;
  }
}
.seo-block__wrapper {
  display: flex;
  align-items: flex-start;
  gap: 56px;
}
@media (max-width: 1440px) {
  .seo-block__wrapper {
    gap: 32px;
  }
}
@media (max-width: 1024px) {
  .seo-block__wrapper {
    gap: 32px 24px;
  }
}
@media (max-width: 768px) {
  .seo-block__wrapper {
    flex-wrap: wrap;
  }
}
.seo-block__photo {
  flex: 0 0 50%;
  max-width: 50%;
  margin: 0;
}
@media (max-width: 1440px) {
  .seo-block__photo {
    flex: 0 0 545px;
    max-width: 545px;
    height: 610px;
  }
}
@media (max-width: 1024px) {
  .seo-block__photo {
    flex: 0 0 530px;
    max-width: 530px;
    height: 580px;
  }
}
@media (max-width: 768px) {
  .seo-block__photo {
    flex: 1 1 100%;
    max-width: none;
    height: auto;
  }
}
.seo-block__photo-image {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 17px;
}
@media (max-width: 1440px) {
  .seo-block__photo-image {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.seo-block__article-paragraph {
  margin: 0 0 24px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #555f73;
}
@media (max-width: 768px) {
  .seo-block__article-paragraph {
    font-size: 14px;
  }
}
.seo-block__article-about {
  margin: 56px 0 0;
}
@media (max-width: 1440px) {
  .seo-block__article-about {
    margin-top: 50px;
  }
}
@media (max-width: 768px) {
  .seo-block__article-about {
    display: flex;
    justify-content: center;
    margin-top: 42px;
  }
}
.seo-block__article-about-link {
  display: flex;
}

.useful-info {
  overflow: hidden;
}
.useful-info__title {
  max-width: 753px;
  margin: 0 auto 24px;
  font-weight: 400;
  font-size: 56px;
  line-height: 107%;
  text-align: center;
  color: #293241;
}
@media (max-width: 1024px) {
  .useful-info__title {
    font-size: 48px;
  }
}
@media (max-width: 768px) {
  .useful-info__title {
    margin-bottom: 22px;
    font-size: 32px;
  }
}
.useful-info__controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  margin: 0 0 24px;
}
@media (max-width: 768px) {
  .useful-info__controls {
    gap: 16px;
    margin-bottom: 22px;
  }
}
.useful-info__controls-prev, .useful-info__controls-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  padding: 0;
  aspect-ratio: 1;
  border: none;
  border-radius: 50px;
  background-color: #53ace9;
  transition-property: background-color, color, border;
  transition-timing-function: ease-out;
  transition-duration: 0.2s;
  cursor: pointer;
}
.useful-info__controls-prev:hover, .useful-info__controls-next:hover {
  background-color: #2f85c0;
}
@media (max-width: 768px) {
  .useful-info__controls-prev, .useful-info__controls-next {
    width: 38px;
  }
}
.useful-info__controls-prev::before, .useful-info__controls-next::before {
  content: "";
  display: block;
  width: 40px;
  aspect-ratio: 1;
  background: url(../assets/icons/arrow-black.svg) center/cover no-repeat;
  filter: brightness(0%) invert(100%);
}
.useful-info__controls-prev::before {
  transform: rotate(-90deg);
}
.useful-info__controls-next::before {
  transform: rotate(90deg);
}
.useful-info__slider {
  margin: 0 0 56px;
}
@media (max-width: 1440px) {
  .useful-info__slider {
    margin-bottom: 68px;
  }
}
@media (max-width: 1024px) {
  .useful-info__slider {
    margin-bottom: 44px;
  }
}
@media (max-width: 768px) {
  .useful-info__slider {
    margin-bottom: 66px;
  }
}
.useful-info__slider .swiper {
  overflow: visible;
}
@media (max-width: 1024px) {
  .useful-info__slider .swiper-slide {
    max-width: 456px;
  }
}
@media (max-width: 576px) {
  .useful-info__slider .swiper-slide {
    max-width: 321px;
  }
}
.useful-info__slide {
  display: block;
  width: 100%;
}
.useful-info__slide-figure {
  margin: 0 0 12px;
}
.useful-info__slide-figure-image {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 17px;
}
.useful-info__slide-title {
  margin: 0 0 12px;
  font-weight: 400;
  font-size: 24px;
  line-height: 125%;
  color: #293241;
}
@media (max-width: 768px) {
  .useful-info__slide-title {
    font-size: 16px;
  }
}
.useful-info__slide-date {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 144%;
  color: #555f73;
}
@media (max-width: 768px) {
  .useful-info__slide-date {
    font-size: 12px;
  }
}
.useful-info__more {
  display: flex;
  align-items: center;
  justify-content: center;
}
.useful-info__more-link {
  width: auto;
}

.proud-clinic__title {
  max-width: 1045px;
  margin: 0 auto;
  font-weight: 400;
  font-size: 64px;
  line-height: 94%;
  text-align: center;
  color: #293241;
}
@media (max-width: 768px) {
  .proud-clinic__title {
    font-size: 32px;
  }
}
@media (max-width: 576px) {
  .proud-clinic__title {
    text-align: left;
  }
}
.proud-clinic__figure {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 42px 0 16px;
}
@media (max-width: 768px) {
  .proud-clinic__figure {
    margin: 32px 0 16px;
  }
}
@media (max-width: 576px) {
  .proud-clinic__figure {
    justify-content: flex-start;
  }
}
.proud-clinic__figure-image {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 17px;
}
.proud-clinic__details {
  max-width: 336px;
  margin: 0 auto;
  font-weight: 400;
  font-size: 18px;
  line-height: 133%;
  text-align: center;
  color: #555f73;
}
@media (max-width: 768px) {
  .proud-clinic__details {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .proud-clinic__details {
    margin: 0;
    text-align: left;
  }
}

.doctor-info {
  padding-top: 12px;
  overflow: hidden;
}
.doctor-info__wrapper {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.doctor-info__top {
  display: flex;
  flex-wrap: wrap;
  flex: 1 1 100%;
  gap: 12px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .doctor-info__top {
    position: relative;
    display: flex;
    align-items: flex-end;
    gap: 0;
    height: 620px;
    padding: 8px;
  }
}
.doctor-info__info {
  display: flex;
  justify-content: center;
  flex-direction: column;
  flex: 0 0 calc(50% - 6px);
  max-width: calc(50% - 6px);
  margin-bottom: 200px;
  padding: 120px 56px 56px;
  box-sizing: border-box;
  border-radius: 17px;
  background-color: #fdfdfd;
}
@media (max-width: 1440px) {
  .doctor-info__info {
    padding: 112px 48px 48px;
  }
}
@media (max-width: 1024px) {
  .doctor-info__info {
    margin-bottom: 156px;
    padding: 96px 32px 32px;
  }
}
@media screen and (max-width: 992px) {
  .doctor-info__info {
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .doctor-info__info {
    flex: 1 1 auto;
    max-width: none;
    margin-bottom: 0;
    padding: 18px;
    box-sizing: border-box;
    border-radius: 20px;
  }
}
.doctor-info__info-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 0 0 70px;
}
@media (max-width: 1440px) {
  .doctor-info__info-breadcrumbs {
    margin-bottom: 86px;
  }
}
@media (max-width: 1024px) {
  .doctor-info__info-breadcrumbs {
    margin-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .doctor-info__info-breadcrumbs {
    position: absolute;
    top: 24px;
    left: 24px;
    right: 24px;
    z-index: 10;
    margin-bottom: 0;
  }
}
.doctor-info__info-breadcrumbs-link, .doctor-info__info-breadcrumbs-current {
  flex: 0 0 auto;
  font-weight: 400;
  font-size: 12px;
  line-height: 117%;
  letter-spacing: 0.02em;
}
.doctor-info__info-breadcrumbs-link {
  position: relative;
  color: #878e9c;
  transition: color ease-out 0.2s;
}
.doctor-info__info-breadcrumbs-link:hover {
  color: #2f85c0;
}
.doctor-info__info-breadcrumbs-link::before {
  content: "";
  position: absolute;
  left: calc(100% + 10px);
  top: 50%;
  display: block;
  width: 4px;
  aspect-ratio: 1;
  border-radius: 4px;
  background-color: #293241;
  transform: translateX(-50%) translateY(-50%);
}
.doctor-info__info-breadcrumbs-current {
  color: #293241;
}
.doctor-info__info-title {
  margin: 0 0 24px;
  font-weight: 500;
  font-size: 72px;
  font-size: clamp(52px, 5vw, 72px);
  line-height: 100%;
  letter-spacing: -0.01em;
  color: #293241;
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: break-word;
}
@media (max-width: 1024px) {
  .doctor-info__info-title {
    margin-bottom: 16px;
    font-size: clamp(36px, 5vw, 56px);
  }
}
@media (max-width: 768px) {
  .doctor-info__info-title {
    font-size: 36px;
  }
}
.doctor-info__info-description {
  max-width: 430px;
  margin: 0 0 42px;
  font-weight: 400;
  font-size: 20px;
  line-height: 135%;
  color: #555f73;
}
@media (max-width: 1024px) {
  .doctor-info__info-description {
    margin-bottom: 32px;
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .doctor-info__info-description {
    font-size: 14px;
  }
}
.doctor-info__info-signup-button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.doctor-info__photo {
  flex: 0 0 calc(50% - 6px);
  max-width: calc(50% - 6px);
  margin: 0;
  overflow: hidden;
  border-radius: 17px;
}
@media (max-width: 768px) {
  .doctor-info__photo {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-width: none;
  }
}
.doctor-info__photo-image {
  display: block;
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.doctor-info__achievements {
  position: absolute;
  top: 100%;
  left: 0;
  display: flex;
  flex: 1 1 100%;
  gap: 12px;
  max-width: calc(50% - 6px);
  width: 100%;
  transform: translateY(-188px);
}
@media (max-width: 1024px) {
  .doctor-info__achievements {
    transform: translateY(-144px);
  }
}
@media screen and (max-width: 992px) {
  .doctor-info__achievements {
    position: static;
    max-width: none;
    transform: none;
  }
}
@media (max-width: 768px) {
  .doctor-info__achievements {
    flex-wrap: wrap;
  }
}
.doctor-info__achievements-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 0 0 calc(33.3333333333% - 8px);
  gap: 8px;
  min-height: 188px;
  padding: 24px 4px;
  box-sizing: border-box;
  border-radius: 17px;
  background-color: #fdfdfd;
}
@media (max-width: 1024px) {
  .doctor-info__achievements-item {
    min-height: 144px;
  }
}
@media (max-width: 768px) {
  .doctor-info__achievements-item {
    flex: 1 1 100%;
    min-height: 188px;
  }
}
.doctor-info__achievements-item:last-child {
  background-color: #53ace9;
}
.doctor-info__achievements-item_link {
  transition-property: background-color, color, border;
  transition-timing-function: ease-out;
  transition-duration: 0.2s;
}
.doctor-info__achievements-item_link:hover {
  background-color: #2f85c0;
}
.doctor-info__achievements-item-title {
  max-width: 100%;
  font-weight: 400;
  font-size: 42px;
  line-height: 88%;
  text-align: center;
  color: #2f85c0;
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: break-word;
}
@media (max-width: 1024px) {
  .doctor-info__achievements-item-title {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .doctor-info__achievements-item-title {
    font-size: 48px;
  }
}
.doctor-info__achievements-item:last-child .doctor-info__achievements-item-title {
  color: #ffffff;
}
.doctor-info__achievements-item-text {
  max-width: calc(100% - 40px);
  font-weight: 400;
  font-size: 18px;
  line-height: 133%;
  text-align: center;
  color: #555f73;
}
@media (max-width: 1024px) {
  .doctor-info__achievements-item-text {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .doctor-info__achievements-item-text {
    font-size: 18px;
  }
}
.doctor-info__achievements-item:last-child .doctor-info__achievements-item-text {
  color: #ffffff;
}

.doctors-list__heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px 32px;
  margin: 0 0 56px;
}
@media (max-width: 1024px) {
  .doctors-list__heading {
    margin-bottom: 42px;
  }
}
@media (max-width: 768px) {
  .doctors-list__heading {
    flex-wrap: wrap;
  }
}
.doctors-list__heading-title {
  flex: 0 0 570px;
  margin: 0;
  font-weight: 400;
  font-size: 56px;
  line-height: 107%;
  color: #293241;
}
@media (max-width: 1440px) {
  .doctors-list__heading-title {
    flex: 0 0 570px;
  }
}
@media (max-width: 1024px) {
  .doctors-list__heading-title {
    flex: 0 0 403px;
    font-size: 48px;
  }
}
@media (max-width: 768px) {
  .doctors-list__heading-title {
    flex: 1 1 100%;
    font-size: 32px;
  }
}
.doctors-list__heading-description {
  flex: 0 0 472px;
  font-weight: 400;
  font-size: 18px;
  line-height: 133%;
  color: #555f73;
}
@media (max-width: 1440px) {
  .doctors-list__heading-description {
    flex: 0 0 435px;
  }
}
@media (max-width: 1024px) {
  .doctors-list__heading-description {
    flex: 0 1 376px;
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .doctors-list__heading-description {
    flex: 1 1 100%;
    font-size: 14px;
  }
}
.doctors-list__filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 56px;
}
@media (max-width: 1024px) {
  .doctors-list__filter {
    margin-bottom: 42px;
  }
}
.doctors-list__filter-button {
  display: inline-block;
  flex: 0 0 auto;
  min-width: 90px;
  padding: 10px 18px;
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: 0.01em;
  text-align: center;
  color: #293241;
  border: none;
  border-radius: 100px;
  background-color: #fdfdfd;
  cursor: pointer;
}
@media (max-width: 768px) {
  .doctors-list__filter-button {
    min-width: auto;
    padding: 7px 16px;
    font-size: 14px;
  }
}
.doctors-list__filter-button.active {
  background-color: #d3edff;
}
.doctors-list__list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.doctors-list__list-item {
  position: relative;
  flex: 0 0 calc(25% - 18px);
  max-width: calc(25% - 18px);
}
@media (max-width: 1440px) {
  .doctors-list__list-item {
    flex: 0 0 calc(33.3333333333% - 16px);
    max-width: calc(33.3333333333% - 16px);
  }
}
@media (max-width: 768px) {
  .doctors-list__list-item {
    flex: 0 0 calc(50% - 12px);
    max-width: calc(50% - 12px);
  }
}
@media (max-width: 576px) {
  .doctors-list__list-item {
    flex: 1 1 100%;
    max-width: none;
  }
}
.doctors-list__list-item.hidden {
  display: none;
}
.doctors-list__list-item-photo {
  margin: 0;
  width: 100%;
  aspect-ratio: 36/55;
  overflow: hidden;
  border-radius: 20px;
}
@media (max-width: 1440px) {
  .doctors-list__list-item-photo {
    aspect-ratio: 432/550;
  }
}
@media (max-width: 768px) {
  .doctors-list__list-item-photo {
    aspect-ratio: 345/480;
  }
}
.doctors-list__list-item-photo-image {
  display: block;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.doctors-list__list-item-info {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 10;
  padding: 24px;
  border-radius: 23px;
  background-color: #fdfdfd;
}
@media (max-width: 1440px) {
  .doctors-list__list-item-info {
    left: 32px;
    right: 32px;
    bottom: 32px;
  }
}
@media (max-width: 1024px) {
  .doctors-list__list-item-info {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }
}
@media (max-width: 768px) {
  .doctors-list__list-item-info {
    left: 24px;
    right: 24px;
    bottom: 24px;
  }
}
.doctors-list__list-item-info-name {
  margin: 0 0 16px;
  font-weight: 400;
  font-size: 28px;
  line-height: 114%;
  color: #293241;
}
@media (max-width: 768px) {
  .doctors-list__list-item-info-name {
    font-size: 24px;
  }
}
.doctors-list__list-item-info-role {
  font-weight: 400;
  font-size: 16px;
  line-height: 144%;
  color: #555f73;
}
@media (max-width: 768px) {
  .doctors-list__list-item-info-role {
    font-size: 14px;
  }
}

.doctor-education__title {
  max-width: 852px;
  margin: 0 auto 56px;
  font-weight: 400;
  font-size: 56px;
  line-height: 107%;
  text-align: center;
  color: #293241;
}
@media (max-width: 1024px) {
  .doctor-education__title {
    font-size: 48px;
  }
}
@media (max-width: 768px) {
  .doctor-education__title {
    margin-bottom: 42px;
    font-size: 32px;
  }
}
.doctor-education__content {
  display: flex;
  flex-wrap: wrap;
  gap: 42px 24px;
}
.doctor-education__block {
  flex: 0 0 calc(50% - 12px);
  padding-left: 5px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .doctor-education__block {
    flex: 1 1 100%;
  }
}
.doctor-education__block-title {
  margin: 0 0 42px;
  font-weight: 400;
  font-size: 32px;
  line-height: 94%;
  color: #293241;
}
.doctor-education__list-item {
  position: relative;
  padding: 0 0 12px;
  padding-left: 18px;
  box-sizing: border-box;
  border-left: 1px solid #555f73;
}
.doctor-education__list-item:last-child {
  padding-bottom: 0;
  border-left: none;
}
.doctor-education__list-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -6px;
  z-index: 10;
  display: block;
  width: 11px;
  aspect-ratio: 1;
  border-radius: 11px;
  background-color: #53ace9;
}
.doctor-education__list-item-date, .doctor-education__list-item-grade {
  font-weight: 400;
  font-size: 18px;
  line-height: 133%;
  color: #555f73;
}
.doctor-education__list-hidden {
  max-height: 0;
  padding-left: 6px;
  margin-left: -6px;
  overflow: hidden;
  transition: max-height ease-out 0.4s;
}
.doctor-education__list-more {
  margin: 30px 0 0;
}
.doctor-education__list-more-button {
  min-width: 172px;
}
.doctor-education__list-more-button-show, .doctor-education__list-more-button-hide {
  pointer-events: none;
}
.doctor-education__list-more-button-show {
  display: inline-block;
}
.doctor-education__list-more-button-hide {
  display: none;
}
.doctor-education__list.active .doctor-education__list-more-button-show {
  display: none;
}
.doctor-education__list.active .doctor-education__list-more-button-hide {
  display: inline-block;
}

.diplomas__heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin: 0 0 56px;
}
@media (max-width: 1024px) {
  .diplomas__heading {
    margin-bottom: 42px;
  }
}
@media (max-width: 768px) {
  .diplomas__heading {
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
  }
}
.diplomas__heading-title {
  flex: 0 1 544px;
  margin: 0;
  font-weight: 400;
  font-size: 56px;
  line-height: 107%;
  color: #293241;
}
@media (max-width: 1024px) {
  .diplomas__heading-title {
    flex: 1 1 auto;
    font-size: 48px;
  }
}
@media (max-width: 768px) {
  .diplomas__heading-title {
    font-size: 32px;
  }
}
.diplomas__heading-description {
  flex: 0 1 431px;
  margin: 0;
  margin-top: 10px;
  font-weight: 400;
  font-size: 18px;
  line-height: 133%;
  color: #555f73;
}
@media (max-width: 1024px) {
  .diplomas__heading-description {
    flex: 0 1 394px;
    margin-top: 0;
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .diplomas__heading-description {
    flex: 1 1 100%;
    font-size: 14px;
  }
}
.diplomas__controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  margin: 0 0 24px;
}
@media (max-width: 768px) {
  .diplomas__controls {
    gap: 16px;
    margin-bottom: 22px;
  }
}
.diplomas__controls-prev, .diplomas__controls-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  padding: 0;
  aspect-ratio: 1;
  border: none;
  border-radius: 50px;
  background-color: #53ace9;
  transition-property: background-color, color, border;
  transition-timing-function: ease-out;
  transition-duration: 0.2s;
  cursor: pointer;
}
.diplomas__controls-prev:hover, .diplomas__controls-next:hover {
  background-color: #2f85c0;
}
@media (max-width: 768px) {
  .diplomas__controls-prev, .diplomas__controls-next {
    width: 38px;
  }
}
.diplomas__controls-prev::before, .diplomas__controls-next::before {
  content: "";
  display: block;
  width: 40px;
  aspect-ratio: 1;
  background: url(../assets/icons/arrow-black.svg) center/cover no-repeat;
  filter: brightness(0%) invert(100%);
}
.diplomas__controls-prev::before {
  transform: rotate(-90deg);
}
.diplomas__controls-next::before {
  transform: rotate(90deg);
}
.diplomas__slider .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  width: auto;
}
.diplomas__slide {
  display: block;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0;
}
.diplomas__slide-image {
  display: block;
  max-width: 100%;
  max-height: 286px;
  height: auto;
  transition: filter ease-out 0.2s;
  filter: grayscale(100%);
  cursor: pointer;
}
.diplomas__slide-image:hover {
  filter: grayscale(0%);
}
.diplomas__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 42px 0 0;
}
.diplomas__pagination .swiper-pagination-bullet {
  display: block;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin: 0 !important;
  border: 1px solid #878e9c;
  border-radius: 29px;
  background-color: rgba(135, 142, 156, 0);
  opacity: 1;
}
.diplomas__pagination .swiper-pagination-bullet-active {
  border-color: #53ace9;
  background-color: #53ace9;
}

.patient-reviews__heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin: 0 0 56px;
}
@media (max-width: 1024px) {
  .patient-reviews__heading {
    margin-bottom: 42px;
  }
}
@media (max-width: 768px) {
  .patient-reviews__heading {
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
  }
}
.patient-reviews__heading-title {
  flex: 0 1 auto;
  margin: 0;
  font-weight: 400;
  font-size: 56px;
  line-height: 107%;
  color: #293241;
}
@media (max-width: 1024px) {
  .patient-reviews__heading-title {
    font-size: 48px;
  }
}
@media (max-width: 768px) {
  .patient-reviews__heading-title {
    max-width: 240px;
    font-size: 32px;
  }
}
.patient-reviews__heading-description {
  flex: 0 1 431px;
  margin: 0;
  font-weight: 400;
  font-size: 18px;
  line-height: 133%;
  color: #555f73;
}
@media (max-width: 1024px) {
  .patient-reviews__heading-description {
    flex: 0 1 392px;
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .patient-reviews__heading-description {
    flex: 1 1 100%;
    font-size: 14px;
  }
}
.patient-reviews__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 27px;
}
@media (max-width: 1440px) {
  .patient-reviews__cards {
    gap: 24px;
  }
}
.patient-reviews__card {
  flex: 0 0 calc(50% - 13.5px);
  padding: 24px;
  box-sizing: border-box;
  border-radius: 20px;
  background-color: #fdfdfd;
}
@media (max-width: 1440px) {
  .patient-reviews__card {
    flex: 0 0 calc(50% - 12px);
  }
}
@media (max-width: 768px) {
  .patient-reviews__card {
    flex: 1 1 100%;
  }
}
.patient-reviews__card-info {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin: 0 0 32px;
}
@media (max-width: 768px) {
  .patient-reviews__card-info {
    margin-bottom: 25px;
  }
}
.patient-reviews__card-info-rating {
  flex: 0 0 auto;
}
.patient-reviews__card-info-source-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-weight: 400;
  font-size: 16px;
  line-height: 144%;
  color: #293241;
  transition: color ease-out 0.2s;
}
.patient-reviews__card-info-source-link:hover {
  color: #2f85c0;
}
.patient-reviews__card-info-source-link::after {
  content: "";
  display: inline-block;
  flex: 0 0 auto;
  width: 24px;
  aspect-ratio: 1;
  background: url(../assets/icons/arrow-black.svg) center/36px no-repeat;
  transform: rotate(45deg);
  transition-property: filter, transform;
  transition: transform ease-out 0.2s;
}
.patient-reviews__card-info-source-link:hover::after {
  transform: rotate(90deg);
  filter: brightness(0) saturate(100%) invert(63%) sepia(16%) saturate(2512%) hue-rotate(176deg) brightness(74%) contrast(106%);
}
.patient-reviews__card-author {
  margin: 0 0 16px;
  font-weight: 700;
  font-size: 16px;
  line-height: 144%;
  color: #293241;
}
.patient-reviews__card-text {
  margin: 0 0 12px;
  font-weight: 400;
  font-size: 16px;
  line-height: 144%;
  color: #293241;
}
.patient-reviews__card-date {
  font-weight: 400;
  font-size: 12px;
  line-height: 117%;
  letter-spacing: 0.02em;
  color: #555f73;
}
.patient-reviews__more {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 56px 0 0;
}
@media (max-width: 1024px) {
  .patient-reviews__more {
    margin-top: 42px;
  }
}
.patient-reviews__more-link {
  width: auto;
}

.prodoctor-profile__wrapper {
  position: relative;
  max-width: 1360px;
  margin: 0 auto;
  padding: 98px 100px;
  box-sizing: border-box;
  border-radius: 20px;
  box-shadow: 2px 3px 10px 0 rgba(47, 133, 192, 0.05);
  background: #fdfdfd;
}
@media (max-width: 1440px) {
  .prodoctor-profile__wrapper {
    padding: 60px 56px;
  }
}
@media (max-width: 768px) {
  .prodoctor-profile__wrapper {
    padding: 24px 24px 0;
  }
}
.prodoctor-profile__content {
  position: relative;
  z-index: 10;
  max-width: 600px;
}
@media (max-width: 1024px) {
  .prodoctor-profile__content {
    max-width: 504px;
  }
}
@media (max-width: 768px) {
  .prodoctor-profile__content {
    max-width: 100%;
    margin: 0 0 56px;
  }
}
.prodoctor-profile__title {
  max-width: 408px;
  margin: 0 0 16px;
  font-weight: 400;
  font-size: 48px;
  line-height: 104%;
  color: #293241;
}
@media (max-width: 1024px) {
  .prodoctor-profile__title {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .prodoctor-profile__title {
    font-size: 32px;
  }
}
@media (max-width: 576px) {
  .prodoctor-profile__title {
    max-width: none;
    font-size: 26px;
  }
}
.prodoctor-profile__description {
  max-width: 324px;
  margin: 0 0 62px;
  font-weight: 400;
  font-size: 16px;
  line-height: 144%;
  color: #555f73;
}
@media (max-width: 1024px) {
  .prodoctor-profile__description {
    margin-bottom: 42px;
  }
}
@media (max-width: 576px) {
  .prodoctor-profile__description {
    max-width: 216px;
    font-size: 14px;
    margin-bottom: 32px;
  }
}
.prodoctor-profile__info {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px 24px;
}
@media (max-width: 768px) {
  .prodoctor-profile__info {
    flex-wrap: wrap;
  }
}
.prodoctor-profile__info-rating {
  flex: 0 0 auto;
}
.prodoctor-profile__info-rating-indicator {
  margin: 0 0 8px;
}
.prodoctor-profile__info-rating-text {
  font-weight: 400;
  font-size: 32px;
  line-height: 113%;
  color: #293241;
}
@media (max-width: 768px) {
  .prodoctor-profile__info-rating-text {
    font-size: 20px;
  }
}
.prodoctor-profile__info-source {
  flex: 0 0 auto;
}
.prodoctor-profile__info-source-link {
  display: flex;
  align-items: center;
  hanging-punctuation: 4px;
  font-weight: 400;
  font-size: 32px;
  line-height: 100%;
  color: #293241;
}
@media (max-width: 768px) {
  .prodoctor-profile__info-source-link {
    font-size: 20px;
  }
}
.prodoctor-profile__info-source-link:hover {
  color: #2f85c0;
}
.prodoctor-profile__info-source-link::after {
  content: "";
  display: inline-block;
  flex: 0 0 auto;
  width: 32px;
  aspect-ratio: 1;
  background: url(../assets/icons/arrow-black.svg) center/45px no-repeat;
  transform: rotate(45deg);
  transition-property: filter, transform;
  transition: transform ease-out 0.2s;
}
@media (max-width: 768px) {
  .prodoctor-profile__info-source-link::after {
    font-size: 24px;
    background-size: 36px;
  }
}
.prodoctor-profile__info-source-link:hover::after {
  transform: rotate(90deg);
  filter: brightness(0) saturate(100%) invert(63%) sepia(16%) saturate(2512%) hue-rotate(176deg) brightness(74%) contrast(106%);
}
.prodoctor-profile__figure {
  position: absolute;
  right: 5%;
  bottom: 0;
  z-index: 1;
  max-width: 528px;
  min-width: 450px;
  width: 38.8%;
  margin: 0;
}
@media (max-width: 1024px) {
  .prodoctor-profile__figure {
    right: 25px;
    max-width: 388px;
    min-width: auto;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .prodoctor-profile__figure {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: none;
    min-width: auto;
  }
}
.prodoctor-profile__figure-image {
  display: block;
  max-width: 100%;
  height: auto;
}

.footer {
  padding: 56px 0;
  border-radius: 30px 30px 0 0;
  background: url(../assets/footer-bg.svg) bottom center/calc(100dvw - 40px) no-repeat;
  background-color: #2f85c0;
}
@media (max-width: 1440px) {
  .footer {
    padding: 50px 0;
  }
}
@media (max-width: 1024px) {
  .footer {
    padding: 34px 0;
    background-size: 100dvw;
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 16px 0;
  }
}
.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 0 66px;
  padding: 32px 24px;
  border-radius: 20px;
  background-color: #fdfdfd;
}
@media (max-width: 1440px) {
  .footer__top {
    margin-bottom: 92px;
  }
}
@media (max-width: 1024px) {
  .footer__top {
    margin-bottom: 70px;
  }
}
@media (max-width: 768px) {
  .footer__top {
    flex-wrap: wrap;
    margin-bottom: 128px;
    padding: 23px 22px;
  }
}
.footer__top-content {
  flex: 0 1 460px;
  padding: 0 80px;
}
@media (max-width: 1440px) {
  .footer__top-content {
    flex: 1 1 auto;
    padding: 0 54px;
  }
}
@media (max-width: 1024px) {
  .footer__top-content {
    padding: 0 12px;
  }
}
.footer__top-content-title {
  margin: 0 0 8px;
  font-weight: 400;
  font-size: 48px;
  line-height: 110%;
  color: #293241;
}
@media (max-width: 1024px) {
  .footer__top-content-title {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .footer__top-content-title {
    font-size: 32px;
  }
}
.footer__top-content-description {
  margin: 0 0 56px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #555f73;
}
@media (max-width: 768px) {
  .footer__top-content-description {
    margin-bottom: 32px;
    font-size: 14px;
  }
}
.footer__top-content-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (max-width: 1440px) {
  .footer__top-content-info {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .footer__top-content-info {
    gap: 24px;
  }
}
.footer__top-content-info-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 768px) {
  .footer__top-content-info-item {
    gap: 8px;
  }
}
.footer__top-content-info-item-title {
  font-weight: 400;
  font-size: 32px;
  line-height: 113%;
  color: #293241;
}
@media (max-width: 768px) {
  .footer__top-content-info-item-title {
    font-size: 24px;
  }
}
.footer__top-content-info-item-title-link {
  color: inherit;
  transition: color ease-out 0.2s;
}
.footer__top-content-info-item-title-link:hover {
  color: #2f85c0;
}
.footer__top-content-info-item-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 88%;
  color: #878e9c;
}
.footer__top-content-info-item-text-link {
  color: inherit;
  transition: color ease-out 0.2s;
}
.footer__top-content-info-item-text-link:hover {
  color: #2f85c0;
}
.footer__top-content-info-item_location:has(.footer__top-content-info-item-title-link:hover) .footer__top-content-info-item-text-link {
  color: #2f85c0;
}
.footer__top-content-info-item_location:has(.footer__top-content-info-item-text-link:hover) .footer__top-content-info-item-title-link {
  color: #2f85c0;
}
.footer__top-map {
  flex: 0 0 718px;
  height: 518px;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 1440px) {
  .footer__top-map {
    flex: 0 0 50%;
    min-width: 360px;
    height: 333px;
  }
}
@media (max-width: 1024px) {
  .footer__top-map {
    flex: 0 0 382px;
  }
}
@media (max-width: 768px) {
  .footer__top-map {
    flex: 1 1 100%;
    min-width: auto;
    height: 358px;
  }
}
.footer__top-map iframe {
  display: block;
  width: 100%;
  height: 100%;
}
.footer__main {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  color: #fdfdfd;
}
.footer__main a {
  color: inherit;
}
.footer__main-logo {
  flex: 1 1 100%;
  order: 0;
  margin: 0 0 15px;
}
@media (max-width: 768px) {
  .footer__main-logo {
    margin-bottom: 12px;
  }
}
.footer__main-logo-link-image {
  display: block;
  max-width: 100%;
  width: 186px;
  height: auto;
}
@media (max-width: 768px) {
  .footer__main-logo-link-image {
    width: 136px;
  }
}
.footer__main-info {
  display: flex;
  flex-direction: column;
  gap: 101px;
  flex: 0 1 306px;
}
@media (max-width: 1024px) {
  .footer__main-info {
    flex: 0 1 268px;
  }
}
@media (max-width: 768px) {
  .footer__main-info {
    flex: 1 1 100%;
    order: 1;
    gap: 12px;
    margin-bottom: 56px;
  }
}
.footer__main-info-copyright {
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.02em;
  line-height: 117%;
  color: #fdfdfd;
}
.footer__main-info-licence {
  font-weight: 700;
  font-size: 14px;
  line-height: 143%;
  color: #fdfdfd;
}
.footer__main-nav {
  display: flex;
  justify-content: space-between;
  flex: 0 1 507px;
  order: 2;
  gap: 24px;
  max-width: calc(100% - 306px - 170px - 48px);
  margin: 0 24px;
}
@media (max-width: 1024px) {
  .footer__main-nav {
    flex: 0 1 405px;
    max-width: none;
    min-width: 360px;
  }
}
@media (max-width: 768px) {
  .footer__main-nav {
    flex: 1 1 100%;
    order: 3;
    min-width: auto;
    margin: 56px 0;
  }
}
.footer__main-nav-block-title {
  margin: 0 0 37px;
  font-weight: 700;
  font-size: 14px;
  line-height: 143%;
  color: #fdfdfd;
}
.footer__main-nav-block-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__main-nav-block-menu-link {
  font-weight: 700;
  font-size: 14px;
  line-height: 143%;
  color: #fdfdfd;
}
.footer__main-nav-block-menu-link:hover {
  text-decoration: underline;
}
.footer__main-contacts {
  order: 3;
}
@media (max-width: 768px) {
  .footer__main-contacts {
    flex: 1 1 100%;
    order: 2;
  }
}
.footer__main-contacts-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
}
@media (max-width: 768px) {
  .footer__main-contacts-info {
    align-items: flex-start;
  }
}
.footer__main-contacts-info-link {
  font-weight: 700;
  font-size: 14px;
  line-height: 143%;
  text-align: right;
  color: #fdfdfd;
}
@media (max-width: 768px) {
  .footer__main-contacts-info-link {
    text-align: left;
  }
}
.footer__main-contacts-info-link:hover {
  text-decoration: underline;
}
.footer__main-contacts-social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: 10px 0 26px;
}
@media (max-width: 768px) {
  .footer__main-contacts-social {
    justify-content: flex-start;
  }
}
.footer__main-contacts-social-text {
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: #fdfdfd;
}
.footer__main-contacts-social-link {
  display: flex;
  justify-content: center;
}
.footer__main-contacts-social-link-icon {
  display: block;
  max-width: 100%;
  height: auto;
}
.footer__main-contacts-callback-button {
  padding: 14px 20px;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.01em;
  text-align: center;
  color: #293241;
  background-color: #fdfdfd;
}
.footer__main-contacts-callback-button:hover {
  color: #fdfdfd;
  background-color: #53ace9;
}
.footer__main-disclaimer {
  flex: 1 1 100%;
  order: 4;
  margin: 46px 0 34px;
  max-width: 1344px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #fdfdfd;
}
.footer__bottom {
  position: relative;
  padding-top: 31px;
  border-top: 1px solid #fdfdfd;
}
@media (max-width: 768px) {
  .footer__bottom {
    padding-top: 44px;
  }
}
.footer__bottom-links {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
@media (max-width: 768px) {
  .footer__bottom-links {
    gap: 10px;
  }
}
.footer__bottom-links-item {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #fdfdfd;
}
.footer__bottom-links-item:hover {
  text-decoration: underline;
}
.footer__bottom-top-button {
  position: absolute;
  right: 0;
  top: 66px;
  display: inline-block;
  padding: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #fdfdfd;
  border: none;
  background-color: rgba(253, 253, 253, 0);
  cursor: pointer;
}
@media (max-width: 768px) {
  .footer__bottom-top-button {
    top: 80px;
  }
}
.footer__bottom-top-button:hover {
  text-decoration: underline;
}
.footer__bottom-disclaimer {
  margin: 26px 0 0;
  font-weight: 400;
  font-size: 37px;
  color: #fdfdfd;
}
@media (max-width: 1024px) {
  .footer__bottom-disclaimer {
    margin-top: 34px;
  }
}
@media (max-width: 768px) {
  .footer__bottom-disclaimer {
    margin-top: 39px;
  }
}
@media (max-width: 1440px) {
  .footer__bottom-disclaimer {
    font-size: 33px;
  }
}
@media (max-width: 1024px) {
  .footer__bottom-disclaimer {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .footer__bottom-disclaimer {
    font-size: 20px;
  }
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0);
  pointer-events: none;
}
.modal.active {
  background-color: rgba(0, 0, 0, 0.05);
  pointer-events: all;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}
.modal__body {
  max-height: calc(100dvh - 40px);
  max-width: calc(100dvw - 40px);
  width: 444px;
  padding: 42px;
  box-sizing: border-box;
  border-radius: 25px;
  background-color: #fdfdfd;
  transform: translateY(-120dvh);
  transition: transform ease-out 0.4s;
}
@media (max-width: 768px) {
  .modal__body {
    padding: 24px;
  }
}
.modal.active .modal__body {
  transform: translateY(0);
}
.modal__content {
  max-height: calc(100dvh - 40px - 84px);
  padding-right: 4px;
  overflow: auto;
}
@media (max-width: 768px) {
  .modal__content {
    max-height: calc(100dvh - 40px - 48px);
  }
}
.modal__title {
  margin: 0 0 16px;
  font-weight: 400;
  font-size: 48px;
  line-height: 100%;
  letter-spacing: -0.04em;
  color: #293241;
}
@media (max-width: 768px) {
  .modal__title {
    margin-bottom: 8px;
    font-size: 32px;
  }
}
.modal__description {
  margin: 0 0 32px;
  font-weight: 400;
  font-size: 18px;
  line-height: 133%;
  color: #555f73;
}
@media (max-width: 768px) {
  .modal__description {
    margin-bottom: 24px;
    font-size: 14px;
  }
}
.modal__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 768px) {
  .modal__form {
    gap: 12px;
  }
}
.modal__form-input {
  display: block;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: #293241;
  border: 1px solid #bad5e8;
  border-radius: 100px;
  outline-color: #2f85c0;
  background-color: #eff5f9;
}
@media (max-width: 768px) {
  .modal__form-input {
    font-size: 14px;
  }
}
.modal__form-input:user-invalid {
  border: 1px solid #f46036;
}
.modal__form-textarea {
  display: block;
  width: 100%;
  padding: 14px;
  padding-left: 20px;
  box-sizing: border-box;
  border: 1px solid #bad5e8;
  border-radius: 17px;
  background-color: #eff5f9;
  resize: none;
}
@media (max-width: 768px) {
  .modal__form-textarea {
    font-size: 14px;
  }
}
.modal__form-textarea:has(.modal__form-textarea-input:focus) {
  border: 1px solid #2f85c0;
}
.modal__form-textarea-input {
  display: block;
  min-height: 48px;
  width: 100%;
  padding: 0;
  padding-right: 30px;
  box-sizing: border-box;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: #293241;
  border: none;
  background-color: rgba(255, 255, 255, 0);
  outline: none;
  resize: none;
}
.modal__form-select {
  display: block;
  width: 100%;
  border-radius: 100px;
  background: url(../assets/icons/dropdown.svg) right 16px center/16px no-repeat;
  background-color: #eff5f9;
}
.modal__form-select .custom-select__trigger {
  padding: 20px;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: #293241;
  border: 1px solid #bad5e8;
  outline-color: #2f85c0;
}
.modal__form-select .custom-select__option {
  padding: 16px;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: #293241;
}
.modal__form-select .custom-select__option[data-value=""] {
  color: #878e9c;
}
.modal__form-select:user-invalid {
  border: 1px solid #f46036;
}
.modal__form-date-field .date-field__input {
  min-height: 3.5rem;
  padding: 20px;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: #293241;
  border: 1px solid #bad5e8;
  outline-color: #2f85c0;
}
.modal__form-date-field .date-field__placeholder {
  font-size: 16px;
}
.modal__form-agreement {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
}
.modal__form-agreement::before {
  content: "";
  display: block;
  flex: 0 0 auto;
  width: 22px;
  height: 20px;
  background: url(../assets/icons/checkbox-default.svg) center/cover no-repeat;
}
.modal__form-agreement:has(.modal__form-agreement-checkbox:checked)::before {
  background-image: url(../assets/icons/checkbox-checked.svg);
}
.modal__form-agreement-checkbox {
  position: absolute;
  top: 8px;
  left: 7px;
  display: block;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}
.modal__form-agreement-text {
  font-weight: 400;
  font-size: 12px;
  line-height: 117%;
  letter-spacing: 0.02em;
  color: #878e9c;
}
.modal__form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 16px 0 0;
}
