@charset "UTF-8";
/**
  Нормализация блочной модели
 */
*,
::before,
::after {
  box-sizing: border-box;
}

/**
  Убираем внутренние отступы слева тегам списков,
  у которых есть атрибут class
 */
:where(ul, ol):where([class]) {
  padding-left: 0;
}

/**
  Убираем внешние отступы body и двум другим тегам,
  у которых есть атрибут class
 */
body,
:where(blockquote, figure):where([class]) {
  margin: 0;
}

/**
  Убираем внешние отступы вертикали нужным тегам,
  у которых есть атрибут class
 */
:where(h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl):where([class]) {
  margin-block: 0;
}

:where(dd[class]) {
  margin-left: 0;
}

:where(fieldset[class]) {
  margin-left: 0;
  padding: 0;
  border: none;
}

/**
  Убираем стандартный маркер маркированному списку,
  у которого есть атрибут class
 */
:where(ul[class]) {
  list-style: none;
}

:where(address[class]) {
  font-style: normal;
}

/**
  Обнуляем вертикальные внешние отступы параграфа,
  объявляем локальную переменную для внешнего отступа вниз,
  чтобы избежать взаимодействие с более сложным селектором
 */
p {
  --paragraphMarginBottom: 24px;
  margin-block: 0;
}

/**
  Внешний отступ вниз для параграфа без атрибута class,
  который расположен не последним среди своих соседних элементов
 */
:where(p:not([class]):not(:last-child)) {
  margin-bottom: var(--paragraphMarginBottom);
}

/**
  Упрощаем работу с изображениями и видео
 */
img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

/**
  Наследуем свойства шрифт для полей ввода
 */
input,
textarea,
select,
button {
  font: inherit;
}

html {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  height: 100%;
  /**
    Убираем скачок интерфейса по горизонтали
    при появлении / исчезновении скроллбара
   */
}

/**
  Плавный скролл
 */
html,
:has(:target) {
  scroll-behavior: smooth;
}

body {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  min-height: 100%;
  /**
    Унифицированный интерлиньяж
   */
  line-height: 1.5;
}

/**
  Нормализация высоты элемента ссылки при его инспектировании в DevTools
 */
a:where([class]) {
  display: inline-flex;
}

/**
  Курсор-рука при наведении на элемент
 */
button,
label {
  cursor: pointer;
}

/**
  Чиним баг задержки смены цвета при взаимодействии с svg-элементами
 */
svg * {
  transition-property: fill, stroke;
}

/**
  Приведение рамок таблиц в классический 'collapse' вид
 */
:where(table) {
  border-collapse: collapse;
  border-color: currentColor;
}

/**
  Удаляем все анимации и переходы для людей,
  которые предпочитают их не использовать
 */
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-ExtraLight.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-ExtraBold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-ExtraLightItalic.woff2") format("woff2");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-ExtraBold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-BlackItalic.woff2") format("woff2");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-BoldItalic.woff2") format("woff2");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-LightItalic.woff2") format("woff2");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-MediumItalic.woff2") format("woff2");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-ExtraBoldItalic.woff2") format("woff2");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Italic.woff2") format("woff2");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-ExtraLight.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-ThinItalic.woff2") format("woff2");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-SemiBoldItalic.woff2") format("woff2");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Thin.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
:root {
  --white-color: #fafafa;
  --extra-light-gray-color: #f1f1f1;
  --light-gray-color: #e5e5e5;
  --light-gray-color-opacity: rgba(229, 229, 229, 0.8);
  --gray-color: #858585;
  --gray-color-2: #a5a5a5;
  --light-sky-color: #9eeaff;
  --light-sky-color-2: #cbddf2;
  --light-green-color: #a8e6cf;
  --light-green-color-2: #94f483;
  --dark-green-color-2: #00525f;
  --semi-dark-green-color: #00778a;
  --dark-green-color: #002f38;
  --dark-blue-color: #182939;
  --dark-blue-color-2: #2e4a62;
  --button-blue-opacity: rgba(139, 184, 228, 0.3);
  --scroll-blue-opacity: rgba(139, 184, 228, 0.6);
  --extra-dark-green-color: #001418;
  --night-color: #08121a;
  --main-gradient: linear-gradient(45deg, #94f483 0%, #00c9e6 100%),
    linear-gradient(135deg, #00c9e6 0%, #94f483 100%);
  --reverse-main-gradient: linear-gradient(315deg, #00c9e6 0%, #79c96b 100%);
  --light-gradient: linear-gradient(90deg, #cbddf2 0%, #a8e6cf 100%);
  --trust-gradient: linear-gradient(
    135deg,
    rgba(0, 201, 230, 0.84) 0%,
    rgba(121, 201, 107, 0.84) 100%
  );
  --doctors-gradient: linear-gradient(135deg, #00c9e6 0%, #79c96b 100%);
  --font-family-primary: "Manrope", sans-serif;
  --font-family-accent: "Montserrat", sans-serif;
  --container-width: 81.875rem;
  --container-padding-x: 1.5rem;
  --transition-duration: 0.2s;
  --text-color: #002f38;
  --text-color-light: #858585;
  --accent-color: #00c9e6;
  --accent-hover-color: #00778a;
  --header-promo-height: 2.5rem;
  --header-body-height: 6.25rem;
}
@media (width <= 90.06125rem) {
  :root {
    --container-width: 80rem;
  }
}

.container {
  max-width: calc(var(--container-width) + var(--container-padding-x) * 2);
  margin-inline: auto;
  padding-inline: var(--container-padding-x);
}

.container-sidebar {
  max-width: calc(var(--container-width) + var(--container-padding-x) * 2);
  margin-inline: auto;
  padding-inline: clamp(0.625rem, 0.5294117647rem + 0.3921568627vw, 1rem);
}

.container-desktop {
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 0.1348039216rem + 4.5751633987vw, 5.625rem);
}
@media (width > 120.06125rem) {
  .container-desktop {
    max-width: 80%;
  }
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  clip-path: inset(100%) !important;
  clip: rect(0 0 0 0) !important;
  overflow: hidden !important;
}

@media (width <= 47.99875rem) {
  .hidden-mobile {
    display: none !important;
  }
}

@media (width <= 90.06125rem) {
  .hidden-laptop {
    display: none !important;
  }
}

@media (width <= 63.99875rem) {
  .hidden-tablet {
    display: none !important;
  }
}

@media (width > 47.99875rem) {
  .visible-mobile {
    display: none !important;
  }
}

@media (width > 63.99875rem) {
  .visible-tablet {
    display: none !important;
  }
}

@media (width > 90.06125rem) {
  .visible-laptop {
    display: none !important;
  }
}

html {
  scrollbar-gutter: stable;
}
html.is-lock {
  overflow: hidden;
  touch-action: none;
}

body {
  user-select: none; /* Отключает выделение */
  -webkit-user-select: none; /* Для Safari и старых Chrome */
  -moz-user-select: none; /* Для Firefox */
  -ms-user-select: none;
  font-size: clamp(1rem, 0.8725490196rem + 0.522875817vw, 1.5rem);
  font-family: var(--font-family-primary);
  background-color: var(--white-color);
  position: relative;
  overflow: auto;
  overflow-x: hidden;
}
@media (width > 47.99875rem) {
  body {
    display: flex;
    flex-direction: row;
  }
}
body.is-lock {
  overflow: hidden;
  touch-action: none;
}

body::before {
  content: "";
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle at 30% 70%, #ddfff2 0%, transparent 40%), radial-gradient(circle at 70% 30%, var(--white-color) 0%, transparent 35%), radial-gradient(circle at 50% 50%, #d9ebff 0%, transparent 45%), linear-gradient(120deg, #eafff7, var(--white-color), #d9ebff);
  background-size: 300% 300%, 250% 250%, 350% 350%, 400% 400%;
  animation: gradientBG 40s ease-in-out infinite, waveEffect 44s ease-in-out infinite reverse, pulseEffect 20s ease-in-out infinite;
  pointer-events: none;
}

@media (width <= 47.99875rem) {
  body::before {
    background: radial-gradient(circle at 30% 70%, #ddfff2 0%, transparent 50%), radial-gradient(circle at 70% 30%, var(--white-color) 0%, transparent 45%), radial-gradient(circle at 50% 50%, #d9ebff 0%, transparent 55%), linear-gradient(120deg, #eafff7, var(--white-color), #d9ebff);
    background-size: 200% 200%, 180% 180%, 220% 220%, 250% 250%;
    animation: mobileGradientBG 60s ease-in-out infinite, mobilePulseEffect 30s ease-in-out infinite;
  }
}
@keyframes gradientBG {
  0% {
    background-position: 0% 50%, 0% 0%, 100% 100%, 0% 50%;
  }
  20% {
    background-position: 100% 50%, 100% 100%, 0% 0%, 100% 50%;
  }
  40% {
    background-position: 50% 100%, 50% 0%, 100% 50%, 50% 100%;
  }
  60% {
    background-position: 0% 0%, 100% 50%, 0% 100%, 0% 0%;
  }
  80% {
    background-position: 100% 0%, 0% 100%, 50% 0%, 100% 100%;
  }
  100% {
    background-position: 0% 50%, 0% 0%, 100% 100%, 0% 50%;
  }
}
@keyframes waveEffect {
  0% {
    transform: translateX(0) translateY(0) rotate(0deg);
  }
  25% {
    transform: translateX(15px) translateY(-10px) rotate(2deg);
  }
  50% {
    transform: translateX(-10px) translateY(15px) rotate(-1deg);
  }
  75% {
    transform: translateX(5px) translateY(-5px) rotate(1deg);
  }
  100% {
    transform: translateX(0) translateY(0) rotate(0deg);
  }
}
@keyframes pulseEffect {
  0%, 100% {
    opacity: 1;
    filter: brightness(1);
  }
  50% {
    opacity: 0.95;
    filter: brightness(1.05);
  }
}
body.unlocked {
  overflow: auto;
}

.section-animate {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.section-animate.section-animate--visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 767.98px) {
  .section-animate {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: none !important;
  }
  .section-animate--visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
}
.hero.section-animate {
  opacity: 1;
  transform: translateY(0);
  transition: none;
}

.links.section-animate {
  opacity: 1;
  transform: translateY(0);
  transition: none;
}

.gallery.section-animate {
  opacity: 1;
  transform: translateY(0);
  transition: none;
}

.advantages.section-animate {
  opacity: 1;
  transform: translateY(0);
  transition: none;
}

.map.section-animate {
  opacity: 1;
  transform: translateY(0);
  transition: none;
}

.section-animate:nth-child(2) {
  transition-delay: 0.1s;
}

.section-animate:nth-child(3) {
  transition-delay: 0.1s;
}

.section-animate:nth-child(4) {
  transition-delay: 0.1s;
}

.section-animate:nth-child(5) {
  transition-delay: 0.1s;
}

.section-animate:nth-child(6) {
  transition-delay: 0.1s;
}

.section-animate:nth-child(7) {
  transition-delay: 0.1s;
}

.section-animate:nth-child(8) {
  transition-delay: 0.1s;
}

.section-animate:nth-child(9) {
  transition-delay: 0.1s;
}

.section-animate:nth-child(10) {
  transition-delay: 0.1s;
}

.section-animate:nth-child(11) {
  transition-delay: 0.1s;
}

.section-animate:nth-child(12) {
  transition-delay: 0.1s;
}

main {
  flex: 1 1 0%;
  width: 100%;
  overflow-x: hidden;
}
@media (width > 47.99875rem) {
  main {
    overflow-y: auto;
    overflow-x: hidden;
    margin-left: clamp(12.5rem, 9.6323529412rem + 11.7647058824vw, 23.75rem);
    max-width: calc(100vw - clamp(12.5rem, 9.6323529412rem + 11.7647058824vw, 23.75rem));
  }
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: var(--font-family-accent);
  color: var(--night-color);
}

h1,
.h1 {
  font-size: clamp(2rem, 1.7450980392rem + 1.045751634vw, 3rem);
}

h2,
.h2 {
  font-size: clamp(1.5rem, 1.2450980392rem + 1.045751634vw, 2.5rem);
}

a,
button,
label,
input,
textarea,
select,
svg * {
  transition: var(--transition-duration);
}

a[class] {
  text-decoration: none;
}

:focus-visible {
  outline: 0.125rem dashed var(--light-green-color-2);
  outline-offset: 0.25rem;
  transition-duration: 0s !important;
}

@keyframes mobileGradientBG {
  0% {
    background-position: 0% 50%, 0% 0%, 100% 100%, 0% 50%;
  }
  25% {
    background-position: 50% 100%, 100% 50%, 0% 0%, 50% 100%;
  }
  50% {
    background-position: 100% 50%, 50% 100%, 100% 0%, 100% 50%;
  }
  75% {
    background-position: 50% 0%, 0% 50%, 0% 100%, 50% 0%;
  }
  100% {
    background-position: 0% 50%, 0% 0%, 100% 100%, 0% 50%;
  }
}
@keyframes mobilePulseEffect {
  0%, 100% {
    opacity: 1;
    filter: brightness(1);
  }
  50% {
    opacity: 0.98;
    filter: brightness(1.02);
  }
}
.icon {
  display: inline-flex;
  align-items: center;
  column-gap: 1rem;
}
.icon::before {
  --size: 2.25rem;
  width: var(--size);
  aspect-ratio: 1;
  content: "";
  flex-shrink: 0;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.icon--phone::before {
  background-image: url("../../icons/phone.svg");
}
.icon--mail::before {
  background-image: url("../../icons/mail.svg");
}
.icon--location::before {
  background-image: url("../../icons/pin.svg");
}
.icon--clock::before {
  background-image: url("../../icons/time.svg");
}
.icon--more::after {
  background-image: url("../../icons/arrow-right.svg");
}

.icon1 {
  display: inline-flex;
  align-items: center;
  column-gap: 1rem;
}
.icon1::after {
  --size: 0.875rem;
  width: var(--size);
  aspect-ratio: 1;
  content: "";
  flex-shrink: 0;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.icon1--more::after {
  background-image: url("../../icons/arrow-right.svg");
}
.icon1--zoom::after {
  background-image: url("../../icons/usa-flag.svg");
}

.icon-hero {
  display: inline-flex;
  align-items: center;
  column-gap: 1rem;
}
.icon-hero::after {
  --size: 1.75rem;
  width: var(--size);
  aspect-ratio: 1;
  height: 1lh;
  width: auto;
  content: "";
  flex-shrink: 0;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.icon-hero--zoom::after {
  background-image: url("../../icons/usa-flag.svg");
}

.icon-d {
  display: inline-flex;
  align-items: center;
  column-gap: 1rem;
}
.icon-d::after {
  --size: 1.5rem;
  width: var(--size);
  aspect-ratio: 1;
  content: "";
  flex-shrink: 0;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.icon-d--more::after {
  background-image: url("../../icons/arrow-right-d.svg");
}

.icon-header {
  display: inline-flex;
  align-items: center;
  column-gap: 1.625rem;
}
.icon-header::before {
  --size2: 1.75rem;
  width: var(--size2);
  aspect-ratio: 1;
  content: "";
  flex-shrink: 0;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.icon-header--phone::before {
  background-image: url("../../icons/phone.svg");
}
.icon-header--mail::before {
  background-image: url("../../icons/mail.svg");
}
.icon-header--location::before {
  background-image: url("../../icons/pin.svg");
}
.icon-header--clock::before {
  background-image: url("../../icons/time.svg");
}

.icon--sidebar {
  display: inline-flex;
  align-items: center;
  column-gap: clamp(0.625rem, 0.5294117647rem + 0.3921568627vw, 1rem);
}

.header {
  background-color: var(--white-color);
  position: fixed;
  top: 0;
  z-index: 9999;
  width: 100%;
}
.header__body {
  padding-block: 0.875rem;
  height: var(--header-body-height);
  border-bottom: 2px solid;
  border-image-source: linear-gradient(90deg, #cbddf2 0%, #a8e6cf 100%);
  border-image-slice: 1;
  display: flex;
  position: relative;
  background-color: var(--white-color);
  justify-content: space-between;
  align-items: center;
}
.header__body-inner {
  width: 100%;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.header__buttons {
  display: flex;
  align-items: center;
  column-gap: 1.25rem;
}
.header__burger-button {
  display: block;
  padding: 0;
  margin: 0;
  border: none;
  background-color: transparent;
  border-radius: 50%;
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
}
.header__burger-button .icon-open,
.header__burger-button .icon-close {
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.header__burger-button .icon-close {
  opacity: 0;
  visibility: hidden;
}
.header__burger-button.is-active .icon-open {
  opacity: 0;
  visibility: hidden;
}
.header__burger-button.is-active .icon-close {
  opacity: 1;
  visibility: visible;
}
.header__search-form {
  display: flex;
  align-items: center;
  column-gap: 1rem;
  padding-block: 1.5rem;
  order: 2;
  width: 100%;
}
@media (width > 47.99875rem) {
  .header__search-form {
    width: 100%;
    padding-block: 0;
  }
}
.header__search-input {
  width: 100%;
  height: 2.5rem;
  padding: 0.625rem;
  border: 1px solid var(--light-sky-color-2);
  border-radius: 0.625rem;
}
.header__search-input:focus {
  outline: none;
}
.header__search-button {
  padding: 0;
  margin: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
}
.header__nav {
  width: 100%;
  height: calc(100dvh - var(--header-body-height));
  position: fixed;
  top: var(--header-body-height);
  left: 0;
  transform: translateY(-150%);
  transition: transform 0.4s ease-in-out;
  z-index: 9;
  background-color: var(--white-color);
  border-bottom: 2px solid;
  border-image-source: linear-gradient(90deg, #cbddf2 0%, #a8e6cf 100%);
  border-image-slice: 1;
}
.header__nav-nm {
  height: 100dvh;
}
.header__nav-inner {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 1.875rem;
  height: 100%;
  margin-bottom: 1.875rem;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--button-blue-opacity) #f1f1f1;
}
.header__nav-inner::-webkit-scrollbar {
  width: 0.375rem;
}
.header__nav-inner::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 0.1875rem;
}
.header__nav-inner::-webkit-scrollbar-thumb {
  background: var(--button-blue-opacity);
  border-radius: 0.1875rem;
}
.header__nav-inner::-webkit-scrollbar-thumb:hover {
  background: var(--light-sky-color);
}
.header__nav.is-active {
  transform: translateY(0);
}
.header__nav-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  order: 1;
}
.header__nav-item {
  font-family: var(--font-family-accent);
  font-weight: normal;
  width: 100%;
  border-bottom: 2px solid;
  border-image-source: linear-gradient(90deg, #cbddf2 0%, #a8e6cf 100%);
  border-image-slice: 1;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
@media (width > 47.99875rem) {
  .header__nav-item:hover {
    background-color: var(--button-blue-opacity);
  }
}
.header__nav-link {
  font-size: clamp(1.25rem, 1.1862745098rem + 0.2614379085vw, 1.5rem);
  color: var(--night-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 0.625rem;
  width: 100%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
@media (width > 47.99875rem) {
  .header__nav-link {
    color: var(--white-color);
  }
}
.header__nav-soc1al {
  align-items: center;
  justify-content: center;
  order: 4;
  padding-bottom: 2.5rem;
}
.header__nav-soc1al-list {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 2rem;
}
.header__nav-soc1al-link:hover {
  transform: scale(1.2);
}
.header__nav-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 1.5rem;
  justify-content: center;
  order: 3;
}
.header__nav-info-item {
  width: 100%;
  display: flex;
  align-items: center;
  column-gap: 1rem;
  font-size: clamp(1.25rem, 1.1544117647rem + 0.3921568627vw, 1.625rem);
  color: var(--night-color);
  font-weight: 400;
  font-family: var(--font-family-accent);
}
.header__nav-info-link {
  font-size: clamp(1.25rem, 1.1544117647rem + 0.3921568627vw, 1.625rem);
  color: var(--night-color);
  font-weight: 400;
  text-decoration: none;
  font-family: var(--font-family-accent);
}
.header__nav-info-address {
  font-size: clamp(1.25rem, 1.1544117647rem + 0.3921568627vw, 1.625rem);
  color: var(--night-color);
  font-weight: 400;
  font-family: var(--font-family-accent);
}
.header__nav-info-working-hours {
  font-size: clamp(1.25rem, 1.1544117647rem + 0.3921568627vw, 1.625rem);
  display: flex;
  flex-direction: column;
  row-gap: 0.625rem;
  color: var(--night-color);
}
.header__quality-control-button {
  order: 5;
  background-color: var(--button-blue-opacity);
  border-radius: 0.75rem;
  color: var(--night-color);
  font-size: clamp(1.25rem, 1.1544117647rem + 0.3921568627vw, 1.625rem);
  font-weight: 400;
  line-height: 1;
  font-family: var(--font-family-accent);
  padding-block: 0.625rem;
  width: 95%;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-bottom: 1.875rem;
}
.header__submenu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--white-color);
  border: 1px solid var(--light-sky-color-2);
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  max-height: 400px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--light-sky-color) transparent;
}
.header__submenu::-webkit-scrollbar {
  width: 0.375rem;
}
.header__submenu::-webkit-scrollbar-track {
  background: transparent;
}
.header__submenu::-webkit-scrollbar-thumb {
  background: var(--light-sky-color);
  border-radius: 0.1875rem;
}
.header__submenu::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}
.header__submenu::-webkit-scrollbar-thumb:active {
  background: var(--primary-color);
}
.header__submenu.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header__submenu-header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--light-sky-color-2);
  border-top: 1px solid var(--light-sky-color-2);
  background-color: var(--extra-light-gray-color);
}
.header__submenu-header h3 {
  margin: 0;
  font-size: clamp(1rem, 0.9681372549rem + 0.1307189542vw, 1.125rem);
  font-weight: 600;
  color: var(--night-color);
  font-family: var(--font-family-accent);
}
.header__submenu-item {
  border-bottom: 1px solid #f0f0f0;
}
.header__submenu-item:last-child {
  border-bottom: none;
}
.header__submenu-item:hover {
  background-color: var(--button-blue-opacity);
}
.header__submenu-link {
  display: block;
  padding: 0.75rem 1.25rem;
  color: var(--night-color);
  text-decoration: none;
  font-size: clamp(1.125rem, 1.0931372549rem + 0.1307189542vw, 1.25rem);
  font-weight: 400;
  font-family: var(--font-family-accent);
  transition: color 0.3s ease;
}
.header__submenu-link:hover {
  color: var(--primary-color);
}
.header__submenu-hlink {
  font-size: clamp(1.25rem, 1.1862745098rem + 0.2614379085vw, 1.5rem);
  color: var(--night-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  font-weight: 400;
}
.header__services-link {
  cursor: pointer;
}
.header__services-link:hover {
  color: var(--primary-color);
}

.header__logo-img {
  max-width: clamp(7.9375rem, 6.7745098039rem + 4.7712418301vw, 12.5rem);
}

.footer {
  background-color: var(--extra-dark-green-color);
}
.footer__inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-block: 1.5rem;
  gap: 1.5rem;
}
.footer__body {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}
@media (width > 90.06125rem) {
  .footer__body {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.footer__nav-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 столбца */
  grid-template-rows: repeat(2, auto); /* 2 строки */
  gap: 1.25rem; /* отступы между элементами (по желанию) */
  width: 100%;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--dark-green-color-2);
}
@media (width > 90.06125rem) {
  .footer__nav-list {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
  }
}
.footer__nav-main-link {
  font-family: var(--font-family-accent);
  color: var(--white-color);
  font-size: 1.5rem;
  font-weight: 500;
  padding-bottom: 1rem;
}
.footer__nav-main-link:hover {
  color: var(--light-green-color-2);
}
.footer__nav-link {
  font-family: var(--font-family-accent);
  color: var(--white-color);
  font-size: 1.25rem;
  font-weight: 300;
}
.footer__nav-link:hover {
  color: var(--light-green-color-2);
}
.footer__contacts {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  font-family: var(--font-family-accent);
  color: var(--white-color);
  font-weight: 300;
}
@media (width <= 47.99875rem) {
  .footer__contacts {
    font-size: clamp(14px, 8.57vw - 16.86px, 20px);
  }
}
.footer__contacts-link {
  text-decoration: none;
  color: inherit;
}
.footer__contacts-link:hover {
  color: var(--light-green-color-2);
}
.footer__logo {
  width: max-content;
  margin: 0 auto;
  margin-top: 3.5rem;
  width: 20%;
  height: auto;
}
@media (width <= 90.06125rem) {
  .footer__logo {
    width: 40%;
  }
}
.footer__logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer__soc1al-list {
  display: flex;
  gap: 2.25rem;
  justify-content: center;
  transition: all 0.3s ease;
}
.footer__soc1al-link {
  transition: all 0.3s ease;
}
.footer__soc1al-link:hover {
  transform: scale(1.2);
}
.footer__extra-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer__extra-item {
  font-family: var(--font-family-accent);
  font-size: 0.875rem;
  font-weight: 200;
  color: var(--extra-light-gray-color);
  text-align: center;
}
.footer__extra-item:nth-child(2) {
  color: var(--gray-color);
}

.footer__appointment {
  margin-block: 2rem;
  text-align: center;
}

.footer__appointment-button {
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #00c9e6, #79c96b);
  color: var(--white-color);
  border: none;
  border-radius: 1rem;
  font-size: clamp(1.5rem, 1.4044117647rem + 0.3921568627vw, 1.875rem);
  font-weight: 600;
  font-family: var(--font-family-accent);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 201, 230, 0.3);
  min-width: 200px;
}
.footer__appointment-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 201, 230, 0.4);
}
@media (width > 90.06125rem) {
  .footer__appointment-button {
    margin-top: 1.5rem;
  }
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100dvh;
  overflow-y: auto;
  flex-shrink: 0;
  width: clamp(12.5rem, 9.6323529412rem + 11.7647058824vw, 23.75rem);
  max-width: 26.875rem;
  z-index: 20;
  transition: background-color 0.3s ease;
}
.sidebar__inner {
  position: sticky;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.sidebar__body {
  height: auto;
  width: 100%;
  display: flex;
  position: relative;
  flex-shrink: 0;
  padding-block: 1.875rem;
  border: none;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.4);
  z-index: 10;
  transition: background-color 0.3s ease;
}
.sidebar__body-inner {
  width: 100%;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  row-gap: 1.5rem;
}
.sidebar__appointment-button {
  background-color: var(--button-blue-opacity);
  border-radius: 0.75rem;
  color: var(--white-color);
  font-size: clamp(0.75rem, 0.5269607843rem + 0.9150326797vw, 1.625rem);
  font-weight: 400;
  line-height: 1;
  font-family: var(--font-family-accent);
  padding-block: 0.625rem;
  width: 100%;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.sidebar__appointment-button:hover {
  transform: translateY(-2px);
  background-color: var(--scroll-blue-opacity);
  box-shadow: 0 0 0.625rem 0.125rem rgba(255, 255, 255, 0.1);
}
.sidebar__search-form {
  display: flex;
  width: 100%;
  align-items: center;
  column-gap: clamp(0.25rem, 0.0588235294rem + 0.7843137255vw, 1rem);
  padding-block: 0rem;
}
.sidebar__search-input {
  width: clamp(8.125rem, 5.7352941176rem + 9.8039215686vw, 17.5rem);
  height: 2.5rem;
  padding: 0.625rem;
  border: 1px solid var(--light-sky-color-2);
  border-radius: 0.625rem;
  transition: all 0.3s ease;
}
.sidebar__search-input:focus {
  outline: none;
}
.sidebar__search-input:hover {
  transform: translateY(-2px);
}
.sidebar__search-button {
  padding: 0;
  margin: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
.sidebar__search-button:hover {
  transform: scale(1.2);
}
.sidebar__nav {
  width: 100%;
  position: relative;
  left: 0;
  z-index: 16;
  height: 100%;
  overflow-y: auto;
  transition: background-color 0.3s ease;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.sidebar__nav::-webkit-scrollbar {
  display: none;
}
.sidebar__nav::after {
  content: "";
  position: fixed;
  bottom: 0;
  left: 0;
  width: clamp(12.5rem, 9.6323529412rem + 11.7647058824vw, 23.75rem);
  height: 50px; /* высота градиента */
  pointer-events: none; /* чтобы не мешал кликам */
  background: linear-gradient(180deg, rgba(193, 235, 240, 0) 0%, #011519 100%);
}
.sidebar__nav-inner {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  row-gap: 1.875rem;
  height: 110vh;
  margin-bottom: 1.875rem;
}
.sidebar__nav-list {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.sidebar__nav-item {
  font-family: var(--font-family-accent);
  font-weight: normal;
  width: 100%;
  border-bottom: 2px solid;
  border-image-source: linear-gradient(90deg, #cbddf2 0%, #a8e6cf 100%);
  border-image-slice: 1;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.sidebar__nav-item:hover {
  background-color: var(--button-blue-opacity);
}
.sidebar__nav-item.has-submenu .sidebar__nav-arrow {
  transition: transform 0.3s ease;
}
.sidebar__nav-item.has-submenu.is-open .sidebar__nav-arrow {
  transform: rotate(90deg);
}
.sidebar__nav-link {
  font-size: clamp(1.25rem, 1.1862745098rem + 0.2614379085vw, 1.5rem);
  color: var(--night-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 0.625rem;
  width: 100%;
  padding-top: 0.9375rem;
  padding-bottom: 0.9375rem;
  color: var(--white-color);
}
.sidebar__nav-soc1al {
  align-items: center;
  justify-content: center;
}
.sidebar__nav-soc1al-list {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 2rem;
}
.sidebar__nav-soc1al-link {
  transition: all 0.3s ease;
}
.sidebar__nav-soc1al-link:hover {
  transform: scale(1.2);
}
.sidebar__nav-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 1.5rem;
  justify-content: center;
}
.sidebar__nav-info-item {
  width: 100%;
  display: flex;
  align-items: center;
  column-gap: 0.625rem;
  font-size: clamp(1rem, 0.8725490196rem + 0.522875817vw, 1.5rem);
  color: var(--white-color);
  font-weight: 300;
  font-family: var(--font-family-accent);
}
.sidebar__nav-info-link {
  font-size: clamp(1rem, 0.8725490196rem + 0.522875817vw, 1.5rem);
  color: var(--white-color);
  font-weight: 300;
  text-decoration: underline !important;
  font-family: var(--font-family-accent);
  transition: all 0.3s ease;
}
.sidebar__nav-info-link:hover {
  color: var(--light-green-color-2);
}
.sidebar__nav-info-address {
  font-size: clamp(1rem, 0.8725490196rem + 0.522875817vw, 1.5rem);
  color: var(--white-color);
  font-weight: 300;
  font-family: var(--font-family-accent);
}
.sidebar__nav-info-working-hours {
  font-size: clamp(1rem, 0.8725490196rem + 0.522875817vw, 1.5rem);
  display: flex;
  font-weight: 300;
  flex-direction: column;
  row-gap: 0.625rem;
  color: var(--white-color);
}
.sidebar__submenu {
  position: fixed;
  top: 0;
  left: 100%;
  width: 21.875rem;
  height: 100dvh;
  background-color: var(--white-color);
  z-index: 15;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100%);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-left: 2px solid var(--light-sky-color);
  overflow-y: auto;
}
.sidebar__submenu::-webkit-scrollbar {
  width: 6px;
}
.sidebar__submenu::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}
.sidebar__submenu::-webkit-scrollbar-thumb {
  background: var(--button-blue-opacity);
  border-radius: 3px;
}
.sidebar__submenu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.sidebar__submenu-header {
  padding-block: 1.25rem;
  padding-inline: 1.25rem;
  background-color: var(--extra-light-gray-color);
  border-bottom: 1px solid var(--light-sky-color-2);
}
.sidebar__submenu-header h3 {
  font-size: clamp(1.375rem, 1.3431372549rem + 0.1307189542vw, 1.5rem);
  font-family: var(--font-family-accent);
  font-weight: 600;
  color: var(--night-color);
  margin: 0;
}
.sidebar__submenu-item:last-child {
  margin-bottom: 0;
}
.sidebar__submenu-hlink {
  font-size: clamp(1.375rem, 1.3431372549rem + 0.1307189542vw, 1.5rem);
  font-family: var(--font-family-accent);
  font-weight: 600;
  color: var(--night-color);
  margin: 0;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.sidebar__submenu-hlink:hover {
  color: var(--semi-dark-green-color);
}
.sidebar__submenu-link {
  display: block;
  padding: 1.25rem;
  color: var(--night-color);
  text-decoration: none;
  font-size: clamp(1.125rem, 1.0931372549rem + 0.1307189542vw, 1.25rem);
  font-family: var(--font-family-accent);
  font-weight: 400;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid var(--light-sky-color-2);
}
.sidebar__submenu-link:hover {
  background-color: var(--button-blue-opacity);
  color: var(--night-color);
  border-color: var(--button-blue-opacity);
}

.aside-menu {
  position: fixed;
  top: 5%;
  left: clamp(13.75rem, 10.8823529412rem + 11.7647058824vw, 25rem);
  transform: translateY(-50%);
  z-index: 100;
}
@media (width <= 63.99875rem) {
  .aside-menu {
    display: none;
  }
}
@media (width > 63.99875rem) {
  .aside-menu {
    display: block;
  }
}
.aside-menu__toggle {
  background: var(--dark-green-color);
  border: none;
  border-radius: 0.5rem;
  padding: 0.75rem;
  cursor: pointer;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.aside-menu__toggle:hover {
  background: var(--dark-green-color-2);
  transform: scale(1.05);
}
.aside-menu__toggle:active {
  transform: scale(0.95);
}
.aside-menu__toggle-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #fff;
  transition: all 0.2s ease;
}
.aside-menu__nav {
  background: var(--dark-green-color);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.15);
  min-width: 12.5rem;
  position: absolute;
  left: 3.75rem;
  top: 0;
  transform: translateY(0);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.2s ease;
}
.aside-menu.is-open .aside-menu__nav {
  opacity: 0.5;
  visibility: visible;
  pointer-events: auto;
}
.aside-menu:hover.is-open .aside-menu__nav {
  opacity: 1;
}
.aside-menu.auto-closing .aside-menu__nav {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.4s ease-out;
}
.aside-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.aside-menu__item {
  margin: 0;
}
.aside-menu__link {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: clamp(1rem, 0.9362745098rem + 0.2614379085vw, 1.25rem);
  line-height: 1.4;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  transition: all 0.2s ease;
  position: relative;
}
.aside-menu__link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--light-sky-color);
  transform: translateX(0.25rem);
}
.aside-menu__link.is-active {
  background: var(--light-sky-color);
  color: var(--extra-dark-green-color);
  font-weight: 600;
}
.aside-menu__link.is-active::before {
  content: "";
  position: absolute;
  left: -0.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.25rem;
  height: 1.25rem;
  background: var(--light-sky-color);
  border-radius: 0.125rem;
}
.aside-menu__link::after {
  content: "";
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.375rem;
  height: 0.375rem;
  background: var(--light-sky-color);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.aside-menu__link.is-active::after {
  opacity: 1;
}

@media (width > 90.06125rem) {
  .aside-menu__nav {
    padding: 1.25rem;
    min-width: 18.75rem;
    right: 4.375rem;
  }
  .aside-menu__toggle {
    padding: 0.875rem;
  }
  .aside-menu__toggle-icon {
    width: 1.375rem;
    height: 1.375rem;
  }
}
.hero-swiper {
  width: 100%;
  height: calc(100vh - var(--header-body-height));
  margin-top: var(--header-body-height);
  background: var(--main-gradient);
}
@media (width > 47.99875rem) {
  .hero-swiper {
    height: 100dvh;
    margin-top: 0;
  }
}

.hero-slide {
  height: 100%;
  position: relative;
}
.hero-slide__hint {
  font-size: 1rem;
  color: var(--gray-color-2);
}
.hero-slide--whitening {
  background: url(../img/hero-first-image.webp) no-repeat center center/cover;
  overflow: hidden;
}
@media (width > 47.99875rem) {
  .hero-slide--whitening {
    background: url(../img/hero-first-image-desktop.webp) no-repeat center center/cover;
  }
}
.hero-slide--hygiene {
  background: url(../img/hero-second-image.webp) no-repeat center center/cover, linear-gradient(rgb(255, 255, 255), rgb(255, 255, 255));
  overflow: hidden;
}
@media (width > 47.99875rem) {
  .hero-slide--hygiene {
    background: url(../img/hero-second-image-desktop.webp) no-repeat center center/cover, linear-gradient(rgb(255, 255, 255), rgb(255, 255, 255));
  }
}
.hero-slide--implantation {
  background: url(../img/hero-third-image.webp) no-repeat center center/cover;
  overflow: hidden;
}
@media (width > 47.99875rem) {
  .hero-slide--implantation {
    background: url(../img/hero-third-image-desktop.webp) no-repeat center center/cover;
  }
}
.hero-slide--whitening .hero-slide__inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: 100%;
  margin-top: 1.5rem;
}
@media (width > 47.99875rem) {
  .hero-slide--whitening .hero-slide__inner {
    justify-content: flex-end;
    margin-top: 0;
    padding-bottom: 3rem;
  }
}
.hero-slide--hygiene .hero-slide__inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: 100%;
  margin-top: 1.5rem;
  position: relative;
}
@media (width > 47.99875rem) {
  .hero-slide--hygiene .hero-slide__inner {
    justify-content: flex-end;
    margin-top: 0;
    padding-bottom: 3rem;
  }
}
.hero-slide--implantation .hero-slide__inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: 100%;
  margin-top: 1.5rem;
  position: relative;
}
@media (width > 47.99875rem) {
  .hero-slide--implantation .hero-slide__inner {
    justify-content: flex-end;
    margin-top: 0;
    padding-bottom: 3rem;
  }
}
.hero-slide--whitening .hero-slide__title {
  max-width: 72.125rem;
  font-size: clamp(2.5rem, 1.6078431373rem + 3.660130719vw, 6rem);
  color: var(--light-sky-color);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  margin-top: 1.5rem;
  font-weight: 700;
}
@media (width > 47.99875rem) {
  .hero-slide--whitening .hero-slide__title {
    line-height: 100%;
  }
}
.hero-slide--hygiene .hero-slide__title {
  max-width: 72.125rem;
  font-size: clamp(2rem, 0.9803921569rem + 4.1830065359vw, 6rem);
  color: var(--night-color);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  margin-top: 1.5rem;
  font-weight: 700;
  line-height: 100%;
}
@media (width > 47.99875rem) {
  .hero-slide--hygiene .hero-slide__title {
    line-height: 100%;
  }
}
.hero-slide--implantation .hero-slide__title {
  max-width: 72.125rem;
  font-size: clamp(3rem, 2.2352941176rem + 3.137254902vw, 6rem);
  color: var(--dark-green-color);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  margin-top: 1.5rem;
  font-weight: 700;
  line-height: 100%;
}
@media (width > 47.99875rem) {
  .hero-slide--implantation .hero-slide__title {
    line-height: 100%;
  }
}
.hero-slide--whitening .hero-slide__price {
  color: var(--light-green-color-2);
  text-decoration: underline;
  text-underline-offset: 0.25rem;
  text-decoration-thickness: 0.25rem;
  text-decoration-color: var(--light-green-color-2);
}
.hero-slide--hygiene .hero-slide__price {
  color: #00C9E6;
  text-decoration: underline;
  text-underline-offset: 0.25rem;
  text-decoration-thickness: 0.25rem;
  text-decoration-color: #00C9E6;
  font-size: clamp(2.5rem, 1.2254901961rem + 5.2287581699vw, 7.5rem);
}
.hero-slide--whitening .hero-slide__subtitle {
  font-size: clamp(1.5rem, 1.2769607843rem + 0.9150326797vw, 2.375rem);
  color: var(--light-sky-color-2);
  margin-top: clamp(1.75rem, 1.5588235294rem + 0.7843137255vw, 2.5rem);
  font-weight: 400;
  font-family: var(--font-family-accent);
}
@media (width > 47.99875rem) {
  .hero-slide--whitening .hero-slide__subtitle {
    line-height: 100%;
  }
}
.hero-slide--hygiene .hero-slide__subtitle {
  font-size: clamp(1.5rem, 1.2769607843rem + 0.9150326797vw, 2.375rem);
  color: var(--night-color);
  margin-top: clamp(0.25rem, -0.3235294118rem + 2.3529411765vw, 2.5rem);
  font-weight: 400;
  font-family: var(--font-family-accent);
}
@media (width > 47.99875rem) {
  .hero-slide--hygiene .hero-slide__subtitle {
    line-height: 100%;
  }
}
.hero-slide--implantation .hero-slide__subtitle {
  font-size: clamp(1.5rem, 1.2769607843rem + 0.9150326797vw, 2.375rem);
  color: var(--dark-green-color-2);
  margin-top: clamp(1.5rem, 1.2450980392rem + 1.045751634vw, 2.5rem);
  font-weight: 400;
  font-family: var(--font-family-accent);
}
@media (width > 47.99875rem) {
  .hero-slide--implantation .hero-slide__subtitle {
    line-height: 100%;
  }
}
.hero-slide--implantation .hero-slide__subtitle-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-top: clamp(1.25rem, 0.931372549rem + 1.3071895425vw, 2.5rem);
}
.hero-slide__subtitle-item {
  font-size: clamp(1.25rem, 1.0588235294rem + 0.7843137255vw, 2rem);
  font-weight: 400;
  font-family: var(--font-family-accent);
  color: var(--dark-green-color-2);
  display: inline-flex;
  align-items: center;
  column-gap: 0.75rem;
  position: relative;
}
.hero-slide__subtitle-item::before {
  content: "✓";
  left: 0;
  top: 0;
  color: var(--dark-green-color-2);
  font-size: clamp(1.25rem, 1.0588235294rem + 0.7843137255vw, 2rem);
  font-weight: 400;
}
.hero-slide--hygiene .hero-slide__price1 {
  color: var(--dark-blue-color-2);
  text-decoration: line-through;
  text-underline-offset: 0.25rem;
  text-decoration-thickness: 0.25rem;
  text-decoration-color: var(--dark-blue-color-2);
}
.hero-slide--whitening .hero-slide__buttons {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-top: 1rem;
}
@media (width > 47.99875rem) {
  .hero-slide--whitening .hero-slide__buttons {
    margin-top: 2.875rem;
    flex-direction: row;
    column-gap: clamp(1rem, 0.6176470588rem + 1.568627451vw, 2.5rem);
  }
}
.hero-slide--hygiene .hero-slide__buttons {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  position: relative;
  margin-top: 1.25rem;
}
@media (width > 47.99875rem) {
  .hero-slide--hygiene .hero-slide__buttons {
    margin-top: 2.875rem;
    flex-direction: row;
    column-gap: clamp(1rem, 0.6176470588rem + 1.568627451vw, 2.5rem);
  }
}
.hero-slide--implantation .hero-slide__buttons {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  position: relative;
  margin-top: 1.25rem;
}
@media (width > 47.99875rem) {
  .hero-slide--implantation .hero-slide__buttons {
    margin-top: 2.875rem;
    flex-direction: row;
    column-gap: clamp(1rem, 0.6176470588rem + 1.568627451vw, 2.5rem);
  }
}
.hero-slide--whitening .hero-slide__button--appointment {
  border-radius: 1.25rem;
  font-size: clamp(2rem, 1.7450980392rem + 1.045751634vw, 3rem);
  font-weight: 700;
  padding-block: 0.25rem;
  padding-inline: 1.5rem;
  background: var(--main-gradient);
  color: var(--white-color);
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (width > 90.06125rem) {
  .hero-slide--whitening .hero-slide__button--appointment:hover {
    box-shadow: 0 0 10px 2px rgba(171, 255, 220, 0.4);
    transform: translateY(-2px);
  }
}
.hero-slide--hygiene .hero-slide__button--appointment {
  border-radius: 1.25rem;
  font-size: clamp(2rem, 1.7450980392rem + 1.045751634vw, 3rem);
  font-weight: 700;
  padding-block: 0.25rem;
  padding-inline: 1.5rem;
  background: #2E4A62;
  border: none;
  color: var(--white-color);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (width > 90.06125rem) {
  .hero-slide--hygiene .hero-slide__button--appointment:hover {
    box-shadow: 0 0 10px 2px rgba(7, 12, 87, 0.4);
    transform: translateY(-2px);
  }
}
.hero-slide--implantation .hero-slide__button--appointment {
  border-radius: 1.25rem;
  font-size: clamp(2rem, 1.7450980392rem + 1.045751634vw, 3rem);
  font-weight: 700;
  padding-block: 0.25rem;
  padding-inline: 1.5rem;
  background: linear-gradient(90deg, #008599 0%, #169600 100%);
  border: none;
  color: var(--white-color);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (width > 90.06125rem) {
  .hero-slide--implantation .hero-slide__button--appointment:hover {
    box-shadow: 0 0 10px 2px rgba(19, 122, 79, 0.4);
    transform: translateY(-2px);
  }
}
.hero-slide--whitening .hero-slide__button--more {
  --border-color: linear-gradient(90deg, #cbddf2 0%, #a8e6cf 100%);
  --border-width: 2px;
  font-family: var(--font-family-accent);
  padding-block: 0.25rem;
  width: max-content;
  padding-inline: 1.5rem;
  font-size: clamp(1.5rem, 1.3725490196rem + 0.522875817vw, 2rem);
  font-weight: 300;
  color: var(--white-color);
  background: none;
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border-radius: 1rem;
}
.hero-slide--whitening .hero-slide__button--more::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: var(--border-width);
  background-image: var(--border-color);
  border-radius: inherit;
  mask: conic-gradient(#000 0 0) content-box exclude, conic-gradient(#000 0 0);
}
@media (width > 90.06125rem) {
  .hero-slide--whitening .hero-slide__button--more:hover {
    box-shadow: 0 0 20px 10px rgba(171, 255, 220, 0.4);
    transform: translateY(-2px);
  }
}
.hero-slide--hygiene .hero-slide__button--more {
  font-family: var(--font-family-accent);
  padding-block: 0.25rem;
  width: max-content;
  padding-inline: 1.5rem;
  font-size: clamp(1.5rem, 1.3725490196rem + 0.522875817vw, 2rem);
  font-weight: 300;
  color: var(--white-color);
  background: #466D8F;
  border: none;
  position: relative;
  border-radius: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (width > 90.06125rem) {
  .hero-slide--hygiene .hero-slide__button--more:hover {
    box-shadow: 0 0 10px 2px rgba(7, 12, 87, 0.4);
    transform: translateY(-2px);
  }
}
.hero-slide--implantation .hero-slide__button--more {
  font-family: var(--font-family-accent);
  padding-block: 0.25rem;
  width: max-content;
  padding-inline: 1.5rem;
  font-size: clamp(1.5rem, 1.3725490196rem + 0.522875817vw, 2rem);
  font-weight: 300;
  color: var(--white-color);
  background: var(--dark-green-color-2);
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border-radius: 1rem;
}
@media (width > 90.06125rem) {
  .hero-slide--implantation .hero-slide__button--more:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 10px 2px rgba(19, 122, 79, 0.4);
  }
}
.hero-slide__skip {
  width: clamp(3.125rem, 2.6470588235rem + 1.9607843137vw, 5rem);
  height: clamp(3.125rem, 2.6470588235rem + 1.9607843137vw, 5rem);
  border-radius: 50%;
  background: rgba(136, 255, 205, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.363);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  margin: 0 auto;
  margin-top: 1.25rem;
  animation: bounceDown 2s infinite ease-in-out;
}
.hero-slide__skip--blue {
  background: rgba(44, 78, 129, 0.377);
  width: clamp(3.125rem, 2.6470588235rem + 1.9607843137vw, 5rem);
  height: clamp(3.125rem, 2.6470588235rem + 1.9607843137vw, 5rem);
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.363);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  margin: 0 auto;
  margin-top: 1.25rem;
  animation: bounceDown 2s infinite ease-in-out;
}
.hero-slide__skip--blue svg {
  width: clamp(1.5rem, 1.3725490196rem + 0.522875817vw, 2rem);
  height: clamp(1.5rem, 1.3725490196rem + 0.522875817vw, 2rem);
  transform: translateY(0px);
}
.hero-slide__skip--blue svg path {
  stroke: rgba(255, 255, 255, 0.8);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-slide__skip svg {
  width: clamp(1.5rem, 1.3725490196rem + 0.522875817vw, 2rem);
  height: clamp(1.5rem, 1.3725490196rem + 0.522875817vw, 2rem);
  transform: translateY(0px);
}
.hero-slide__skip svg path {
  stroke: rgba(255, 255, 255, 0.8);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-slide__skip:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.8);
}
.hero-slide__skip:hover svg path {
  stroke: rgb(255, 255, 255);
}

@keyframes bounceDown {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-2px);
  }
  100% {
    transform: translateY(0px);
  }
}
.swiper-pagination-bullet {
  background: var(--semi-dark-green-color); /* Цвет неактивной точки */
  opacity: 1;
  width: 10px;
  height: 10px;
  margin: 0 6px !important;
  transition: all 0.3s ease;
  border-radius: 50%;
}

.swiper-pagination-bullet-active {
  background: var(--light-green-color-2); /* Цвет активной точки */
  transform: scale(1.3);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--semi-dark-green-color); /* Цвет иконки */
  border-radius: 50%; /* Круглая форма */
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

/* Ховер-эффект */
.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: var(--light-green-color-2); /* Цвет иконки */
}

/* Меняем размер стрелки */
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 48px;
}

.directions {
  margin-top: 7.5rem;
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}
.directions__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.directions__title {
  font-size: clamp(2rem, 1.7450980392rem + 1.045751634vw, 3rem);
  font-family: var(--font-family-accent);
  font-weight: 700;
  color: var(--night-color);
  margin: 0;
}
.directions__tabs {
  position: relative;
}
.directions__content {
  position: relative;
}
.directions__grid {
  position: absolute;
  top: 0;
  left: 0;
  height: max-content;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(5, auto);
  gap: 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media (width <= 63.99875rem) {
  .directions__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(6, auto);
  }
}
@media (width > 63.99875rem) {
  .directions__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(6, auto);
  }
}
@media (width > 90.06125rem) {
  .directions__grid {
    grid-template-columns: repeat(5, 1fr); /* 5 столбцов одинаковой ширины */
    grid-template-rows: repeat(3, auto);
  }
}
.directions__grid.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.directions-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
  width: 100%;
  border-radius: 1rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  box-shadow: 0 0 10px 2px rgba(0, 120, 138, 0.2);
  transform-origin: center;
  transition: box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (width > 47.99875rem) {
  .directions-card {
    min-height: 15.625rem;
  }
  .directions-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 10px 2px rgba(0, 120, 138, 0.377);
  }
}
.directions-card:nth-child(4n-3), .directions-card:nth-child(4n-2) {
  background-color: var(--extra-light-gray-color);
}
.directions-card:nth-child(4n-1), .directions-card:nth-child(4n) {
  background-color: var(--white-color);
}
@media (width > 47.99875rem) {
  .directions-card:nth-child(4n-1), .directions-card:nth-child(4n) {
    background-color: var(--extra-light-gray-color);
  }
}
.directions-card__icon {
  width: auto;
  height: 4.625rem;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (width > 47.99875rem) {
  .directions-card__icon {
    height: 6.25rem;
  }
}
@media (width > 90.06125rem) {
  .directions-card__icon {
    height: 7.25rem;
  }
}
.directions-card__title {
  display: inline-block;
  font-size: clamp(1.125rem, 1.0294117647rem + 0.3921568627vw, 1.5rem);
  max-width: 95%;
  text-align: center;
  text-decoration: none;
  font-family: var(--font-family-accent);
  font-weight: 400;
  color: var(--night-color);
  transition: font-size 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (width > 63.99875rem) {
  .directions-card__title {
    font-size: clamp(1.25rem, 1.1862745098rem + 0.2614379085vw, 1.5rem);
    max-width: 95%;
  }
}
@media (width > 90.06125rem) {
  .directions-card__title {
    max-width: 95%;
    font-size: clamp(0.375rem, 0.0882352941rem + 1.1764705882vw, 1.5rem);
  }
}
.directions .directions-card--all-services {
  grid-column: 1/-1;
  background: var(--main-gradient);
  color: var(--white-color);
  padding: 1.25rem 1.5rem;
  transition: all 0.4s ease-in;
  min-height: auto;
  box-shadow: 0 0 10px 2px rgba(0, 120, 138, 0.2);
}
@media (width > 90.06125rem) {
  .directions .directions-card--all-services {
    padding: 1.875rem 2rem;
    margin-top: 2rem;
  }
}
.directions .directions-card--all-services .directions-card__title {
  color: var(--white-color);
  font-weight: 600;
  font-size: clamp(1.5rem, 1.4362745098rem + 0.2614379085vw, 1.75rem);
  text-align: center;
}
.directions .directions-card--all-services:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 10px 2px rgba(0, 120, 138, 0.377);
}

.tabs {
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
  position: relative;
  width: fit-content;
  max-width: 18.125rem;
}
@media (width > 47.99875rem) {
  .tabs {
    max-width: 25rem;
  }
}
.tabs__inner {
  display: flex;
  column-gap: 1.875rem;
  width: fit-content;
  max-width: 18.125rem;
}
@media (width > 47.99875rem) {
  .tabs__inner {
    max-width: 25rem;
  }
}
.tabs__input {
  display: none;
}
.tabs__label {
  font-size: clamp(1.25rem, 1.1862745098rem + 0.2614379085vw, 1.5rem);
  font-weight: 400;
  color: var(--gray-color-2);
  cursor: pointer;
  transition: color 0.3s ease;
}
@media (width > 90.06125rem) {
  .tabs__label:hover {
    color: var(--semi-dark-green-color);
  }
}
.tabs__input:checked + .tabs__label {
  color: var(--dark-green-color-2);
}
.tabs__underline {
  position: relative;
  width: 100%;
  height: 0.1875rem;
  display: flex;
  gap: 32px;
  border-radius: 3.125rem;
  background-color: var(--light-gray-color);
}
@media (width > 47.99875rem) {
  .tabs__underline {
    height: 0.25rem;
  }
}
.tabs__active {
  height: 100%;
  background-color: var(--semi-dark-green-color);
  width: 3.125rem;
  border-radius: 3.125rem;
  transition: transform 0.3s ease, width 0.3s ease;
}

.trust {
  margin-top: 7.5rem;
  position: relative;
  padding-block: 1.5rem;
  padding-bottom: 2.5rem;
  background-color: var(--dark-green-color);
  width: 100%;
}
@media (width > 90.06125rem) {
  .trust {
    background-color: var(--white-color);
  }
}
.trust__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}
.trust__title {
  font-size: clamp(2rem, 1.7450980392rem + 1.045751634vw, 3rem);
  font-weight: 700;
  color: var(--white-color);
}
@media (width > 90.06125rem) {
  .trust__title {
    color: var(--night-color);
    width: max-content;
  }
}
.trust__text {
  font-size: clamp(1.25rem, 1.1862745098rem + 0.2614379085vw, 1.5rem);
  font-weight: 300;
  color: var(--extra-light-gray-color);
  hyphens: auto;
  -webkit-hyphens: auto;
}
@media (width > 90.06125rem) {
  .trust__text {
    color: var(--dark-green-color);
  }
}
.trust__cards {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}
.trust__card {
  display: flex;
  flex-direction: row;
  column-gap: 1.5rem;
  align-items: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-block: 0.75rem;
  border-radius: 1rem;
  justify-content: flex-start;
  background-color: var(--light-gray-color-opacity);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px) brightness(0.7);
}
@media (width > 90.06125rem) {
  .trust__card {
    filter: blur(6px) brightness(0.95);
    padding-left: clamp(1rem, 0.7450980392rem + 1.045751634vw, 2rem);
    width: clamp(6.25rem, -0.1225490196rem + 26.1437908497vw, 31.25rem);
    background-color: var(--light-gray-color);
    transition: filter 0.3s ease-out;
  }
  .trust__card.no-blur {
    filter: none !important;
  }
}
@media (width > 90.06125rem) and (width > 120.06125rem) {
  .trust__card {
    width: clamp(34.375rem, -12.5rem + 39.0625vw, 50rem);
  }
}
.trust__card--gradient {
  background: var(--trust-gradient);
  color: var(--white-color);
  justify-content: flex-start;
}
.trust__card-img {
  width: 4.625rem;
  height: auto;
}
@media (width > 63.99875rem) {
  .trust__card-img {
    width: clamp(4.625rem, 4.1470588235rem + 1.9607843137vw, 6.5rem);
  }
}
.trust__card-text {
  font-size: clamp(1.25rem, 1.1862745098rem + 0.2614379085vw, 1.5rem);
  font-weight: 400;
  font-family: var(--font-family-accent);
  color: var(--white-color);
}
@media (width > 90.06125rem) {
  .trust__card-text {
    color: var(--dark-blue-color);
    font-size: clamp(0.625rem, 0.4019607843rem + 0.9150326797vw, 1.5rem);
  }
}
.trust__card-text-accent {
  color: var(--light-sky-color);
  text-decoration: underline;
  text-underline-offset: 0.125rem;
}
@media (width > 90.06125rem) {
  .trust__card-text-accent {
    color: var(--dark-green-color-2);
  }
}
.trust__button {
  margin-block: 1.875rem;
  width: 100%;
  line-height: 100%;
  border-radius: 1rem;
  font-family: var(--font-family-accent);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--white-color);
  background: var(--trust-gradient);
  padding-block: 1.25rem;
  padding-inline: 1rem;
  border: none;
  transition: all 0.3s ease;
}
.trust__button:hover {
  box-shadow: 0 0 10px 2px #8bb8e4;
  transform: translateY(-2px);
}
.trust__bubbles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}
.trust__bubble {
  position: absolute;
  border-radius: 50%;
  opacity: 0.4;
  mix-blend-mode: screen;
  background: rgba(148, 244, 131, 0.36);
  animation: float infinite linear;
}
.trust__bubble.bubble-1 {
  width: 16.9375rem;
  height: 16.9375rem;
  top: 5%;
  left: 10%;
  animation-duration: 30s;
  animation-delay: 0s;
  background: rgba(70, 109, 143, 0.46);
}
.trust__bubble.bubble-2 {
  width: 25.5rem;
  height: 25.5rem;
  top: 50%;
  left: 5%;
  animation-duration: 40s;
  animation-delay: -5s;
  background: rgba(168, 230, 207, 0.7);
}
.trust__bubble.bubble-3 {
  width: 12.25rem;
  height: 12.25rem;
  top: 70%;
  left: 30%;
  animation-duration: 50s;
  animation-delay: -10s;
}
.trust__bubble.bubble-4 {
  width: 7.5rem;
  height: 7.5rem;
  top: 30%;
  left: 20%;
  animation-duration: 60s;
  animation-delay: -20s;
  background: rgba(158, 234, 255, 0.3);
}
@keyframes float {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }
  25% {
    transform: translate(20px, -30px) scale(1.1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-10px, 20px) scale(0.95);
    opacity: 0.4;
  }
  75% {
    transform: translate(30px, -10px) scale(1.05);
    opacity: 0.6;
  }
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }
}

.cards__row-overlay {
  display: contents;
}
@media (width <= 63.99875rem) {
  .cards__row-overlay {
    display: contents;
  }
}
@media (width > 90.06125rem) {
  .cards__row-overlay {
    display: flex;
    justify-content: space-between;
    max-height: 9.375rem;
  }
}
@media (width > 90.06125rem) and (width > 90.06125rem) {
  .cards__row-overlay {
    max-height: 15.625rem;
  }
}

.number-button {
  font-family: var(--font-family-accent);
  font-size: clamp(2.75rem, 1.4117647059rem + 5.4901960784vw, 8rem);
  width: 9.375rem;
  aspect-ratio: 1;
  font-weight: 600;
  color: var(--white-color);
  background-color: var(--light-sky-color-2);
  padding-block: 0.625rem;
  padding-inline: 1rem;
  border-radius: 1rem;
  position: relative;
  border: none;
  box-shadow: 0 0 10px 2px rgba(0, 120, 138, 0.2);
  transition: box-shadow 0.25s ease-out, background 0.25s ease-out, color 0.25s ease-out;
}
.number-button:hover {
  box-shadow: 0 0 10px 5px rgba(0, 120, 138, 0.377);
  background-color: var(--scroll-blue-opacity);
}
.number-button--active {
  background: var(--trust-gradient);
  color: var(--dark-green-color);
}

.number-button__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
}

@media (width > 90.06125rem) {
  .row-three-card {
    order: 3;
  }
}

.doctors {
  margin-top: 7.5rem;
  position: relative;
}
@media (width > 63.99875rem) {
  .doctors {
    background: linear-gradient(rgba(0, 82, 95, 0.9), rgba(0, 82, 95, 0.9)), url("/img/doctors-bg-desktop.png") no-repeat center center/cover;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding-top: 2.5rem;
    padding-bottom: 5.625rem;
  }
}
.doctors__title {
  line-height: 115%;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 1.7450980392rem + 1.045751634vw, 3rem);
  font-weight: 700;
}
@media (width > 63.99875rem) {
  .doctors__title {
    color: var(--white-color);
  }
}
.doctors__inner {
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
  overflow: hidden;
}
@media (width > 47.99875rem) {
  .doctors__inner {
    overflow: visible;
  }
}
.doctors__swiper {
  width: 100%;
  height: 35.25rem;
  overflow: hidden;
  position: relative;
  border-radius: 1rem;
}
@media (width > 30.06125rem) {
  .doctors__swiper {
    height: 43.75rem;
  }
}
@media (width > 63.99875rem) {
  .doctors__swiper {
    height: clamp(31.25rem, 28.0637254902rem + 13.0718954248vw, 43.75rem);
  }
}
.doctors__swiper-pagination {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  bottom: 0 !important;
  top: 0 !important;
}
.doctors__swiper-pagination .swiper-pagination-bullet {
  background: var(--light-sky-color-2);
  height: 0.5rem;
  width: 0.5rem;
  opacity: 1;
}
.doctors__swiper-pagination .swiper-pagination-bullet-active {
  background: radial-gradient(50% 50% at 50% 50%, rgb(0, 201, 230) 0%, rgb(121, 201, 107) 100%);
  height: 0.75rem;
  width: 0.75rem;
}
.doctors__swiper-slide {
  border-radius: 1rem;
  box-shadow: 0 0 20px 2px rgba(0, 120, 138, 0.2);
}
@media (width > 63.99875rem) {
  .doctors__swiper-slide {
    box-shadow: none;
  }
}
.doctors__swiper-slide-inner {
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  position: relative;
  justify-content: flex-end;
}
@media (width > 63.99875rem) {
  .doctors__swiper-slide-inner {
    flex-direction: row;
    column-gap: clamp(0.625rem, -1.1274509804rem + 7.1895424837vw, 7.5rem);
    justify-content: flex-start;
  }
}
.doctors__swiper-slide-img {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
}
@media (width > 63.99875rem) {
  .doctors__swiper-slide-img {
    min-width: clamp(15.625rem, 13.3308823529rem + 9.4117647059vw, 24.625rem);
    width: auto;
    height: auto;
    position: relative;
  }
}
.doctors__swiper-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}
.doctors__swiper-slide-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: left;
  row-gap: 0.625rem;
  padding-inline: 1rem;
  margin-bottom: 1.5rem;
}
@media (width > 63.99875rem) {
  .doctors__swiper-slide-content {
    justify-content: flex-start;
    padding-top: 2.5rem;
    padding-inline: 0rem;
    margin-bottom: 0rem;
  }
}
.doctors__swiper-slide-name {
  font-size: clamp(1.75rem, 1.431372549rem + 1.3071895425vw, 3rem);
  font-family: var(--font-family-accent);
  color: var(--dark-blue-color);
  font-weight: 600;
  line-height: 115%;
}
@media (width > 63.99875rem) {
  .doctors__swiper-slide-name {
    padding-bottom: clamp(0.3125rem, -0.0857843137rem + 1.6339869281vw, 1.875rem);
    color: var(--white-color);
  }
}
@media (width > 63.99875rem) {
  .doctors__swiper-slide-name-accent {
    font-size: clamp(3rem, 2.7450980392rem + 1.045751634vw, 4rem);
    display: block;
  }
}
.doctors__swiper-slide-position {
  font-family: var(--font-family-accent);
  font-size: clamp(1.5rem, 1.3725490196rem + 0.522875817vw, 2rem);
  font-weight: 500;
  line-height: 115%;
  color: var(--dark-blue-color-2);
}
@media (width > 63.99875rem) {
  .doctors__swiper-slide-position {
    color: var(--light-green-color);
  }
}
.doctors__swiper-slide-experience {
  font-family: var(--font-family-accent);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 115%;
  color: var(--dark-blue-color-2);
}
.doctors__swiper-slide-description {
  font-size: clamp(1.25rem, 1.1862745098rem + 0.2614379085vw, 1.5rem);
  padding-top: clamp(0.3125rem, -0.0857843137rem + 1.6339869281vw, 1.875rem);
  font-weight: 400;
  line-height: 115%;
  color: var(--light-sky-color-2);
}
.doctors__swiper-slide-link {
  --border-color: linear-gradient(135deg, #00c9e6 0%, #79c96b 100%);
  --border-width: 2px 2px 0 2px;
  position: relative;
  z-index: 3;
  font-family: var(--font-family-accent);
  font-size: clamp(1.5rem, 1.4362745098rem + 0.2614379085vw, 1.75rem);
  font-weight: 500;
  line-height: 115%;
  color: var(--dark-green-color-2);
  padding-block: 0.5rem;
  padding-inline: 1rem;
  background: var(--light-green-color);
  width: fit-content;
  border-radius: 1rem;
  margin-top: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.doctors__swiper-slide-link:hover {
  box-shadow: 0 0 10px 2px rgba(171, 255, 220, 0.4);
  transform: translateY(-2px);
}
.doctors__swiper-slide-button {
  --border-color: linear-gradient(135deg, #00c9e6 0%, #79c96b 100%);
  --border-width: 3px 3px 3px 3px;
  position: relative;
  z-index: 3;
  font-family: var(--font-family-accent);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 115%;
  color: var(--gray-color);
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 0.625rem;
  padding-block: 0.625rem;
  padding-inline: 1.5rem;
  border-radius: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.doctors__swiper-slide-button::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: var(--border-width);
  background-image: var(--border-color);
  border-radius: inherit;
  mask: conic-gradient(#000 0 0) content-box exclude, conic-gradient(#000 0 0);
}
.doctors__scrollbar {
  height: 0.625rem;
  background: var(--light-sky-color-2);
}
.doctors .doctors__swiper-buttons {
  position: absolute;
  bottom: 0rem;
  right: 0rem;
  display: flex;
  gap: 0.75rem;
  z-index: 10;
}
.doctors .doctors__swiper-button-prev,
.doctors .doctors__swiper-button-next {
  width: 5rem;
  height: 5rem;
  background: var(--white-color);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.doctors .doctors__swiper-button-prev svg,
.doctors .doctors__swiper-button-next svg {
  width: 3.125rem;
  height: 3.125rem;
  color: var(--dark-blue-color);
  transition: color 0.3s ease;
}
.doctors .doctors__swiper-button-prev:hover,
.doctors .doctors__swiper-button-next:hover {
  background: linear-gradient(135deg, #00c9e6 0%, #79c96b 100%);
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 201, 230, 0.3);
}
.doctors .doctors__swiper-button-prev:hover svg,
.doctors .doctors__swiper-button-next:hover svg {
  color: var(--white-color);
}
.doctors .doctors__swiper-button-prev:active,
.doctors .doctors__swiper-button-next:active {
  transform: scale(0.95);
}

.swiper-scrollbar.swiper-scrollbar-horizontal {
  width: 100%;
  left: 0;
  background: rgba(0, 159, 183, 0.5);
  height: 0.625rem;
  border-radius: 3.125rem;
  position: relative;
  margin-top: 0.9375rem;
}

.swiper-scrollbar-drag {
  background: #00C9E6;
  border-radius: 3.125rem;
}

.advantages {
  position: relative;
  height: clamp(37.5rem, 15.1960784314rem + 91.5032679739vw, 125rem);
  margin-top: clamp(3.75rem, 3.431372549rem + 1.3071895425vw, 5rem);
  overflow-x: hidden;
  overflow-y: hidden;
}
@media (width > 90.06125rem) {
  .advantages {
    overflow: hidden;
    height: 100vh;
  }
}
@media (width > 120.06125rem) {
  .advantages {
    height: 80vh;
  }
}
.advantages__inner {
  position: relative;
  height: 100%;
  width: 60%;
  display: flex;
  flex-direction: column;
}
@media (width <= 47.99875rem) {
  .advantages__inner {
    width: 80%;
  }
}
.advantages__image {
  transition: transform 0.1s linear;
  z-index: 2;
  position: absolute;
  max-width: none;
  left: auto;
  width: 240%;
  right: -90%;
}
@media (width > 63.99875rem) {
  .advantages__image {
    left: auto;
    right: -15%;
  }
}
@media (width > 90.06125rem) {
  .advantages__image {
    left: auto;
    right: -20%;
    width: 130%;
  }
}
@media (width > 120.06125rem) {
  .advantages__image {
    right: 0;
    width: 100%;
  }
}
.advantages__swiper {
  height: 300px;
  width: 100%;
  position: relative;
  z-index: 3;
  top: 30%;
}
@media (width > 120.06125rem) {
  .advantages__swiper {
    top: 50%;
  }
}
.advantages__slide {
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: 0 8px 32px rgba(0, 120, 138, 0.3);
}
.advantages__card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1.5rem;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 1rem;
  cursor: grab;
  user-select: none;
  transform-style: preserve-3d;
  transition: all 0.3s ease;
}
.advantages__card:active {
  cursor: grabbing;
}
.advantages__card:nth-child(1) {
  background: rgba(168, 230, 207, 0.95);
  box-shadow: 0 8px 32px rgba(0, 120, 138, 0.3);
  z-index: 4;
  transform: translateY(0px) scale(1);
}
@media (width > 47.99875rem) {
  .advantages__card:nth-child(1) {
    background: rgba(198, 252, 232, 0.8);
  }
}
.advantages__card-title {
  font-size: clamp(1.25rem, 1.1862745098rem + 0.2614379085vw, 1.5rem);
  font-family: var(--font-family-accent);
  font-weight: 700;
  color: var(--semi-dark-green-color);
  margin-bottom: 1rem;
  line-height: 1.2;
  text-align: center;
}
@media (width > 90.06125rem) {
  .advantages__card-title {
    font-size: clamp(1.5rem, 1.3725490196rem + 0.522875817vw, 2rem);
  }
}
.advantages__text {
  font-size: clamp(1.25rem, 1.1862745098rem + 0.2614379085vw, 1.5rem);
  line-height: 1.4;
  color: var(--semi-dark-green-color);
  font-family: var(--font-family-accent);
  text-align: center;
}
@media (width > 90.06125rem) {
  .advantages__text {
    font-size: clamp(1.5rem, 1.3725490196rem + 0.522875817vw, 2rem);
  }
}

.advantages-mobile {
  padding-block: 1.5rem;
  margin-top: 3.75rem;
  background: var(--reverse-main-gradient);
  position: relative;
}
@media (width > 47.99875rem) {
  .advantages-mobile {
    margin-top: 0rem;
  }
}
.advantages-mobile__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}
.advantages-mobile__title {
  font-size: 1.5rem;
  font-family: var(--font-family-accent);
  font-weight: 600;
  line-height: 115%;
  color: var(--white-color);
}
.advantages-mobile__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.advantages-mobile__item {
  position: relative;
  padding-left: 24px;
  margin-bottom: 0.5rem;
  line-height: 125%;
  font-size: 1.25rem;
  color: var(--white-color);
  display: flex;
  align-items: center;
}
.advantages-mobile__item::before {
  content: "";
  position: absolute;
  left: 0;
  width: 12px;
  height: 12px;
  background-color: var(--semi-dark-green-color);
  border-radius: 50%;
  margin-top: 0.125rem;
}
.advantages-mobile__item:nth-child(3)::before {
  margin-top: -2.75rem;
}
.advantages-mobile__item:nth-child(4)::before {
  margin-top: -1.375rem;
}
.advantages-mobile__item-text {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 125%;
  color: var(--white-color);
}
.advantages-mobile__text {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 130%;
  color: var(--white-color);
  hyphens: auto;
  -webkit-hyphens: auto;
}
.advantages-mobile__bubbles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}
.advantages-mobile__bubble {
  position: absolute;
  border-radius: 50%;
  opacity: 0.4;
  mix-blend-mode: screen;
  animation: float infinite linear;
}
.advantages-mobile__bubble.bubble-1 {
  width: 16.9375rem;
  height: 16.9375rem;
  top: 5%;
  left: 10%;
  animation-duration: 30s;
  animation-delay: 0s;
  background: rgba(95, 146, 190, 0.5);
}
.advantages-mobile__bubble.bubble-2 {
  width: 25.5rem;
  height: 25.5rem;
  top: 50%;
  left: 5%;
  animation-duration: 40s;
  animation-delay: -5s;
  background: rgba(24, 47, 20, 0.21);
}

.reviews {
  margin-block: 3.75rem;
}
@media (width > 63.99875rem) {
  .reviews {
    margin-bottom: 3.75rem;
  }
}
.reviews__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.reviews__title {
  display: inline-flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: clamp(2rem, 1.7450980392rem + 1.045751634vw, 3rem);
}
.reviews__title-link {
  color: var(--gray-color);
  font-size: 1rem;
  font-weight: 400;
  line-height: 115%;
  font-family: var(--font-family-accent);
}
.reviews__title-link-text {
  margin-top: 0.3125rem;
  gap: 0.25rem;
  align-items: center;
}
.reviews__cards {
  display: flex;
  justify-content: space-between;
}
@media (width > 63.99875rem) {
  .reviews__map {
    width: 48% !important;
  }
}
.reviews__map-wrapper {
  display: contents;
}
@media (width > 63.99875rem) {
  .reviews__map-wrapper {
    margin-top: 1.25rem;
    width: 100%;
    display: flex;
    position: relative;
    flex-direction: row;
    height: 50rem;
    justify-content: space-between;
  }
}
.reviews__map-img {
  position: absolute;
  bottom: -15%;
  right: 2%;
}
@media (width > 90.06125rem) {
  .reviews__map-img {
    display: none;
  }
}
.reviews__card {
  animation: reviewBounce 4s ease-in-out infinite;
  min-width: 6.875rem;
  backdrop-filter: blur(2.5px);
  -webkit-backdrop-filter: blur(2.5px);
  box-shadow: 0 0 20px 2px rgba(0, 120, 138, 0.2);
  background: rgba(221, 223, 224, 0.32);
  padding-block: 1rem;
  border-radius: 1rem;
  position: relative;
  min-height: 12rem;
  z-index: 2;
  width: 100%;
}
.reviews__card:nth-child(1) {
  animation-delay: 0s;
}
.reviews__card:nth-child(2) {
  animation-delay: 0.5s;
}
.reviews__card:nth-child(3) {
  animation-delay: 1s;
}
.reviews__card:nth-child(4) {
  animation-delay: 1.5s;
}
.reviews__card-wrapper {
  position: relative;
  overflow: visible;
  transition: transform 0.3s ease;
}
@media (width > 63.99875rem) {
  .reviews__card-wrapper {
    min-width: clamp(6.875rem, 4.6446078431rem + 9.1503267974vw, 15.625rem);
    min-height: clamp(15.625rem, 14.987745098rem + 2.614379085vw, 18.125rem);
  }
}
.reviews__card:hover {
  animation-play-state: paused;
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 12px 35px rgba(0, 120, 138, 0.35);
}
.reviews__card-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: none;
  width: 140%;
  height: 140%;
  z-index: 0;
  pointer-events: none;
}
.reviews__card-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.5rem;
  align-items: center;
}
.reviews__card-name {
  font-size: 2rem;
  font-weight: 500;
  font-family: var(--font-family-accent);
  color: var(--dark-green-color);
}
@media (width > 63.99875rem) {
  .reviews__card-name {
    font-size: clamp(2rem, 1.7450980392rem + 1.045751634vw, 3rem);
    font-weight: 600;
  }
}
.reviews__card-name--topdent {
  font-size: 1.25rem;
}
@media (width > 63.99875rem) {
  .reviews__card-name--topdent {
    font-size: clamp(2rem, 1.7450980392rem + 1.045751634vw, 3rem);
  }
}
.reviews__card-count {
  font-size: 0.75rem;
  font-weight: 500;
  font-family: var(--font-family-accent);
  color: var(--gray-color);
}
@media (width > 63.99875rem) {
  .reviews__card-count {
    font-size: clamp(0.75rem, 0.5906862745rem + 0.6535947712vw, 1.375rem);
  }
}
.reviews__card-star {
  position: relative;
}
@media (width > 63.99875rem) {
  .reviews__card-star-img {
    width: 9.0625rem;
    height: 9.0625rem;
  }
}
.reviews__card-star-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
  font-weight: 600;
  font-family: var(--font-family-accent);
  color: var(--white-color);
}
@media (width > 63.99875rem) {
  .reviews__card-star-text {
    font-size: clamp(2rem, 2.1274509804rem + -0.522875817vw, 1.5rem);
  }
}

@media (width > 63.99875rem) {
  .desktop-form {
    display: block;
    width: 48%;
    height: 100%;
    position: relative;
    overflow: visible;
  }
}
.desktop-form__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  object-fit: contain;
}
.desktop-form__inner {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding-inline: 0rem;
}
.desktop-form__body {
  position: relative;
  height: 100%;
  display: flex;
  border-radius: 1rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  padding-block: 1.5rem;
  padding-inline: 1rem;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(2px);
  background: linear-gradient(315deg, rgba(0, 201, 230, 0.8) 0%, rgba(121, 201, 107, 0.8) 100%);
  box-shadow: 0 0 20px 2px rgba(0, 120, 138, 0.2);
  justify-content: space-evenly;
}
.desktop-form__title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: clamp(1rem, 0.7450980392rem + 1.045751634vw, 2rem);
  text-align: center;
  line-height: 110%;
  color: var(--white-color);
  font-family: var(--font-family-accent);
}
.desktop-form__form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  width: 100%;
}
.desktop-form__form-label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  width: 100%;
}
.desktop-form__form-input {
  width: 100%;
  height: 2.5rem;
  border-radius: 10px;
  background-color: var(--white-color);
  border: none;
  padding-left: 1rem;
}
.desktop-form__form-input:focus {
  outline: none;
}
.desktop-form__form-input::placeholder {
  font-family: var(--font-family-accent);
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--gray-color-2);
}
.desktop-form__form-label-text {
  font-family: var(--font-family-accent);
  font-weight: 400;
  font-size: clamp(1rem, 0.8088235294rem + 0.7843137255vw, 1.75rem);
  color: var(--white-color);
}
.desktop-form__form-button {
  width: 100%;
  height: clamp(2rem, 1.2352941176rem + 3.137254902vw, 5rem);
  border-radius: 0.875rem;
  background-color: var(--semi-dark-green-color);
  border: none;
  box-shadow: 0 2px 8px 0 #8bb8e4;
  font-family: var(--font-family-accent);
  font-weight: 600;
  font-size: clamp(1rem, 0.7450980392rem + 1.045751634vw, 2rem);
  color: var(--white-color);
  transition: all 0.3s ease;
}
.desktop-form__form-button:hover {
  background-color: var(--dark-green-color);
  box-shadow: 0 4px 12px rgba(0, 120, 138, 0.2);
  transform: translateY(-2px);
}
.desktop-form__policy {
  font-weight: 300;
  font-size: clamp(0.75rem, 0.6862745098rem + 0.2614379085vw, 1rem);
  text-align: center;
  color: var(--gray-color);
}
.desktop-form__waves-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes reviewBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
.final-form {
  position: relative;
  overflow: visible;
  height: max-content;
  min-height: 35.5rem;
  margin-top: 12.5rem;
}
.final-form__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  object-fit: contain;
}
.final-form__inner {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.final-form__body {
  position: relative;
  height: 100%;
  display: flex;
  border-radius: 10px;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  padding-block: 1.5rem;
  padding-inline: 1rem;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(2px);
  background: linear-gradient(315deg, rgba(0, 201, 230, 0.6) 0%, rgba(121, 201, 107, 0.6) 100%);
  box-shadow: 0 0 20px 4px rgba(0, 120, 138, 0.2);
}
.final-form__title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 1.5rem;
  text-align: center;
  line-height: 110%;
  color: var(--white-color);
  font-family: var(--font-family-accent);
}
.final-form__form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  width: 100%;
}
.final-form__form-label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  width: 100%;
}
.final-form__form-input {
  width: 100%;
  height: 2.5rem;
  border-radius: 10px;
  background-color: var(--white-color);
  border: none;
  padding-left: 1rem;
}
.final-form__form-input::placeholder {
  font-family: var(--font-family-accent);
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--gray-color-2);
}
.final-form__form-label-text {
  font-family: var(--font-family-accent);
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--white-color);
}
.final-form__form-button {
  width: 100%;
  height: 2.5rem;
  border-radius: 10px;
  background-color: var(--semi-dark-green-color);
  border: none;
  box-shadow: 0 2px 8px 0 #8bb8e4;
  font-family: var(--font-family-accent);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--white-color);
}
.final-form__policy {
  font-weight: 300;
  font-size: 12px;
  text-align: center;
  color: var(--gray-color);
}
.final-form__waves-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.find-us {
  background: linear-gradient(rgba(0, 82, 95, 0.7), rgba(0, 82, 95, 0.7)), url("/img/find-us-bg.png") no-repeat center center/cover;
  padding-block: 13.125rem;
  margin-top: 7.5rem;
}
@media (width > 90.06125rem) {
  .find-us {
    background: none;
    margin-top: 0rem;
  }
}
.find-us__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding-block: 1.5rem;
  padding-inline: 1rem;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(0, 201, 230, 0.88) 0%, rgba(121, 201, 107, 0.88) 100%), rgba(255, 255, 255, 0.2);
}
.find-us__title {
  font-family: var(--font-family-accent);
  font-weight: 600;
  font-size: 1.5rem;
  text-align: center;
  color: var(--white-color);
}
.find-us__metro {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
}
.find-us__metro-text {
  font-family: var(--font-family-accent);
  font-weight: 400;
  font-size: 1.25rem;
  text-align: center;
  color: var(--white-color);
  min-width: 8.125rem;
}
.find-us__address {
  font-family: var(--font-family-accent);
  font-weight: 500;
  font-size: 1.125rem;
  text-align: center;
  color: var(--white-color);
  width: 100%;
}
.find-us__working-hours {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.find-us__working-hours-text {
  font-family: var(--font-family-accent);
  font-weight: 300;
  font-size: 1rem;
  color: var(--white-color);
}
.find-us__button {
  width: 100%;
  height: 2.5rem;
  border-radius: 15px;
  border: none;
  font-family: var(--font-family-accent);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--semi-dark-green-color);
  line-height: 100%;
  background-color: var(--white-color);
  width: max-content;
  padding-inline: 1rem;
  padding-block: 0.5rem;
  box-shadow: 0 2px 8px 0 #8bb8e4;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  overflow: hidden;
}
@media (width <= 47.99875rem) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 120px;
    margin-top: 0;
  }
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0);
  transition: transform 0.6s cubic-bezier(0.4, 0.2, 0.2, 1), filter 0.6s cubic-bezier(0.4, 0.2, 0.2, 1);
  overflow: hidden;
  will-change: transform;
}
@media (width <= 47.99875rem) {
  .gallery img {
    border-width: 0.5px;
    min-height: 0;
    min-width: 0;
    max-height: 100%;
    max-width: 100%;
  }
}
.gallery img.wide {
  grid-column: span 2;
}
.gallery img.tall {
  grid-row: span 2;
}
.gallery img.big {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery img.gallery-animate {
  filter: none;
  transform: scale(1.15);
  z-index: 1;
}
@media (hover: hover) and (pointer: fine) {
  .gallery img:hover {
    filter: none;
    transform: scale(1.08);
    z-index: 2;
  }
}
@media (width <= 47.99875rem) {
  .gallery img.wide-mobile {
    grid-column: span 2;
  }
}
@media (width <= 47.99875rem) {
  .gallery img.tall-mobile {
    grid-row: span 2;
  }
}
@media (width <= 47.99875rem) {
  .gallery img.big-mobile {
    grid-column: span 2;
    grid-row: span 2;
  }
}
@media (width <= 47.99875rem) {
  .gallery img.reset-desktop-grid {
    grid-column: auto !important;
    grid-row: auto !important;
  }
}

.links {
  padding-block: 1.5rem;
  background: linear-gradient(180deg, var(--dark-green-color-2) 0%, var(--extra-dark-green-color) 100%);
  border-bottom: 2px solid var(--dark-green-color-2);
}
.links__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 1.5rem;
}
@media (width <= 47.99875rem) {
  .links__inner {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
  }
}
.links__category {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}
.links .category__main-link {
  font-size: clamp(0.875rem, 0.7794117647rem + 0.3921568627vw, 1.25rem);
  font-weight: 500;
  color: var(--light-gray-color);
  font-family: "Montserrat", sans-serif;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid var(--light-gray-color-opacity);
}
.links .category__main-link:hover {
  color: var(--light-green-color-2);
}
.links .category__link {
  font-size: clamp(0.875rem, 0.8112745098rem + 0.2614379085vw, 1.125rem);
  font-weight: 400;
  color: var(--gray-color-2);
  font-family: "Montserrat", sans-serif;
  padding-bottom: 0.125rem;
  border-bottom: 1px solid var(--light-gray-color-opacity);
}
.links .category__link:hover {
  color: var(--light-green-color);
}

.map {
  width: 100%;
  height: 37.5rem;
  margin-top: 3.75rem;
  position: relative;
}
@media (width <= 47.99875rem) {
  .map {
    margin-top: 0;
  }
}
.map__effect {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 5;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 82, 95, 0.7) 0%, rgba(193, 235, 240, 0.1) 10%, rgba(193, 235, 240, 0.1) 90%, rgba(0, 82, 95, 0.7) 100%);
}
@media (width > 47.99875rem) {
  .map__effect {
    background: linear-gradient(180deg, rgba(193, 235, 240, 0.1) 85%, rgba(0, 82, 95, 0.7) 100%);
  }
}

.map-find-us {
  position: absolute;
  width: 40%;
  height: 60%;
  top: 50%;
  transform: translateY(-50%);
  left: 5%;
  z-index: 1;
  background: var(--white-color);
  border-radius: 1rem;
  box-shadow: 0 0 20px 2px rgba(0, 120, 138, 0.4);
}
.map-find-us__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding-block: 1.5rem;
  padding-inline: 1rem;
  border-radius: 10px;
}
.map-find-us__title {
  font-family: var(--font-family-accent);
  font-weight: 600;
  font-size: clamp(1.25rem, 1.0588235294rem + 0.7843137255vw, 2rem);
  text-align: center;
  color: var(--dark-green-color);
}
.map-find-us__metro {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
}
.map-find-us__metro-text {
  font-family: var(--font-family-accent);
  font-weight: 400;
  font-size: clamp(1rem, 0.8406862745rem + 0.6535947712vw, 1.625rem);
  text-align: center;
  color: var(--dark-green-color-2);
  min-width: 8.125rem;
}
.map-find-us__address {
  font-family: var(--font-family-accent);
  font-weight: 500;
  font-size: clamp(1.125rem, 0.9975490196rem + 0.522875817vw, 1.625rem);
  text-align: center;
  color: var(--dark-green-color-2);
  width: 100%;
}
.map-find-us__working-hours {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.map-find-us__working-hours-text {
  font-family: var(--font-family-accent);
  font-weight: 400;
  font-size: clamp(1rem, 0.8725490196rem + 0.522875817vw, 1.5rem);
  color: var(--dark-green-color-2);
}
.map-find-us__button {
  width: 100%;
  height: 2.5rem;
  border-radius: 15px;
  border: none;
  font-family: var(--font-family-accent);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--semi-dark-green-color);
  line-height: 100%;
  background-color: var(--white-color);
  width: max-content;
  padding-inline: 1rem;
  padding-block: 0.5rem;
  box-shadow: 0 2px 8px 0 #8bb8e4;
}

.about-hero {
  height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(0, 82, 95, 0.9), rgba(0, 82, 95, 0.9)), url("/img/gallery3.png") no-repeat center center/cover;
  padding-block: 3.75rem;
  padding-bottom: clamp(3.75rem, 2.9534313725rem + 3.2679738562vw, 6.875rem);
}
.about-hero__inner {
  height: 100%;
  display: block;
}
.about-hero__content {
  width: 100%;
  height: 80%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-evenly;
  row-gap: 1.25rem;
}
@media (width > 47.99875rem) {
  .about-hero__content {
    justify-content: flex-end;
    height: 100%;
    gap: clamp(0.625rem, 0.1470588235rem + 1.9607843137vw, 2.5rem);
  }
}
.about-hero__title {
  font-size: clamp(3rem, 2.6176470588rem + 1.568627451vw, 4.5rem);
  font-weight: 700;
  color: var(--white-color);
  line-height: 1.2;
}
.about-hero__subtitle {
  font-size: clamp(1.5rem, 1.3725490196rem + 0.522875817vw, 2rem);
  font-weight: 600;
  color: var(--light-sky-color);
}
@media (width <= 47.99875rem) {
  .about-hero__subtitle {
    margin-bottom: 0.625rem;
  }
}
.about-hero__description {
  font-size: clamp(1.75rem, 1.6862745098rem + 0.2614379085vw, 2rem);
  line-height: 1.6;
  margin: 0;
  opacity: 0.9;
  font-weight: 200;
  color: var(--white-color);
}
@media (width <= 47.99875rem) {
  .about-hero__description {
    font-size: clamp(1.25rem, 1.1225490196rem + 0.522875817vw, 1.75rem);
  }
}
.about-hero__stats {
  display: flex;
  flex-direction: row;
  gap: 0rem;
  justify-content: space-between;
  width: 100%;
}
@media (width > 63.99875rem) {
  .about-hero__stats {
    flex-direction: row;
    gap: 5rem;
    justify-content: flex-start;
  }
}
@media (width <= 30.06125rem) {
  .about-hero__stats {
    flex-direction: column;
    gap: 1.25rem;
    justify-content: flex-start;
  }
}
.about-hero__stat {
  text-align: center;
}
@media (width > 90.06125rem) {
  .about-hero__stat {
    display: flex;
    align-items: center;
    gap: 0.9375rem;
    text-align: left;
  }
}
.about-hero__stat-number {
  display: block;
  font-size: clamp(2.25rem, 1.931372549rem + 1.3071895425vw, 3.5rem);
  font-weight: 700;
  color: var(--light-sky-color-2);
  margin-bottom: 0.3125rem;
}
.about-hero__stat-text {
  font-size: clamp(1rem, 0.8725490196rem + 0.522875817vw, 1.5rem);
  color: var(--extra-light-gray-color);
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.8;
  }
}
.about-problems {
  padding-block: clamp(2.5rem, 1.862745098rem + 2.614379085vw, 5rem);
  background: radial-gradient(circle at 30% 40%, var(--semi-dark-green-color) 0%, transparent 60%), linear-gradient(135deg, var(--dark-green-color) 0%, var(--dark-green-color-2) 100%);
  color: var(--white-color);
}
.about-problems__title {
  font-size: clamp(2rem, 1.7450980392rem + 1.045751634vw, 3rem);
  font-weight: 700;
  color: var(--white-color);
  text-align: left;
  margin-bottom: clamp(1.25rem, 0.931372549rem + 1.3071895425vw, 2.5rem);
}
.about-problems__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr));
  gap: 1.875rem;
  max-width: 75rem;
  margin: 0 auto;
}
@media (width > 63.99875rem) {
  .about-problems__grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 1.5625rem;
  }
}
@media (width > 47.99875rem) {
  .about-problems__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, auto);
    gap: 1.25rem;
    max-width: none;
  }
}
.about-problems__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  border: 1px solid rgba(168, 230, 207, 0.4);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  text-align: center;
  min-height: 7.5rem;
  box-shadow: 0 0 10px 2px rgba(0, 120, 138, 0.2);
  font-weight: 300;
  font-size: clamp(1.25rem, 1.1862745098rem + 0.2614379085vw, 1.5rem);
}
@media (width > 63.99875rem) {
  .about-problems__item {
    padding: 1.125rem;
    min-height: 6.875rem;
  }
}
@media (width > 47.99875rem) {
  .about-problems__item {
    padding: 0.9375rem;
    min-height: 6.25rem;
  }
}
.about-problems__item--highlight {
  background: var(--main-gradient);
}
.about-problems__item--highlight .about-problems__text {
  font-weight: 600;
  font-size: clamp(1.25rem, 1.1862745098rem + 0.2614379085vw, 1.5rem);
}
.about-problems__text {
  font-size: clamp(1.25rem, 1.1862745098rem + 0.2614379085vw, 1.5rem);
  line-height: 1.4;
  margin: 0;
}

.about-advantages {
  padding-block: clamp(2.5rem, 1.862745098rem + 2.614379085vw, 5rem);
}
.about-advantages__title {
  font-size: clamp(2rem, 1.7450980392rem + 1.045751634vw, 3rem);
  font-weight: 700;
  color: var(--night-color);
  text-align: left;
  margin-bottom: clamp(2.5rem, 2.181372549rem + 1.3071895425vw, 3.75rem);
}
.about-advantages__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17.5rem, 1fr));
  gap: 2.5rem;
  margin: 0 auto;
}
@media (width > 63.99875rem) {
  .about-advantages__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.875rem;
  }
}
.about-advantages__card {
  background: var(--white-color);
  border-radius: 1rem;
  padding: 2.5rem 1.875rem;
  text-align: center;
  box-shadow: 0 0 10px 2px rgba(0, 120, 138, 0.2);
  transition: all 0.3s ease;
}
.about-advantages__card-icon {
  width: 6.25rem;
  height: 6.25rem;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-blue-color-2);
  border-radius: 50%;
  transition: all 0.3s ease;
}
.about-advantages__card-icon img {
  width: 3.75rem;
  height: 3.75rem;
}
@media (width > 47.99875rem) {
  .about-advantages__card-icon {
    width: 5rem;
    height: 5rem;
  }
  .about-advantages__card-icon img {
    width: 3.125rem;
    height: 3.125rem;
  }
}
.about-advantages__card-title {
  font-size: clamp(1.5rem, 1.3725490196rem + 0.522875817vw, 2rem);
  font-weight: 500;
  color: var(--night-color);
  margin-bottom: 0.9375rem;
}
.about-advantages__card-text {
  font-size: clamp(1.25rem, 1.1862745098rem + 0.2614379085vw, 1.5rem);
  color: var(--night-color);
  line-height: 1.6;
  font-weight: 300;
}

.about-documents {
  padding-block: clamp(2.5rem, 2.181372549rem + 1.3071895425vw, 3.75rem);
  background: linear-gradient(135deg, #cbddf2 0%, #b7e0f1 20%, #a8e6cf 50%, #95d9ba 75%, #c4f0e0 100%);
}
.about-documents__title {
  font-size: clamp(2rem, 1.7450980392rem + 1.045751634vw, 3rem);
  font-weight: 700;
  color: var(--night-color);
  text-align: left;
  margin-bottom: clamp(2.5rem, 2.181372549rem + 1.3071895425vw, 3.75rem);
}
.about-documents__content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  background: var(--white-color);
  border-radius: 1rem;
  padding: 1.875rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
@media (width > 63.99875rem) {
  .about-documents__content {
    grid-template-columns: 1fr;
    gap: 1.875rem;
    padding: 1.875rem;
  }
}
@media (width > 47.99875rem) {
  .about-documents__content {
    padding: 1.25rem;
    gap: 1.25rem;
  }
}
@media (width > 63.99875rem) {
  .about-documents__sidebar {
    order: 2;
  }
}
@media (width > 47.99875rem) {
  .about-documents__sidebar {
    margin-bottom: 1.25rem;
  }
}
.about-documents__nav-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (width > 47.99875rem) {
  .about-documents__nav-list {
    flex-direction: row;
    overflow-x: auto;
    gap: 0.9375rem;
    padding-block: 1rem;
  }
  .about-documents__nav-list::-webkit-scrollbar {
    height: 0.5rem;
    border-radius: 50px;
  }
  .about-documents__nav-list::-webkit-scrollbar-track {
    background: var(--light-sky-color-2);
    border-radius: 50px;
  }
  .about-documents__nav-list::-webkit-scrollbar-thumb {
    background: var(--scroll-blue-opacity);
    border-radius: 50px;
  }
}
.about-documents__nav-item.is-active .about-documents__nav-button {
  background: var(--semi-dark-green-color);
  color: var(--white-color);
}
.about-documents__nav-button {
  width: 100%;
  padding: 0.9375rem 1.25rem;
  border: 1px solid var(--light-sky-color-2);
  background: var(--white-color);
  color: var(--night-color);
  border-radius: 1rem;
  font-size: clamp(1.125rem, 1.0612745098rem + 0.2614379085vw, 1.375rem);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  white-space: nowrap;
}
.about-documents__nav-button:hover {
  background: var(--light-sky-color-2);
}
@media (width > 47.99875rem) {
  .about-documents__nav-button {
    width: auto;
    min-width: 7.5rem;
    text-align: center;
    padding: 0.75rem 1rem;
  }
}
@media (width > 63.99875rem) {
  .about-documents__main {
    order: 1;
  }
}
.about-documents__category {
  display: none;
}
.about-documents__category.is-active {
  display: block;
}
.about-documents__category-title {
  font-size: clamp(1.75rem, 1.6862745098rem + 0.2614379085vw, 2rem);
  font-weight: 600;
  font-family: var(--font-family-accent);
  color: var(--night-color);
  margin-bottom: 1.875rem;
}
@media (width > 47.99875rem) {
  .about-documents__category-title {
    margin-bottom: 1.5rem;
  }
}
.about-documents__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (width > 47.99875rem) {
  .about-documents__list {
    gap: 0.625rem;
  }
}
.about-documents__item {
  border-bottom: 1px solid var(--light-sky-color-2);
  padding-bottom: 0.5rem;
}
.about-documents__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
@media (width > 47.99875rem) {
  .about-documents__item {
    padding-bottom: 0.625rem;
  }
}
.about-documents__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: var(--night-color);
  transition: color 0.3s ease;
}
.about-documents__link:hover {
  color: var(--semi-dark-green-color);
}
@media (width > 47.99875rem) {
  .about-documents__link {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}
.about-documents__link-text {
  font-size: clamp(1rem, 0.9044117647rem + 0.3921568627vw, 1.375rem);
  font-weight: 400;
  max-width: clamp(9.375rem, -20.0980392157rem + 120.9150326797vw, 125rem);
}
@media (width > 47.99875rem) {
  .about-documents__link-text {
    line-height: 1.4;
  }
}
.about-documents__link-size {
  font-size: clamp(0.75rem, 0.7181372549rem + 0.1307189542vw, 0.875rem);
  color: var(--gray-color);
}
@media (width > 47.99875rem) {
  .about-documents__link-size {
    font-size: 0.75rem;
    color: var(--button-blue-opacity);
    font-weight: 500;
  }
}

.appointment-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}
.appointment-modal--active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.3s ease, visibility 0s;
}

.appointment-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.appointment-modal--active .appointment-modal__overlay {
  opacity: 1;
}

.appointment-modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 10px));
  background: var(--white-color);
  border-radius: 1.25rem;
  padding: 2.5rem;
  max-width: 500px;
  width: 90vw;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.appointment-modal--active .appointment-modal__content {
  transform: translate(-50%, -50%);
  opacity: 1;
}

.appointment-modal__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--dark-green-color);
  cursor: pointer;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.appointment-modal__close:hover {
  background: var(--light-gray-color);
  transform: scale(1.1);
}

.appointment-modal__header {
  text-align: center;
  margin-bottom: 2rem;
}

.appointment-modal__title {
  font-size: clamp(1.5rem, 1.4rem + 0.4vw, 1.8rem);
  font-weight: 600;
  color: var(--dark-green-color);
  margin: 0 0 1rem 0;
}

.appointment-modal__subtitle {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-color);
  margin: 0;
  opacity: 0.8;
}

.appointment-modal__form {
  margin-bottom: 2rem;
}

.appointment-modal__form-group {
  margin-bottom: 1.5rem;
}

.appointment-modal__label {
  display: block;
  width: 100%;
}

.appointment-modal__label-text {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.appointment-modal__input,
.appointment-modal__select,
.appointment-modal__textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: var(--font-family-accent);
  color: var(--text-color);
  background: var(--white-color);
  transition: all 0.3s ease;
  box-sizing: border-box;
}
.appointment-modal__input:focus,
.appointment-modal__select:focus,
.appointment-modal__textarea:focus {
  outline: none;
  border-color: var(--dark-green-color);
  box-shadow: 0 0 0 3px rgba(0, 201, 230, 0.1);
}
.appointment-modal__input.error,
.appointment-modal__select.error,
.appointment-modal__textarea.error {
  border-color: #f44336;
  background-color: rgba(244, 67, 54, 0.05);
}
.appointment-modal__input::placeholder,
.appointment-modal__select::placeholder,
.appointment-modal__textarea::placeholder {
  color: #999;
  opacity: 1;
}

.appointment-modal__select {
  cursor: pointer;
}

.appointment-modal__textarea {
  resize: vertical;
  min-height: 80px;
}

.appointment-modal__submit {
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #00c9e6, #79c96b);
  color: var(--white-color);
  border: none;
  border-radius: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: var(--font-family-accent);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.appointment-modal__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 201, 230, 0.3);
}
.appointment-modal__submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.appointment-modal__submit:disabled::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  margin: auto;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.appointment-modal__footer {
  text-align: center;
}

.appointment-modal__policy {
  font-size: 0.85rem;
  line-height: 1.4;
  color: var(--text-color);
  margin: 0;
  opacity: 0.7;
}

.appointment-modal__policy-link {
  color: var(--dark-green-color);
  text-decoration: none;
  font-weight: 500;
}
.appointment-modal__policy-link:hover {
  text-decoration: underline;
}

.header__appointment-button {
  background: linear-gradient(135deg, #00c9e6, #79c96b);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 201, 230, 0.3);
}
.header__appointment-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 201, 230, 0.4);
}
.header__appointment-button img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

@media (width <= 47.99875rem) {
  .appointment-modal__content {
    padding: 1.5rem;
    width: 95vw;
    margin-top: 1rem;
    overflow-y: auto;
  }
  .appointment-modal__title {
    font-size: 1.5rem;
  }
  .appointment-modal__subtitle {
    font-size: 0.9rem;
  }
  .appointment-modal__input,
  .appointment-modal__select,
  .appointment-modal__textarea {
    padding: 0.75rem;
    font-size: 0.95rem;
  }
  .appointment-modal__textarea {
    display: none;
  }
  .appointment-modal__submit {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
  .appointment-modal__policy {
    font-size: 0.8rem;
  }
  .sidebar__appointment-button {
    padding: 0.875rem 1rem;
    font-size: 0.9rem;
  }
}
@media (width <= 30.06125rem) {
  .appointment-modal__content {
    padding: 1rem;
    width: 98vw;
  }
  .appointment-modal__close {
    top: 1rem;
    right: 1rem;
    width: 2rem;
    height: 2rem;
    font-size: 1.5rem;
  }
}
.doctor-hero {
  background: url("../../img/wave-bg-1.svg") no-repeat center center/cover, linear-gradient(to bottom, var(--dark-green-color-2), var(--dark-green-color-2));
  position: relative;
  overflow: hidden;
  height: 100vh;
}
@media (width <= 47.99875rem) {
  .doctor-hero {
    height: 180vh;
    padding-block: 2.5rem;
    margin-top: var(--header-body-height);
  }
}
@media (width > 90.06125rem) {
  .doctor-hero {
    padding-block: 5rem;
  }
}
.doctor-hero__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (width > 90.06125rem) {
  .doctor-hero__content {
    flex-direction: row;
    align-items: center;
  }
}
.doctor-hero__picture {
  width: 80%;
  margin: 0 auto;
  height: auto;
  border-radius: 0.75rem;
  box-shadow: 0 0 10px 2px rgba(165, 243, 255, 0.2);
}
@media (width > 90.06125rem) {
  .doctor-hero__picture {
    width: 40%;
    border-radius: 1.125rem;
  }
}
.doctor-hero__picture-img {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
}
@media (width > 90.06125rem) {
  .doctor-hero__picture-img {
    border-radius: 1.125rem;
  }
}
.doctor-hero__title {
  font-size: clamp(2.25rem, 1.5808823529rem + 2.7450980392vw, 4.875rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white-color);
}
@media (width > 90.06125rem) {
  .doctor-hero__title {
    font-size: clamp(2.25rem, 1.931372549rem + 1.3071895425vw, 3.5rem);
  }
}
.doctor-hero__title-accent {
  color: var(--light-green-color);
  display: block;
  font-size: clamp(3rem, 2.7291666667rem + 1.1111111111vw, 4.0625rem);
}
.doctor-hero__info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (width > 90.06125rem) {
  .doctor-hero__info {
    width: 40%;
  }
}
.doctor-hero__position {
  font-size: clamp(1.5rem, 1.1176470588rem + 1.568627451vw, 3rem);
  line-height: 1.2;
  color: var(--white-color);
  font-weight: 500;
  font-family: var(--font-family-accent);
}
@media (width > 90.06125rem) {
  .doctor-hero__position {
    font-size: clamp(1.5rem, 1.3088235294rem + 0.7843137255vw, 2.25rem);
  }
}
.doctor-hero__quote {
  font-size: clamp(1.375rem, 1.3112745098rem + 0.2614379085vw, 1.625rem);
  line-height: 1.2;
  color: var(--white-color);
  font-weight: 200;
  position: relative;
  font-style: italic;
  gap: 1rem;
  display: inline-flex;
}
@media (width > 90.06125rem) {
  .doctor-hero__quote {
    font-size: clamp(1.375rem, 1.3431372549rem + 0.1307189542vw, 1.5rem);
  }
}
.doctor-hero__quote::before {
  content: "“";
  font-size: 4rem;
  color: #6c9;
  font-family: Georgia, serif;
}
.doctor-hero__buttons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
}
@media (width > 90.06125rem) {
  .doctor-hero__buttons {
    flex-direction: column;
    align-items: flex-start;
  }
}
.doctor-hero__button {
  padding: 0.5rem 1.5rem;
  border-radius: 1rem;
  font-weight: 600;
  font-size: clamp(1.5rem, 1.3088235294rem + 0.7843137255vw, 2.25rem);
  font-family: var(--font-family-accent);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px 2px rgba(165, 243, 255, 0.2);
  background: var(--main-gradient);
  border: none;
  color: var(--white-color);
}
@media (width > 90.06125rem) {
  .doctor-hero__button {
    font-size: clamp(1.125rem, 0.9019607843rem + 0.9150326797vw, 2rem);
  }
  .doctor-hero__button:hover {
    box-shadow: 0 0 20px 10px rgba(171, 255, 220, 0.2);
    transform: translateY(-2px);
  }
}
.doctor-hero__button--review {
  font-family: var(--font-family-accent);
  padding-block: 0.25rem;
  width: max-content;
  padding-inline: 1.5rem;
  font-size: clamp(1.125rem, 0.9019607843rem + 0.9150326797vw, 2rem);
  font-weight: 600;
  color: var(--white-color);
  border-color: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: none;
  transition: all 0.3s ease;
  position: relative;
  border-radius: 1rem;
  cursor: pointer;
}
@media (width > 90.06125rem) {
  .doctor-hero__button--review:hover {
    box-shadow: 0 0 20px 10px rgba(171, 255, 220, 0.2);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white-color);
    transform: translateY(-2px);
  }
}

/* Информация о враче */
.doctor-info {
  padding-block: clamp(2.5rem, 2.181372549rem + 1.3071895425vw, 3.75rem);
  background: var(--white-color);
}
.doctor-info__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (width > 63.99875rem) {
  .doctor-info__inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    column-gap: 2rem;
  }
}
.doctor-info__block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.doctor-info__title {
  font-size: clamp(2rem, 1.7450980392rem + 1.045751634vw, 3rem);
  font-weight: 700;
  color: var(--night-color);
  line-height: 1.1;
}
.doctor-info__content {
  background: linear-gradient(180deg, #e5e5e5 0%, #cbddf2 100%);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: 0 0 10px 2px rgba(0, 120, 138, 0.2);
  padding: 1.5rem;
}
.doctor-info__list {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.doctor-info__item {
  list-style: none;
  padding: 0;
  margin: 0;
}
.doctor-info__item-title {
  font-size: clamp(1.375rem, 1.2794117647rem + 0.3921568627vw, 1.75rem);
  font-weight: 700;
  color: var(--dark-blue-color);
  text-align: left;
  margin-bottom: 1rem;
}
.doctor-info__item-text {
  border-bottom: 1px solid var(--border-color);
  font-size: clamp(1.125rem, 1.0294117647rem + 0.3921568627vw, 1.5rem);
  line-height: 1.5;
}
.doctor-info__item-text:last-child {
  border-bottom: none;
}
.doctor-info__item-text::before {
  content: "•";
  color: var(--accent-color);
  font-weight: bold;
  margin-right: 0.5rem;
}

/* Сертификаты и грамоты */
.doctor-certificates {
  padding-block: clamp(2.5rem, 2.181372549rem + 1.3071895425vw, 3.75rem);
  background: var(--light-gray-color);
}
.doctor-certificates__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.doctor-certificates__title {
  font-size: clamp(2rem, 1.7450980392rem + 1.045751634vw, 3rem);
  font-weight: 700;
  color: var(--night-color);
  line-height: 1.1;
}
.doctor-certificates__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (width > 63.99875rem) {
  .doctor-certificates__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}
@media (width > 90.06125rem) {
  .doctor-certificates__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}
.doctor-certificates__item {
  background: var(--white-color);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}
.doctor-certificates__item::before {
  content: "";
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 1.5rem;
  height: 1.5rem;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23007a8a" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M15 3h6v6M10 14L21 3M21 3v6M21 3h-6"/></svg>') no-repeat center;
  background-size: contain;
  opacity: 0.6;
  transition: opacity 0.3s ease;
  z-index: 2;
}
@media (width > 90.06125rem) {
  .doctor-certificates__item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    cursor: pointer;
  }
  .doctor-certificates__item:hover::before {
    opacity: 1;
  }
}
.doctor-certificates__item:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}
.doctor-certificates__image {
  position: relative;
  width: 100%;
  height: 15rem;
  overflow: hidden;
}
@media (width > 63.99875rem) {
  .doctor-certificates__image {
    height: 17.5rem;
  }
}
@media (width > 90.06125rem) {
  .doctor-certificates__image {
    height: 20rem;
  }
}
.doctor-certificates__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.doctor-certificates__item:hover .doctor-certificates__image img {
  transform: scale(1.05);
}
.doctor-certificates__description {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (width > 63.99875rem) {
  .doctor-certificates__description {
    padding: 1.75rem;
  }
}
@media (width > 90.06125rem) {
  .doctor-certificates__description {
    padding: 2rem;
  }
}
.doctor-certificates__item-title {
  font-size: clamp(1.125rem, 1.0931372549rem + 0.1307189542vw, 1.25rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--dark-green-color);
  margin: 0;
}
.doctor-certificates__item-text {
  font-size: clamp(0.875rem, 0.8431372549rem + 0.1307189542vw, 1rem);
  line-height: 1.5;
  color: var(--text-color);
  margin: 0;
  opacity: 0.8;
}

/* Модальное окно для сертификатов */
.certificate-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.certificate-modal--active {
  display: block;
  opacity: 1;
  transform: scale(1);
}
.certificate-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease;
}
.certificate-modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--white-color);
  border-radius: 1rem;
  padding: 2rem;
  max-width: 90vw;
  max-height: 90vh;
  overflow: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideIn 0.3s ease;
}
@media (width <= 47.99875rem) {
  .certificate-modal__content {
    padding: 1.25rem;
    width: 95vw;
    max-height: 85vh;
  }
}
.certificate-modal__close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--dark-green-color);
  cursor: pointer;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 1001;
}
.certificate-modal__close:hover {
  background: var(--light-gray-color);
  transform: scale(1.1);
  color: var(--accent-color);
}
.certificate-modal__close:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}
.certificate-modal__image {
  margin-bottom: 1.5rem;
  text-align: center;
}
.certificate-modal__image img {
  max-width: 100%;
  max-height: 60vh;
  border-radius: 0.75rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  margin: 0 auto;
}
.certificate-modal__image img:hover {
  transform: scale(1.02);
}
.certificate-modal__description {
  text-align: center;
}
.certificate-modal__description h3 {
  font-size: clamp(1.25rem, 1.1862745098rem + 0.2614379085vw, 1.5rem);
  font-weight: 600;
  color: var(--dark-green-color);
  margin: 0 0 1rem 0;
  line-height: 1.3;
}
.certificate-modal__description p {
  font-size: clamp(0.875rem, 0.8431372549rem + 0.1307189542vw, 1rem);
  line-height: 1.5;
  color: var(--text-color);
  margin: 0;
  opacity: 0.8;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
/* Отзывы */
.doctor-reviews__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-block: clamp(2.5rem, 2.181372549rem + 1.3071895425vw, 3.75rem);
  width: 100%;
}
.doctor-reviews__title {
  font-size: clamp(2rem, 1.7450980392rem + 1.045751634vw, 3rem);
  font-weight: 700;
  color: var(--night-color);
  line-height: 1.1;
}
.doctor-reviews__wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}
@media (width > 63.99875rem) {
  .doctor-reviews__wrapper {
    flex-direction: row;
  }
}
.doctor-reviews__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (width > 63.99875rem) {
  .doctor-reviews__list {
    min-width: 60%;
  }
}
.doctor-reviews__item {
  background: var(--dark-blue-color-2);
  padding: 1.25rem;
  border-radius: 1rem;
  box-shadow: 0 0 10px 2px rgba(0, 120, 138, 0.2);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.doctor-reviews__item:nth-child(2n) {
  background: var(--dark-green-color);
}
.doctor-reviews__header {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.doctor-reviews__name {
  font-family: var(--font-family-accent);
  font-weight: 600;
  color: var(--light-sky-color-2);
  font-size: clamp(1.375rem, 1.2794117647rem + 0.3921568627vw, 1.75rem);
}
.doctor-reviews__date {
  font-size: clamp(1rem, 0.9362745098rem + 0.2614379085vw, 1.25rem);
  color: var(--light-gray-color);
}
.doctor-reviews__rating {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.doctor-reviews__rating-img {
  width: 2.5rem;
  height: 2.5rem;
}
.doctor-reviews__text {
  font-size: clamp(1.125rem, 1.0294117647rem + 0.3921568627vw, 1.5rem);
  line-height: 1.6;
  line-height: 115%;
  font-weight: 300;
  color: var(--extra-light-gray-color);
}
.doctor-reviews__more-button {
  font-size: clamp(1.125rem, 1.0294117647rem + 0.3921568627vw, 1.5rem);
  font-weight: 600;
  color: var(--white-color);
  margin-bottom: 1.5rem;
  border: none;
  background: var(--main-gradient);
  border-radius: 1rem;
  transition: all 0.3s ease;
  padding: 0.5rem 1.5rem;
}
.doctor-reviews__more-button:hover {
  box-shadow: 0 0 10px 2px rgba(45, 97, 75, 0.2);
  transform: translateY(-2px);
}
.doctor-reviews__form {
  background: var(--dark-blue-color);
  padding: 1.5rem;
  border-radius: 1rem;
  height: fit-content;
  box-shadow: 0 0 10px 2px rgba(0, 120, 138, 0.2);
  width: 100%;
}
.doctor-reviews__form-title {
  font-size: clamp(1.5rem, 1.3725490196rem + 0.522875817vw, 2rem);
  font-weight: 600;
  color: var(--light-sky-color-2);
  margin-bottom: 1.5rem;
  text-align: left;
}

.review-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}
.review-form__textarea {
  width: 100%;
  border-radius: 0.625rem;
  border: none;
  padding: 0.5rem;
  line-height: 115%;
  max-width: 100%;
}
.review-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}
.review-form__label {
  font-size: clamp(1.125rem, 1.0294117647rem + 0.3921568627vw, 1.5rem);
  color: var(--white-color);
  font-weight: 500;
}
.review-form__input {
  width: 100%;
  border-radius: 0.625rem;
  border: none;
  padding: 0.5rem;
  line-height: 115%;
}
.review-form__input::placeholder {
  font-size: clamp(1.125rem, 1.0294117647rem + 0.3921568627vw, 1.5rem);
  color: var(--white-color);
  font-weight: 500;
}
.review-form__submit {
  width: 100%;
  height: clamp(2.5rem, 1.5441176471rem + 3.9215686275vw, 6.25rem);
  border-radius: 1rem;
  background-color: var(--light-sky-color-2);
  border: none;
  color: var(--night-color);
  font-weight: 600;
  font-size: clamp(1rem, 0.7450980392rem + 1.045751634vw, 2rem);
  font-family: var(--font-family-accent);
  transition: all 0.3s ease;
}
.review-form__submit:hover {
  box-shadow: 0 0 10px 2px rgba(176, 252, 220, 0.2);
  transform: translateY(-2px);
}

.rating {
  display: inline-flex;
  flex-direction: row-reverse;
  gap: 6px;
  justify-content: flex-end;
}
.rating input {
  display: none;
}
.rating label {
  width: 40px;
  height: 40px;
  background: url("/img/star-empty.svg") no-repeat center/contain;
  cursor: pointer;
}
.rating label:hover, .rating label:hover ~ label {
  background-image: url("/img/star.svg");
}
.rating input:checked ~ label {
  background-image: url("/img/star.svg");
}

.review-message {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 0.9375rem 1.25rem;
  border-radius: 0.5rem;
  color: var(--white-color);
  font-weight: 500;
  z-index: 1000;
  max-width: 18.75rem;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.review-message--success {
  background-color: #4caf50;
}
.review-message--error {
  background-color: #f44336;
}
.review-message--warning {
  background-color: #ff9800;
}
.review-message--info {
  background-color: #2196f3;
}

.doctors-hero {
  position: relative;
  padding-block: 2.5rem;
  background: linear-gradient(to bottom, var(--dark-green-color-2), var(--dark-green-color-2));
  color: var(--white-color);
  height: 100vh;
  overflow: hidden;
}
@media (width <= 47.99875rem) {
  .doctors-hero {
    height: 144vh;
    padding-block: 2.5rem;
    margin-top: var(--header-body-height);
  }
}
.doctors-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.1;
}
.doctors-hero__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.doctors-hero__inner {
  position: relative;
  z-index: 2;
  gap: 3.75rem;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}
@media (width <= 47.99875rem) {
  .doctors-hero__inner {
    gap: 2.5rem;
  }
}
.doctors-hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  text-align: left;
  gap: 2rem;
}
@media (width <= 47.99875rem) {
  .doctors-hero__content {
    gap: 1.5rem;
  }
}
.doctors-hero__title {
  font-size: clamp(2.25rem, 1.8039215686rem + 1.8300653595vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  color: var(--white-color);
}
@media (width <= 47.99875rem) {
  .doctors-hero__title {
    font-size: clamp(2.375rem, 2.2156862745rem + 0.6535947712vw, 3rem);
  }
}
.doctors-hero__description {
  font-size: clamp(1.75rem, 1.6862745098rem + 0.2614379085vw, 2rem);
  line-height: 1.6;
  margin: 0;
  opacity: 0.9;
  font-weight: 200;
}
@media (width <= 47.99875rem) {
  .doctors-hero__description {
    font-size: clamp(1.25rem, 1.1225490196rem + 0.522875817vw, 1.75rem);
  }
}
.doctors-hero__features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.doctors-hero__feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  backdrop-filter: blur(5px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}
.doctors-hero__feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
}
.doctors-hero__feature-text {
  font-size: clamp(1.25rem, 1.1862745098rem + 0.2614379085vw, 1.5rem);
  font-weight: 500;
  color: var(--white-color);
  white-space: nowrap;
}
.doctors-hero__stats {
  display: flex;
  width: 100%;
  gap: 3.75rem;
}
@media (width <= 47.99875rem) {
  .doctors-hero__stats {
    gap: 2.5rem;
    flex-wrap: wrap;
  }
}
@media (width <= 63.99875rem) {
  .doctors-hero__stats {
    gap: 3.125rem;
  }
}
.doctors-hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.doctors-hero__stat-number {
  font-size: clamp(2.25rem, 1.8039215686rem + 1.8300653595vw, 4rem);
  font-weight: 700;
  color: var(--light-sky-color);
  line-height: 1;
}
@media (width <= 47.99875rem) {
  .doctors-hero__stat-number {
    font-size: clamp(1.75rem, 1.6225490196rem + 0.522875817vw, 2.25rem);
  }
}
.doctors-hero__stat-text {
  font-size: clamp(1.125rem, 1.0931372549rem + 0.1307189542vw, 1.25rem);
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.doctors-hero__stat-description {
  font-size: clamp(1rem, 0.8725490196rem + 0.522875817vw, 1.5rem);
  opacity: 0.7;
  font-weight: 300;
  text-align: center;
}
.doctors-hero__cta {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (width <= 47.99875rem) {
  .doctors-hero__cta {
    padding: 1.5rem;
  }
}
.doctors-hero__cta-title {
  font-size: clamp(1.25rem, 1.1862745098rem + 0.2614379085vw, 1.5rem);
  font-weight: 600;
  color: var(--white-color);
}
.doctors-hero__cta-description {
  font-size: clamp(1rem, 0.8725490196rem + 0.522875817vw, 1.5rem);
  line-height: 1.5;
  opacity: 0.9;
  color: var(--white-color);
}
.doctors-hero__cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.doctors-hero__cta-button {
  padding: 0.75rem 1.5rem;
  border-radius: 1rem;
  font-size: clamp(1rem, 0.8725490196rem + 0.522875817vw, 1.5rem);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  min-width: 10rem;
}
.doctors-hero__cta-button--primary {
  background: linear-gradient(135deg, #00c9e6, #79c96b);
  color: var(--white-color);
}
.doctors-hero__cta-button--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 201, 230, 0.3);
}
.doctors-hero__cta-button--secondary {
  background: transparent;
  color: var(--white-color);
  border-color: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.doctors-hero__cta-button--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white-color);
  transform: translateY(-2px);
}
.doctors-hero__decorations {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
  justify-content: center;
}
.doctors-hero__decoration {
  animation: float 6s ease-in-out infinite;
}
.doctors-hero__decoration--1 {
  animation-delay: 0s;
}
.doctors-hero__decoration--2 {
  animation-delay: 2s;
  opacity: 0.8;
}
.doctors-hero__decoration--3 {
  animation-delay: 4s;
}
.doctors-hero__floating-stat {
  background: rgba(255, 255, 255, 0.15);
  padding: 1.25rem;
  border-radius: 0.75rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  min-width: 8.75rem;
}
.doctors-hero__floating-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--light-sky-color);
  line-height: 1;
}
.doctors-hero__floating-text {
  display: block;
  font-size: 0.75rem;
  opacity: 0.9;
  margin-top: 0.25rem;
  color: var(--white-color);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}
.doctors-section {
  padding-block: 5rem;
  background: none;
  width: 100%;
}
@media (width <= 47.99875rem) {
  .doctors-section {
    padding-block: 3.75rem;
  }
}
.doctors-section__inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (width <= 47.99875rem) {
  .doctors-section__inner {
    gap: 2.5rem;
  }
}
.doctors-section__title {
  font-size: clamp(2rem, 1.7450980392rem + 1.045751634vw, 3rem);
  font-weight: 700;
  color: var(--night-color);
  line-height: 1.1;
}

.doctors-grid {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 1.5rem;
}
@media (width <= 63.99875rem) {
  .doctors-grid {
    display: flex;
    flex-direction: column;
    row-gap: 1.5rem;
  }
}
@media (width > 63.99875rem) {
  .doctors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (width > 90.06125rem) {
  .doctors-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.doctor-card {
  background: var(--white-color);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: max-content;
}
@media (width > 90.06125rem) {
  .doctor-card {
    min-height: clamp(61.25rem, 61.1544117647rem + 0.3921568627vw, 61.625rem);
  }
}
.doctor-card--last {
  grid-column: 2/2;
}
.doctor-card__image {
  position: relative;
  width: 100%;
  overflow: hidden;
}
@media (width <= 47.99875rem) {
  .doctor-card__image {
    height: 31.25rem;
  }
}
@media (width <= 63.99875rem) {
  .doctor-card__image {
    height: 37.5rem;
  }
}
@media (width > 63.99875rem) {
  .doctor-card__image {
    height: 34.375rem;
  }
}
@media (width > 90.06125rem) {
  .doctor-card__image {
    height: 31.25rem;
  }
}
.doctor-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.doctor-card:hover .doctor-card__image img {
  transform: scale(1.05);
}
.doctor-card__content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  height: auto;
}
.doctor-card__name {
  font-size: clamp(1.5rem, 1.3725490196rem + 0.522875817vw, 2rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--dark-green-color);
  margin: 0;
}
.doctor-card__specialty {
  font-size: clamp(1.125rem, 1.0294117647rem + 0.3921568627vw, 1.5rem);
  font-weight: 500;
  color: var(--text-color);
  margin: 0;
  opacity: 0.8;
}
.doctor-card__experience {
  font-size: clamp(1rem, 0.9044117647rem + 0.3921568627vw, 1.375rem);
  color: var(--text-color);
  margin: 0;
  opacity: 0.7;
}
.doctor-card__specializations {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.doctor-card__specialization {
  background: var(--extra-light-gray-color);
  color: var(--dark-green-color);
  padding: 0.375rem 0.75rem;
  border-radius: 1rem;
  font-size: clamp(1rem, 0.9044117647rem + 0.3921568627vw, 1.375rem);
  font-weight: 500;
  white-space: wrap;
}
.doctor-card__button {
  background: linear-gradient(135deg, var(--light-sky-color) 0%, var(--light-green-color) 100%);
  color: var(--dark-blue-color);
  text-decoration: none;
  width: 100%;
  padding: 0.75rem 1.5rem;
  border-radius: 1rem;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
  font-size: clamp(1.125rem, 1.0294117647rem + 0.3921568627vw, 1.5rem);
}
.doctor-card__button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 201, 230, 0.3);
}
.doctor-card__button:active {
  transform: translateY(0);
}

.doctors-advantages {
  padding-block: 5rem;
  background: var(--white-color);
}
@media (width <= 47.99875rem) {
  .doctors-advantages {
    padding-block: 3.75rem;
  }
}
.doctors-advantages__inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (width <= 47.99875rem) {
  .doctors-advantages__inner {
    gap: 2.5rem;
  }
}
.doctors-advantages__title {
  font-size: clamp(2rem, 1.7450980392rem + 1.045751634vw, 3rem);
  font-weight: 700;
  color: var(--night-color);
  line-height: 1.1;
}
.doctors-advantages__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (width > 63.99875rem) {
  .doctors-advantages__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}
@media (width > 90.06125rem) {
  .doctors-advantages__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}
.doctors-advantages__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: 1rem;
  background: var(--light-gray-color);
  transition: all 0.3s ease;
}
@media (width > 90.06125rem) {
  .doctors-advantages__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  }
}
.doctors-advantages__icon {
  width: 5rem;
  height: 5rem;
  background: linear-gradient(135deg, var(--light-sky-color) 0%, var(--light-green-color) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 201, 230, 0.2);
}
.doctors-advantages__icon img {
  width: 80%;
  height: 80%;
  filter: brightness(0) invert(1);
}
.doctors-advantages__item-title {
  font-size: clamp(1.5rem, 1.3725490196rem + 0.522875817vw, 2rem);
  font-weight: 600;
  color: var(--dark-green-color);
  margin: 0;
}
.doctors-advantages__item-text {
  font-size: clamp(1.25rem, 1.1862745098rem + 0.2614379085vw, 1.5rem);
  line-height: 1.5;
  color: var(--text-color);
  margin: 0;
  font-weight: 300;
}

.doctors-schedule {
  padding-block: 5rem;
  background: linear-gradient(135deg, #cbddf2 0%, #b7e0f1 20%, #a8e6cf 50%, #95d9ba 75%, #c4f0e0 100%);
}
.doctors-schedule__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: flex-start;
}
.doctors-schedule__title {
  font-size: clamp(2rem, 1.7450980392rem + 1.045751634vw, 3rem);
  font-weight: 700;
  color: var(--night-color);
  line-height: 1.1;
}
.doctors-schedule__description {
  font-size: clamp(1.25rem, 1.1862745098rem + 0.2614379085vw, 1.5rem);
  text-align: left;
  color: var(--text-color);
}
.doctors-schedule__days {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-bottom: 3.75rem;
}
.doctors-schedule__info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr));
  gap: 2rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border-color);
}
.doctors-schedule__info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.doctors-schedule__info-icon {
  font-size: 2rem;
  flex-shrink: 0;
}
.doctors-schedule__info-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--dark-color);
}
.doctors-schedule__info-content p {
  font-size: 0.875rem;
  color: var(--text-color);
  line-height: 1.5;
}

.schedule-day {
  background: var(--extra-light-gray-color);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.08);
}
.schedule-day__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-blue-color);
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
}
.schedule-day__title::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 3.75rem;
  height: 0.1875rem;
  background: var(--primary-color);
  border-radius: 0.125rem;
}
.schedule-day__doctors {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr));
  gap: 1.25rem;
}

.schedule-doctor {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--white-color);
  border-radius: 0 1rem 1rem 0;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 10px 2px rgba(0, 120, 138, 0.2);
}
.schedule-doctor::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, var(--light-sky-color) 0%, var(--light-green-color) 100%);
  transition: width 0.3s ease;
}
.schedule-doctor:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 0.5rem 1.5625rem rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}
.schedule-doctor:hover::before {
  width: 8px;
}
.schedule-doctor__avatar {
  width: 6.25rem;
  height: 6.25rem;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--light-green-color);
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
}
.schedule-doctor:hover .schedule-doctor__avatar {
  border-color: var(--semi-dark-green-color);
  transform: scale(1.05);
  box-shadow: 0 0.375rem 1.125rem rgba(0, 0, 0, 0.15);
}
.schedule-doctor__info {
  flex: 1;
  min-width: 0;
  width: 100%;
  gap: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.schedule-doctor__info h4 {
  font-size: clamp(1.125rem, 1.0294117647rem + 0.3921568627vw, 1.5rem);
  font-weight: 700;
  color: var(--dark-green-color);
  line-height: 1.3;
  transition: color 0.3s ease;
}
.schedule-doctor:hover .schedule-doctor__info h4 {
  color: var(--semi-dark-green-color-2);
}
.schedule-doctor__info p {
  font-size: clamp(1rem, 0.9044117647rem + 0.3921568627vw, 1.375rem);
  color: var(--text-color);
  margin: 0;
}
.schedule-doctor__time {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: clamp(1.125rem, 1.0294117647rem + 0.3921568627vw, 1.5rem);
  font-weight: 600;
  color: var(--dark-green-color);
  background: var(--light-gray-color);
  padding: 0.375rem 0.75rem;
  border-radius: 1rem;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  width: max-content;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.schedule-doctor__time::before {
  content: "";
  background-image: url(../icons/time-black.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 1.25rem;
  height: 1.25rem;
}
.schedule-doctor:hover .schedule-doctor__time {
  background: var(--light-gray-color);
  color: var(--dark-green-color);
}
.schedule-doctor__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-shrink: 0;
}
.schedule-doctor__button {
  padding: 0.625rem 1rem;
  padding-inline: 1.5rem;
  border: none;
  border-radius: 1rem;
  font-size: clamp(1.125rem, 1.0294117647rem + 0.3921568627vw, 1.5rem);
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  width: max-content;
}
.schedule-doctor__button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}
.schedule-doctor__button:hover::before {
  left: 100%;
}
.schedule-doctor__button--primary {
  background: var(--main-gradient);
  color: var(--white-color);
  box-shadow: 0 0.25rem 0.75rem rgba(0, 123, 255, 0.3);
}
.schedule-doctor__button--primary:hover {
  background: var(--main-gradient);
  transform: translateY(-0.125rem);
  box-shadow: 0 0.375rem 1.125rem rgba(0, 123, 255, 0.4);
}
.schedule-doctor__button--primary:active {
  transform: translateY(0);
}
.schedule-doctor__button--secondary {
  background: var(--button-blue-opacity);
  color: var(--dark-blue-color);
  position: relative;
}
.schedule-doctor__button--secondary:hover {
  background: var(--scroll-blue-opacity);
  color: var(--dark-blue-color);
  transform: translateY(-0.125rem);
  box-shadow: 0 0.25rem 0.75rem rgba(0, 123, 255, 0.2);
}
.schedule-doctor__button--secondary:active {
  transform: translateY(0);
}

@media (width <= 47.99875rem) {
  .doctors-schedule {
    padding-block: 3.75rem;
  }
  .doctors-schedule__days {
    gap: 1.5rem;
  }
  .doctors-schedule__info {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .doctors-schedule .schedule-day {
    padding: 1.5rem;
  }
  .doctors-schedule .schedule-day__doctors {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .doctors-schedule .schedule-doctor {
    padding: 1rem;
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  .doctors-schedule .schedule-doctor__actions {
    flex-direction: row;
    width: 100%;
    align-items: center;
    justify-content: center;
  }
}
@media (width <= 90.06125rem) {
  .schedule-day__doctors {
    grid-template-columns: repeat(auto-fit, minmax(15.625rem, 1fr));
  }
}
.prices-hero {
  padding-block: 5rem;
  background: url("../../img/wave-bg-1.svg") no-repeat center center/cover, linear-gradient(to bottom, var(--dark-green-color-2), var(--dark-green-color-2));
  color: var(--white-color);
  height: 100vh;
}
@media (width <= 47.99875rem) {
  .prices-hero {
    padding-block: 3.75rem;
    height: 160vh;
    margin-top: var(--header-body-height);
  }
}
.prices-hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 2.5rem;
  height: 100%;
}
@media (width <= 47.99875rem) {
  .prices-hero__content {
    gap: 2rem;
  }
}
.prices-hero__title {
  font-size: clamp(2.375rem, 1.9607843137rem + 1.6993464052vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  color: var(--white-color);
}
.prices-hero__description {
  font-size: clamp(1rem, 0.8725490196rem + 0.522875817vw, 1.5rem);
  line-height: 1.6;
  font-weight: 300;
  margin: 0;
}
@media (width <= 47.99875rem) {
  .prices-hero__description {
    font-size: clamp(1.125rem, 1.0294117647rem + 0.3921568627vw, 1.5rem);
  }
}
.prices-hero__description-orto {
  background-color: var(--light-gray-color);
  padding: 1rem;
  border-radius: 1rem;
  color: var(--dark-blue-color);
}
.prices-hero__features {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
@media (width <= 47.99875rem) {
  .prices-hero__features {
    gap: 1.5rem;
    flex-direction: column;
  }
}
.prices-hero__feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: clamp(1rem, 0.9681372549rem + 0.1307189542vw, 1.125rem);
  font-weight: 500;
}
@media (width <= 47.99875rem) {
  .prices-hero__feature {
    font-size: clamp(1.375rem, 1.3431372549rem + 0.1307189542vw, 1.5rem);
  }
}
.prices-hero__feature-icon {
  background: var(--dark-blue-color);
  color: var(--white-color);
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: bold;
}

.prices-section {
  padding-block: clamp(2.5rem, 1.862745098rem + 2.614379085vw, 5rem);
}
@media (width <= 47.99875rem) {
  .prices-section {
    padding-block: 3.75rem;
  }
}
.prices-section__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.prices-section__title {
  font-size: clamp(2rem, 1.7450980392rem + 1.045751634vw, 3rem);
  font-weight: 700;
  color: var(--night-color);
  line-height: 1.1;
}
.prices-section__subtitle {
  font-size: clamp(1.125rem, 1.0294117647rem + 0.3921568627vw, 1.5rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--semi-dark-green-color);
  text-align: left;
}

.prices-category {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.prices-category__title {
  font-size: clamp(1.75rem, 1.6862745098rem + 0.2614379085vw, 2rem);
  font-weight: 600;
  color: var(--dark-green-color);
  margin: 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--semi-dark-green-color);
}
@media (width <= 47.99875rem) {
  .prices-category__title {
    font-size: clamp(1.25rem, 1.1225490196rem + 0.522875817vw, 1.75rem);
  }
}
.prices-category__icon {
  font-size: clamp(1.5rem, 1.4362745098rem + 0.2614379085vw, 1.75rem);
}
.prices-category__warning {
  font-size: clamp(1.25rem, 1.1862745098rem + 0.2614379085vw, 1.5rem);
  color: var(--dark-green-color);
  font-weight: 400;
  margin: 0;
}
.prices-category__warning2 {
  display: inline-block;
  padding-block: clamp(2.5rem, 2.181372549rem + 1.3071895425vw, 3.75rem);
  font-size: clamp(0.875rem, 0.8431372549rem + 0.1307189542vw, 1rem);
  color: var(--dark-green-color);
  background-color: var(--light-gray-color-opacity);
  font-weight: 400;
  margin: 0;
}

.prices-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (width > 63.99875rem) {
  .prices-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (width > 90.06125rem) {
  .prices-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

.price-item {
  background: var(--white-color);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
@media (width <= 47.99875rem) {
  .price-item {
    padding: 1.25rem;
  }
}
.price-item__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  gap: 1rem;
}
@media (width <= 47.99875rem) {
  .price-item__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}
.price-item__title {
  font-size: clamp(1.25rem, 1.1862745098rem + 0.2614379085vw, 1.5rem);
  font-weight: 600;
  color: var(--dark-green-color);
  margin: 0;
  line-height: 1.3;
}
.price-item__container {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.price-item__more {
  font-size: clamp(1rem, 0.9362745098rem + 0.2614379085vw, 1.25rem);
  font-weight: 400;
  color: var(--gray-color);
  margin: 0;
  line-height: 1.3;
}
@media (width > 63.99875rem) {
  .price-item__more {
    margin-bottom: 1rem;
  }
}
.price-item__price {
  background: var(--main-gradient);
  color: var(--white-color);
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  font-weight: 700;
  font-size: clamp(1.25rem, 1.1862745098rem + 0.2614379085vw, 1.5rem);
  white-space: nowrap;
}
.price-item__description {
  font-size: clamp(1rem, 0.9362745098rem + 0.2614379085vw, 1.25rem);
  line-height: 1.5;
  color: var(--text-color);
  margin: 0;
  margin-bottom: 1rem;
}
.price-item__details {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.price-item__details li {
  font-size: clamp(1rem, 0.9362745098rem + 0.2614379085vw, 1.25rem);
  color: var(--text-color);
  position: relative;
  opacity: 0.8;
  padding-left: 1.25rem;
}
.price-item__details li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--light-green-color);
  font-weight: bold;
}

.prices-discounts {
  padding-block: 5rem;
}
@media (width <= 47.99875rem) {
  .prices-discounts {
    padding-block: 3.75rem;
  }
}
.prices-discounts__inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (width <= 47.99875rem) {
  .prices-discounts__inner {
    gap: 2.5rem;
  }
}
.prices-discounts__title {
  font-size: clamp(2rem, 1.7450980392rem + 1.045751634vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark-green-color);
  text-align: center;
  margin: 0;
}
.prices-discounts__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (width > 63.99875rem) {
  .prices-discounts__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (width > 90.06125rem) {
  .prices-discounts__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
  }
}

.discount-item {
  background: var(--light-sky-color-2);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}
@media (width > 90.06125rem) {
  .discount-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  }
}
@media (width <= 47.99875rem) {
  .discount-item {
    padding: 1.25rem;
  }
}
.discount-item__badge {
  position: absolute;
  top: -0.75rem;
  right: 1.25rem;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  color: var(--white-color);
  padding: 0.5rem 1rem;
  border-radius: 1.25rem;
  font-weight: 700;
  font-size: 1.125rem;
  box-shadow: 0 4px 16px rgba(255, 107, 107, 0.3);
}
.discount-item__title {
  font-size: clamp(1.25rem, 1.1862745098rem + 0.2614379085vw, 1.5rem);
  font-weight: 600;
  color: var(--dark-green-color);
  margin: 0;
  margin-bottom: 0.75rem;
  margin-top: 0.5rem;
}
.discount-item__description {
  font-size: clamp(1.125rem, 1.0931372549rem + 0.1307189542vw, 1.25rem);
  line-height: 1.5;
  color: var(--dark-green-color);
  margin: 0;
  margin-bottom: 1rem;
  opacity: 1;
}
.discount-item__conditions {
  font-size: clamp(1rem, 0.9362745098rem + 0.2614379085vw, 1.25rem);
  color: var(--dark-blue-color);
  font-weight: 500;
  opacity: 0.8;
}

.prices-consultation {
  padding-block: 5rem;
  background: linear-gradient(135deg, var(--dark-blue-color) 0%, var(--dark-green-color) 100%);
  color: var(--white-color);
}
@media (width <= 47.99875rem) {
  .prices-consultation {
    padding-block: 3.75rem;
  }
}
.prices-consultation__inner {
  display: flex;
  justify-content: center;
}
.prices-consultation__content {
  max-width: 37.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (width <= 47.99875rem) {
  .prices-consultation__content {
    gap: 1.5rem;
  }
}
.prices-consultation__title {
  font-size: clamp(2rem, 1.7450980392rem + 1.045751634vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  color: var(--white-color);
  text-align: left;
}
.prices-consultation__description {
  font-size: clamp(1.125rem, 1.0931372549rem + 0.1307189542vw, 1.25rem);
  line-height: 1.2;
  font-weight: 300;
  margin: 0;
  opacity: 0.9;
  text-align: left;
}
.prices-consultation__features {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
@media (width <= 47.99875rem) {
  .prices-consultation__features {
    gap: 1.5rem;
  }
}
.prices-consultation__feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(1rem, 0.9681372549rem + 0.1307189542vw, 1.125rem);
  font-weight: 400;
}
.prices-consultation__feature-icon {
  font-size: 2rem;
  opacity: 0.8;
}
.prices-consultation__button {
  background: linear-gradient(135deg, var(--light-sky-color) 0%, var(--light-green-color) 100%);
  color: var(--dark-blue-color);
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 1.875rem;
  font-weight: 600;
  font-size: clamp(1.25rem, 1.1862745098rem + 0.2614379085vw, 1.5rem);
  text-align: center;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 1rem;
}
.prices-consultation__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 201, 230, 0.3);
}
.prices-consultation__button:active {
  transform: translateY(0);
}

@media (width <= 47.99875rem) {
  .prices-grid {
    gap: 1.25rem;
  }
  .price-item {
    padding: 1rem;
  }
  .price-item__header {
    margin-bottom: 0.75rem;
  }
  .price-item__description {
    margin-bottom: 0.75rem;
  }
  .prices-discounts__grid {
    gap: 1.25rem;
  }
  .discount-item {
    padding: 1rem;
  }
}
@media (width <= 63.99875rem) {
  .prices-grid {
    gap: 1.75rem;
  }
  .prices-discounts__grid {
    gap: 1.75rem;
  }
}
.services-section {
  padding: 5rem 0;
  background-color: var(--white-color);
}
.services-section__inner {
  max-width: 75rem;
  margin: 0 auto;
}
.services-section__title {
  font-size: clamp(1.5rem, 1.3725490196rem + 0.522875817vw, 2rem);
  font-weight: 700;
  color: var(--dark-color);
  text-align: center;
  margin-bottom: 1rem;
}
.services-section__subtitle {
  font-size: clamp(1rem, 0.9362745098rem + 0.2614379085vw, 1.25rem);
  color: var(--gray-color);
  text-align: center;
  margin-bottom: 3.75rem;
  max-width: 37.5rem;
  margin-left: auto;
  margin-right: auto;
}

.services-category {
  margin-bottom: 5rem;
}
.services-category__title {
  font-size: clamp(1.375rem, 1.2794117647rem + 0.3921568627vw, 1.75rem);
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
  position: relative;
}
.services-category__title::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 3.75rem;
  height: 0.1875rem;
  background-color: var(--primary-color);
  border-radius: 0.125rem;
}
.services-category__description {
  font-size: clamp(1rem, 0.9681372549rem + 0.1307189542vw, 1.125rem);
  color: var(--gray-color);
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr));
  gap: 1.875rem;
  margin-bottom: 1.25rem;
}
@media (width <= 63.99875rem) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(17.5rem, 1fr));
    gap: 1.5625rem;
  }
}
@media (width <= 47.99875rem) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.service-card {
  background-color: var(--light-bg-color);
  border-radius: 0.75rem;
  padding: 1.875rem;
  box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 0.0625rem solid transparent;
}
.service-card:hover {
  transform: translateY(-0.3125rem);
  box-shadow: 0 0.5rem 1.875rem rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}
.service-card__title {
  font-size: clamp(1.125rem, 1.0931372549rem + 0.1307189542vw, 1.25rem);
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 1rem;
  line-height: 1.3;
}
.service-card__description {
  font-size: clamp(0.9375rem, 0.9215686275rem + 0.0653594771vw, 1rem);
  color: var(--gray-color);
  line-height: 1.5;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  font-size: clamp(0.9375rem, 0.9215686275rem + 0.0653594771vw, 1rem);
  font-weight: 500;
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}
.service-card__link::after {
  content: "";
  width: 1rem;
  height: 1rem;
  margin-left: 0.5rem;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAxNiAxNiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTggNEw2IDYuNUw5LjUgMTJMMTQuNSA2LjVMMTIgNEw5LjUgOEw4IDRaIiBmaWxsPSIjMDA1MjU5Ii8+Cjwvc3ZnPgo=");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
}
.service-card__link:hover {
  color: var(--primary-dark-color);
}
.service-card__link:hover::after {
  transform: translateX(0.1875rem);
}
@media (width <= 47.99875rem) {
  .service-card {
    padding: 1.25rem;
  }
  .service-card__title {
    font-size: 1.125rem;
  }
  .service-card__description {
    font-size: 0.875rem;
  }
}

@media (width <= 63.99875rem) {
  .services-section {
    padding: 3.75rem 0;
  }
  .services-section__title {
    font-size: 1.75rem;
  }
  .services-section__subtitle {
    font-size: 1.125rem;
    margin-bottom: 3.125rem;
  }
  .services-category {
    margin-bottom: 3.75rem;
  }
  .services-category__title {
    font-size: 1.5rem;
  }
  .services-category__description {
    font-size: 1rem;
    margin-bottom: 1.875rem;
  }
  .services-grid {
    gap: 1.25rem;
  }
  .service-card {
    padding: 1.5625rem;
  }
}
@media (width <= 47.99875rem) {
  .services-section {
    padding: 2.5rem 0;
  }
  .services-section__title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }
  .services-section__subtitle {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }
  .services-category {
    margin-bottom: 3.125rem;
  }
  .services-category__title {
    font-size: 1.375rem;
  }
  .services-category__description {
    font-size: 0.9375rem;
    margin-bottom: 1.5625rem;
  }
  .services-grid {
    gap: 0.9375rem;
  }
  .service-card {
    padding: 1.25rem;
    border-radius: 0.5rem;
  }
}
.search-hero {
  padding-block: clamp(2.5rem, 1.862745098rem + 2.614379085vw, 5rem);
  background: linear-gradient(135deg, rgba(0, 201, 230, 0.08) 0%, rgba(121, 201, 107, 0.08) 100%);
}
.search-hero__inner {
  max-width: 75rem;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.search-hero__title {
  font-size: clamp(2rem, 1.7450980392rem + 1.045751634vw, 3rem);
  font-weight: 700;
  color: var(--dark-green-color);
  margin-bottom: 1.5rem;
  text-align: left;
}
.search-hero__query {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  background: var(--white-color);
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.search-hero__query-label {
  font-weight: 600;
  color: var(--dark-green-color);
  font-size: clamp(1.75rem, 1.6862745098rem + 0.2614379085vw, 2rem);
}
.search-hero__query-text {
  font-size: clamp(1.75rem, 1.6862745098rem + 0.2614379085vw, 2rem);
  color: var(--gray-color);
  font-style: italic;
}

.search-results {
  padding-block: clamp(2.5rem, 1.862745098rem + 2.614379085vw, 5rem);
  background: var(--white-color);
}
.search-results__count {
  font-size: clamp(1.125rem, 1.0294117647rem + 0.3921568627vw, 1.5rem);
  font-weight: 600;
  color: var(--dark-green-color);
  text-align: center;
  margin-bottom: 2.5rem;
}
.search-results__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.search-results__no-results {
  text-align: center;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(255, 68, 68, 0.05) 0%, rgba(255, 136, 136, 0.05) 100%);
  border-radius: 0.75rem;
  border: 2px dashed rgba(255, 68, 68, 0.2);
}
.search-results__no-results p {
  font-size: clamp(0.875rem, 0.8112745098rem + 0.2614379085vw, 1.125rem);
  color: var(--gray-color);
  margin: 0.5rem 0;
  line-height: 140%;
}

.search-result-item {
  background: var(--white-color);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--semi-dark-green-color);
  transition: transform 0.3s ease;
}
.search-result-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.search-result-item__title {
  margin-bottom: 0.75rem;
}
.search-result-item__link {
  font-size: clamp(1.125rem, 1.0294117647rem + 0.3921568627vw, 1.5rem);
  font-weight: 600;
  color: var(--dark-green-color);
  text-decoration: none;
  line-height: 120%;
  transition: color 0.3s ease;
}
.search-result-item__link:hover {
  color: var(--semi-dark-green-color);
}
.search-result-item__url {
  font-size: clamp(0.75rem, 0.7181372549rem + 0.1307189542vw, 0.875rem);
  color: var(--gray-color);
  margin-bottom: 0.75rem;
  font-family: "Courier New", monospace;
  opacity: 0.8;
}
.search-result-item__matched-words {
  font-size: clamp(0.875rem, 0.8431372549rem + 0.1307189542vw, 1rem);
  color: var(--gray-color);
  line-height: 140%;
}
.search-result-item__matched-words::before {
  content: "🔍";
  margin-right: 0.5rem;
}

@media (width > 63.99875rem) {
  .search-hero__inner {
    padding: 0 1.25rem;
  }
  .search-results__inner {
    padding: 0 1.25rem;
  }
  .search-result-item {
    padding: 1.25rem;
  }
  .search-result-item__link {
    font-size: clamp(1.25rem, 1.1225490196rem + 0.522875817vw, 1.75rem);
  }
}
@media (width > 47.99875rem) {
  .search-result-item {
    padding: 1rem;
  }
  .search-result-item__link {
    font-size: clamp(1rem, 0.9362745098rem + 0.2614379085vw, 1.25rem);
  }
}
.articles-hero {
  padding-block: 5rem;
  background: url("../../img/wave-bg-1.svg") no-repeat center center/cover, linear-gradient(to bottom, var(--dark-green-color-2), var(--dark-green-color-2));
  color: var(--white-color);
  height: 100vh;
}
@media (width <= 47.99875rem) {
  .articles-hero {
    padding-block: 3.75rem;
    margin-top: var(--header-body-height);
  }
}
.articles-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}
.articles-hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  text-align: left;
  gap: 2.5rem;
  height: 100%;
}
@media (width <= 47.99875rem) {
  .articles-hero__content {
    gap: 2rem;
  }
}
.articles-hero__title {
  font-size: clamp(2.375rem, 1.9607843137rem + 1.6993464052vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  color: var(--white-color);
}
.articles-hero__subtitle {
  font-size: clamp(1.5rem, 1.3725490196rem + 0.522875817vw, 2rem);
  font-weight: 600;
  color: var(--light-sky-color);
}
@media (width <= 47.99875rem) {
  .articles-hero__subtitle {
    margin-bottom: 0.625rem;
  }
}
.articles-hero__description {
  font-size: clamp(1.75rem, 1.6862745098rem + 0.2614379085vw, 2rem);
  line-height: 1.6;
  margin: 0;
  opacity: 0.9;
  font-weight: 200;
}
@media (width <= 47.99875rem) {
  .articles-hero__description {
    font-size: clamp(1.25rem, 1.1225490196rem + 0.522875817vw, 1.75rem);
  }
}

.articles-block {
  padding-block: clamp(2.5rem, 2.181372549rem + 1.3071895425vw, 3.75rem);
}

.articles-block__title {
  font-size: clamp(2.25rem, 2.0588235294rem + 0.7843137255vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.articles-block__subtitle {
  font-size: clamp(1.5rem, 1.3725490196rem + 0.522875817vw, 2rem);
  font-weight: 600;
  color: var(--semi-dark-green-color);
  margin-top: clamp(1.5rem, 1.3725490196rem + 0.522875817vw, 2rem);
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(21.875rem, 1fr));
  gap: 2rem;
  gap: clamp(1.5rem, 1.3725490196rem + 0.522875817vw, 2rem);
  margin-top: clamp(1.5rem, 1.3725490196rem + 0.522875817vw, 2rem);
}
@media (width <= 63.99875rem) {
  .articles-grid {
    grid-template-columns: repeat(auto-fill, minmax(18.75rem, 1fr));
    gap: 1.5rem;
  }
}
@media (width <= 47.99875rem) {
  .articles-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.article-card {
  background: var(--white-color);
  border-radius: 1rem;
  box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0.75rem 1.875rem rgba(0, 0, 0, 0.12);
}

.article-card__image {
  width: 100%;
  height: 12.5rem;
  overflow: hidden;
  position: relative;
}
.article-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.article-card:hover .article-card__image img {
  transform: scale(1.05);
}

.article-card__content {
  padding: 1.5rem;
}

.article-card__title {
  font-size: clamp(1.25rem, 1.1862745098rem + 0.2614379085vw, 1.5rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  color: var(--dark-green-color);
  transition: color 0.3s ease;
}

.article-card__excerpt {
  font-size: clamp(1rem, 0.9362745098rem + 0.2614379085vw, 1.25rem);
  line-height: 1.6;
  color: var(--text-secondary-color);
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-secondary-color);
  border-top: 0.0625rem solid var(--light-gray-color);
  padding-top: 0.75rem;
}

.article-card__date {
  font-weight: 500;
  font-size: clamp(0.875rem, 0.8431372549rem + 0.1307189542vw, 1rem);
}

@media (width <= 47.99875rem) {
  .articles-grid {
    grid-template-columns: 1fr;
  }
  .article-card__image {
    height: 11.25rem;
  }
  .article-card__content {
    padding: 1rem;
  }
  .article-card__title {
    font-size: 1rem;
  }
  .article-card__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .articles-categories {
    margin-bottom: 1.875rem;
  }
  .articles-pagination {
    gap: 0.25rem;
  }
  .articles-pagination__item {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 0.875rem;
  }
  .articles-pagination__prev, .articles-pagination__next {
    min-width: 5rem;
  }
}
.article-hero {
  padding-block: 5rem;
  background: url("../../img/wave-bg-1.svg") no-repeat center center/cover, linear-gradient(135deg, var(--dark-green-color-2) 0%, var(--dark-blue-color-2) 100%);
  color: var(--white-color);
  position: relative;
  height: 100vh;
}
@media (width <= 47.99875rem) {
  .article-hero {
    padding-block: 3.75rem;
    margin-top: var(--header-body-height);
  }
}
.article-hero__inner {
  display: flex;
  align-items: flex-end;
  min-height: 72vh;
}
.article-hero__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 57.5rem;
}
.article-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.375rem 1rem;
  border-radius: 62.4375rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  font-weight: 600;
  letter-spacing: 0.02em;
  width: fit-content;
}
.article-hero__title {
  font-size: clamp(2.375rem, 1.9607843137rem + 1.6993464052vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  color: var(--white-color);
}
.article-hero__subtitle {
  font-size: clamp(1.5rem, 1.3725490196rem + 0.522875817vw, 2rem);
  font-weight: 600;
  color: var(--light-sky-color);
}
@media (width <= 47.99875rem) {
  .article-hero__subtitle {
    margin-bottom: 0.625rem;
  }
}

.article-body {
  padding-block: clamp(2.5rem, 2.1176470588rem + 1.568627451vw, 4rem);
}
.article-body__lead {
  font-size: clamp(1.25rem, 1.1862745098rem + 0.2614379085vw, 1.5rem);
  line-height: 125%;
  max-width: 57.5rem;
  color: var(--dark-blue-color);
  margin-bottom: clamp(1.25rem, 1.0588235294rem + 0.7843137255vw, 2rem);
}

.article-section {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: clamp(1.25rem, 1.0588235294rem + 0.7843137255vw, 2rem);
  align-items: start;
  padding-block: clamp(1.75rem, 1.5588235294rem + 0.7843137255vw, 2.5rem);
  border-top: 0.125rem solid var(--light-gray-color);
}
@media (width <= 63.99875rem) {
  .article-section {
    grid-template-columns: 1fr;
  }
}
.article-section__title {
  grid-column: 1/-1;
  font-size: clamp(1.5rem, 1.3725490196rem + 0.522875817vw, 2rem);
  font-weight: 600;
  font-family: var(--font-family-accent);
  color: var(--dark-green-color);
}
.article-section__text {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: var(--text-color);
  line-height: 125%;
  font-size: clamp(1.25rem, 1.1862745098rem + 0.2614379085vw, 1.5rem);
}
.article-section__image {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.08);
}

.article-section--simple {
  display: block;
}
.article-section--simple .article-section__title {
  margin-bottom: 0.75rem;
}
.article-section--simple .article-section__text {
  max-width: 57.5rem;
}

.article-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.625rem, 0.5294117647rem + 0.3921568627vw, 1rem);
  margin-top: clamp(0.5rem, 0.4362745098rem + 0.2614379085vw, 0.75rem);
}
@media (width <= 47.99875rem) {
  .article-gallery {
    grid-template-columns: 1fr 1fr;
  }
}
.article-gallery__item {
  overflow: hidden;
  border-radius: 0.75rem;
  aspect-ratio: 4/3;
  background: var(--extra-light-gray-color);
}
.article-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.article-gallery__item:hover img {
  transform: scale(1.04);
}

.article-quote {
  margin: clamp(1.75rem, 1.5588235294rem + 0.7843137255vw, 2.5rem) 0;
  padding: 1.25rem 1.5rem;
  border-left: 0.25rem solid var(--accent-color);
  background: linear-gradient(0deg, rgba(0, 201, 230, 0.06), rgba(0, 201, 230, 0.06));
  border-radius: 0.75rem;
  color: var(--dark-blue-color);
  font-size: clamp(1rem, 0.9681372549rem + 0.1307189542vw, 1.125rem);
  line-height: 1.8;
}

.article-meta {
  display: flex;
  gap: clamp(1.5rem, 1.3725490196rem + 0.522875817vw, 2rem);
  align-items: center;
  color: var(--light-gray-color);
  font-size: clamp(1rem, 0.9362745098rem + 0.2614379085vw, 1.25rem);
}

.article-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.article-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 0.75rem 1.125rem;
  background: var(--main-gradient);
  color: var(--white-color);
  border-radius: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-duration) ease;
}
.article-cta__button:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 10px 2px rgba(0, 120, 138, 0.2);
}

.article-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 1rem;
  background: var(--white-color);
  box-shadow: 0 0 10px 2px rgba(0, 120, 138, 0.2);
}
.article-author__avatar {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  object-fit: cover;
}
.article-author__content {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.article-author__title {
  font-size: 1rem;
  color: var(--gray-color);
}
.article-author__name {
  font-weight: 500;
  font-size: clamp(1.25rem, 1.1862745098rem + 0.2614379085vw, 1.5rem);
  color: var(--dark-green-color);
}
.article-author__role {
  font-size: 1rem;
  color: var(--text-color-light);
}
.article-author__link {
  font-size: 1rem;
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
}
.article-author__link:hover {
  color: var(--accent-hover-color);
  text-decoration: underline;
}

.promotions-hero {
  padding-block: 5rem;
  background: url("../../img/wave-bg-1.svg") no-repeat center center/cover, linear-gradient(to bottom, var(--dark-green-color-2), var(--dark-green-color-2));
  color: var(--white-color);
  height: 100vh;
}
@media (width <= 47.99875rem) {
  .promotions-hero {
    padding-block: 3.75rem;
    margin-top: var(--header-body-height);
  }
}
.promotions-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}
.promotions-hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  text-align: left;
  gap: 2.5rem;
  height: 100%;
}
@media (width <= 47.99875rem) {
  .promotions-hero__content {
    gap: 2rem;
  }
}
.promotions-hero__title {
  font-size: clamp(2.375rem, 1.9607843137rem + 1.6993464052vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  color: var(--white-color);
}
.promotions-hero__subtitle {
  font-size: clamp(1.5rem, 1.3725490196rem + 0.522875817vw, 2rem);
  font-weight: 600;
  color: var(--light-sky-color);
}
@media (width <= 47.99875rem) {
  .promotions-hero__subtitle {
    margin-bottom: 0.625rem;
  }
}
.promotions-hero__description {
  font-size: clamp(1.75rem, 1.6862745098rem + 0.2614379085vw, 2rem);
  line-height: 1.6;
  margin: 0;
  opacity: 0.9;
  font-weight: 200;
}
@media (width <= 47.99875rem) {
  .promotions-hero__description {
    font-size: clamp(1.25rem, 1.1225490196rem + 0.522875817vw, 1.75rem);
  }
}

.current-promotions {
  padding-block: clamp(3.75rem, 3.431372549rem + 1.3071895425vw, 5rem);
}
.current-promotions__inner {
  height: 100%;
  display: block;
}
.current-promotions__title {
  font-size: clamp(1.75rem, 1.6225490196rem + 0.522875817vw, 2.25rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 3.75rem;
  color: var(--text-color);
}
@media (width > 63.99875rem) {
  .current-promotions__title {
    font-size: clamp(2.25rem, 2.0588235294rem + 0.7843137255vw, 3rem);
  }
}
.current-promotions__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(21.875rem, 1fr));
  gap: 2rem;
}
.current-promotions__card {
  background: var(--white-color);
  border-radius: 1.25rem;
  box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.08);
  overflow: visible;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.current-promotions__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0.75rem 1.875rem rgba(0, 0, 0, 0.12);
}
.current-promotions__card--featured {
  border: 0.125rem solid var(--accent-color);
  transform: scale(1.02);
}
.current-promotions__card--featured:hover {
  transform: translateY(-4px) scale(1.02);
}
.current-promotions__card-header {
  background: var(--main-gradient);
  color: var(--white-color);
  padding: 1.5rem;
  text-align: center;
  position: relative;
  border-radius: 1rem;
}
.current-promotions__card-discount {
  position: absolute;
  top: -0.3125rem;
  right: -0.3125rem;
  z-index: 4;
  background: var(--light-sky-color);
  color: var(--accent-color);
  padding: 0.25rem 0.75rem;
  border-radius: 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
}
.current-promotions__card-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  color: var(--white-color);
}
.current-promotions__card-content {
  padding: 1.5rem;
}
.current-promotions__card-price {
  text-align: center;
  margin-bottom: 1.25rem;
}
.current-promotions__card-price-old {
  text-decoration: line-through;
  color: var(--text-color-light);
  font-size: 1rem;
  margin-right: 0.5rem;
}
.current-promotions__card-price-new {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
}
.current-promotions__card-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-color-light);
  margin-bottom: 1.25rem;
  text-align: center;
}
.current-promotions__card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.current-promotions__card-item {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-color-light);
}
.current-promotions__card-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-color);
  font-weight: 700;
}
.current-promotions__card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.875rem 1.5rem;
  background: var(--accent-color);
  color: var(--white-color);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.current-promotions__card-button:hover {
  background: var(--accent-hover-color);
  transform: translateY(-2px);
}
.current-promotions__note {
  margin-top: 2.5rem;
  text-align: center;
}
.current-promotions__note-text {
  font-size: 0.875rem;
  color: var(--text-color-light);
  max-width: 37.5rem;
  margin: 0 auto;
}

.promotions-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  justify-content: center;
}
@media (width <= 47.99875rem) {
  .promotions-filters {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.5rem;
  }
}

.promotions-filter {
  padding: 0.5rem 1rem;
  background: var(--light-gray-color);
  color: var(--text-color-light);
  border: 0.125rem solid transparent;
  border-radius: 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.promotions-filter:hover, .promotions-filter.is-active {
  background: var(--accent-color);
  color: var(--white-color);
  border-color: var(--accent-color);
}

.promotion-timer {
  background: var(--accent-color);
  color: var(--white-color);
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  text-align: center;
  margin-bottom: 1.5rem;
}
.promotion-timer__title {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.promotion-timer__countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 1.125rem;
  font-weight: 700;
}
.promotion-timer__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 3.75rem;
}
.promotion-timer__number {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}
.promotion-timer__label {
  font-size: 0.625rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

.expired-promotions {
  opacity: 0.6;
  position: relative;
}
.expired-promotions::before {
  content: "АКЦИЯ ЗАКОНЧИЛАСЬ";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
  background: rgba(244, 67, 54, 0.9);
  color: var(--white-color);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 10;
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.3);
}
.expired-promotions .current-promotions__card {
  pointer-events: none;
}

.promotion-categories {
  padding-block: clamp(3.75rem, 3.431372549rem + 1.3071895425vw, 5rem);
  background: var(--light-gray-color);
}
.promotion-categories__inner {
  height: 100%;
  display: block;
}
.promotion-categories__title {
  font-size: clamp(1.75rem, 1.6225490196rem + 0.522875817vw, 2.25rem);
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 3.75rem;
  color: var(--text-color);
}
@media (width > 63.99875rem) {
  .promotion-categories__title {
    font-size: clamp(2.25rem, 2.0588235294rem + 0.7843137255vw, 3rem);
  }
}
.promotion-categories__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15.625rem, 1fr));
  gap: 1.5rem;
}
.promotion-categories__item {
  background: var(--white-color);
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.promotion-categories__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 0.75rem 1.875rem rgba(0, 0, 0, 0.12);
}
.promotion-categories__item-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--accent-color), var(--light-green-color-2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
}
.promotion-categories__item-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}
.promotion-categories__item-description {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-color-light);
  margin: 0;
}

.special-offers-banner {
  background: linear-gradient(135deg, #FF6B35, #F7931E);
  color: var(--white-color);
  padding: 2rem 1.5rem;
  text-align: center;
  margin: 2.5rem 0;
}
.special-offers-banner__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.special-offers-banner__subtitle {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 1.25rem;
}
.special-offers-banner__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background: var(--white-color);
  color: #FF6B35;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.special-offers-banner__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.15);
}

@media (width <= 63.99875rem) {
  .current-promotions__grid {
    grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr));
  }
  .promotion-timer__countdown {
    gap: 0.75rem;
  }
  .promotion-timer__item {
    min-width: 3.125rem;
  }
  .promotion-categories__grid {
    grid-template-columns: repeat(auto-fit, minmax(12.5rem, 1fr));
  }
}
@media (width <= 47.99875rem) {
  .promotions-hero {
    padding-block: 3.75rem 2.5rem;
  }
  .current-promotions__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .promotion-timer__countdown {
    flex-direction: column;
    gap: 0.5rem;
  }
  .promotion-timer__item {
    flex-direction: row;
    justify-content: center;
    gap: 0.5rem;
    min-width: auto;
  }
  .promotion-categories__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .promotions-filters {
    margin-bottom: 1.875rem;
  }
}
.reviews-hero {
  padding-block: clamp(2.5rem, 2.181372549rem + 1.3071895425vw, 3.75rem);
  background: url("../../img/wave-bg-1.svg") no-repeat center center/cover, linear-gradient(to bottom, var(--dark-green-color-2), var(--dark-green-color-2));
  position: relative;
  overflow: hidden;
  height: 100vh;
}
.reviews-hero__inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  height: 100%;
  justify-content: flex-end;
}
.reviews-hero__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.reviews-hero__title {
  font-size: clamp(2.25rem, 1.8039215686rem + 1.8300653595vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  color: var(--white-color);
}
@media (width <= 47.99875rem) {
  .reviews-hero__title {
    font-size: clamp(2.375rem, 2.2156862745rem + 0.6535947712vw, 3rem);
  }
}
.reviews-hero__subtitle {
  font-size: clamp(1.5rem, 1.3725490196rem + 0.522875817vw, 2rem);
  font-weight: 600;
  color: var(--light-sky-color);
}
@media (width <= 47.99875rem) {
  .reviews-hero__subtitle {
    margin-bottom: 0.625rem;
  }
}
.reviews-hero__description {
  font-size: clamp(1.75rem, 1.6862745098rem + 0.2614379085vw, 2rem);
  line-height: 1.6;
  margin: 0;
  opacity: 0.9;
  font-weight: 200;
  color: var(--white-color);
}
@media (width <= 47.99875rem) {
  .reviews-hero__description {
    font-size: clamp(1.25rem, 1.1225490196rem + 0.522875817vw, 1.75rem);
  }
}
.reviews-hero__stats {
  display: flex;
  flex-direction: row;
  gap: 0rem;
  justify-content: space-between;
  width: 100%;
}
@media (width > 63.99875rem) {
  .reviews-hero__stats {
    flex-direction: row;
    gap: 5rem;
    justify-content: flex-start;
  }
}
.reviews-hero__stat {
  text-align: center;
}
@media (width > 90.06125rem) {
  .reviews-hero__stat {
    display: flex;
    align-items: center;
    gap: 0.9375rem;
    text-align: left;
  }
}
.reviews-hero__stat-number {
  display: block;
  font-size: clamp(2.25rem, 1.931372549rem + 1.3071895425vw, 3.5rem);
  font-weight: 700;
  color: var(--light-sky-color-2);
  margin-bottom: 0.3125rem;
}
.reviews-hero__stat-text {
  font-size: clamp(1rem, 0.8725490196rem + 0.522875817vw, 1.5rem);
  color: var(--extra-light-gray-color);
}

.reviews-block {
  padding-block: clamp(2.5rem, 2.181372549rem + 1.3071895425vw, 3.75rem);
  background: linear-gradient(135deg, #cbddf2 0%, #b7e0f1 20%, #a8e6cf 50%, #95d9ba 75%, #c4f0e0 100%);
}
.reviews-block__header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.reviews-block__title {
  font-size: clamp(2rem, 1.7450980392rem + 1.045751634vw, 3rem);
  font-weight: 700;
  color: var(--night-color);
  text-align: left;
}
.reviews-block__subtitle {
  font-size: clamp(1.25rem, 1.1862745098rem + 0.2614379085vw, 1.5rem);
  font-weight: 400;
  color: var(--dark-blue-color);
  line-height: 1.5;
  margin: 0;
  margin-bottom: 1.5rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}
@media (width <= 63.99875rem) {
  .reviews-grid {
    grid-template-columns: repeat(auto-fill, minmax(21.875rem, 1fr));
    gap: 1.5rem;
  }
}
@media (width <= 47.99875rem) {
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.review-card {
  background: var(--white-color);
  border-radius: 1rem;
  box-shadow: 0 0 10px 2px rgba(48, 82, 60, 0.2);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.review-card--featured {
  border: 0.125rem solid var(--primary-color);
  transform: scale(1.02);
}
.review-card--featured:hover {
  transform: translateY(-4px) scale(1.02);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--light-gray-color);
  border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.1);
}

.review-card__avatar {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  background: var(--dark-blue-color);
  font-size: 1.5rem;
  font-weight: 700;
}
.review-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-card__info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.review-card__name {
  font-size: clamp(1.25rem, 1.1862745098rem + 0.2614379085vw, 1.5rem);
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 0.25rem;
  color: var(--text-color);
}

.review-card__rating {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.25rem;
}

.review-stars {
  display: flex;
  align-items: center;
  gap: 0.125rem;
}
.review-stars__star {
  width: 1rem;
  height: 1rem;
  color: #FFD700;
  fill: currentColor;
}
.review-stars__star--empty {
  color: #E0E0E0;
}

.review-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-secondary-color);
  margin-top: 0.25rem;
}

.review-card__date {
  font-weight: 300;
  color: var(--dark-blue-color);
  font-size: clamp(1rem, 0.9362745098rem + 0.2614379085vw, 1.25rem);
}

.review-card__direction {
  font-weight: 400;
  color: var(--dark-blue-color);
  font-size: clamp(1.25rem, 1.1862745098rem + 0.2614379085vw, 1.5rem);
}

.review-card__source {
  font-weight: 300;
  color: var(--dark-blue-color);
  font-size: clamp(1rem, 0.9362745098rem + 0.2614379085vw, 1.25rem);
}

.review-card__service {
  background: var(--primary-color);
  color: var(--white-color);
  padding: 0.125rem 0.5rem;
  border-radius: 0.625rem;
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.review-card__content {
  padding: 1.5rem;
}

.review-card__text {
  font-size: clamp(1.25rem, 1.1862745098rem + 0.2614379085vw, 1.5rem);
  line-height: 1.6;
  color: var(--text-color);
  margin: 0;
  position: relative;
}
.review-card__text::before {
  content: '"';
  font-size: 2rem;
  color: var(--primary-color);
  position: absolute;
  top: -0.625rem;
  left: -0.9375rem;
  font-family: Georgia, serif;
  opacity: 0.3;
}

.review-card__footer {
  padding: 1rem 1.5rem;
  background: var(--light-gray-color);
  border-top: 0.0625rem solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-card__helpful {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-secondary-color);
}

.review-card__helpful-button {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  background: transparent;
  border: 0.0625rem solid var(--light-gray-color);
  border-radius: 1rem;
  font-size: 0.75rem;
  color: var(--text-secondary-color);
  cursor: pointer;
  transition: all 0.3s ease;
}
.review-card__helpful-button:hover {
  background: var(--primary-color);
  color: var(--white-color);
  border-color: var(--primary-color);
}

.reviews-video {
  padding-block: clamp(2.5rem, 2.181372549rem + 1.3071895425vw, 3.75rem);
  background: radial-gradient(circle at 30% 40%, var(--semi-dark-green-color) 0%, transparent 60%), linear-gradient(135deg, var(--dark-green-color) 0%, var(--dark-green-color-2) 100%);
  color: var(--white-color);
}
.reviews-video__title {
  font-size: clamp(2rem, 1.7450980392rem + 1.045751634vw, 3rem);
  font-weight: 700;
  color: var(--white-color);
  text-align: left;
  margin-bottom: clamp(1.25rem, 0.931372549rem + 1.3071895425vw, 2.5rem);
}
.reviews-video__swiper {
  width: 100%;
  height: 46.875rem;
}
.reviews-video__slide {
  width: 100%;
  height: 100%;
}
.reviews-video__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}
.reviews-video__button-prev {
  width: 2.5rem;
}
.reviews-video__button-next {
  width: 2.5rem;
}
.reviews-video__scrollbar {
  width: 100%;
}

.reviews-load-more {
  text-align: center;
  margin-top: 3.75rem;
}
.reviews-load-more__button {
  padding: 1rem 2rem;
  background: var(--primary-color);
  color: var(--white-color);
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.reviews-load-more__button:hover {
  background: var(--primary-color-dark);
  transform: translateY(-2px);
}
.reviews-load-more__button:disabled {
  background: var(--text-secondary-color);
  cursor: not-allowed;
  transform: none;
}

.review-form-section {
  padding-block: clamp(3.75rem, 3.431372549rem + 1.3071895425vw, 5rem);
  background: var(--light-gray-color);
}
.review-form-section__inner {
  height: 100%;
  display: block;
}
.review-form-section__title {
  font-size: clamp(1.75rem, 1.6225490196rem + 0.522875817vw, 2.25rem);
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 3.75rem;
  color: var(--text-color);
}
@media (width > 63.99875rem) {
  .review-form-section__title {
    font-size: clamp(2.25rem, 2.0588235294rem + 0.7843137255vw, 3rem);
  }
}
.review-form-section__form {
  max-width: 37.5rem;
  margin: 0 auto;
  background: var(--white-color);
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.08);
}
.review-form-section__group {
  margin-bottom: 1.5rem;
}
.review-form-section__label {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}
.review-form-section__input, .review-form-section__textarea, .review-form-section__select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 0.125rem solid var(--light-gray-color);
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}
.review-form-section__input:focus, .review-form-section__textarea:focus, .review-form-section__select:focus {
  outline: none;
  border-color: var(--primary-color);
}
.review-form-section__textarea {
  resize: vertical;
  min-height: 7.5rem;
}
.review-form-section__rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.review-form-section__rating-label {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-color);
}
.review-form-section__rating-stars {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.review-form-section__rating-star {
  width: 1.5rem;
  height: 1.5rem;
  color: #E0E0E0;
  cursor: pointer;
  transition: color 0.3s ease;
}
.review-form-section__rating-star:hover, .review-form-section__rating-star.is-active {
  color: #FFD700;
}
.review-form-section__submit {
  width: 100%;
  padding: 1rem 1.5rem;
  background: var(--primary-color);
  color: var(--white-color);
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.review-form-section__submit:hover {
  background: var(--primary-color-dark);
  transform: translateY(-2px);
}

@media (width <= 47.99875rem) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .review-card__header {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  .review-card__avatar {
    width: 3.125rem;
    height: 3.125rem;
  }
  .review-card__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .reviews-stats {
    grid-template-columns: 1fr;
  }
  .reviews-pagination {
    gap: 0.25rem;
  }
  .reviews-pagination__item {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 0.875rem;
  }
  .reviews-pagination__prev, .reviews-pagination__next {
    min-width: 5rem;
  }
  .review-form-section__form {
    padding: 1.5rem;
  }
}

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