@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,
  который расположен не последним среди своих соседних элементов
 */
p:where(:not([class]):not(:last-child)) {
  margin-bottom: var(--paragraphMarginBottom);
}

/**
  Упрощаем работу с изображениями и видео
 */
img,
video {
  display: block;
  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;
}

/**
  Удаляем все анимации и переходы для людей,
  которые предпочитают их не использовать
 */
@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;
  }
}
/* geist-variable - latin */
@font-face {
  font-display: swap;
  font-family: "Geist";
  font-weight: 100 900;
  src: url("../fonts/geist-latin-wght-normal.woff2") format("woff2-variations");
}
:root {
  --color-light: #ffffff;
  --color-ink: #07101f;
  --color-dark: #000;
  --color-dark-10: #1a1a1a;
  --color-dark-12: #1B1B24;
  --color-dark-15: #262626;
  --color-dark-20: #333333;
  --color-dark-40: #666666;
  --color-grey:#A6A6AF;
  --color-grey-10: #A6A6AF1A;
  --color-grey-20: #F7F7F7;
  --color-grey-30: #8E8DA4;
  --color-grey-40: #848484;
  --color-gray-50: #7e7e81;
  --color-gray-60: #98989a;
  --color-blue: #0257DA;
  --color-accent: #ffd11a;
  --color-red: #ff5500;
  --color-green: #318633;
  --color-green-10: #EBF8DF;
  --font-family-base: "Geist", sans-serif;
  --font-family-accent: "Geist", sans-serif;
  --text-primary: #000;
  --text-color-ink: #07101f;
  --text-secondary: #c7c7c7;
  --text-white: #fff;
  --text-color-btn-primary: #ffffff;
  --bg-btn-primary: #0257DA;
  --bg-btn-primary-hover: #0463f3;
  --bg-btn-primary-active: #ffcc5d;
  --border-btn-primary: #cd9600;
  --border-btn-primary-hover: #a47e00;
  --border-btn-primary-active: #aa8300;
  --border-radius-btn: 12px;
  --border-btn: 1px solid #cd9600;
  --text-color-btn-secondary: #24242a;
  --bg-btn-secondary: #fff;
  --border-btn-secondary: rgba(36, 36, 42, 0.2);
  --border-btn-secondary-hover: rgba(36, 36, 42, 0.4);
  --border-btn-secondary-active: rgba(36, 36, 42, 0.7);
  --color-icon: #24242A;
  --color-icon-hover: #3F3F59;
  --color-icon-secondary: #655D4F;
  --color-icon-secondary-hover: #7e7e81;
  --color-icon-primary: #0257DA;
  --text-color-footer: #000000;
  --shadow: 0 0 0 0.1875rem #191919;
  --z-index-overlay: 100;
  --z-index-modal: 101;
  --container-width: 1440px;
  --container-padding-x: 56px;
  --transition-duration: 0.2s;
  --100vw: calc(100vw - var(--scrollbar-width));
}
@media (width <= 1439.98px) {
  :root {
    --container-width: 1440px;
  }
}
@media (width <= 1023.98px) {
  :root {
    --container-width: 1024px;
    --container-padding-x: 12px;
  }
}
@media (width <= 767.98px) {
  :root {
    --container-width: 768px;
    --container-padding-x: 24px;
  }
}
@media (width <= 479.98px) {
  :root {
    --container-width: 100%;
    --container-padding-x: 24px;
  }
}

/* ================================================================
   Cousine Island Seychelles — Style Guide
   Design: Sumip-inspired — white, bold serif, black pills, stacked cards
   Source: https://cousine-island.vercel.app/
   ================================================================ */
/* ----------------------------------------------------------------
   Design tokens
   ---------------------------------------------------------------- */
:root {
  --ci-black: #111111;
  --ci-white: #ffffff;
  --ci-offwhite: #f5f4f0;
  --ci-dark: #1a1a1a;
  --ci-dark-2: #222222;
  --ci-muted: #6b6b6b;
  --ci-border: #e8e8e8;
  --ci-accent: #c9a96e;
  --ci-font-serif: "Playfair Display", Georgia, serif;
  --ci-font-sans: "Inter", system-ui, sans-serif;
  --ci-header-h: 72px;
  --ci-container: 1440px;
  --ci-radius-sm: 10px;
  --ci-radius-md: 18px;
  --ci-radius-lg: 28px;
  --ci-radius-pill: 999px;
  --ci-ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ----------------------------------------------------------------
   Animated border badge
   ---------------------------------------------------------------- */
@property --border-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}
@keyframes ci-border-spin {
  to {
    --border-angle: 360deg;
  }
}
/* ----------------------------------------------------------------
   Label
   ---------------------------------------------------------------- */
.ci-label {
  display: inline-block;
  font-family: var(--ci-font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ci-muted);
  margin-bottom: 14px;
}

.ci-label--light {
  color: rgba(255, 255, 255, 0.5);
}

/* ----------------------------------------------------------------
   Buttons — pill system
   ---------------------------------------------------------------- */
.ci-btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--ci-radius-pill);
  font-family: var(--ci-font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.2s var(--ci-ease-out), box-shadow 0.2s var(--ci-ease-out), opacity 0.2s;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.ci-btn-pill:hover {
  transform: translateY(-2px);
}
.ci-btn-pill:active {
  transform: translateY(0);
}

.ci-btn-pill--dark {
  background: var(--ci-black);
  color: var(--ci-white);
}
.ci-btn-pill--dark:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.ci-btn-pill--white {
  background: var(--ci-white);
  color: var(--ci-black);
}
.ci-btn-pill--white:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.ci-btn-pill--outline {
  background: transparent;
  color: var(--ci-black);
  box-shadow: inset 0 0 0 1.5px var(--ci-black);
}
.ci-btn-pill--outline:hover {
  background: var(--ci-black);
  color: var(--ci-white);
}

.ci-btn-pill--outline-light {
  background: transparent;
  color: var(--ci-white);
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.5);
}
.ci-btn-pill--outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1.5px var(--ci-white);
}

.ci-btn-pill--lg {
  padding: 17px 38px;
  font-size: 0.95rem;
}

.ci-btn-full {
  width: 100%;
  justify-content: center;
}

/* ----------------------------------------------------------------
   Layout helpers
   ---------------------------------------------------------------- */
.ci-container {
  max-width: var(--ci-container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}

.ci-section {
  padding-block: clamp(80px, 10vw, 140px);
}
.ci-section--dark {
  background: var(--ci-dark);
  color: var(--ci-white);
}
.ci-section--dark p {
  color: rgba(255, 255, 255, 0.65);
}
.ci-section--offwhite {
  background: var(--ci-offwhite);
}

.ci-section-header {
  margin-bottom: clamp(40px, 5vw, 64px);
}
.ci-section-header--center {
  text-align: center;
  max-width: 860px;
  margin-inline: auto;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.ci-section-header--center h2 {
  max-width: 780px;
  margin-inline: auto;
  font-size: clamp(1.75rem, 3vw, 2.6rem);
}

.ci-section-lead {
  font-size: 1.1rem;
  margin-top: 14px;
  max-width: 560px;
  color: var(--ci-muted);
}
.ci-section-lead--light {
  color: rgba(255, 255, 255, 0.65);
}
.ci-section-lead--center {
  margin-inline: auto;
}
.ci-section-lead--wide {
  max-width: 720px;
}

/* ----------------------------------------------------------------
   Trust bar
   ---------------------------------------------------------------- */
.ci-trust-bar {
  background: var(--ci-black);
  padding: 16px 0;
  overflow: hidden;
}
.ci-trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 24px;
  max-width: var(--ci-container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ci-white);
}
.ci-trust-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ci-white);
}
.ci-trust-bar__dot {
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}

/* ----------------------------------------------------------------
   Split layout
   ---------------------------------------------------------------- */
.ci-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
  max-width: var(--ci-container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 60px);
}
.ci-split__img {
  width: 100%;
  border-radius: var(--ci-radius-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}
.ci-split__body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.ci-split__body h2 {
  font-style: italic;
}
.ci-split__body p {
  font-size: 1rem;
}
.ci-split--reverse .ci-split__media {
  order: 1;
}
.ci-split--reverse .ci-split__body {
  order: 0;
}

/* ----------------------------------------------------------------
   Benefits grid
   ---------------------------------------------------------------- */
.ci-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.ci-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 28px 24px;
  transition: background 0.2s;
}
.ci-benefit-item:hover {
  background: rgba(255, 255, 255, 0.07);
}
.ci-benefit-item__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--ci-radius-sm);
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ci-white);
}
.ci-benefit-item h3 {
  font-size: 1rem;
  font-family: var(--ci-font-sans);
  font-weight: 600;
  color: var(--ci-white);
  margin-bottom: 6px;
}
.ci-benefit-item p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ----------------------------------------------------------------
   Pricing cards
   ---------------------------------------------------------------- */
.ci-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
  align-items: start;
}

.ci-pricing-card {
  border: 1.5px solid var(--ci-border);
  border-radius: var(--ci-radius-lg);
  padding: 32px 28px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  background: var(--ci-white);
  transition: box-shadow 0.3s var(--ci-ease-out);
}
.ci-pricing-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}
.ci-pricing-card--featured {
  border-color: var(--ci-black);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
.ci-pricing-card--featured:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.16);
}
.ci-pricing-card__popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ci-black);
  color: var(--ci-white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--ci-radius-pill);
  white-space: nowrap;
}
.ci-pricing-card__price {
  font-family: var(--ci-font-serif);
  font-size: clamp(2.2rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--ci-black);
  line-height: 1;
}
.ci-pricing-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 8px;
  border-top: 1px solid var(--ci-border);
  flex: 1;
}
.ci-pricing-card__list li {
  font-size: 0.88rem;
  color: var(--ci-muted);
  padding-left: 20px;
  position: relative;
  line-height: 1.45;
}
.ci-pricing-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ci-accent);
}

/* ----------------------------------------------------------------
   Gallery
   ---------------------------------------------------------------- */
.ci-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 12px;
}
.ci-gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--ci-radius-md);
  cursor: pointer;
}
.ci-gallery__item--tall {
  grid-row: span 2;
}
.ci-gallery__item--wide {
  grid-column: span 3;
  height: 260px;
}
.ci-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ci-ease-out);
}
.ci-gallery__item:hover img {
  transform: scale(1.05);
}
.ci-gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s;
}
.ci-gallery__item:hover::after {
  background: rgba(0, 0, 0, 0.12);
}
.ci-gallery__tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 1;
  background: rgba(0, 0, 0, 0.55);
  color: var(--ci-white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--ci-radius-pill);
  backdrop-filter: blur(6px);
}

/* ----------------------------------------------------------------
   FAQ
   ---------------------------------------------------------------- */
.ci-faq-wrap {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.ci-faq-list {
  border-top: 1px solid var(--ci-border);
}

.ci-faq-item {
  border-bottom: 1px solid var(--ci-border);
}
.ci-faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  padding: 22px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ci-black);
  gap: 16px;
  transition: color 0.2s;
  cursor: pointer;
  background: none;
  border: none;
}
.ci-faq-item__q:hover {
  color: var(--ci-muted);
}
.ci-faq-item__q svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--ci-offwhite);
  padding: 3px;
  transition: transform 0.3s var(--ci-ease-out), background 0.2s;
}
.ci-faq-item__q[aria-expanded=true] svg {
  transform: rotate(180deg);
  background: var(--ci-black);
  stroke: var(--ci-white);
}
.ci-faq-item__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s var(--ci-ease-out);
}
.ci-faq-item__a.is-open {
  max-height: 600px;
}
.ci-faq-item__a > p {
  font-size: 0.93rem;
  line-height: 1.7;
  padding-bottom: 22px;
}

/* ----------------------------------------------------------------
   Process list
   ---------------------------------------------------------------- */
.ci-process-list {
  max-width: 680px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
}

.ci-process-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  grid-template-rows: auto 1fr;
  column-gap: 24px;
}
.ci-process-item__dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ci-black);
  color: var(--ci-white);
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-row: 1;
  grid-column: 1;
}
.ci-process-item__line {
  grid-row: 2;
  grid-column: 1;
  width: 2px;
  background: var(--ci-border);
  margin: 4px auto 0;
  min-height: 40px;
}
.ci-process-item__body {
  grid-row: 1/3;
  grid-column: 2;
  padding-bottom: 36px;
}
.ci-process-item__body h3 {
  font-size: 1rem;
  font-family: var(--ci-font-sans);
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ci-black);
  padding-top: 8px;
}
.ci-process-item__body p {
  font-size: 0.9rem;
  color: var(--ci-muted);
}
.ci-process-item:last-child .ci-process-item__body {
  padding-bottom: 0;
}

/* ----------------------------------------------------------------
   Warning note / Footnote
   ---------------------------------------------------------------- */
.ci-warning-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--ci-muted);
  background: var(--ci-offwhite);
  border: 1.5px solid var(--ci-border);
  border-radius: var(--ci-radius-sm);
  padding: 12px 16px;
  line-height: 1.55;
}

.ci-footnote {
  font-size: 0.78rem;
  color: var(--ci-muted);
  line-height: 1.55;
}
.ci-footnote--center {
  text-align: center;
  margin-top: 28px;
}
.ci-footnote--light {
  color: rgba(255, 255, 255, 0.4);
}

/* ----------------------------------------------------------------
   Responsive
   ---------------------------------------------------------------- */
@media (max-width: 1024px) {
  .ci-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ci-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }
}
@media (max-width: 900px) {
  .ci-split {
    grid-template-columns: 1fr;
  }
  .ci-split--reverse .ci-split__media {
    order: 0;
  }
  .ci-split--reverse .ci-split__body {
    order: 1;
  }
  .ci-split__img {
    aspect-ratio: 16/9;
  }
  .ci-faq-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .ci-benefits-grid {
    grid-template-columns: 1fr;
  }
  .ci-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .ci-gallery__item {
    height: 180px;
  }
  .ci-gallery__item--tall {
    grid-row: span 1;
  }
  .ci-gallery__item--wide {
    grid-column: span 2;
  }
  .ci-pricing-grid {
    max-width: 100%;
  }
}
@media (max-width: 540px) {
  .ci-gallery {
    grid-template-columns: 1fr;
  }
  .ci-gallery__item {
    height: 220px;
  }
  .ci-gallery__item--wide {
    grid-column: span 1;
    height: 220px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    transition-duration: 0.01ms !important;
  }
}
.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 <= 767.98px) {
  .hidden-mobile {
    display: none !important;
  }
}

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

.full-vw-line {
  position: relative;
}
.full-vw-line::before, .full-vw-line::after {
  position: absolute;
  width: calc((var(--100vw) - var(--container-width)) / 2);
  height: 0.0625rem;
  background-color: var(--color-dark-15);
}
.full-vw-line--top::before {
  content: "";
  bottom: 100%;
}
.full-vw-line--bottom::after {
  content: "";
  top: 100%;
}
.full-vw-line--left::before, .full-vw-line--left::after {
  right: 100%;
}
.full-vw-line--right::before, .full-vw-line--right::after {
  left: 100%;
}

.circle-icon {
  --circleSize: 3.25rem;
  --circleMarginLeft: 1.25rem;
  position: relative;
  min-height: var(--circleSize);
  padding-right: calc(var(--circleSize) + var(--circleMarginLeft));
}
@media (width <= 1439.98px) {
  .circle-icon {
    --circleSize: 2.75rem;
    --circleMarginLeft: 0.875rem;
  }
}
@media (width <= 767.98px) {
  .circle-icon {
    --circleSize: 2.5rem;
  }
}
.circle-icon::after {
  width: var(--circleSize);
  height: var(--circleSize);
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  content: "";
  right: 0;
  background: url("../../icons/arrow-top-right_black.svg") center no-repeat var(--color-accent);
  border-radius: 50%;
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

@media (width > 1439.98px) {
  .d-laptop-none {
    display: none !important;
  }
}

@media (width > 1439.98px) {
  .d-laptop-block {
    display: block !important;
  }
}

@media (width > 1439.98px) {
  .d-laptop-inline {
    display: inline !important;
  }
}

@media (width > 1439.98px) {
  .d-laptop-inline-block {
    display: inline-block !important;
  }
}

@media (width <= 1023.98px) {
  .d-tablet-none {
    display: none !important;
  }
}

@media (width <= 1023.98px) {
  .d-tablet-block {
    display: block !important;
  }
}

@media (width <= 1023.98px) {
  .d-tablet-inline {
    display: inline !important;
  }
}

@media (width <= 1023.98px) {
  .d-tablet-inline-block {
    display: inline-block !important;
  }
}

@media (width <= 767.98px) {
  .d-mobile-none {
    display: none !important;
  }
}

@media (width <= 767.98px) {
  .d-mobile-block {
    display: block !important;
  }
}

@media (width <= 767.98px) {
  .d-mobile-inline {
    display: inline !important;
  }
}

@media (width <= 767.98px) {
  .d-mobile-inline-block {
    display: inline-block !important;
  }
}

@media (width <= 479.98px) {
  .d-mobile-s-none {
    display: none !important;
  }
}

@media (width <= 479.98px) {
  .d-mobile-s-block {
    display: block !important;
  }
}

html.is-lock {
  overflow: hidden;
}

body {
  display: flex;
  flex-direction: column;
  font-family: var(--font-family-base);
  letter-spacing: -0.03em;
  color: var(--text-primary);
  background-color: transparent;
}

body.mce-content-body {
  display: block;
  background-color: #fff !important;
  color: #07101f !important;
  padding: 24px !important;
  font-family: Inter, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

main {
  flex-grow: 1;
}

ul {
  list-style: none;
}

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

a {
  color: inherit;
}
@media (any-hover: hover) {
  a:hover {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
  }
}
@media (any-hover: none) {
  a:active {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
  }
}
a[class] {
  text-decoration: none;
}

:focus-visible {
  outline: none;
  outline-offset: 0.25rem;
  transition-duration: 0s !important;
}

.highlight-text {
  color: var(--color-blue);
}

.c-svg {
  position: relative;
}
.c-svg.m-disabled object {
  pointer-events: none;
}
.c-svg.m-banner .c-svg__image {
  z-index: 1;
  width: 100%;
}
.c-svg .c-svg__link {
  text-decoration: none;
}
.c-svg .c-svg__content-image img {
  width: 100%;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin-inline: auto;
  padding-inline: var(--container-padding-x);
}

.row {
  --gutter-x: 1.5rem;
  --gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-inline: calc(-1 * var(--gutter-x, 1.5rem) * 0.5);
  margin-block-start: calc(-1 * var(--gutter-y, 0) * 1);
}
.row > * {
  padding-inline: calc(var(--gutter-x, 1.5rem) * 0.5);
  margin-block-start: var(--gutter-y, 0);
  flex-shrink: 0;
  width: 100%;
}
.row.m-managers-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.row.m-background {
  background-image: url("/assets/static/images/banner.svg");
  background-position: 100% 100%;
  background-repeat: no-repeat;
}

.col {
  flex: 1 0 0%;
}

.col-1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

@media (width <= 1439.98px) {
  .col-lg-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-lg-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-lg-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-lg-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-lg-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (width <= 1023.98px) {
  .col-md-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-md-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-md-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-md-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-md-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (width <= 767.98px) {
  .col-sm-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-sm-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-sm-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-sm-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-sm-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (width <= 479.98px) {
  .col-xs-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-xs-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xs-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xs-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-xs-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-xs-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xs-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-xs-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-xs-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xs-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-xs-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-xs-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.offset-1 {
  margin-left: 8.3333333333%;
}

.offset-2 {
  margin-left: 16.6666666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.3333333333%;
}

.offset-5 {
  margin-left: 41.6666666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.3333333333%;
}

.offset-8 {
  margin-left: 66.6666666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.3333333333%;
}

.offset-11 {
  margin-left: 91.6666666667%;
}

@media (width <= 1439.98px) {
  .offset-lg-1 {
    margin-left: 8.3333333333%;
  }
  .offset-lg-2 {
    margin-left: 16.6666666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }
  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }
  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }
  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
}
@media (width <= 1023.98px) {
  .offset-md-1 {
    margin-left: 8.3333333333%;
  }
  .offset-md-2 {
    margin-left: 16.6666666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.3333333333%;
  }
  .offset-md-5 {
    margin-left: 41.6666666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.3333333333%;
  }
  .offset-md-8 {
    margin-left: 66.6666666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.3333333333%;
  }
  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
}
@media (width <= 767.98px) {
  .offset-sm-1 {
    margin-left: 8.3333333333%;
  }
  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.3333333333%;
  }
  .offset-sm-5 {
    margin-left: 41.6666666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.3333333333%;
  }
  .offset-sm-8 {
    margin-left: 66.6666666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.3333333333%;
  }
  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
}
@media (width <= 479.98px) {
  .offset-xs-1 {
    margin-left: 8.3333333333%;
  }
  .offset-xs-2 {
    margin-left: 16.6666666667%;
  }
  .offset-xs-3 {
    margin-left: 25%;
  }
  .offset-xs-4 {
    margin-left: 33.3333333333%;
  }
  .offset-xs-5 {
    margin-left: 41.6666666667%;
  }
  .offset-xs-6 {
    margin-left: 50%;
  }
  .offset-xs-7 {
    margin-left: 58.3333333333%;
  }
  .offset-xs-8 {
    margin-left: 66.6666666667%;
  }
  .offset-xs-9 {
    margin-left: 75%;
  }
  .offset-xs-10 {
    margin-left: 83.3333333333%;
  }
  .offset-xs-11 {
    margin-left: 91.6666666667%;
  }
}
.align-items-start {
  align-items: flex-start !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.row-cols-1 > * {
  flex: 0 0 auto;
  width: calc(100% / 1);
}

.row-cols-2 > * {
  flex: 0 0 auto;
  width: calc(100% / 2);
}

.row-cols-3 > * {
  flex: 0 0 auto;
  width: calc(100% / 3);
}

.row-cols-4 > * {
  flex: 0 0 auto;
  width: calc(100% / 4);
}

.row-cols-5 > * {
  flex: 0 0 auto;
  width: calc(100% / 5);
}

.row-cols-6 > * {
  flex: 0 0 auto;
  width: calc(100% / 6);
}

.row-cols-7 > * {
  flex: 0 0 auto;
  width: calc(100% / 7);
}

.row-cols-8 > * {
  flex: 0 0 auto;
  width: calc(100% / 8);
}

.row-cols-9 > * {
  flex: 0 0 auto;
  width: calc(100% / 9);
}

.row-cols-10 > * {
  flex: 0 0 auto;
  width: calc(100% / 10);
}

.row-cols-11 > * {
  flex: 0 0 auto;
  width: calc(100% / 11);
}

.row-cols-12 > * {
  flex: 0 0 auto;
  width: calc(100% / 12);
}

.g-0 {
  --gutter-x: 0;
  --gutter-y: 0;
}

.gx-0 {
  --gutter-x: 0;
}

.gy-0 {
  --gutter-y: 0;
}

.g-1 {
  --gutter-x: 0.25rem;
  --gutter-y: 0.25rem;
}

.gx-1 {
  --gutter-x: 0.25rem;
}

.gy-1 {
  --gutter-y: 0.25rem;
}

.g-2 {
  --gutter-x: 0.5rem;
  --gutter-y: 0.5rem;
}

.gx-2 {
  --gutter-x: 0.5rem;
}

.gy-2 {
  --gutter-y: 0.5rem;
}

.g-3 {
  --gutter-x: 1rem;
  --gutter-y: 1rem;
}

.gx-3 {
  --gutter-x: 1rem;
}

.gy-3 {
  --gutter-y: 1rem;
}

.g-4 {
  --gutter-x: 1.5rem;
  --gutter-y: 1.5rem;
}

.gx-4 {
  --gutter-x: 1.5rem;
}

.gy-4 {
  --gutter-y: 1.5rem;
}

.g-5 {
  --gutter-x: 3rem;
  --gutter-y: 3rem;
}

.gx-5 {
  --gutter-x: 3rem;
}

.gy-5 {
  --gutter-y: 3rem;
}

@media (width > 1439.98px) {
  .col-xl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-xl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-xl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-xl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-xl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .offset-xl-1 {
    margin-left: 8.3333333333%;
  }
  .offset-xl-2 {
    margin-left: 16.6666666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.3333333333%;
  }
  .offset-xl-5 {
    margin-left: 41.6666666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.3333333333%;
  }
  .offset-xl-8 {
    margin-left: 66.6666666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.3333333333%;
  }
  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: calc(100% / 1);
  }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: calc(100% / 2);
  }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: calc(100% / 3);
  }
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: calc(100% / 4);
  }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: calc(100% / 5);
  }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: calc(100% / 6);
  }
  .row-cols-xl-7 > * {
    flex: 0 0 auto;
    width: calc(100% / 7);
  }
  .row-cols-xl-8 > * {
    flex: 0 0 auto;
    width: calc(100% / 8);
  }
  .row-cols-xl-9 > * {
    flex: 0 0 auto;
    width: calc(100% / 9);
  }
  .row-cols-xl-10 > * {
    flex: 0 0 auto;
    width: calc(100% / 10);
  }
  .row-cols-xl-11 > * {
    flex: 0 0 auto;
    width: calc(100% / 11);
  }
  .row-cols-xl-12 > * {
    flex: 0 0 auto;
    width: calc(100% / 12);
  }
}
.order-0 {
  order: 0 !important;
}

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.order-4 {
  order: 4 !important;
}

.order-5 {
  order: 5 !important;
}

.order-6 {
  order: 6 !important;
}

.order-7 {
  order: 7 !important;
}

.order-8 {
  order: 8 !important;
}

.order-9 {
  order: 9 !important;
}

.order-10 {
  order: 10 !important;
}

.order-11 {
  order: 11 !important;
}

.order-12 {
  order: 12 !important;
}

.order-first {
  order: -1 !important;
}

.order-last {
  order: 9999 !important;
}

@media (width <= 479.98px) {
  .order-xs-0 {
    order: 0 !important;
  }
  .order-xs-1 {
    order: 1 !important;
  }
  .order-xs-2 {
    order: 2 !important;
  }
  .order-xs-3 {
    order: 3 !important;
  }
  .order-xs-4 {
    order: 4 !important;
  }
  .order-xs-5 {
    order: 5 !important;
  }
  .order-xs-6 {
    order: 6 !important;
  }
  .order-xs-7 {
    order: 7 !important;
  }
  .order-xs-8 {
    order: 8 !important;
  }
  .order-xs-9 {
    order: 9 !important;
  }
  .order-xs-10 {
    order: 10 !important;
  }
  .order-xs-11 {
    order: 11 !important;
  }
  .order-xs-12 {
    order: 12 !important;
  }
  .order-xs-first {
    order: -1 !important;
  }
  .order-xs-last {
    order: 9999 !important;
  }
}
@media (width <= 767.98px) {
  .order-sm-0 {
    order: 0 !important;
  }
  .order-sm-1 {
    order: 1 !important;
  }
  .order-sm-2 {
    order: 2 !important;
  }
  .order-sm-3 {
    order: 3 !important;
  }
  .order-sm-4 {
    order: 4 !important;
  }
  .order-sm-5 {
    order: 5 !important;
  }
  .order-sm-6 {
    order: 6 !important;
  }
  .order-sm-7 {
    order: 7 !important;
  }
  .order-sm-8 {
    order: 8 !important;
  }
  .order-sm-9 {
    order: 9 !important;
  }
  .order-sm-10 {
    order: 10 !important;
  }
  .order-sm-11 {
    order: 11 !important;
  }
  .order-sm-12 {
    order: 12 !important;
  }
  .order-sm-first {
    order: -1 !important;
  }
  .order-sm-last {
    order: 9999 !important;
  }
}
@media (width <= 1023.98px) {
  .order-md-0 {
    order: 0 !important;
  }
  .order-md-1 {
    order: 1 !important;
  }
  .order-md-2 {
    order: 2 !important;
  }
  .order-md-3 {
    order: 3 !important;
  }
  .order-md-4 {
    order: 4 !important;
  }
  .order-md-5 {
    order: 5 !important;
  }
  .order-md-6 {
    order: 6 !important;
  }
  .order-md-7 {
    order: 7 !important;
  }
  .order-md-8 {
    order: 8 !important;
  }
  .order-md-9 {
    order: 9 !important;
  }
  .order-md-10 {
    order: 10 !important;
  }
  .order-md-11 {
    order: 11 !important;
  }
  .order-md-12 {
    order: 12 !important;
  }
  .order-md-first {
    order: -1 !important;
  }
  .order-md-last {
    order: 9999 !important;
  }
}
@media (width <= 1439.98px) {
  .order-lg-0 {
    order: 0 !important;
  }
  .order-lg-1 {
    order: 1 !important;
  }
  .order-lg-2 {
    order: 2 !important;
  }
  .order-lg-3 {
    order: 3 !important;
  }
  .order-lg-4 {
    order: 4 !important;
  }
  .order-lg-5 {
    order: 5 !important;
  }
  .order-lg-6 {
    order: 6 !important;
  }
  .order-lg-7 {
    order: 7 !important;
  }
  .order-lg-8 {
    order: 8 !important;
  }
  .order-lg-9 {
    order: 9 !important;
  }
  .order-lg-10 {
    order: 10 !important;
  }
  .order-lg-11 {
    order: 11 !important;
  }
  .order-lg-12 {
    order: 12 !important;
  }
  .order-lg-first {
    order: -1 !important;
  }
  .order-lg-last {
    order: 9999 !important;
  }
}
@media (width > 1439.98px) {
  .order-xl-0 {
    order: 0 !important;
  }
  .order-xl-1 {
    order: 1 !important;
  }
  .order-xl-2 {
    order: 2 !important;
  }
  .order-xl-3 {
    order: 3 !important;
  }
  .order-xl-4 {
    order: 4 !important;
  }
  .order-xl-5 {
    order: 5 !important;
  }
  .order-xl-6 {
    order: 6 !important;
  }
  .order-xl-7 {
    order: 7 !important;
  }
  .order-xl-8 {
    order: 8 !important;
  }
  .order-xl-9 {
    order: 9 !important;
  }
  .order-xl-10 {
    order: 10 !important;
  }
  .order-xl-11 {
    order: 11 !important;
  }
  .order-xl-12 {
    order: 12 !important;
  }
  .order-xl-first {
    order: -1 !important;
  }
  .order-xl-last {
    order: 9999 !important;
  }
}
.w-100 {
  width: 100% !important;
}

@media (width <= 479.98px) {
  .w-xs-100 {
    width: 100% !important;
  }
}
@media (width <= 767.98px) {
  .w-sm-100 {
    width: 100% !important;
  }
}
@media (width <= 1023.98px) {
  .w-md-100 {
    width: 100% !important;
  }
}
@media (width <= 1439.98px) {
  .w-lg-100 {
    width: 100% !important;
  }
}
@media (width > 1439.98px) {
  .w-xl-100 {
    width: 100% !important;
  }
}
.d-none {
  display: none !important;
}

@media (width <= 479.98px) {
  .d-xs-none {
    display: none !important;
  }
}
@media (width <= 767.98px) {
  .d-sm-none {
    display: none !important;
  }
}
@media (width <= 1023.98px) {
  .d-md-none {
    display: none !important;
  }
}
@media (width <= 1439.98px) {
  .d-lg-none {
    display: none !important;
  }
}
@media (width > 1439.98px) {
  .d-xl-none {
    display: none !important;
  }
}
.d-flex {
  display: flex !important;
}

@media (width <= 479.98px) {
  .d-xs-flex {
    display: flex !important;
  }
}
@media (width <= 767.98px) {
  .d-sm-flex {
    display: flex !important;
  }
}
@media (width <= 1023.98px) {
  .d-md-flex {
    display: flex !important;
  }
}
@media (width <= 1439.98px) {
  .d-lg-flex {
    display: flex !important;
  }
}
@media (width > 1439.98px) {
  .d-xl-flex {
    display: flex !important;
  }
}
.d-block {
  display: block !important;
}

@media (width <= 479.98px) {
  .d-xs-block {
    display: block !important;
  }
}
@media (width <= 767.98px) {
  .d-sm-block {
    display: block !important;
  }
}
@media (width <= 1023.98px) {
  .d-md-block {
    display: block !important;
  }
}
@media (width <= 1439.98px) {
  .d-lg-block {
    display: block !important;
  }
}
@media (width > 1439.98px) {
  .d-xl-block {
    display: block !important;
  }
}
.d-grid {
  display: grid !important;
}

@media (width <= 479.98px) {
  .d-xs-grid {
    display: grid !important;
  }
}
@media (width <= 767.98px) {
  .d-sm-grid {
    display: grid !important;
  }
}
@media (width <= 1023.98px) {
  .d-md-grid {
    display: grid !important;
  }
}
@media (width <= 1439.98px) {
  .d-lg-grid {
    display: grid !important;
  }
}
@media (width > 1439.98px) {
  .d-xl-grid {
    display: grid !important;
  }
}
.m-0 {
  margin: 0px !important;
}

.mt-0 {
  margin-top: 0px !important;
}

.mb-0 {
  margin-bottom: 0px !important;
}

.ms-0 {
  margin-left: 0px !important;
}

.me-0 {
  margin-right: 0px !important;
}

.mx-0 {
  margin-left: 0px !important;
  margin-right: 0px !important;
}

.my-0 {
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}

.p-0 {
  padding: 0px !important;
}

.pt-0 {
  padding-top: 0px !important;
}

.pb-0 {
  padding-bottom: 0px !important;
}

.ps-0 {
  padding-left: 0px !important;
}

.pe-0 {
  padding-right: 0px !important;
}

.px-0 {
  padding-left: 0px !important;
  padding-right: 0px !important;
}

.py-0 {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

.m-1 {
  margin: 4px !important;
}

.mt-1 {
  margin-top: 4px !important;
}

.mb-1 {
  margin-bottom: 4px !important;
}

.ms-1 {
  margin-left: 4px !important;
}

.me-1 {
  margin-right: 4px !important;
}

.mx-1 {
  margin-left: 4px !important;
  margin-right: 4px !important;
}

.my-1 {
  margin-top: 4px !important;
  margin-bottom: 4px !important;
}

.p-1 {
  padding: 4px !important;
}

.pt-1 {
  padding-top: 4px !important;
}

.pb-1 {
  padding-bottom: 4px !important;
}

.ps-1 {
  padding-left: 4px !important;
}

.pe-1 {
  padding-right: 4px !important;
}

.px-1 {
  padding-left: 4px !important;
  padding-right: 4px !important;
}

.py-1 {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
}

.m-2 {
  margin: 8px !important;
}

.mt-2 {
  margin-top: 8px !important;
}

.mb-2 {
  margin-bottom: 8px !important;
}

.ms-2 {
  margin-left: 8px !important;
}

.me-2 {
  margin-right: 8px !important;
}

.mx-2 {
  margin-left: 8px !important;
  margin-right: 8px !important;
}

.my-2 {
  margin-top: 8px !important;
  margin-bottom: 8px !important;
}

.p-2 {
  padding: 8px !important;
}

.pt-2 {
  padding-top: 8px !important;
}

.pb-2 {
  padding-bottom: 8px !important;
}

.ps-2 {
  padding-left: 8px !important;
}

.pe-2 {
  padding-right: 8px !important;
}

.px-2 {
  padding-left: 8px !important;
  padding-right: 8px !important;
}

.py-2 {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.m-3 {
  margin: 16px !important;
}

.mt-3 {
  margin-top: 16px !important;
}

.mb-3 {
  margin-bottom: 16px !important;
}

.ms-3 {
  margin-left: 16px !important;
}

.me-3 {
  margin-right: 16px !important;
}

.mx-3 {
  margin-left: 16px !important;
  margin-right: 16px !important;
}

.my-3 {
  margin-top: 16px !important;
  margin-bottom: 16px !important;
}

.p-3 {
  padding: 16px !important;
}

.pt-3 {
  padding-top: 16px !important;
}

.pb-3 {
  padding-bottom: 16px !important;
}

.ps-3 {
  padding-left: 16px !important;
}

.pe-3 {
  padding-right: 16px !important;
}

.px-3 {
  padding-left: 16px !important;
  padding-right: 16px !important;
}

.py-3 {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}

.m-4 {
  margin: 24px !important;
}

.mt-4 {
  margin-top: 24px !important;
}

.mb-4 {
  margin-bottom: 24px !important;
}

.ms-4 {
  margin-left: 24px !important;
}

.me-4 {
  margin-right: 24px !important;
}

.mx-4 {
  margin-left: 24px !important;
  margin-right: 24px !important;
}

.my-4 {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}

.p-4 {
  padding: 24px !important;
}

.pt-4 {
  padding-top: 24px !important;
}

.pb-4 {
  padding-bottom: 24px !important;
}

.ps-4 {
  padding-left: 24px !important;
}

.pe-4 {
  padding-right: 24px !important;
}

.px-4 {
  padding-left: 24px !important;
  padding-right: 24px !important;
}

.py-4 {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}

.m-5 {
  margin: 32px !important;
}

.mt-5 {
  margin-top: 32px !important;
}

.mb-5 {
  margin-bottom: 32px !important;
}

.ms-5 {
  margin-left: 32px !important;
}

.me-5 {
  margin-right: 32px !important;
}

.mx-5 {
  margin-left: 32px !important;
  margin-right: 32px !important;
}

.my-5 {
  margin-top: 32px !important;
  margin-bottom: 32px !important;
}

.p-5 {
  padding: 32px !important;
}

.pt-5 {
  padding-top: 32px !important;
}

.pb-5 {
  padding-bottom: 32px !important;
}

.ps-5 {
  padding-left: 32px !important;
}

.pe-5 {
  padding-right: 32px !important;
}

.px-5 {
  padding-left: 32px !important;
  padding-right: 32px !important;
}

.py-5 {
  padding-top: 32px !important;
  padding-bottom: 32px !important;
}

.m-6 {
  margin: 48px !important;
}

.mt-6 {
  margin-top: 48px !important;
}

.mb-6 {
  margin-bottom: 48px !important;
}

.ms-6 {
  margin-left: 48px !important;
}

.me-6 {
  margin-right: 48px !important;
}

.mx-6 {
  margin-left: 48px !important;
  margin-right: 48px !important;
}

.my-6 {
  margin-top: 48px !important;
  margin-bottom: 48px !important;
}

.p-6 {
  padding: 48px !important;
}

.pt-6 {
  padding-top: 48px !important;
}

.pb-6 {
  padding-bottom: 48px !important;
}

.ps-6 {
  padding-left: 48px !important;
}

.pe-6 {
  padding-right: 48px !important;
}

.px-6 {
  padding-left: 48px !important;
  padding-right: 48px !important;
}

.py-6 {
  padding-top: 48px !important;
  padding-bottom: 48px !important;
}

.m-7 {
  margin: 64px !important;
}

.mt-7 {
  margin-top: 64px !important;
}

.mb-7 {
  margin-bottom: 64px !important;
}

.ms-7 {
  margin-left: 64px !important;
}

.me-7 {
  margin-right: 64px !important;
}

.mx-7 {
  margin-left: 64px !important;
  margin-right: 64px !important;
}

.my-7 {
  margin-top: 64px !important;
  margin-bottom: 64px !important;
}

.p-7 {
  padding: 64px !important;
}

.pt-7 {
  padding-top: 64px !important;
}

.pb-7 {
  padding-bottom: 64px !important;
}

.ps-7 {
  padding-left: 64px !important;
}

.pe-7 {
  padding-right: 64px !important;
}

.px-7 {
  padding-left: 64px !important;
  padding-right: 64px !important;
}

.py-7 {
  padding-top: 64px !important;
  padding-bottom: 64px !important;
}

.m-8 {
  margin: 80px !important;
}

.mt-8 {
  margin-top: 80px !important;
}

.mb-8 {
  margin-bottom: 80px !important;
}

.ms-8 {
  margin-left: 80px !important;
}

.me-8 {
  margin-right: 80px !important;
}

.mx-8 {
  margin-left: 80px !important;
  margin-right: 80px !important;
}

.my-8 {
  margin-top: 80px !important;
  margin-bottom: 80px !important;
}

.p-8 {
  padding: 80px !important;
}

.pt-8 {
  padding-top: 80px !important;
}

.pb-8 {
  padding-bottom: 80px !important;
}

.ps-8 {
  padding-left: 80px !important;
}

.pe-8 {
  padding-right: 80px !important;
}

.px-8 {
  padding-left: 80px !important;
  padding-right: 80px !important;
}

.py-8 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

.m-9 {
  margin: 96px !important;
}

.mt-9 {
  margin-top: 96px !important;
}

.mb-9 {
  margin-bottom: 96px !important;
}

.ms-9 {
  margin-left: 96px !important;
}

.me-9 {
  margin-right: 96px !important;
}

.mx-9 {
  margin-left: 96px !important;
  margin-right: 96px !important;
}

.my-9 {
  margin-top: 96px !important;
  margin-bottom: 96px !important;
}

.p-9 {
  padding: 96px !important;
}

.pt-9 {
  padding-top: 96px !important;
}

.pb-9 {
  padding-bottom: 96px !important;
}

.ps-9 {
  padding-left: 96px !important;
}

.pe-9 {
  padding-right: 96px !important;
}

.px-9 {
  padding-left: 96px !important;
  padding-right: 96px !important;
}

.py-9 {
  padding-top: 96px !important;
  padding-bottom: 96px !important;
}

@media (width <= 479.98px) {
  .m-xs-0 {
    margin: 0px !important;
  }
  .mt-xs-0 {
    margin-top: 0px !important;
  }
  .mb-xs-0 {
    margin-bottom: 0px !important;
  }
  .ms-xs-0 {
    margin-left: 0px !important;
  }
  .me-xs-0 {
    margin-right: 0px !important;
  }
  .mx-xs-0 {
    margin-left: 0px !important;
    margin-right: 0px !important;
  }
  .my-xs-0 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
  .p-xs-0 {
    padding: 0px !important;
  }
  .pt-xs-0 {
    padding-top: 0px !important;
  }
  .pb-xs-0 {
    padding-bottom: 0px !important;
  }
  .ps-xs-0 {
    padding-left: 0px !important;
  }
  .pe-xs-0 {
    padding-right: 0px !important;
  }
  .px-xs-0 {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .py-xs-0 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  .m-xs-1 {
    margin: 4px !important;
  }
  .mt-xs-1 {
    margin-top: 4px !important;
  }
  .mb-xs-1 {
    margin-bottom: 4px !important;
  }
  .ms-xs-1 {
    margin-left: 4px !important;
  }
  .me-xs-1 {
    margin-right: 4px !important;
  }
  .mx-xs-1 {
    margin-left: 4px !important;
    margin-right: 4px !important;
  }
  .my-xs-1 {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }
  .p-xs-1 {
    padding: 4px !important;
  }
  .pt-xs-1 {
    padding-top: 4px !important;
  }
  .pb-xs-1 {
    padding-bottom: 4px !important;
  }
  .ps-xs-1 {
    padding-left: 4px !important;
  }
  .pe-xs-1 {
    padding-right: 4px !important;
  }
  .px-xs-1 {
    padding-left: 4px !important;
    padding-right: 4px !important;
  }
  .py-xs-1 {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }
  .m-xs-2 {
    margin: 8px !important;
  }
  .mt-xs-2 {
    margin-top: 8px !important;
  }
  .mb-xs-2 {
    margin-bottom: 8px !important;
  }
  .ms-xs-2 {
    margin-left: 8px !important;
  }
  .me-xs-2 {
    margin-right: 8px !important;
  }
  .mx-xs-2 {
    margin-left: 8px !important;
    margin-right: 8px !important;
  }
  .my-xs-2 {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }
  .p-xs-2 {
    padding: 8px !important;
  }
  .pt-xs-2 {
    padding-top: 8px !important;
  }
  .pb-xs-2 {
    padding-bottom: 8px !important;
  }
  .ps-xs-2 {
    padding-left: 8px !important;
  }
  .pe-xs-2 {
    padding-right: 8px !important;
  }
  .px-xs-2 {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
  .py-xs-2 {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
  .m-xs-3 {
    margin: 16px !important;
  }
  .mt-xs-3 {
    margin-top: 16px !important;
  }
  .mb-xs-3 {
    margin-bottom: 16px !important;
  }
  .ms-xs-3 {
    margin-left: 16px !important;
  }
  .me-xs-3 {
    margin-right: 16px !important;
  }
  .mx-xs-3 {
    margin-left: 16px !important;
    margin-right: 16px !important;
  }
  .my-xs-3 {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }
  .p-xs-3 {
    padding: 16px !important;
  }
  .pt-xs-3 {
    padding-top: 16px !important;
  }
  .pb-xs-3 {
    padding-bottom: 16px !important;
  }
  .ps-xs-3 {
    padding-left: 16px !important;
  }
  .pe-xs-3 {
    padding-right: 16px !important;
  }
  .px-xs-3 {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .py-xs-3 {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }
  .m-xs-4 {
    margin: 24px !important;
  }
  .mt-xs-4 {
    margin-top: 24px !important;
  }
  .mb-xs-4 {
    margin-bottom: 24px !important;
  }
  .ms-xs-4 {
    margin-left: 24px !important;
  }
  .me-xs-4 {
    margin-right: 24px !important;
  }
  .mx-xs-4 {
    margin-left: 24px !important;
    margin-right: 24px !important;
  }
  .my-xs-4 {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }
  .p-xs-4 {
    padding: 24px !important;
  }
  .pt-xs-4 {
    padding-top: 24px !important;
  }
  .pb-xs-4 {
    padding-bottom: 24px !important;
  }
  .ps-xs-4 {
    padding-left: 24px !important;
  }
  .pe-xs-4 {
    padding-right: 24px !important;
  }
  .px-xs-4 {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
  .py-xs-4 {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
  .m-xs-5 {
    margin: 32px !important;
  }
  .mt-xs-5 {
    margin-top: 32px !important;
  }
  .mb-xs-5 {
    margin-bottom: 32px !important;
  }
  .ms-xs-5 {
    margin-left: 32px !important;
  }
  .me-xs-5 {
    margin-right: 32px !important;
  }
  .mx-xs-5 {
    margin-left: 32px !important;
    margin-right: 32px !important;
  }
  .my-xs-5 {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
  }
  .p-xs-5 {
    padding: 32px !important;
  }
  .pt-xs-5 {
    padding-top: 32px !important;
  }
  .pb-xs-5 {
    padding-bottom: 32px !important;
  }
  .ps-xs-5 {
    padding-left: 32px !important;
  }
  .pe-xs-5 {
    padding-right: 32px !important;
  }
  .px-xs-5 {
    padding-left: 32px !important;
    padding-right: 32px !important;
  }
  .py-xs-5 {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
  .m-xs-6 {
    margin: 48px !important;
  }
  .mt-xs-6 {
    margin-top: 48px !important;
  }
  .mb-xs-6 {
    margin-bottom: 48px !important;
  }
  .ms-xs-6 {
    margin-left: 48px !important;
  }
  .me-xs-6 {
    margin-right: 48px !important;
  }
  .mx-xs-6 {
    margin-left: 48px !important;
    margin-right: 48px !important;
  }
  .my-xs-6 {
    margin-top: 48px !important;
    margin-bottom: 48px !important;
  }
  .p-xs-6 {
    padding: 48px !important;
  }
  .pt-xs-6 {
    padding-top: 48px !important;
  }
  .pb-xs-6 {
    padding-bottom: 48px !important;
  }
  .ps-xs-6 {
    padding-left: 48px !important;
  }
  .pe-xs-6 {
    padding-right: 48px !important;
  }
  .px-xs-6 {
    padding-left: 48px !important;
    padding-right: 48px !important;
  }
  .py-xs-6 {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }
  .m-xs-7 {
    margin: 64px !important;
  }
  .mt-xs-7 {
    margin-top: 64px !important;
  }
  .mb-xs-7 {
    margin-bottom: 64px !important;
  }
  .ms-xs-7 {
    margin-left: 64px !important;
  }
  .me-xs-7 {
    margin-right: 64px !important;
  }
  .mx-xs-7 {
    margin-left: 64px !important;
    margin-right: 64px !important;
  }
  .my-xs-7 {
    margin-top: 64px !important;
    margin-bottom: 64px !important;
  }
  .p-xs-7 {
    padding: 64px !important;
  }
  .pt-xs-7 {
    padding-top: 64px !important;
  }
  .pb-xs-7 {
    padding-bottom: 64px !important;
  }
  .ps-xs-7 {
    padding-left: 64px !important;
  }
  .pe-xs-7 {
    padding-right: 64px !important;
  }
  .px-xs-7 {
    padding-left: 64px !important;
    padding-right: 64px !important;
  }
  .py-xs-7 {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }
  .m-xs-8 {
    margin: 80px !important;
  }
  .mt-xs-8 {
    margin-top: 80px !important;
  }
  .mb-xs-8 {
    margin-bottom: 80px !important;
  }
  .ms-xs-8 {
    margin-left: 80px !important;
  }
  .me-xs-8 {
    margin-right: 80px !important;
  }
  .mx-xs-8 {
    margin-left: 80px !important;
    margin-right: 80px !important;
  }
  .my-xs-8 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
  .p-xs-8 {
    padding: 80px !important;
  }
  .pt-xs-8 {
    padding-top: 80px !important;
  }
  .pb-xs-8 {
    padding-bottom: 80px !important;
  }
  .ps-xs-8 {
    padding-left: 80px !important;
  }
  .pe-xs-8 {
    padding-right: 80px !important;
  }
  .px-xs-8 {
    padding-left: 80px !important;
    padding-right: 80px !important;
  }
  .py-xs-8 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  .m-xs-9 {
    margin: 96px !important;
  }
  .mt-xs-9 {
    margin-top: 96px !important;
  }
  .mb-xs-9 {
    margin-bottom: 96px !important;
  }
  .ms-xs-9 {
    margin-left: 96px !important;
  }
  .me-xs-9 {
    margin-right: 96px !important;
  }
  .mx-xs-9 {
    margin-left: 96px !important;
    margin-right: 96px !important;
  }
  .my-xs-9 {
    margin-top: 96px !important;
    margin-bottom: 96px !important;
  }
  .p-xs-9 {
    padding: 96px !important;
  }
  .pt-xs-9 {
    padding-top: 96px !important;
  }
  .pb-xs-9 {
    padding-bottom: 96px !important;
  }
  .ps-xs-9 {
    padding-left: 96px !important;
  }
  .pe-xs-9 {
    padding-right: 96px !important;
  }
  .px-xs-9 {
    padding-left: 96px !important;
    padding-right: 96px !important;
  }
  .py-xs-9 {
    padding-top: 96px !important;
    padding-bottom: 96px !important;
  }
}
@media (width <= 767.98px) {
  .m-sm-0 {
    margin: 0px !important;
  }
  .mt-sm-0 {
    margin-top: 0px !important;
  }
  .mb-sm-0 {
    margin-bottom: 0px !important;
  }
  .ms-sm-0 {
    margin-left: 0px !important;
  }
  .me-sm-0 {
    margin-right: 0px !important;
  }
  .mx-sm-0 {
    margin-left: 0px !important;
    margin-right: 0px !important;
  }
  .my-sm-0 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
  .p-sm-0 {
    padding: 0px !important;
  }
  .pt-sm-0 {
    padding-top: 0px !important;
  }
  .pb-sm-0 {
    padding-bottom: 0px !important;
  }
  .ps-sm-0 {
    padding-left: 0px !important;
  }
  .pe-sm-0 {
    padding-right: 0px !important;
  }
  .px-sm-0 {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .py-sm-0 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  .m-sm-1 {
    margin: 4px !important;
  }
  .mt-sm-1 {
    margin-top: 4px !important;
  }
  .mb-sm-1 {
    margin-bottom: 4px !important;
  }
  .ms-sm-1 {
    margin-left: 4px !important;
  }
  .me-sm-1 {
    margin-right: 4px !important;
  }
  .mx-sm-1 {
    margin-left: 4px !important;
    margin-right: 4px !important;
  }
  .my-sm-1 {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }
  .p-sm-1 {
    padding: 4px !important;
  }
  .pt-sm-1 {
    padding-top: 4px !important;
  }
  .pb-sm-1 {
    padding-bottom: 4px !important;
  }
  .ps-sm-1 {
    padding-left: 4px !important;
  }
  .pe-sm-1 {
    padding-right: 4px !important;
  }
  .px-sm-1 {
    padding-left: 4px !important;
    padding-right: 4px !important;
  }
  .py-sm-1 {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }
  .m-sm-2 {
    margin: 8px !important;
  }
  .mt-sm-2 {
    margin-top: 8px !important;
  }
  .mb-sm-2 {
    margin-bottom: 8px !important;
  }
  .ms-sm-2 {
    margin-left: 8px !important;
  }
  .me-sm-2 {
    margin-right: 8px !important;
  }
  .mx-sm-2 {
    margin-left: 8px !important;
    margin-right: 8px !important;
  }
  .my-sm-2 {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }
  .p-sm-2 {
    padding: 8px !important;
  }
  .pt-sm-2 {
    padding-top: 8px !important;
  }
  .pb-sm-2 {
    padding-bottom: 8px !important;
  }
  .ps-sm-2 {
    padding-left: 8px !important;
  }
  .pe-sm-2 {
    padding-right: 8px !important;
  }
  .px-sm-2 {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
  .py-sm-2 {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
  .m-sm-3 {
    margin: 16px !important;
  }
  .mt-sm-3 {
    margin-top: 16px !important;
  }
  .mb-sm-3 {
    margin-bottom: 16px !important;
  }
  .ms-sm-3 {
    margin-left: 16px !important;
  }
  .me-sm-3 {
    margin-right: 16px !important;
  }
  .mx-sm-3 {
    margin-left: 16px !important;
    margin-right: 16px !important;
  }
  .my-sm-3 {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }
  .p-sm-3 {
    padding: 16px !important;
  }
  .pt-sm-3 {
    padding-top: 16px !important;
  }
  .pb-sm-3 {
    padding-bottom: 16px !important;
  }
  .ps-sm-3 {
    padding-left: 16px !important;
  }
  .pe-sm-3 {
    padding-right: 16px !important;
  }
  .px-sm-3 {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .py-sm-3 {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }
  .m-sm-4 {
    margin: 24px !important;
  }
  .mt-sm-4 {
    margin-top: 24px !important;
  }
  .mb-sm-4 {
    margin-bottom: 24px !important;
  }
  .ms-sm-4 {
    margin-left: 24px !important;
  }
  .me-sm-4 {
    margin-right: 24px !important;
  }
  .mx-sm-4 {
    margin-left: 24px !important;
    margin-right: 24px !important;
  }
  .my-sm-4 {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }
  .p-sm-4 {
    padding: 24px !important;
  }
  .pt-sm-4 {
    padding-top: 24px !important;
  }
  .pb-sm-4 {
    padding-bottom: 24px !important;
  }
  .ps-sm-4 {
    padding-left: 24px !important;
  }
  .pe-sm-4 {
    padding-right: 24px !important;
  }
  .px-sm-4 {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
  .py-sm-4 {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
  .m-sm-5 {
    margin: 32px !important;
  }
  .mt-sm-5 {
    margin-top: 32px !important;
  }
  .mb-sm-5 {
    margin-bottom: 32px !important;
  }
  .ms-sm-5 {
    margin-left: 32px !important;
  }
  .me-sm-5 {
    margin-right: 32px !important;
  }
  .mx-sm-5 {
    margin-left: 32px !important;
    margin-right: 32px !important;
  }
  .my-sm-5 {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
  }
  .p-sm-5 {
    padding: 32px !important;
  }
  .pt-sm-5 {
    padding-top: 32px !important;
  }
  .pb-sm-5 {
    padding-bottom: 32px !important;
  }
  .ps-sm-5 {
    padding-left: 32px !important;
  }
  .pe-sm-5 {
    padding-right: 32px !important;
  }
  .px-sm-5 {
    padding-left: 32px !important;
    padding-right: 32px !important;
  }
  .py-sm-5 {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
  .m-sm-6 {
    margin: 48px !important;
  }
  .mt-sm-6 {
    margin-top: 48px !important;
  }
  .mb-sm-6 {
    margin-bottom: 48px !important;
  }
  .ms-sm-6 {
    margin-left: 48px !important;
  }
  .me-sm-6 {
    margin-right: 48px !important;
  }
  .mx-sm-6 {
    margin-left: 48px !important;
    margin-right: 48px !important;
  }
  .my-sm-6 {
    margin-top: 48px !important;
    margin-bottom: 48px !important;
  }
  .p-sm-6 {
    padding: 48px !important;
  }
  .pt-sm-6 {
    padding-top: 48px !important;
  }
  .pb-sm-6 {
    padding-bottom: 48px !important;
  }
  .ps-sm-6 {
    padding-left: 48px !important;
  }
  .pe-sm-6 {
    padding-right: 48px !important;
  }
  .px-sm-6 {
    padding-left: 48px !important;
    padding-right: 48px !important;
  }
  .py-sm-6 {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }
  .m-sm-7 {
    margin: 64px !important;
  }
  .mt-sm-7 {
    margin-top: 64px !important;
  }
  .mb-sm-7 {
    margin-bottom: 64px !important;
  }
  .ms-sm-7 {
    margin-left: 64px !important;
  }
  .me-sm-7 {
    margin-right: 64px !important;
  }
  .mx-sm-7 {
    margin-left: 64px !important;
    margin-right: 64px !important;
  }
  .my-sm-7 {
    margin-top: 64px !important;
    margin-bottom: 64px !important;
  }
  .p-sm-7 {
    padding: 64px !important;
  }
  .pt-sm-7 {
    padding-top: 64px !important;
  }
  .pb-sm-7 {
    padding-bottom: 64px !important;
  }
  .ps-sm-7 {
    padding-left: 64px !important;
  }
  .pe-sm-7 {
    padding-right: 64px !important;
  }
  .px-sm-7 {
    padding-left: 64px !important;
    padding-right: 64px !important;
  }
  .py-sm-7 {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }
  .m-sm-8 {
    margin: 80px !important;
  }
  .mt-sm-8 {
    margin-top: 80px !important;
  }
  .mb-sm-8 {
    margin-bottom: 80px !important;
  }
  .ms-sm-8 {
    margin-left: 80px !important;
  }
  .me-sm-8 {
    margin-right: 80px !important;
  }
  .mx-sm-8 {
    margin-left: 80px !important;
    margin-right: 80px !important;
  }
  .my-sm-8 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
  .p-sm-8 {
    padding: 80px !important;
  }
  .pt-sm-8 {
    padding-top: 80px !important;
  }
  .pb-sm-8 {
    padding-bottom: 80px !important;
  }
  .ps-sm-8 {
    padding-left: 80px !important;
  }
  .pe-sm-8 {
    padding-right: 80px !important;
  }
  .px-sm-8 {
    padding-left: 80px !important;
    padding-right: 80px !important;
  }
  .py-sm-8 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  .m-sm-9 {
    margin: 96px !important;
  }
  .mt-sm-9 {
    margin-top: 96px !important;
  }
  .mb-sm-9 {
    margin-bottom: 96px !important;
  }
  .ms-sm-9 {
    margin-left: 96px !important;
  }
  .me-sm-9 {
    margin-right: 96px !important;
  }
  .mx-sm-9 {
    margin-left: 96px !important;
    margin-right: 96px !important;
  }
  .my-sm-9 {
    margin-top: 96px !important;
    margin-bottom: 96px !important;
  }
  .p-sm-9 {
    padding: 96px !important;
  }
  .pt-sm-9 {
    padding-top: 96px !important;
  }
  .pb-sm-9 {
    padding-bottom: 96px !important;
  }
  .ps-sm-9 {
    padding-left: 96px !important;
  }
  .pe-sm-9 {
    padding-right: 96px !important;
  }
  .px-sm-9 {
    padding-left: 96px !important;
    padding-right: 96px !important;
  }
  .py-sm-9 {
    padding-top: 96px !important;
    padding-bottom: 96px !important;
  }
}
@media (width <= 1023.98px) {
  .m-md-0 {
    margin: 0px !important;
  }
  .mt-md-0 {
    margin-top: 0px !important;
  }
  .mb-md-0 {
    margin-bottom: 0px !important;
  }
  .ms-md-0 {
    margin-left: 0px !important;
  }
  .me-md-0 {
    margin-right: 0px !important;
  }
  .mx-md-0 {
    margin-left: 0px !important;
    margin-right: 0px !important;
  }
  .my-md-0 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
  .p-md-0 {
    padding: 0px !important;
  }
  .pt-md-0 {
    padding-top: 0px !important;
  }
  .pb-md-0 {
    padding-bottom: 0px !important;
  }
  .ps-md-0 {
    padding-left: 0px !important;
  }
  .pe-md-0 {
    padding-right: 0px !important;
  }
  .px-md-0 {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .py-md-0 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  .m-md-1 {
    margin: 4px !important;
  }
  .mt-md-1 {
    margin-top: 4px !important;
  }
  .mb-md-1 {
    margin-bottom: 4px !important;
  }
  .ms-md-1 {
    margin-left: 4px !important;
  }
  .me-md-1 {
    margin-right: 4px !important;
  }
  .mx-md-1 {
    margin-left: 4px !important;
    margin-right: 4px !important;
  }
  .my-md-1 {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }
  .p-md-1 {
    padding: 4px !important;
  }
  .pt-md-1 {
    padding-top: 4px !important;
  }
  .pb-md-1 {
    padding-bottom: 4px !important;
  }
  .ps-md-1 {
    padding-left: 4px !important;
  }
  .pe-md-1 {
    padding-right: 4px !important;
  }
  .px-md-1 {
    padding-left: 4px !important;
    padding-right: 4px !important;
  }
  .py-md-1 {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }
  .m-md-2 {
    margin: 8px !important;
  }
  .mt-md-2 {
    margin-top: 8px !important;
  }
  .mb-md-2 {
    margin-bottom: 8px !important;
  }
  .ms-md-2 {
    margin-left: 8px !important;
  }
  .me-md-2 {
    margin-right: 8px !important;
  }
  .mx-md-2 {
    margin-left: 8px !important;
    margin-right: 8px !important;
  }
  .my-md-2 {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }
  .p-md-2 {
    padding: 8px !important;
  }
  .pt-md-2 {
    padding-top: 8px !important;
  }
  .pb-md-2 {
    padding-bottom: 8px !important;
  }
  .ps-md-2 {
    padding-left: 8px !important;
  }
  .pe-md-2 {
    padding-right: 8px !important;
  }
  .px-md-2 {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
  .py-md-2 {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
  .m-md-3 {
    margin: 16px !important;
  }
  .mt-md-3 {
    margin-top: 16px !important;
  }
  .mb-md-3 {
    margin-bottom: 16px !important;
  }
  .ms-md-3 {
    margin-left: 16px !important;
  }
  .me-md-3 {
    margin-right: 16px !important;
  }
  .mx-md-3 {
    margin-left: 16px !important;
    margin-right: 16px !important;
  }
  .my-md-3 {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }
  .p-md-3 {
    padding: 16px !important;
  }
  .pt-md-3 {
    padding-top: 16px !important;
  }
  .pb-md-3 {
    padding-bottom: 16px !important;
  }
  .ps-md-3 {
    padding-left: 16px !important;
  }
  .pe-md-3 {
    padding-right: 16px !important;
  }
  .px-md-3 {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .py-md-3 {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }
  .m-md-4 {
    margin: 24px !important;
  }
  .mt-md-4 {
    margin-top: 24px !important;
  }
  .mb-md-4 {
    margin-bottom: 24px !important;
  }
  .ms-md-4 {
    margin-left: 24px !important;
  }
  .me-md-4 {
    margin-right: 24px !important;
  }
  .mx-md-4 {
    margin-left: 24px !important;
    margin-right: 24px !important;
  }
  .my-md-4 {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }
  .p-md-4 {
    padding: 24px !important;
  }
  .pt-md-4 {
    padding-top: 24px !important;
  }
  .pb-md-4 {
    padding-bottom: 24px !important;
  }
  .ps-md-4 {
    padding-left: 24px !important;
  }
  .pe-md-4 {
    padding-right: 24px !important;
  }
  .px-md-4 {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
  .py-md-4 {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
  .m-md-5 {
    margin: 32px !important;
  }
  .mt-md-5 {
    margin-top: 32px !important;
  }
  .mb-md-5 {
    margin-bottom: 32px !important;
  }
  .ms-md-5 {
    margin-left: 32px !important;
  }
  .me-md-5 {
    margin-right: 32px !important;
  }
  .mx-md-5 {
    margin-left: 32px !important;
    margin-right: 32px !important;
  }
  .my-md-5 {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
  }
  .p-md-5 {
    padding: 32px !important;
  }
  .pt-md-5 {
    padding-top: 32px !important;
  }
  .pb-md-5 {
    padding-bottom: 32px !important;
  }
  .ps-md-5 {
    padding-left: 32px !important;
  }
  .pe-md-5 {
    padding-right: 32px !important;
  }
  .px-md-5 {
    padding-left: 32px !important;
    padding-right: 32px !important;
  }
  .py-md-5 {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
  .m-md-6 {
    margin: 48px !important;
  }
  .mt-md-6 {
    margin-top: 48px !important;
  }
  .mb-md-6 {
    margin-bottom: 48px !important;
  }
  .ms-md-6 {
    margin-left: 48px !important;
  }
  .me-md-6 {
    margin-right: 48px !important;
  }
  .mx-md-6 {
    margin-left: 48px !important;
    margin-right: 48px !important;
  }
  .my-md-6 {
    margin-top: 48px !important;
    margin-bottom: 48px !important;
  }
  .p-md-6 {
    padding: 48px !important;
  }
  .pt-md-6 {
    padding-top: 48px !important;
  }
  .pb-md-6 {
    padding-bottom: 48px !important;
  }
  .ps-md-6 {
    padding-left: 48px !important;
  }
  .pe-md-6 {
    padding-right: 48px !important;
  }
  .px-md-6 {
    padding-left: 48px !important;
    padding-right: 48px !important;
  }
  .py-md-6 {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }
  .m-md-7 {
    margin: 64px !important;
  }
  .mt-md-7 {
    margin-top: 64px !important;
  }
  .mb-md-7 {
    margin-bottom: 64px !important;
  }
  .ms-md-7 {
    margin-left: 64px !important;
  }
  .me-md-7 {
    margin-right: 64px !important;
  }
  .mx-md-7 {
    margin-left: 64px !important;
    margin-right: 64px !important;
  }
  .my-md-7 {
    margin-top: 64px !important;
    margin-bottom: 64px !important;
  }
  .p-md-7 {
    padding: 64px !important;
  }
  .pt-md-7 {
    padding-top: 64px !important;
  }
  .pb-md-7 {
    padding-bottom: 64px !important;
  }
  .ps-md-7 {
    padding-left: 64px !important;
  }
  .pe-md-7 {
    padding-right: 64px !important;
  }
  .px-md-7 {
    padding-left: 64px !important;
    padding-right: 64px !important;
  }
  .py-md-7 {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }
  .m-md-8 {
    margin: 80px !important;
  }
  .mt-md-8 {
    margin-top: 80px !important;
  }
  .mb-md-8 {
    margin-bottom: 80px !important;
  }
  .ms-md-8 {
    margin-left: 80px !important;
  }
  .me-md-8 {
    margin-right: 80px !important;
  }
  .mx-md-8 {
    margin-left: 80px !important;
    margin-right: 80px !important;
  }
  .my-md-8 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
  .p-md-8 {
    padding: 80px !important;
  }
  .pt-md-8 {
    padding-top: 80px !important;
  }
  .pb-md-8 {
    padding-bottom: 80px !important;
  }
  .ps-md-8 {
    padding-left: 80px !important;
  }
  .pe-md-8 {
    padding-right: 80px !important;
  }
  .px-md-8 {
    padding-left: 80px !important;
    padding-right: 80px !important;
  }
  .py-md-8 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  .m-md-9 {
    margin: 96px !important;
  }
  .mt-md-9 {
    margin-top: 96px !important;
  }
  .mb-md-9 {
    margin-bottom: 96px !important;
  }
  .ms-md-9 {
    margin-left: 96px !important;
  }
  .me-md-9 {
    margin-right: 96px !important;
  }
  .mx-md-9 {
    margin-left: 96px !important;
    margin-right: 96px !important;
  }
  .my-md-9 {
    margin-top: 96px !important;
    margin-bottom: 96px !important;
  }
  .p-md-9 {
    padding: 96px !important;
  }
  .pt-md-9 {
    padding-top: 96px !important;
  }
  .pb-md-9 {
    padding-bottom: 96px !important;
  }
  .ps-md-9 {
    padding-left: 96px !important;
  }
  .pe-md-9 {
    padding-right: 96px !important;
  }
  .px-md-9 {
    padding-left: 96px !important;
    padding-right: 96px !important;
  }
  .py-md-9 {
    padding-top: 96px !important;
    padding-bottom: 96px !important;
  }
}
@media (width <= 1439.98px) {
  .m-lg-0 {
    margin: 0px !important;
  }
  .mt-lg-0 {
    margin-top: 0px !important;
  }
  .mb-lg-0 {
    margin-bottom: 0px !important;
  }
  .ms-lg-0 {
    margin-left: 0px !important;
  }
  .me-lg-0 {
    margin-right: 0px !important;
  }
  .mx-lg-0 {
    margin-left: 0px !important;
    margin-right: 0px !important;
  }
  .my-lg-0 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
  .p-lg-0 {
    padding: 0px !important;
  }
  .pt-lg-0 {
    padding-top: 0px !important;
  }
  .pb-lg-0 {
    padding-bottom: 0px !important;
  }
  .ps-lg-0 {
    padding-left: 0px !important;
  }
  .pe-lg-0 {
    padding-right: 0px !important;
  }
  .px-lg-0 {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .py-lg-0 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  .m-lg-1 {
    margin: 4px !important;
  }
  .mt-lg-1 {
    margin-top: 4px !important;
  }
  .mb-lg-1 {
    margin-bottom: 4px !important;
  }
  .ms-lg-1 {
    margin-left: 4px !important;
  }
  .me-lg-1 {
    margin-right: 4px !important;
  }
  .mx-lg-1 {
    margin-left: 4px !important;
    margin-right: 4px !important;
  }
  .my-lg-1 {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }
  .p-lg-1 {
    padding: 4px !important;
  }
  .pt-lg-1 {
    padding-top: 4px !important;
  }
  .pb-lg-1 {
    padding-bottom: 4px !important;
  }
  .ps-lg-1 {
    padding-left: 4px !important;
  }
  .pe-lg-1 {
    padding-right: 4px !important;
  }
  .px-lg-1 {
    padding-left: 4px !important;
    padding-right: 4px !important;
  }
  .py-lg-1 {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }
  .m-lg-2 {
    margin: 8px !important;
  }
  .mt-lg-2 {
    margin-top: 8px !important;
  }
  .mb-lg-2 {
    margin-bottom: 8px !important;
  }
  .ms-lg-2 {
    margin-left: 8px !important;
  }
  .me-lg-2 {
    margin-right: 8px !important;
  }
  .mx-lg-2 {
    margin-left: 8px !important;
    margin-right: 8px !important;
  }
  .my-lg-2 {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }
  .p-lg-2 {
    padding: 8px !important;
  }
  .pt-lg-2 {
    padding-top: 8px !important;
  }
  .pb-lg-2 {
    padding-bottom: 8px !important;
  }
  .ps-lg-2 {
    padding-left: 8px !important;
  }
  .pe-lg-2 {
    padding-right: 8px !important;
  }
  .px-lg-2 {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
  .py-lg-2 {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
  .m-lg-3 {
    margin: 16px !important;
  }
  .mt-lg-3 {
    margin-top: 16px !important;
  }
  .mb-lg-3 {
    margin-bottom: 16px !important;
  }
  .ms-lg-3 {
    margin-left: 16px !important;
  }
  .me-lg-3 {
    margin-right: 16px !important;
  }
  .mx-lg-3 {
    margin-left: 16px !important;
    margin-right: 16px !important;
  }
  .my-lg-3 {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }
  .p-lg-3 {
    padding: 16px !important;
  }
  .pt-lg-3 {
    padding-top: 16px !important;
  }
  .pb-lg-3 {
    padding-bottom: 16px !important;
  }
  .ps-lg-3 {
    padding-left: 16px !important;
  }
  .pe-lg-3 {
    padding-right: 16px !important;
  }
  .px-lg-3 {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .py-lg-3 {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }
  .m-lg-4 {
    margin: 24px !important;
  }
  .mt-lg-4 {
    margin-top: 24px !important;
  }
  .mb-lg-4 {
    margin-bottom: 24px !important;
  }
  .ms-lg-4 {
    margin-left: 24px !important;
  }
  .me-lg-4 {
    margin-right: 24px !important;
  }
  .mx-lg-4 {
    margin-left: 24px !important;
    margin-right: 24px !important;
  }
  .my-lg-4 {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }
  .p-lg-4 {
    padding: 24px !important;
  }
  .pt-lg-4 {
    padding-top: 24px !important;
  }
  .pb-lg-4 {
    padding-bottom: 24px !important;
  }
  .ps-lg-4 {
    padding-left: 24px !important;
  }
  .pe-lg-4 {
    padding-right: 24px !important;
  }
  .px-lg-4 {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
  .py-lg-4 {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
  .m-lg-5 {
    margin: 32px !important;
  }
  .mt-lg-5 {
    margin-top: 32px !important;
  }
  .mb-lg-5 {
    margin-bottom: 32px !important;
  }
  .ms-lg-5 {
    margin-left: 32px !important;
  }
  .me-lg-5 {
    margin-right: 32px !important;
  }
  .mx-lg-5 {
    margin-left: 32px !important;
    margin-right: 32px !important;
  }
  .my-lg-5 {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
  }
  .p-lg-5 {
    padding: 32px !important;
  }
  .pt-lg-5 {
    padding-top: 32px !important;
  }
  .pb-lg-5 {
    padding-bottom: 32px !important;
  }
  .ps-lg-5 {
    padding-left: 32px !important;
  }
  .pe-lg-5 {
    padding-right: 32px !important;
  }
  .px-lg-5 {
    padding-left: 32px !important;
    padding-right: 32px !important;
  }
  .py-lg-5 {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
  .m-lg-6 {
    margin: 48px !important;
  }
  .mt-lg-6 {
    margin-top: 48px !important;
  }
  .mb-lg-6 {
    margin-bottom: 48px !important;
  }
  .ms-lg-6 {
    margin-left: 48px !important;
  }
  .me-lg-6 {
    margin-right: 48px !important;
  }
  .mx-lg-6 {
    margin-left: 48px !important;
    margin-right: 48px !important;
  }
  .my-lg-6 {
    margin-top: 48px !important;
    margin-bottom: 48px !important;
  }
  .p-lg-6 {
    padding: 48px !important;
  }
  .pt-lg-6 {
    padding-top: 48px !important;
  }
  .pb-lg-6 {
    padding-bottom: 48px !important;
  }
  .ps-lg-6 {
    padding-left: 48px !important;
  }
  .pe-lg-6 {
    padding-right: 48px !important;
  }
  .px-lg-6 {
    padding-left: 48px !important;
    padding-right: 48px !important;
  }
  .py-lg-6 {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }
  .m-lg-7 {
    margin: 64px !important;
  }
  .mt-lg-7 {
    margin-top: 64px !important;
  }
  .mb-lg-7 {
    margin-bottom: 64px !important;
  }
  .ms-lg-7 {
    margin-left: 64px !important;
  }
  .me-lg-7 {
    margin-right: 64px !important;
  }
  .mx-lg-7 {
    margin-left: 64px !important;
    margin-right: 64px !important;
  }
  .my-lg-7 {
    margin-top: 64px !important;
    margin-bottom: 64px !important;
  }
  .p-lg-7 {
    padding: 64px !important;
  }
  .pt-lg-7 {
    padding-top: 64px !important;
  }
  .pb-lg-7 {
    padding-bottom: 64px !important;
  }
  .ps-lg-7 {
    padding-left: 64px !important;
  }
  .pe-lg-7 {
    padding-right: 64px !important;
  }
  .px-lg-7 {
    padding-left: 64px !important;
    padding-right: 64px !important;
  }
  .py-lg-7 {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }
  .m-lg-8 {
    margin: 80px !important;
  }
  .mt-lg-8 {
    margin-top: 80px !important;
  }
  .mb-lg-8 {
    margin-bottom: 80px !important;
  }
  .ms-lg-8 {
    margin-left: 80px !important;
  }
  .me-lg-8 {
    margin-right: 80px !important;
  }
  .mx-lg-8 {
    margin-left: 80px !important;
    margin-right: 80px !important;
  }
  .my-lg-8 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
  .p-lg-8 {
    padding: 80px !important;
  }
  .pt-lg-8 {
    padding-top: 80px !important;
  }
  .pb-lg-8 {
    padding-bottom: 80px !important;
  }
  .ps-lg-8 {
    padding-left: 80px !important;
  }
  .pe-lg-8 {
    padding-right: 80px !important;
  }
  .px-lg-8 {
    padding-left: 80px !important;
    padding-right: 80px !important;
  }
  .py-lg-8 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  .m-lg-9 {
    margin: 96px !important;
  }
  .mt-lg-9 {
    margin-top: 96px !important;
  }
  .mb-lg-9 {
    margin-bottom: 96px !important;
  }
  .ms-lg-9 {
    margin-left: 96px !important;
  }
  .me-lg-9 {
    margin-right: 96px !important;
  }
  .mx-lg-9 {
    margin-left: 96px !important;
    margin-right: 96px !important;
  }
  .my-lg-9 {
    margin-top: 96px !important;
    margin-bottom: 96px !important;
  }
  .p-lg-9 {
    padding: 96px !important;
  }
  .pt-lg-9 {
    padding-top: 96px !important;
  }
  .pb-lg-9 {
    padding-bottom: 96px !important;
  }
  .ps-lg-9 {
    padding-left: 96px !important;
  }
  .pe-lg-9 {
    padding-right: 96px !important;
  }
  .px-lg-9 {
    padding-left: 96px !important;
    padding-right: 96px !important;
  }
  .py-lg-9 {
    padding-top: 96px !important;
    padding-bottom: 96px !important;
  }
}
@media (width > 1439.98px) {
  .m-xl-0 {
    margin: 0px !important;
  }
  .mt-xl-0 {
    margin-top: 0px !important;
  }
  .mb-xl-0 {
    margin-bottom: 0px !important;
  }
  .ms-xl-0 {
    margin-left: 0px !important;
  }
  .me-xl-0 {
    margin-right: 0px !important;
  }
  .mx-xl-0 {
    margin-left: 0px !important;
    margin-right: 0px !important;
  }
  .my-xl-0 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
  .p-xl-0 {
    padding: 0px !important;
  }
  .pt-xl-0 {
    padding-top: 0px !important;
  }
  .pb-xl-0 {
    padding-bottom: 0px !important;
  }
  .ps-xl-0 {
    padding-left: 0px !important;
  }
  .pe-xl-0 {
    padding-right: 0px !important;
  }
  .px-xl-0 {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .py-xl-0 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  .m-xl-1 {
    margin: 4px !important;
  }
  .mt-xl-1 {
    margin-top: 4px !important;
  }
  .mb-xl-1 {
    margin-bottom: 4px !important;
  }
  .ms-xl-1 {
    margin-left: 4px !important;
  }
  .me-xl-1 {
    margin-right: 4px !important;
  }
  .mx-xl-1 {
    margin-left: 4px !important;
    margin-right: 4px !important;
  }
  .my-xl-1 {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }
  .p-xl-1 {
    padding: 4px !important;
  }
  .pt-xl-1 {
    padding-top: 4px !important;
  }
  .pb-xl-1 {
    padding-bottom: 4px !important;
  }
  .ps-xl-1 {
    padding-left: 4px !important;
  }
  .pe-xl-1 {
    padding-right: 4px !important;
  }
  .px-xl-1 {
    padding-left: 4px !important;
    padding-right: 4px !important;
  }
  .py-xl-1 {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }
  .m-xl-2 {
    margin: 8px !important;
  }
  .mt-xl-2 {
    margin-top: 8px !important;
  }
  .mb-xl-2 {
    margin-bottom: 8px !important;
  }
  .ms-xl-2 {
    margin-left: 8px !important;
  }
  .me-xl-2 {
    margin-right: 8px !important;
  }
  .mx-xl-2 {
    margin-left: 8px !important;
    margin-right: 8px !important;
  }
  .my-xl-2 {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }
  .p-xl-2 {
    padding: 8px !important;
  }
  .pt-xl-2 {
    padding-top: 8px !important;
  }
  .pb-xl-2 {
    padding-bottom: 8px !important;
  }
  .ps-xl-2 {
    padding-left: 8px !important;
  }
  .pe-xl-2 {
    padding-right: 8px !important;
  }
  .px-xl-2 {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
  .py-xl-2 {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
  .m-xl-3 {
    margin: 16px !important;
  }
  .mt-xl-3 {
    margin-top: 16px !important;
  }
  .mb-xl-3 {
    margin-bottom: 16px !important;
  }
  .ms-xl-3 {
    margin-left: 16px !important;
  }
  .me-xl-3 {
    margin-right: 16px !important;
  }
  .mx-xl-3 {
    margin-left: 16px !important;
    margin-right: 16px !important;
  }
  .my-xl-3 {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }
  .p-xl-3 {
    padding: 16px !important;
  }
  .pt-xl-3 {
    padding-top: 16px !important;
  }
  .pb-xl-3 {
    padding-bottom: 16px !important;
  }
  .ps-xl-3 {
    padding-left: 16px !important;
  }
  .pe-xl-3 {
    padding-right: 16px !important;
  }
  .px-xl-3 {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .py-xl-3 {
    padding-top: 16px !important;
    padding-bottom: 16px !important;
  }
  .m-xl-4 {
    margin: 24px !important;
  }
  .mt-xl-4 {
    margin-top: 24px !important;
  }
  .mb-xl-4 {
    margin-bottom: 24px !important;
  }
  .ms-xl-4 {
    margin-left: 24px !important;
  }
  .me-xl-4 {
    margin-right: 24px !important;
  }
  .mx-xl-4 {
    margin-left: 24px !important;
    margin-right: 24px !important;
  }
  .my-xl-4 {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
  }
  .p-xl-4 {
    padding: 24px !important;
  }
  .pt-xl-4 {
    padding-top: 24px !important;
  }
  .pb-xl-4 {
    padding-bottom: 24px !important;
  }
  .ps-xl-4 {
    padding-left: 24px !important;
  }
  .pe-xl-4 {
    padding-right: 24px !important;
  }
  .px-xl-4 {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
  .py-xl-4 {
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
  .m-xl-5 {
    margin: 32px !important;
  }
  .mt-xl-5 {
    margin-top: 32px !important;
  }
  .mb-xl-5 {
    margin-bottom: 32px !important;
  }
  .ms-xl-5 {
    margin-left: 32px !important;
  }
  .me-xl-5 {
    margin-right: 32px !important;
  }
  .mx-xl-5 {
    margin-left: 32px !important;
    margin-right: 32px !important;
  }
  .my-xl-5 {
    margin-top: 32px !important;
    margin-bottom: 32px !important;
  }
  .p-xl-5 {
    padding: 32px !important;
  }
  .pt-xl-5 {
    padding-top: 32px !important;
  }
  .pb-xl-5 {
    padding-bottom: 32px !important;
  }
  .ps-xl-5 {
    padding-left: 32px !important;
  }
  .pe-xl-5 {
    padding-right: 32px !important;
  }
  .px-xl-5 {
    padding-left: 32px !important;
    padding-right: 32px !important;
  }
  .py-xl-5 {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
  .m-xl-6 {
    margin: 48px !important;
  }
  .mt-xl-6 {
    margin-top: 48px !important;
  }
  .mb-xl-6 {
    margin-bottom: 48px !important;
  }
  .ms-xl-6 {
    margin-left: 48px !important;
  }
  .me-xl-6 {
    margin-right: 48px !important;
  }
  .mx-xl-6 {
    margin-left: 48px !important;
    margin-right: 48px !important;
  }
  .my-xl-6 {
    margin-top: 48px !important;
    margin-bottom: 48px !important;
  }
  .p-xl-6 {
    padding: 48px !important;
  }
  .pt-xl-6 {
    padding-top: 48px !important;
  }
  .pb-xl-6 {
    padding-bottom: 48px !important;
  }
  .ps-xl-6 {
    padding-left: 48px !important;
  }
  .pe-xl-6 {
    padding-right: 48px !important;
  }
  .px-xl-6 {
    padding-left: 48px !important;
    padding-right: 48px !important;
  }
  .py-xl-6 {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }
  .m-xl-7 {
    margin: 64px !important;
  }
  .mt-xl-7 {
    margin-top: 64px !important;
  }
  .mb-xl-7 {
    margin-bottom: 64px !important;
  }
  .ms-xl-7 {
    margin-left: 64px !important;
  }
  .me-xl-7 {
    margin-right: 64px !important;
  }
  .mx-xl-7 {
    margin-left: 64px !important;
    margin-right: 64px !important;
  }
  .my-xl-7 {
    margin-top: 64px !important;
    margin-bottom: 64px !important;
  }
  .p-xl-7 {
    padding: 64px !important;
  }
  .pt-xl-7 {
    padding-top: 64px !important;
  }
  .pb-xl-7 {
    padding-bottom: 64px !important;
  }
  .ps-xl-7 {
    padding-left: 64px !important;
  }
  .pe-xl-7 {
    padding-right: 64px !important;
  }
  .px-xl-7 {
    padding-left: 64px !important;
    padding-right: 64px !important;
  }
  .py-xl-7 {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }
  .m-xl-8 {
    margin: 80px !important;
  }
  .mt-xl-8 {
    margin-top: 80px !important;
  }
  .mb-xl-8 {
    margin-bottom: 80px !important;
  }
  .ms-xl-8 {
    margin-left: 80px !important;
  }
  .me-xl-8 {
    margin-right: 80px !important;
  }
  .mx-xl-8 {
    margin-left: 80px !important;
    margin-right: 80px !important;
  }
  .my-xl-8 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
  .p-xl-8 {
    padding: 80px !important;
  }
  .pt-xl-8 {
    padding-top: 80px !important;
  }
  .pb-xl-8 {
    padding-bottom: 80px !important;
  }
  .ps-xl-8 {
    padding-left: 80px !important;
  }
  .pe-xl-8 {
    padding-right: 80px !important;
  }
  .px-xl-8 {
    padding-left: 80px !important;
    padding-right: 80px !important;
  }
  .py-xl-8 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  .m-xl-9 {
    margin: 96px !important;
  }
  .mt-xl-9 {
    margin-top: 96px !important;
  }
  .mb-xl-9 {
    margin-bottom: 96px !important;
  }
  .ms-xl-9 {
    margin-left: 96px !important;
  }
  .me-xl-9 {
    margin-right: 96px !important;
  }
  .mx-xl-9 {
    margin-left: 96px !important;
    margin-right: 96px !important;
  }
  .my-xl-9 {
    margin-top: 96px !important;
    margin-bottom: 96px !important;
  }
  .p-xl-9 {
    padding: 96px !important;
  }
  .pt-xl-9 {
    padding-top: 96px !important;
  }
  .pb-xl-9 {
    padding-bottom: 96px !important;
  }
  .ps-xl-9 {
    padding-left: 96px !important;
  }
  .pe-xl-9 {
    padding-right: 96px !important;
  }
  .px-xl-9 {
    padding-left: 96px !important;
    padding-right: 96px !important;
  }
  .py-xl-9 {
    padding-top: 96px !important;
    padding-bottom: 96px !important;
  }
}
.z-0 {
  z-index: 0 !important;
}

.z-10 {
  z-index: 10 !important;
}

.z-20 {
  z-index: 20 !important;
}

.z-30 {
  z-index: 30 !important;
}

.z-40 {
  z-index: 40 !important;
}

.z-50 {
  z-index: 50 !important;
}

.z-60 {
  z-index: 60 !important;
}

.z-70 {
  z-index: 70 !important;
}

.z-80 {
  z-index: 80 !important;
}

.z-90 {
  z-index: 90 !important;
}

.z-100 {
  z-index: 100 !important;
}

.justify-items-start {
  justify-items: start !important;
}

.justify-items-center {
  justify-items: center !important;
}

.justify-items-end {
  justify-items: end !important;
}

.justify-items-stretch {
  justify-items: stretch !important;
}

@media (width <= 479.98px) {
  .justify-items-xs-start {
    justify-items: start !important;
  }
  .justify-items-xs-center {
    justify-items: center !important;
  }
  .justify-items-xs-end {
    justify-items: end !important;
  }
  .justify-items-xs-stretch {
    justify-items: stretch !important;
  }
}
@media (width <= 767.98px) {
  .justify-items-sm-start {
    justify-items: start !important;
  }
  .justify-items-sm-center {
    justify-items: center !important;
  }
  .justify-items-sm-end {
    justify-items: end !important;
  }
  .justify-items-sm-stretch {
    justify-items: stretch !important;
  }
}
@media (width <= 1023.98px) {
  .justify-items-md-start {
    justify-items: start !important;
  }
  .justify-items-md-center {
    justify-items: center !important;
  }
  .justify-items-md-end {
    justify-items: end !important;
  }
  .justify-items-md-stretch {
    justify-items: stretch !important;
  }
}
@media (width <= 1439.98px) {
  .justify-items-lg-start {
    justify-items: start !important;
  }
  .justify-items-lg-center {
    justify-items: center !important;
  }
  .justify-items-lg-end {
    justify-items: end !important;
  }
  .justify-items-lg-stretch {
    justify-items: stretch !important;
  }
}
@media (width > 1439.98px) {
  .justify-items-xl-start {
    justify-items: start !important;
  }
  .justify-items-xl-center {
    justify-items: center !important;
  }
  .justify-items-xl-end {
    justify-items: end !important;
  }
  .justify-items-xl-stretch {
    justify-items: stretch !important;
  }
}
.gap-x-0 {
  column-gap: 0 !important;
}

.gap-y-0 {
  row-gap: 0 !important;
}

.gap-0 {
  gap: 0 !important;
}

.gap-x-1 {
  column-gap: 0.25rem !important;
}

.gap-y-1 {
  row-gap: 0.25rem !important;
}

.gap-1 {
  gap: 0.25rem !important;
}

.gap-x-2 {
  column-gap: 0.5rem !important;
}

.gap-y-2 {
  row-gap: 0.5rem !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-x-3 {
  column-gap: 1rem !important;
}

.gap-y-3 {
  row-gap: 1rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

.gap-x-4 {
  column-gap: 1.5rem !important;
}

.gap-y-4 {
  row-gap: 1.5rem !important;
}

.gap-4 {
  gap: 1.5rem !important;
}

.gap-x-5 {
  column-gap: 3rem !important;
}

.gap-y-5 {
  row-gap: 3rem !important;
}

.gap-5 {
  gap: 3rem !important;
}

@media (width <= 479.98px) {
  .gap-xs-x-0 {
    column-gap: 0 !important;
  }
  .gap-xs-y-0 {
    row-gap: 0 !important;
  }
  .gap-xs-0 {
    gap: 0 !important;
  }
  .gap-xs-x-1 {
    column-gap: 0.25rem !important;
  }
  .gap-xs-y-1 {
    row-gap: 0.25rem !important;
  }
  .gap-xs-1 {
    gap: 0.25rem !important;
  }
  .gap-xs-x-2 {
    column-gap: 0.5rem !important;
  }
  .gap-xs-y-2 {
    row-gap: 0.5rem !important;
  }
  .gap-xs-2 {
    gap: 0.5rem !important;
  }
  .gap-xs-x-3 {
    column-gap: 1rem !important;
  }
  .gap-xs-y-3 {
    row-gap: 1rem !important;
  }
  .gap-xs-3 {
    gap: 1rem !important;
  }
  .gap-xs-x-4 {
    column-gap: 1.5rem !important;
  }
  .gap-xs-y-4 {
    row-gap: 1.5rem !important;
  }
  .gap-xs-4 {
    gap: 1.5rem !important;
  }
  .gap-xs-x-5 {
    column-gap: 3rem !important;
  }
  .gap-xs-y-5 {
    row-gap: 3rem !important;
  }
  .gap-xs-5 {
    gap: 3rem !important;
  }
}
@media (width <= 767.98px) {
  .gap-sm-x-0 {
    column-gap: 0 !important;
  }
  .gap-sm-y-0 {
    row-gap: 0 !important;
  }
  .gap-sm-0 {
    gap: 0 !important;
  }
  .gap-sm-x-1 {
    column-gap: 0.25rem !important;
  }
  .gap-sm-y-1 {
    row-gap: 0.25rem !important;
  }
  .gap-sm-1 {
    gap: 0.25rem !important;
  }
  .gap-sm-x-2 {
    column-gap: 0.5rem !important;
  }
  .gap-sm-y-2 {
    row-gap: 0.5rem !important;
  }
  .gap-sm-2 {
    gap: 0.5rem !important;
  }
  .gap-sm-x-3 {
    column-gap: 1rem !important;
  }
  .gap-sm-y-3 {
    row-gap: 1rem !important;
  }
  .gap-sm-3 {
    gap: 1rem !important;
  }
  .gap-sm-x-4 {
    column-gap: 1.5rem !important;
  }
  .gap-sm-y-4 {
    row-gap: 1.5rem !important;
  }
  .gap-sm-4 {
    gap: 1.5rem !important;
  }
  .gap-sm-x-5 {
    column-gap: 3rem !important;
  }
  .gap-sm-y-5 {
    row-gap: 3rem !important;
  }
  .gap-sm-5 {
    gap: 3rem !important;
  }
}
@media (width <= 1023.98px) {
  .gap-md-x-0 {
    column-gap: 0 !important;
  }
  .gap-md-y-0 {
    row-gap: 0 !important;
  }
  .gap-md-0 {
    gap: 0 !important;
  }
  .gap-md-x-1 {
    column-gap: 0.25rem !important;
  }
  .gap-md-y-1 {
    row-gap: 0.25rem !important;
  }
  .gap-md-1 {
    gap: 0.25rem !important;
  }
  .gap-md-x-2 {
    column-gap: 0.5rem !important;
  }
  .gap-md-y-2 {
    row-gap: 0.5rem !important;
  }
  .gap-md-2 {
    gap: 0.5rem !important;
  }
  .gap-md-x-3 {
    column-gap: 1rem !important;
  }
  .gap-md-y-3 {
    row-gap: 1rem !important;
  }
  .gap-md-3 {
    gap: 1rem !important;
  }
  .gap-md-x-4 {
    column-gap: 1.5rem !important;
  }
  .gap-md-y-4 {
    row-gap: 1.5rem !important;
  }
  .gap-md-4 {
    gap: 1.5rem !important;
  }
  .gap-md-x-5 {
    column-gap: 3rem !important;
  }
  .gap-md-y-5 {
    row-gap: 3rem !important;
  }
  .gap-md-5 {
    gap: 3rem !important;
  }
}
@media (width <= 1439.98px) {
  .gap-lg-x-0 {
    column-gap: 0 !important;
  }
  .gap-lg-y-0 {
    row-gap: 0 !important;
  }
  .gap-lg-0 {
    gap: 0 !important;
  }
  .gap-lg-x-1 {
    column-gap: 0.25rem !important;
  }
  .gap-lg-y-1 {
    row-gap: 0.25rem !important;
  }
  .gap-lg-1 {
    gap: 0.25rem !important;
  }
  .gap-lg-x-2 {
    column-gap: 0.5rem !important;
  }
  .gap-lg-y-2 {
    row-gap: 0.5rem !important;
  }
  .gap-lg-2 {
    gap: 0.5rem !important;
  }
  .gap-lg-x-3 {
    column-gap: 1rem !important;
  }
  .gap-lg-y-3 {
    row-gap: 1rem !important;
  }
  .gap-lg-3 {
    gap: 1rem !important;
  }
  .gap-lg-x-4 {
    column-gap: 1.5rem !important;
  }
  .gap-lg-y-4 {
    row-gap: 1.5rem !important;
  }
  .gap-lg-4 {
    gap: 1.5rem !important;
  }
  .gap-lg-x-5 {
    column-gap: 3rem !important;
  }
  .gap-lg-y-5 {
    row-gap: 3rem !important;
  }
  .gap-lg-5 {
    gap: 3rem !important;
  }
}
@media (width > 1439.98px) {
  .gap-xl-x-0 {
    column-gap: 0 !important;
  }
  .gap-xl-y-0 {
    row-gap: 0 !important;
  }
  .gap-xl-0 {
    gap: 0 !important;
  }
  .gap-xl-x-1 {
    column-gap: 0.25rem !important;
  }
  .gap-xl-y-1 {
    row-gap: 0.25rem !important;
  }
  .gap-xl-1 {
    gap: 0.25rem !important;
  }
  .gap-xl-x-2 {
    column-gap: 0.5rem !important;
  }
  .gap-xl-y-2 {
    row-gap: 0.5rem !important;
  }
  .gap-xl-2 {
    gap: 0.5rem !important;
  }
  .gap-xl-x-3 {
    column-gap: 1rem !important;
  }
  .gap-xl-y-3 {
    row-gap: 1rem !important;
  }
  .gap-xl-3 {
    gap: 1rem !important;
  }
  .gap-xl-x-4 {
    column-gap: 1.5rem !important;
  }
  .gap-xl-y-4 {
    row-gap: 1.5rem !important;
  }
  .gap-xl-4 {
    gap: 1.5rem !important;
  }
  .gap-xl-x-5 {
    column-gap: 3rem !important;
  }
  .gap-xl-y-5 {
    row-gap: 3rem !important;
  }
  .gap-xl-5 {
    gap: 3rem !important;
  }
}
.grid {
  display: grid;
  --gutter-x: 1.5rem;
  --gutter-y: 1.5rem;
  gap: var(--gutter-y, 0rem) var(--gutter-x, 1.5rem);
  align-items: stretch;
  justify-items: stretch;
}

/* ===== Колонки: фіксована кількість ===== */
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.grid-cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.grid-cols-8 {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

.grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

/* ===== Автоматичні колонки (auto-fit / auto-fill) ===== */
.grid-cols-fit-120 {
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}

.grid-cols-fill-120 {
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
}

.grid-cols-fit-160 {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.grid-cols-fill-160 {
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
}

.grid-cols-fit-200 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.grid-cols-fill-200 {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.grid-cols-fit-240 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid-cols-fill-240 {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.grid-cols-fit-280 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-cols-fill-280 {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.grid-cols-fit-320 {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.grid-cols-fill-320 {
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

/* ===== Ряди ===== */
.grid-rows-auto {
  grid-auto-rows: auto;
}

.grid-rows-120 {
  grid-auto-rows: 120px;
}

.grid-rows-160 {
  grid-auto-rows: 160px;
}

.grid-rows-200 {
  grid-auto-rows: 200px;
}

.grid-rows-240 {
  grid-auto-rows: 240px;
}

.grid-rows-280 {
  grid-auto-rows: 280px;
}

.grid-rows-320 {
  grid-auto-rows: 320px;
}

/* ===== Span для елементів ===== */
.col-span-1 {
  grid-column: span 1/span 1;
}

.row-span-1 {
  grid-row: span 1/span 1;
}

.col-span-2 {
  grid-column: span 2/span 2;
}

.row-span-2 {
  grid-row: span 2/span 2;
}

.col-span-3 {
  grid-column: span 3/span 3;
}

.row-span-3 {
  grid-row: span 3/span 3;
}

.col-span-4 {
  grid-column: span 4/span 4;
}

.row-span-4 {
  grid-row: span 4/span 4;
}

.col-span-5 {
  grid-column: span 5/span 5;
}

.row-span-5 {
  grid-row: span 5/span 5;
}

.col-span-6 {
  grid-column: span 6/span 6;
}

.row-span-6 {
  grid-row: span 6/span 6;
}

.col-span-7 {
  grid-column: span 7/span 7;
}

.row-span-7 {
  grid-row: span 7/span 7;
}

.col-span-8 {
  grid-column: span 8/span 8;
}

.row-span-8 {
  grid-row: span 8/span 8;
}

.col-span-9 {
  grid-column: span 9/span 9;
}

.row-span-9 {
  grid-row: span 9/span 9;
}

.col-span-10 {
  grid-column: span 10/span 10;
}

.row-span-10 {
  grid-row: span 10/span 10;
}

.col-span-11 {
  grid-column: span 11/span 11;
}

.row-span-11 {
  grid-row: span 11/span 11;
}

.col-span-12 {
  grid-column: span 12/span 12;
}

.row-span-12 {
  grid-row: span 12/span 12;
}

.col-span-full {
  grid-column: 1/-1;
}

.row-span-full {
  grid-row: 1/-1;
}

/* ===== Вирівнювання саме для grid ===== */
.place-items-start {
  place-items: start;
}

.place-items-center {
  place-items: center;
}

.place-items-end {
  place-items: end;
}

.place-items-stretch {
  place-items: stretch;
}

.place-content-start {
  place-content: start;
}

.place-content-center {
  place-content: center;
}

.place-content-end {
  place-content: end;
}

.place-content-between {
  place-content: space-between;
}

.place-content-around {
  place-content: space-around;
}

.place-content-evenly {
  place-content: space-evenly;
}

/* ===== Грід-авто-потік ===== */
.grid-flow-row {
  grid-auto-flow: row;
}

.grid-flow-col {
  grid-auto-flow: column;
}

.grid-flow-dense {
  grid-auto-flow: dense;
}

.grid-flow-row-dense {
  grid-auto-flow: row dense;
}

.grid-flow-col-dense {
  grid-auto-flow: column dense;
}

/* ===== Адаптиви (xs / sm / md / lg / xl) ===== */
/* xs */
@media (width <= 479.98px) {
  .grid-cols-xs-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .grid-cols-xs-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid-cols-xs-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .grid-cols-xs-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .grid-cols-xs-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .grid-cols-xs-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .grid-cols-xs-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .grid-cols-xs-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .grid-cols-xs-fit-120 {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
  .grid-cols-xs-fill-120 {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }
  .grid-cols-xs-fit-160 {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
  .grid-cols-xs-fill-160 {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }
  .grid-cols-xs-fit-200 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  .grid-cols-xs-fill-200 {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  .grid-cols-xs-fit-240 {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
  .grid-cols-xs-fill-240 {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
  .grid-cols-xs-fit-280 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .grid-cols-xs-fill-280 {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
  .grid-cols-xs-fit-320 {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }
  .grid-cols-xs-fill-320 {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }
  .col-xs-span-1 {
    grid-column: span 1/span 1;
  }
  .row-xs-span-1 {
    grid-row: span 1/span 1;
  }
  .col-xs-span-2 {
    grid-column: span 2/span 2;
  }
  .row-xs-span-2 {
    grid-row: span 2/span 2;
  }
  .col-xs-span-3 {
    grid-column: span 3/span 3;
  }
  .row-xs-span-3 {
    grid-row: span 3/span 3;
  }
  .col-xs-span-4 {
    grid-column: span 4/span 4;
  }
  .row-xs-span-4 {
    grid-row: span 4/span 4;
  }
  .col-xs-span-5 {
    grid-column: span 5/span 5;
  }
  .row-xs-span-5 {
    grid-row: span 5/span 5;
  }
  .col-xs-span-6 {
    grid-column: span 6/span 6;
  }
  .row-xs-span-6 {
    grid-row: span 6/span 6;
  }
  .col-xs-span-7 {
    grid-column: span 7/span 7;
  }
  .row-xs-span-7 {
    grid-row: span 7/span 7;
  }
  .col-xs-span-8 {
    grid-column: span 8/span 8;
  }
  .row-xs-span-8 {
    grid-row: span 8/span 8;
  }
  .col-xs-span-9 {
    grid-column: span 9/span 9;
  }
  .row-xs-span-9 {
    grid-row: span 9/span 9;
  }
  .col-xs-span-10 {
    grid-column: span 10/span 10;
  }
  .row-xs-span-10 {
    grid-row: span 10/span 10;
  }
  .col-xs-span-11 {
    grid-column: span 11/span 11;
  }
  .row-xs-span-11 {
    grid-row: span 11/span 11;
  }
  .col-xs-span-12 {
    grid-column: span 12/span 12;
  }
  .row-xs-span-12 {
    grid-row: span 12/span 12;
  }
}
/* sm */
@media (width <= 767.98px) {
  .grid-cols-sm-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .grid-cols-sm-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid-cols-sm-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .grid-cols-sm-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .grid-cols-sm-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .grid-cols-sm-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .grid-cols-sm-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .grid-cols-sm-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .grid-cols-sm-fit-120 {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
  .grid-cols-sm-fill-120 {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }
  .grid-cols-sm-fit-160 {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
  .grid-cols-sm-fill-160 {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }
  .grid-cols-sm-fit-200 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  .grid-cols-sm-fill-200 {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  .grid-cols-sm-fit-240 {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
  .grid-cols-sm-fill-240 {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
  .grid-cols-sm-fit-280 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .grid-cols-sm-fill-280 {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
  .grid-cols-sm-fit-320 {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }
  .grid-cols-sm-fill-320 {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }
  .col-sm-span-1 {
    grid-column: span 1/span 1;
  }
  .row-sm-span-1 {
    grid-row: span 1/span 1;
  }
  .col-sm-span-2 {
    grid-column: span 2/span 2;
  }
  .row-sm-span-2 {
    grid-row: span 2/span 2;
  }
  .col-sm-span-3 {
    grid-column: span 3/span 3;
  }
  .row-sm-span-3 {
    grid-row: span 3/span 3;
  }
  .col-sm-span-4 {
    grid-column: span 4/span 4;
  }
  .row-sm-span-4 {
    grid-row: span 4/span 4;
  }
  .col-sm-span-5 {
    grid-column: span 5/span 5;
  }
  .row-sm-span-5 {
    grid-row: span 5/span 5;
  }
  .col-sm-span-6 {
    grid-column: span 6/span 6;
  }
  .row-sm-span-6 {
    grid-row: span 6/span 6;
  }
  .col-sm-span-7 {
    grid-column: span 7/span 7;
  }
  .row-sm-span-7 {
    grid-row: span 7/span 7;
  }
  .col-sm-span-8 {
    grid-column: span 8/span 8;
  }
  .row-sm-span-8 {
    grid-row: span 8/span 8;
  }
  .col-sm-span-9 {
    grid-column: span 9/span 9;
  }
  .row-sm-span-9 {
    grid-row: span 9/span 9;
  }
  .col-sm-span-10 {
    grid-column: span 10/span 10;
  }
  .row-sm-span-10 {
    grid-row: span 10/span 10;
  }
  .col-sm-span-11 {
    grid-column: span 11/span 11;
  }
  .row-sm-span-11 {
    grid-row: span 11/span 11;
  }
  .col-sm-span-12 {
    grid-column: span 12/span 12;
  }
  .row-sm-span-12 {
    grid-row: span 12/span 12;
  }
}
/* md */
@media (width > 1023.98px) {
  .grid-cols-md-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .grid-cols-md-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid-cols-md-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .grid-cols-md-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .grid-cols-md-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .grid-cols-md-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .grid-cols-md-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .grid-cols-md-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .grid-cols-md-fit-120 {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
  .grid-cols-md-fill-120 {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }
  .grid-cols-md-fit-160 {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
  .grid-cols-md-fill-160 {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }
  .grid-cols-md-fit-200 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  .grid-cols-md-fill-200 {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  .grid-cols-md-fit-240 {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
  .grid-cols-md-fill-240 {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
  .grid-cols-md-fit-280 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .grid-cols-md-fill-280 {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
  .grid-cols-md-fit-320 {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }
  .grid-cols-md-fill-320 {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }
  .col-md-span-1 {
    grid-column: span 1/span 1;
  }
  .row-md-span-1 {
    grid-row: span 1/span 1;
  }
  .col-md-span-2 {
    grid-column: span 2/span 2;
  }
  .row-md-span-2 {
    grid-row: span 2/span 2;
  }
  .col-md-span-3 {
    grid-column: span 3/span 3;
  }
  .row-md-span-3 {
    grid-row: span 3/span 3;
  }
  .col-md-span-4 {
    grid-column: span 4/span 4;
  }
  .row-md-span-4 {
    grid-row: span 4/span 4;
  }
  .col-md-span-5 {
    grid-column: span 5/span 5;
  }
  .row-md-span-5 {
    grid-row: span 5/span 5;
  }
  .col-md-span-6 {
    grid-column: span 6/span 6;
  }
  .row-md-span-6 {
    grid-row: span 6/span 6;
  }
  .col-md-span-7 {
    grid-column: span 7/span 7;
  }
  .row-md-span-7 {
    grid-row: span 7/span 7;
  }
  .col-md-span-8 {
    grid-column: span 8/span 8;
  }
  .row-md-span-8 {
    grid-row: span 8/span 8;
  }
  .col-md-span-9 {
    grid-column: span 9/span 9;
  }
  .row-md-span-9 {
    grid-row: span 9/span 9;
  }
  .col-md-span-10 {
    grid-column: span 10/span 10;
  }
  .row-md-span-10 {
    grid-row: span 10/span 10;
  }
  .col-md-span-11 {
    grid-column: span 11/span 11;
  }
  .row-md-span-11 {
    grid-row: span 11/span 11;
  }
  .col-md-span-12 {
    grid-column: span 12/span 12;
  }
  .row-md-span-12 {
    grid-row: span 12/span 12;
  }
}
/* lg */
@media (width <= 1439.98px) {
  .grid-cols-lg-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .grid-cols-lg-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid-cols-lg-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .grid-cols-lg-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .grid-cols-lg-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .grid-cols-lg-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .grid-cols-lg-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .grid-cols-lg-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .grid-cols-lg-fit-120 {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
  .grid-cols-lg-fill-120 {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }
  .grid-cols-lg-fit-160 {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
  .grid-cols-lg-fill-160 {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }
  .grid-cols-lg-fit-200 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  .grid-cols-lg-fill-200 {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  .grid-cols-lg-fit-240 {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
  .grid-cols-lg-fill-240 {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
  .grid-cols-lg-fit-280 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .grid-cols-lg-fill-280 {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
  .grid-cols-lg-fit-320 {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }
  .grid-cols-lg-fill-320 {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }
  .col-lg-span-1 {
    grid-column: span 1/span 1;
  }
  .row-lg-span-1 {
    grid-row: span 1/span 1;
  }
  .col-lg-span-2 {
    grid-column: span 2/span 2;
  }
  .row-lg-span-2 {
    grid-row: span 2/span 2;
  }
  .col-lg-span-3 {
    grid-column: span 3/span 3;
  }
  .row-lg-span-3 {
    grid-row: span 3/span 3;
  }
  .col-lg-span-4 {
    grid-column: span 4/span 4;
  }
  .row-lg-span-4 {
    grid-row: span 4/span 4;
  }
  .col-lg-span-5 {
    grid-column: span 5/span 5;
  }
  .row-lg-span-5 {
    grid-row: span 5/span 5;
  }
  .col-lg-span-6 {
    grid-column: span 6/span 6;
  }
  .row-lg-span-6 {
    grid-row: span 6/span 6;
  }
  .col-lg-span-7 {
    grid-column: span 7/span 7;
  }
  .row-lg-span-7 {
    grid-row: span 7/span 7;
  }
  .col-lg-span-8 {
    grid-column: span 8/span 8;
  }
  .row-lg-span-8 {
    grid-row: span 8/span 8;
  }
  .col-lg-span-9 {
    grid-column: span 9/span 9;
  }
  .row-lg-span-9 {
    grid-row: span 9/span 9;
  }
  .col-lg-span-10 {
    grid-column: span 10/span 10;
  }
  .row-lg-span-10 {
    grid-row: span 10/span 10;
  }
  .col-lg-span-11 {
    grid-column: span 11/span 11;
  }
  .row-lg-span-11 {
    grid-row: span 11/span 11;
  }
  .col-lg-span-12 {
    grid-column: span 12/span 12;
  }
  .row-lg-span-12 {
    grid-row: span 12/span 12;
  }
}
/* xl */
@media (width > 1439.98px) {
  .grid-cols-xl-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .grid-cols-xl-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid-cols-xl-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .grid-cols-xl-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .grid-cols-xl-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .grid-cols-xl-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .grid-cols-xl-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .grid-cols-xl-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .grid-cols-xl-fit-120 {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
  .grid-cols-xl-fill-120 {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }
  .grid-cols-xl-fit-160 {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
  .grid-cols-xl-fill-160 {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }
  .grid-cols-xl-fit-200 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  .grid-cols-xl-fill-200 {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  .grid-cols-xl-fit-240 {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
  .grid-cols-xl-fill-240 {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
  .grid-cols-xl-fit-280 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .grid-cols-xl-fill-280 {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
  .grid-cols-xl-fit-320 {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }
  .grid-cols-xl-fill-320 {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }
  .col-xl-span-1 {
    grid-column: span 1/span 1;
  }
  .row-xl-span-1 {
    grid-row: span 1/span 1;
  }
  .col-xl-span-2 {
    grid-column: span 2/span 2;
  }
  .row-xl-span-2 {
    grid-row: span 2/span 2;
  }
  .col-xl-span-3 {
    grid-column: span 3/span 3;
  }
  .row-xl-span-3 {
    grid-row: span 3/span 3;
  }
  .col-xl-span-4 {
    grid-column: span 4/span 4;
  }
  .row-xl-span-4 {
    grid-row: span 4/span 4;
  }
  .col-xl-span-5 {
    grid-column: span 5/span 5;
  }
  .row-xl-span-5 {
    grid-row: span 5/span 5;
  }
  .col-xl-span-6 {
    grid-column: span 6/span 6;
  }
  .row-xl-span-6 {
    grid-row: span 6/span 6;
  }
  .col-xl-span-7 {
    grid-column: span 7/span 7;
  }
  .row-xl-span-7 {
    grid-row: span 7/span 7;
  }
  .col-xl-span-8 {
    grid-column: span 8/span 8;
  }
  .row-xl-span-8 {
    grid-row: span 8/span 8;
  }
  .col-xl-span-9 {
    grid-column: span 9/span 9;
  }
  .row-xl-span-9 {
    grid-row: span 9/span 9;
  }
  .col-xl-span-10 {
    grid-column: span 10/span 10;
  }
  .row-xl-span-10 {
    grid-row: span 10/span 10;
  }
  .col-xl-span-11 {
    grid-column: span 11/span 11;
  }
  .row-xl-span-11 {
    grid-row: span 11/span 11;
  }
  .col-xl-span-12 {
    grid-column: span 12/span 12;
  }
  .row-xl-span-12 {
    grid-row: span 12/span 12;
  }
}
.skeleton {
  background-color: #F7F7F7;
  border-radius: 8.567px;
  display: inline-block;
}

.skeleton-w-1 {
  width: 8.3333333333%;
}

.skeleton-w-2 {
  width: 16.6666666667%;
}

.skeleton-w-3 {
  width: 25%;
}

.skeleton-w-4 {
  width: 33.3333333333%;
}

.skeleton-w-5 {
  width: 41.6666666667%;
}

.skeleton-w-6 {
  width: 50%;
}

.skeleton-w-7 {
  width: 58.3333333333%;
}

.skeleton-w-8 {
  width: 66.6666666667%;
}

.skeleton-w-9 {
  width: 75%;
}

.skeleton-w-10 {
  width: 83.3333333333%;
}

.skeleton-w-11 {
  width: 91.6666666667%;
}

.skeleton-w-12 {
  width: 100%;
}

.skeleton-w-40px {
  width: 40px;
}

.skeleton-w-60px {
  width: 60px;
}

.skeleton-w-80px {
  width: 80px;
}

.skeleton-w-100px {
  width: 100px;
}

.skeleton-w-120px {
  width: 120px;
}

.skeleton-w-160px {
  width: 160px;
}

.skeleton-w-200px {
  width: 200px;
}

.skeleton-w-240px {
  width: 240px;
}

.skeleton-w-320px {
  width: 320px;
}

.skeleton-w-400px {
  width: 400px;
}

.skeleton-h-16px {
  height: 16px;
}

.skeleton-h-24px {
  height: 24px;
}

.skeleton-h-32px {
  height: 32px;
}

.skeleton-h-40px {
  height: 40px;
}

.skeleton-h-48px {
  height: 48px;
}

.skeleton-h-64px {
  height: 64px;
}

.skeleton-h-80px {
  height: 80px;
}

.skeleton-h-100px {
  height: 100px;
}

.skeleton-h-120px {
  height: 120px;
}

.skeleton-circle {
  border-radius: 50%;
  aspect-ratio: 1/1;
}

@keyframes shimmer {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: calc(200px + 100%) 0;
  }
}
.skeleton-shimmer {
  background: linear-gradient(90deg, #F7F7F7 25%, #e0e0e0 50%, #F7F7F7 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite linear;
}

.l-section {
  display: flex;
  margin: 56px 0;
}
.l-section.m-full-height {
  height: 100vh;
}
@media (width <= 479.98px) {
  .l-section.m-full-height {
    height: auto;
  }
}
@media (width <= 767.98px) {
  .l-section.m-full-height {
    height: auto;
  }
}
@media (width <= 1023.98px) {
  .l-section.m-full-height {
    height: auto;
  }
}
.l-section__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: -0.64px;
  margin-bottom: 8px;
}
@media (width <= 479.98px) {
  .l-section__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: -0.24px;
  }
}
.l-section__title.m-office {
  margin-bottom: 60px;
}
@media (width <= 479.98px) {
  .l-section__title.m-office {
    margin-bottom: 24px;
  }
}
@media (width <= 1023.98px) {
  .l-section__title.m-office {
    margin-bottom: 40px;
  }
}
.l-section__title.m-team {
  margin-bottom: 48px;
}
@media (width <= 479.98px) {
  .l-section__title.m-team {
    margin-bottom: 24px;
  }
}
@media (width <= 1023.98px) {
  .l-section__title.m-team {
    margin-bottom: 40px;
  }
}
.l-section__title.m-managers {
  color: #000;
  opacity: 0.4;
  font-size: 20px;
  font-weight: 500;
  line-height: 26px; /* 130% */
}
.l-section__title.m-review {
  margin-bottom: 60px;
}
.l-section__title.m-countries {
  font-size: 36px;
  margin-bottom: 24px;
}
.l-section__description,
.l-section .section__description {
  color: var(--color-grey-40);
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0.16px;
  margin-bottom: 24px;
}
.l-section__description.m-accreditation,
.l-section .section__description.m-accreditation {
  text-align: left;
  margin: 0 calc(4 * var(--container-padding-x));
}
@media (width <= 767.98px) {
  .l-section__description.m-accreditation,
  .l-section .section__description.m-accreditation {
    margin: 0;
  }
}
.l-section__content {
  position: relative;
}
.l-section__header {
  margin-bottom: 36px;
}
@media (width <= 767.98px) {
  .l-section__header {
    padding-top: 64px;
  }
}
@media (width > 1023.98px) {
  .l-section__header {
    padding-top: 96px;
  }
}
.l-section.m-office {
  margin-top: 60px;
}
@media (width <= 479.98px) {
  .l-section.m-office {
    margin-top: 24px;
  }
}
@media (width <= 1023.98px) {
  .l-section.m-office {
    margin-top: 240px;
  }
}
.l-section.m-hero {
  position: relative;
  overflow: hidden;
  margin: 0px;
}
@media (width <= 479.98px) {
  .l-section.m-hero {
    margin: 24px 0;
  }
}
.l-section.m-inquiry {
  position: relative;
  margin: 0 0 56px;
  padding: 72px 0 80px;
  overflow: visible;
  background: #b3c0d4;
}
.l-section.m-inquiry .c-form {
  max-width: 1120px;
  margin-inline: auto;
}
@media (width <= 1023.98px) {
  .l-section.m-inquiry {
    padding: 56px 0 64px;
  }
}
@media (width <= 767.98px) {
  .l-section.m-inquiry {
    margin-bottom: 32px;
    padding: 32px 0 40px;
  }
}
.l-section.m-team {
  margin: 60px 0;
}
.l-section.m-team-photo {
  margin: 40px 0 80px 0;
}
.l-section.m-bg-f5faff {
  background-color: #f5faff;
}
.l-section.m-bg-article {
  background: radial-gradient(circle at 100% 0, #e9f2ff 0, rgba(233, 242, 255, 0) 32%), #fff;
}
.l-section .divider {
  width: 100%;
  border: none;
  padding-block: 32px;
  margin: 0;
}
@media (width <= 479.98px) {
  .l-section {
    margin: 24px 0;
  }
}

.expandable-content {
  --initialMaxHeight: 31.25rem;
  position: relative;
  overflow-y: hidden;
}
.expandable-content.is-expanded::before,
.expandable-content.is-expanded .expandable-content__button {
  opacity: 0;
  visibility: hidden;
}
.expandable-content:not(.is-expanded) {
  max-height: var(--initialMaxHeight);
}
.expandable-content::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background-image: linear-gradient(180deg, rgba(20, 20, 20, 0) 0%, #141414 77.38%);
  pointer-events: none;
  transition-duration: var(--transition-duration);
}
.expandable-content__button {
  position: absolute;
  left: 50%;
  translate: -50%;
  bottom: 4.25rem;
}

.icon {
  display: inline-flex;
  align-items: center;
  column-gap: 0.625rem;
}
.icon::after {
  --size: 1.5rem;
  width: var(--size);
  height: var(--size);
  content: "";
  flex-shrink: 0;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (width <= 1439.98px) {
  .icon::after {
    --size: 1.25rem;
  }
}
.icon--yellow-arrow::after {
  background-image: url("../../icons/arrow-top-right_yellow.svg");
}
.icon--yellow-eye::after {
  background-image: url("../../icons/eye_yellow.svg");
}
.icon--gray-arrow-down::after {
  background-image: url("../../icons/arrow-down_gray.svg");
}

.icon-button.m-unstyled {
  color: inherit;
  font: inherit;
  cursor: pointer;
  outline: inherit;
  background: none;
  border: none;
  padding: 0;
}
.icon-button svg {
  color: #000;
}

.logo {
  display: flex;
  column-gap: 10px;
  position: relative;
}
.logo__icon {
  transition: transform 0.3s ease;
  transform-origin: center;
}
.logo__text {
  pointer-events: none !important;
}
.logo:hover .logo__icon {
  transform: scale(1.2);
}

.button {
  display: inline-flex;
  justify-content: center;
  padding: 12px 20px;
  font-size: 18px;
  border-radius: var(--border-radius-btn);
  color: var(--text-color-btn-primary) !important;
  -webkit-appearance: none;
  appearance: none; /* #301d00 */
  -webkit-text-fill-color: var(--text-color-btn-primary) !important; /* для WebKit */
  text-decoration: none !important;
  align-items: center;
  gap: 6px;
}
.button-primary {
  font-weight: 500;
  background-color: var(--bg-btn-primary);
  border: none;
}
@media (any-hover: hover) {
  .button-primary:hover {
    background-color: var(--bg-btn-primary-hover);
  }
}
@media (any-hover: none) {
  .button-primary:active {
    background-color: var(--bg-btn-primary-hover);
  }
}
.button-primary:active {
  box-shadow: 0 0 0 3px rgba(69, 73, 0, 0.12), 0 2px 20px 0 rgba(255, 189, 22, 0.35);
}
.button-secondary {
  background-color: var(--bg-btn-secondary);
  border: 1px solid var(--border-btn-secondary);
  color: var(--text-color-btn-secondary) !important;
  -webkit-text-fill-color: var(--text-color-btn-secondary) !important; /* для WebKit */
}
@media (any-hover: hover) {
  .button-secondary:hover {
    border: 1px solid var(--border-btn-secondary-hover);
  }
}
@media (any-hover: none) {
  .button-secondary:active {
    border: 1px solid var(--border-btn-secondary-hover);
  }
}
.button-secondary:active {
  border: 1px solid var(--border-btn-secondary-active);
}
.button-tertiary {
  background-color: rgba(166, 166, 175, 0.1);
  border: 0;
}
@media (any-hover: hover) {
  .button-tertiary:hover {
    background-color: rgba(166, 166, 175, 0.2);
  }
}
@media (any-hover: none) {
  .button-tertiary:active {
    background-color: rgba(166, 166, 175, 0.2);
  }
}
.button.m-small {
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
}
@media (width <= 479.98px) {
  .button.m-small {
    padding: 16px;
  }
}

.button-text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #0250bf;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.1;
  text-decoration: none;
  white-space: nowrap;
  transition: color 180ms ease;
}
.button-text-link svg {
  flex: 0 0 auto;
  color: #0250bf;
}
@media (any-hover: hover) {
  .button-text-link:hover {
    color: #013c90;
  }
}
@media (any-hover: none) {
  .button-text-link:active {
    color: #013c90;
  }
}
@media (width <= 767.98px) {
  .button-text-link {
    font-size: 18px;
  }
}

.button-gold {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px 18px;
  background: #c9a96e;
  border: none;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.button-gold:hover {
  background: #d9bc85;
  color: #fff;
  transform: translateY(-1px);
}

.header {
  position: sticky;
  z-index: 100;
  top: 0;
  animation-name: scrolling-header;
  animation-fill-mode: both;
  animation-timeline: scroll();
}
@keyframes scrolling-header {
  to {
    box-shadow: 0 0 1rem 0 var(--color-dark-40);
  }
}
@media (width <= 767.98px) {
  .header__logo {
    height: 48px;
  }
}
.header__body {
  padding-block: 12px;
  background-color: var(--color-light);
}
@media (width <= 767.98px) {
  .header__body {
    padding-block: 1.25rem;
  }
}
.header__body-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 1rem;
}
@media (width > 1149.98px) {
  .header__overlay {
    display: contents;
  }
}
@media (width <= 1149.98px) {
  .header__overlay {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    row-gap: 3rem;
    background-color: var(--color-light);
    transition-duration: var(--transition-duration);
    overflow-y: scroll;
  }
  .header__overlay:not(.active) {
    opacity: 0;
    visibility: hidden;
    translate: 100%;
  }
}
@media (width <= 1149.98px) {
  .header__menu {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow-y: auto;
  }
}
.header__menu-header {
  display: none;
}
@media (width <= 1149.98px) {
  .header__menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(36, 36, 42, 0.1);
    background: #FFF;
    padding: 15px 24px;
  }
}
.header__menu-header--logo {
  display: none;
  height: 48px;
}
@media (width <= 1149.98px) {
  .header__menu-header--logo {
    display: flex;
  }
}
.header__menu-footer {
  display: none;
  position: relative;
  padding: 24px;
  width: 100%;
}
@media (width <= 1149.98px) {
  .header__menu-footer {
    display: flex;
    flex-direction: column;
    margin-top: auto;
  }
}
.header__menu-footer .footer-content {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 16px;
}
.header__menu-footer .footer-content__inner {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.header__menu-footer .footer-content__title {
  text-align: left;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: -0.48px;
}
.header__menu-footer .footer-content__subtitle {
  color: #858585;
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
}
.header__menu-list {
  display: flex;
  align-items: center;
}
@media (width <= 1149.98px) {
  .header__menu-list {
    padding: 16px 24px;
    flex-direction: column;
    row-gap: 4px;
    align-items: start;
  }
}
.header__menu_item {
  position: relative;
}
.header__menu_item:hover .dropdown {
  display: block !important;
  position: absolute;
  top: 100%;
  /* Розташовуємо під пунктом меню */
  left: 0;
  z-index: 1000;
}
.header__menu-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 22px;
  letter-spacing: 0.16px;
  padding: 7px 16px;
}
@media (any-hover: hover) {
  .header__menu-link:hover {
    color: var(--color-dark);
    background-color: var(--color-grey-10);
    border-radius: var(--border-radius-btn);
  }
}
@media (any-hover: none) {
  .header__menu-link:active {
    color: var(--color-dark);
    background-color: var(--color-grey-10);
    border-radius: var(--border-radius-btn);
  }
}
@media (width <= 1149.98px) {
  .header__menu-link {
    font-size: 18px;
    line-height: 24px;
    padding: 7px 0px;
  }
}
.header__menu-link.active {
  font-weight: 700;
  color: var(--color-dark);
}
@media (width <= 1149.98px) {
  .header__menu-link.active {
    font-size: 18px;
    line-height: 24px;
  }
}
.header__menu .dropdown {
  position: absolute;
  display: none;
  align-items: center;
  border-radius: 24px;
  background: var(--color-light);
  border: 1px solid rgba(37, 40, 44, 0.1);
  box-shadow: 8px 24px 40px 0 rgba(8, 8, 34, 0.08);
  padding: 16px;
}
@media (width <= 1149.98px) {
  .header__menu .dropdown {
    background: #F5F6F8;
  }
}
.header__menu .dropdown .dropdown__list {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}
@media (width <= 1149.98px) {
  .header__menu .dropdown .dropdown__list {
    grid-template-columns: 1fr;
    width: 100%;
  }
}
.header__menu .dropdown .dropdown__item {
  position: relative;
  display: flex;
  padding: 8px 12px;
  width: 300px;
}
.header__menu .dropdown .dropdown__item:hover {
  border-radius: 10px;
  background: rgba(166, 166, 175, 0.1);
}
.header__menu .dropdown .dropdown__item:hover::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 35%;
  width: 5px;
  height: 9px;
  background: url("/assets/static/icons/menu-arrow.svg") no-repeat center;
  background-size: contain;
}
.header__menu .dropdown .dropdown__link {
  display: flex;
  column-gap: 6px;
  align-items: center;
  width: 100%;
}
.header__menu .dropdown__toggle:hover .icon {
  transform: rotate(180deg);
}
.header__buttons {
  display: inline-flex;
  align-items: center;
  gap: 24px;
}
@media (width <= 767.98px) {
  .header__contact-us-link {
    width: 100%;
    align-self: center;
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 110;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 20px 36px;
  background: linear-gradient(to bottom, rgba(7, 16, 31, 0.95) 0%, rgba(7, 16, 31, 0) 100%);
  pointer-events: auto;
  transition: background 0.2s, box-shadow 0.2s, backdrop-filter 0.2s;
}
.site-header.scrolled {
  background: rgba(7, 16, 31, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.07);
}
@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 16px 20px;
  }
}

.site-logo {
  text-decoration: none;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.15;
  transition: color 0.2s;
}
.site-logo:hover {
  color: #c9a96e;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
@media (max-width: 900px) {
  .site-nav {
    display: none;
  }
}
.site-nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}
.site-nav a:hover, .site-nav a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.site-nav__guide {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  background: rgba(201, 169, 110, 0.14);
  border: 1px solid rgba(201, 169, 110, 0.38);
}
.site-nav__guide span {
  display: inline-flex;
  align-items: center;
  min-height: 18px;
  padding: 0 7px;
  border-radius: 999px;
  background: #c9a96e;
  color: #07101f;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.site-nav__guide:hover, .site-nav__guide.is-active {
  background: rgba(201, 169, 110, 0.24);
  border-color: rgba(201, 169, 110, 0.72);
}

.nav-toggle {
  justify-self: end;
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  z-index: 112;
  transition: background 0.2s, border-color 0.2s;
}
@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }
}
.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
}
.nav-toggle svg {
  width: 22px;
  height: 22px;
}
.nav-toggle .icon-close {
  display: none;
}
.nav-toggle.is-open .icon-menu {
  display: none;
}
.nav-toggle.is-open .icon-close {
  display: block;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 111;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 96px 24px 32px;
  background: rgba(7, 16, 31, 0.97);
  backdrop-filter: blur(20px);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
}
.mobile-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateY(0);
}
.mobile-nav__header {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: flex-end;
  padding: 0 20px;
  z-index: 2;
}
.mobile-nav__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  cursor: pointer;
  z-index: 3;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav__close:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}
.mobile-nav a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 1.35rem;
  font-weight: 750;
  letter-spacing: 0;
  transition: color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a.is-active {
  color: #c9a96e;
}
.mobile-nav__guide {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.mobile-nav__guide span {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 0 8px;
  border-radius: 999px;
  background: #c9a96e;
  color: #07101f;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.header__menu-item:hover .dropdown {
  display: block;
}
.header__menu-item:hover .dropdown.m-hide {
  display: none;
}

.header__search-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 24px;
  min-width: 24px;
  height: 24px;
  border: none;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font: inherit;
  -webkit-appearance: none;
  appearance: none;
  transform-origin: center;
  transition: color 0.2s ease;
}

.header__search-button::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 999px;
  background-color: transparent;
  transform: scale(1);
  transition: background-color 0.2s ease, transform 0.2s ease;
  pointer-events: none;
  z-index: 0;
}

.header__search-button:hover,
.header__search-button:focus-visible {
  color: var(--color-dark);
}

.header__search-button:hover::before,
.header__search-button:focus-visible::before {
  background-color: var(--color-grey-10);
  transform: scale(1.08);
}

.header__search-button svg {
  display: block;
  position: relative;
  z-index: 1;
  width: 24px;
  height: 24px;
}

.header__menu-item--contact {
  margin-left: 8px;
}
@media (width <= 1149.98px) {
  .header__menu-item--contact {
    display: none;
  }
}

.modal.m-search {
  background: rgba(15, 23, 42, 0.36);
}

.modal.m-search .modal-wrapper {
  max-width: 560px;
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 24px 60px rgba(16, 24, 40, 0.22);
}

.modal.m-search .modal-header {
  align-items: center;
  margin-bottom: 16px;
}

.modal.m-search .modal-close {
  width: 40px;
  height: 40px;
}

.header-search-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.header-search-form__label {
  font-size: 14px;
  font-weight: 600;
  color: #6b7280;
}

.header-search-form__input,
.header-search-form__select {
  width: 100%;
  border: 1px solid #d7dce4;
  background: #f8fafc;
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 16px;
  line-height: 1.2;
  color: #0f172a;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.header-search-form .c-city-field {
  position: relative;
}

.header-search-form .c-city-field__loader {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 16px;
  height: 16px;
  border: 2px solid #d7dce4;
  border-top-color: #2f6bff;
  border-radius: 50%;
  transform: translateY(-50%);
  transform-origin: center;
  animation: city-loader-spin 0.75s linear infinite;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.header-search-form .c-city-field #header-search-city.is-loading + .c-city-field__loader {
  opacity: 1;
}

.header-search-form .c-city-field__suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 12;
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-height: 228px;
  padding: 8px;
  border: 1px solid #d7dce4;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  overflow-y: auto;
}

.header-search-form .c-city-field__suggestions[hidden] {
  display: none;
}

.header-search-form .c-city-field__suggestion {
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #0f172a;
  text-align: left;
  font-size: 16px;
  line-height: 20px;
  padding: 8px 10px;
  cursor: pointer;
}

.header-search-form .c-city-field__suggestion:hover,
.header-search-form .c-city-field__suggestion:focus-visible {
  background: #f1f5f9;
  outline: none;
}

.header-search-form__input:focus,
.header-search-form__select:focus {
  outline: none;
  border-color: #2f6bff;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(47, 107, 255, 0.12);
}

.header-search-form__submit {
  margin-top: 8px;
  border-radius: 14px;
}

.dropdown__arrow {
  transition: transform 0.3s ease;
}
.dropdown__arrow.m-active {
  transform: rotate(180deg);
}
.dropdown__arrow.m-hide {
  transform: rotate(0deg);
}

@media (width > 1149.98px) {
  .header__menu-item:hover .dropdown__arrow {
    transform: rotate(180deg);
  }
}
/* За замовчуванням приховуємо кнопку "close" всередині старого overlay-меню */
.header__overlay [data-js-header-close-button] {
  display: none;
}

/* Коли меню відкрите — показуємо "close" і ховаємо "бургер" справа */
.header__overlay.active [data-js-header-close-button] {
  display: inline-flex !important;
  /* перекриє утилітні .d-none тощо */
  align-items: center;
  justify-content: center;
}

/* overlay і .header__buttons — сусіди: ~ працює */
.header__overlay.active ~ .header__buttons [data-js-header-burger-button] {
  display: none !important;
}

.header__overlay.active ~ .header__buttons .header__search-button {
  display: none !important;
}

/* ДЕСКТОП — hover + absolute */
@media (width > 1149.98px) {
  .header__buttons [data-js-header-burger-button] {
    display: none !important;
  }
  .header__menu-item {
    position: relative;
  }
  .header__menu .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    z-index: 1000;
  }
  .header__menu-item:hover .dropdown {
    display: block;
  }
}
/* МОБАЙЛ / TABLET — у потоці, відкриваємо класом */
@media (width <= 1149.98px) {
  .header__buttons [data-js-header-burger-button] {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
  }
  /* Вимкнути десктопну поведінку */
  .header__menu-item:hover .dropdown {
    display: none;
  }
  .header__menu .dropdown {
    position: static;
    display: none;
    width: 100%;
    border: 0;
    box-shadow: none;
    margin-top: 8px;
    background: #F5F6F8;
  }
  /* Відкривати коли лінк активний (ти вже додаєш .active у JS) */
  .header__menu-link.active + .dropdown {
    display: block;
  }
  /* Якщо використовуєш m-hide у JS — підстрахуємось */
  .dropdown.m-hide {
    display: none !important;
  }
}
.badge {
  display: flex;
  align-items: center;
  gap: 2px;
  opacity: 1;
  border-radius: 9px;
  padding-top: 4px;
  padding-right: 8px;
  padding-bottom: 4px;
  padding-left: 6px;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.2509803922);
}
.badge.m-accredited, .badge.m-archived {
  position: absolute;
  top: 32px;
  right: 32px;
  z-index: 1;
}
.badge.m-accredited svg, .badge.m-archived svg {
  margin-right: 5px;
}
.badge.m-accredited {
  background-color: #34A853;
  color: #fff;
}
.badge.m-archived {
  background-color: #848484;
  color: #fff;
}
.badge.m-accreditation-center {
  font-weight: 600;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #13742D;
  width: 50;
  height: 22;
  gap: 2px;
  opacity: 1;
  border-radius: 8px;
  padding: 4px 8px;
  background: #D2EED9;
}

.socials__list {
  display: flex;
  column-gap: 8px;
}
@media (width <= 479.98px) {
  .socials__list {
    column-gap: 16px;
  }
}
.socials__item {
  display: flex;
  padding: 6px;
}
.socials__link {
  color: var(--color-icon);
}
@media (any-hover: hover) {
  .socials__link:hover {
    color: var(--color-icon-hover);
    transform: scale(1.05);
  }
}
@media (any-hover: none) {
  .socials__link:active {
    color: var(--color-icon-hover);
    transform: scale(1.05);
  }
}
.socials__link.m-secondary {
  color: var(--color-icon-secondary);
}
@media (any-hover: hover) {
  .socials__link.m-secondary:hover {
    color: var(--color-icon-secondary-hover);
  }
}
@media (any-hover: none) {
  .socials__link.m-secondary:active {
    color: var(--color-icon-secondary-hover);
  }
}

.footer {
  background: #07101f;
  color: #fff;
  /* ===== MENU ===== */
  /* ===== EXTRA ===== */
  /* ===== DEVELOPER LINK (ховер по всьому лінку) ===== */
}
@media (width <= 479.98px) {
  .footer__logo {
    margin-bottom: 0;
  }
}
.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  max-width: 280px;
}
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.45;
}
.footer__contact a {
  width: fit-content;
  color: inherit;
  text-decoration: none;
}
.footer__contact a:hover,
.footer__contact a:focus-visible {
  color: #d7b56d;
  outline: none;
}
.footer__navigation {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  column-gap: 2rem;
  padding: 130px 0 40px 0;
}
@media (width <= 479.98px) {
  .footer__navigation {
    flex-direction: column;
    align-items: start;
    row-gap: 28px;
    padding: 24px 0 40px 0;
  }
}
.footer__insurance {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s;
}
@media (width <= 479.98px) {
  .footer__insurance {
    align-items: center;
  }
}
.footer__insurance:hover, .footer__insurance:focus-visible {
  outline: none;
  opacity: 0.82;
}
.footer__insurance-label {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}
.footer__insurance img {
  display: block;
  width: 154px;
  max-width: 100%;
  height: auto;
}
.footer__rating {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.footer__rating:hover, .footer__rating:focus-visible {
  border-color: rgba(0, 182, 122, 0.58);
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  transform: translateY(-1px);
}
.footer__rating-source {
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}
.footer__rating-score {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 24px;
  border-radius: 7px;
  background: #00b67a;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}
.footer__rating-stars {
  display: inline-flex;
  gap: 1px;
  color: #00b67a;
  font-size: 12px;
  line-height: 1;
}
.footer__rating-meta {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}
.footer__menu {
  width: min(100%, 880px);
}
.footer__menu-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
@media (width <= 479.98px) {
  .footer__menu-column {
    align-items: flex-start;
  }
}
.footer__menu-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 24px;
  margin: 0;
  padding: 0;
}
@media (width <= 479.98px) {
  .footer__menu-list {
    justify-content: flex-start;
  }
}
.footer__menu-list--legal {
  margin-top: 4px;
}
.footer__menu-list--legal .footer__menu-link {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 20px;
}
.footer__menu-item {
  list-style: none;
}
.footer__menu-link {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0.01em;
  text-align: center;
  text-decoration: none;
}
.footer__menu a.footer__menu-link {
  text-decoration-line: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  text-decoration-thickness: from-font;
  transition: text-decoration-color 0.25s ease;
}
@media (any-hover: hover) {
  .footer__menu a.footer__menu-link:hover {
    text-decoration-color: #000;
  }
}
.footer__menu a.footer__menu-link:focus-visible {
  text-decoration-color: #000;
}
@media (prefers-reduced-motion: reduce) {
  .footer__menu a.footer__menu-link {
    transition: none;
  }
}
.footer__menu a.footer__menu-link:hover,
.footer__menu a.footer__menu-link:focus-visible {
  color: #d7b56d;
}
.footer__extra {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: end;
  column-gap: 24px;
  padding-bottom: 48px;
}
@media (width <= 767.98px) {
  .footer__extra {
    display: flex;
    flex-direction: column;
  }
}
@media (width <= 479.98px) {
  .footer__extra {
    align-items: start;
  }
}
.footer__extra-menu-list {
  display: flex;
}
.footer__extra-menu-item:not(:last-child)::after {
  content: "|";
  margin-inline: 0.6875rem;
}
@media (width <= 767.98px) {
  .footer__soc1als {
    order: -1;
    margin-bottom: 40px;
  }
}
.footer__copyright {
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 0;
  justify-self: start;
}
.footer__socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  justify-self: end;
  gap: 10px;
}
@media (width <= 767.98px) {
  .footer__socials {
    justify-content: center;
    order: -1;
    margin-bottom: 24px;
  }
}
@media (width <= 479.98px) {
  .footer__socials {
    justify-content: flex-start;
  }
}
.footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 0;
  color: #fff;
  text-decoration: none;
  transition: color 0.15s, transform 0.15s;
}
.footer__social svg {
  display: block;
  width: 18px;
  height: 18px;
}
.footer__social:hover, .footer__social:focus-visible {
  color: #d7b56d;
  outline: none;
  transform: translateY(-1px);
}
.footer__developer-link {
  display: block;
  line-height: 0;
  width: 181px;
  height: 24px;
  margin-inline: auto;
  background: url("/assets/static/images/developer.svg") center/contain no-repeat;
  transition: opacity 0.2s ease;
}
.footer__developer-link:hover, .footer__developer-link:focus-visible {
  background-image: url("/assets/static/images/developer-hover.svg");
}
.footer__powered {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #24242A;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  opacity: 0.7;
}
.footer__powered-link {
  font-weight: 600;
}
.footer__powered-link:hover, .footer__powered-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-page {
  background: #f6f8fb;
  color: #07101f;
}

.legal-page__main {
  padding-top: 92px;
}

.legal-page__hero {
  padding: 72px 0 32px;
  background: #07101f;
  color: #fff;
}
.legal-page__hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}
.legal-page__hero p:last-child {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  line-height: 1.6;
}

.legal-page__eyebrow {
  margin: 0 0 14px;
  color: #c9a96e;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-page__content {
  max-width: 920px;
  padding-top: 56px;
  padding-bottom: 72px;
}
.legal-page__content h2 {
  margin: 34px 0 12px;
  color: #07101f;
  font-size: 1.35rem;
  line-height: 1.25;
}
.legal-page__content h2:first-child {
  margin-top: 0;
}
.legal-page__content p {
  margin: 0 0 16px;
  color: rgba(7, 16, 31, 0.72);
  font-size: 1rem;
  line-height: 1.75;
}
.legal-page__content ul:not(.browser-links),
.legal-page__content ol {
  margin: 0 0 18px;
  padding-left: 24px;
  color: rgba(7, 16, 31, 0.72);
  font-size: 1rem;
  line-height: 1.75;
}
.legal-page__content li {
  margin: 0 0 8px;
}
.legal-page__content .browser-links {
  display: grid;
  gap: 12px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}
.legal-page__content .browser-links li {
  margin: 0;
}
.legal-page__content .browser-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #0257da;
  font-weight: 700;
  text-decoration: none;
}
.legal-page__content .browser-links a:hover, .legal-page__content .browser-links a:focus-visible {
  text-decoration: underline;
}
.legal-page__content .browser-links__icon {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
}

.metrics {
  --columns: 3;
}
.metrics--4-cols {
  --columns: 4;
  text-align: center;
}
@media (width > 1023.98px) {
  .metrics--4-cols .metrics__item:nth-child(4n) {
    padding-right: 0;
  }
}
@media (width <= 1023.98px) {
  .metrics--4-cols {
    --columns: 2;
    padding-inline: 0;
  }
  .metrics--4-cols .metrics__item {
    border-bottom: var(--border);
  }
  .metrics--4-cols .metrics__item:nth-child(odd) {
    padding-left: var(--container-padding-x);
  }
  .metrics--4-cols .metrics__item:nth-child(even) {
    padding-right: var(--container-padding-x);
    border-right: none;
  }
}
.metrics__list {
  display: grid;
  grid-template-columns: repeat(var(--columns), 1fr);
}
.metrics__item {
  display: flex;
  flex-direction: column-reverse;
  justify-content: start;
  row-gap: 0.625rem;
  padding: 3.125rem;
}
@media (width <= 1439.98px) {
  .metrics__item {
    row-gap: 0.125rem;
    padding: 1.875rem 2.5rem;
  }
}
@media (width <= 1023.98px) {
  .metrics__item {
    row-gap: 0;
    padding: 1.25rem;
  }
}
.metrics__item:first-child {
  padding-left: 0;
}
.metrics__item:not(:last-child) {
  border-right: var(--border);
}
.metrics__value {
  font-weight: 600;
}
.metrics__sign {
  color: var(--color-accent);
}

.resources-preview {
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: start;
  row-gap: 1.875rem;
}
@media (width <= 1439.98px) {
  .resources-preview {
    row-gap: 1.25rem;
  }
}
.resources-preview__body {
  display: grid;
  row-gap: 0.875rem;
}
@media (width <= 1439.98px) {
  .resources-preview__body {
    row-gap: 0.375rem;
  }
}
@media (width <= 479.98px) {
  .resources-preview__button {
    width: 100%;
  }
}

.advantage-card {
  display: grid;
  row-gap: 1.875rem;
}
@media (width <= 1439.98px) {
  .advantage-card {
    row-gap: 1.25rem;
  }
}
@media (width <= 767.98px) {
  .advantage-card {
    row-gap: 0.875rem;
  }
}
@media (width <= 1439.98px) {
  .advantage-card__image {
    width: 2.5rem;
  }
}
@media (width <= 767.98px) {
  .advantage-card__image {
    width: 1.875rem;
  }
}
.advantage-card__link {
  display: grid;
  row-gap: 0.25rem;
}
@media (width <= 1439.98px) {
  .advantage-card__link {
    row-gap: 0.125rem;
  }
}
.advantage-card__details {
  font-size: clamp(0.875rem, 0.7541322314rem + 0.4958677686vw, 1.25rem);
  font-family: var(--font-family-accent);
}

.hero {
  display: flex;
  justify-content: center;
}
.hero__image {
  width: 100%;
}
.hero__title {
  font-size: 48px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: -0.96px;
  margin-bottom: 20px;
}
@media (width <= 479.98px) {
  .hero__title {
    font-size: 40px;
    margin-bottom: 8px;
  }
}
.hero__description {
  color: var(--color-grey-40);
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 40px;
}
@media (width <= 479.98px) {
  .hero__description {
    font-size: 16px;
    text-align: left;
    margin-bottom: 32px;
  }
}
.hero-countries__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 16px;
  margin-bottom: 40px;
}
.hero-countries__item .icon {
  width: 24px;
  height: 24px;
}
.hero-countries__item:last-child {
  margin-right: 0;
}
.hero__content {
  text-align: center;
}
@media (width <= 479.98px) {
  .hero__content {
    text-align: left;
  }
}

.hero-background {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  margin-top: 80px;
}
.hero-background__footer {
  position: absolute;
  flex-shrink: 0;
  width: 100%;
  height: calc(50% - 200px);
  bottom: 0;
  left: 0;
  background: linear-gradient(0deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}
.hero-background .hero-cover,
.hero-background .hero-paper {
  position: absolute;
  display: flex;
  justify-content: space-between;
  width: 100%;
  top: 0;
  left: 0;
}
.hero-background .hero-cover {
  z-index: 1;
}
.hero-background .hero-cover .cover-image {
  display: block;
  opacity: 0.5;
  filter: blur(1.8999999762px);
}
.hero-background .hero-cover .cover-image.m-left {
  align-self: flex-start;
  transition: transform 0.6s ease 0.2s, filter 0.6s ease 0.2s;
  transform: translate(18px, 82px) rotate(-4deg);
}
.hero-background .hero-cover .cover-image.m-right {
  align-self: flex-start;
  transition: transform 0.6s ease 0.2s, filter 0.6s ease 0.2s;
  transform: translate(45px, 40px) rotate(0deg);
}
.hero-background .hero-cover .cover-image.m-animation {
  transform: translate(0, 0) rotate(0deg);
  filter: blur(0);
}
.hero-background .hero-paper {
  z-index: 2;
}
.hero-background .hero-paper .paper-image {
  display: block;
  filter: blur(3.5px);
}
.hero-background .hero-paper .paper-image.m-left {
  align-self: flex-start;
  transition: transform 0.6s ease 0.2s, filter 0.6s ease 0.2s;
  transform: translate(-36px, 40px) rotate(8deg);
}
.hero-background .hero-paper .paper-image.m-animation {
  transform: translate(0, 0) rotate(0deg) !important;
  filter: blur(0);
}
.hero-background .hero-paper .paper-image.m-right {
  align-self: flex-start;
  transition: transform 0.6s ease 0.2s, filter 0.6s ease 0.2s;
  transform: translate(45px, 40px) rotate(0deg);
}

.border-top-dashed {
  border-top: 1px dashed rgba(207, 207, 207, 0.5);
}

.tag {
  font-size: clamp(0.875rem, 0.7541322314rem + 0.4958677686vw, 1.25rem);
  padding: 0.375rem 0.625rem;
  color: var(--color-light);
  font-weight: 500;
  background-color: var(--color-dark-20);
  border-radius: 0.25rem;
}
@media (width <= 1439.98px) {
  .tag {
    padding: 0.25rem 0.5rem;
  }
}

.list:not(:last-child), .list__item:not(:last-child) {
  border-bottom: var(--border);
}

.tile {
  padding: clamp(1.5rem, 1.1776859504rem + 1.3223140496vw, 2.5rem);
  background-color: var(--color-dark-10);
  border: var(--border);
  border-radius: 0.75rem;
}
@media (width <= 1439.98px) {
  .tile {
    border-radius: 0.625rem;
  }
}

.tabs__header {
  border-bottom: var(--border);
}
@media (width <= 1023.98px) {
  .tabs__header {
    overflow-x: auto;
  }
}
.tabs__buttons {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  column-gap: 1.25rem;
  padding-block: clamp(1.25rem, 0.645661157rem + 2.479338843vw, 3.125rem);
}
@media (width <= 1439.98px) {
  .tabs__buttons {
    column-gap: 0.875rem;
  }
}
@media (width <= 1023.98px) {
  .tabs__buttons {
    width: max-content;
  }
}
.tabs__buttons--compact {
  display: inline-flex;
  column-gap: 0.625rem;
  padding: 0.625rem;
  background-color: var(--color-dark);
  border-radius: 0.625rem;
}
.tabs__buttons--compact .tabs__button {
  padding-block: 1.125rem;
}
.tabs__buttons--compact .tabs__button.is-active {
  background-color: var(--color-dark-15);
}
@media (width <= 1439.98px) {
  .tabs__buttons--compact .tabs__button {
    padding-block: 0.875rem;
  }
}
.tabs__button {
  padding: clamp(1.125rem, 0.8832644628rem + 0.9917355372vw, 1.875rem) 0.6875rem;
  color: var(--color-gray-60);
  background-color: transparent;
  border: var(--border);
  border-radius: 0.5rem;
  font-size: 1.125rem;
}
@media (width <= 1439.98px) {
  .tabs__button {
    font-size: 0.875rem;
  }
}
@media (any-hover: hover) {
  .tabs__button:hover {
    color: var(--color-accent);
    border-color: var(--color-accent);
  }
}
@media (any-hover: none) {
  .tabs__button:active {
    color: var(--color-accent);
    border-color: var(--color-accent);
  }
}
.tabs__button.is-active {
  color: var(--color-light);
  font-weight: 500;
  background-color: var(--color-dark-10);
  pointer-events: none;
}
.tabs__content:not(.is-active) {
  display: none;
}
.tabs__content:focus-visible {
  outline-offset: -1rem;
}

.person-card {
  --imageSize: 5rem;
  display: flex;
  align-items: center;
  column-gap: clamp(0.5rem, 0.3388429752rem + 0.6611570248vw, 1rem);
}
@media (width <= 1439.98px) {
  .person-card {
    --imageSize: 3.75rem;
  }
}
.person-card__image {
  width: var(--imageSize);
  background-color: var(--color-dark-15);
  border-radius: 50%;
}
.person-card__body {
  display: grid;
}
@media (width > 1439.98px) {
  .person-card__body {
    row-gap: 0.125rem;
  }
}
.person-card__name {
  color: var(--color-light);
  font-weight: 600;
  font-size: 1.25rem;
}
@media (width <= 1439.98px) {
  .person-card__name {
    font-size: 1.125rem;
  }
}

.blog-actions__list {
  display: flex;
  column-gap: 0.625rem;
}
@media (width <= 1439.98px) {
  .blog-actions__list {
    column-gap: 0.5rem;
  }
}
.blog-actions__button {
  display: inline-flex;
  align-items: center;
  column-gap: 0.25rem;
  padding: 0.5rem 1rem;
  font-family: var(--font-family-accent);
  font-size: 1.125rem;
  color: var(--color-gray-60);
  background-color: var(--color-dark-10);
  border: var(--border);
  border-radius: 6.25rem;
}
@media (width <= 1439.98px) {
  .blog-actions__button {
    column-gap: 0.125rem;
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
  }
}
.blog-actions__button.is-active svg * {
  fill: var(--color-red);
  stroke: var(--color-red);
}
.blog-actions__icon-wrapper {
  --size: 1.5rem;
  width: var(--size);
  height: var(--size);
  display: flex;
}
@media (width <= 1439.98px) {
  .blog-actions__icon-wrapper {
    --size: 1.25rem;
  }
}
.blog-actions__icon-wrapper svg {
  width: 100%;
  height: 100%;
}
.blog-actions__icon-wrapper svg * {
  fill: transparent;
}

.blog-card {
  display: grid;
  grid-template-columns: 24% 1fr auto;
  column-gap: clamp(1.75rem, 1.3068181818rem + 1.8181818182vw, 3.125rem);
  padding-block: clamp(2.5rem, 1.694214876rem + 3.305785124vw, 5rem);
}
@media (width <= 1023.98px) {
  .blog-card {
    grid-template-columns: 1fr auto;
    grid-template-areas: "author link" "body body";
    row-gap: 1.875rem;
  }
}
@media (width <= 1023.98px) {
  .blog-card__author {
    grid-area: author;
  }
}
.blog-card__body {
  display: grid;
  row-gap: clamp(1.25rem, 1.048553719rem + 0.826446281vw, 1.875rem);
}
@media (width <= 1023.98px) {
  .blog-card__body {
    grid-area: body;
  }
}
.blog-card__date {
  color: var(--color-gray-60);
}
.blog-card__info {
  display: grid;
  row-gap: clamp(0.25rem, 0.1291322314rem + 0.4958677686vw, 0.625rem);
}
.blog-card__link {
  align-self: center;
}
@media (width <= 1023.98px) {
  .blog-card__link {
    grid-area: link;
  }
}

.download-info {
  display: inline-grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  column-gap: 3.125rem;
}
@media (width <= 1439.98px) {
  .download-info {
    column-gap: 1.875rem;
  }
}
.download-info__team {
  --personImageSize: 3.125rem;
  background-color: var(--color-dark);
  border-radius: 0.75rem;
}
@media (width <= 1439.98px) {
  .download-info__team {
    --personImageSize: 2.5rem;
  }
}

.bordered-grid {
  --columns: 1;
  --itemPaddingY: clamp(2.5rem, 1.694214876rem + 3.305785124vw, 5rem);
  display: grid;
  grid-template-columns: repeat(var(--columns), 1fr);
}
.bordered-grid--2-cols {
  --columns: 2;
  --itemPaddingX: 5rem;
}
@media (width <= 1439.98px) {
  .bordered-grid--2-cols {
    --itemPaddingX: 3.125rem;
  }
}
@media (width > 767.98px) {
  .bordered-grid--2-cols .bordered-grid__item:nth-child(odd) {
    padding-right: var(--itemPaddingX);
    border-right: var(--border);
  }
  .bordered-grid--2-cols .bordered-grid__item:nth-child(even) {
    position: relative;
    padding-left: var(--itemPaddingX);
  }
  .bordered-grid--2-cols .bordered-grid__item:nth-child(even)::before {
    content: "";
    position: absolute;
    left: auto;
    right: 100%;
    bottom: 0;
    translate: 50%;
    width: var(--100vw);
    height: 0.0625rem;
    background-color: var(--color-dark-15);
  }
}
.bordered-grid--3-cols {
  --columns: 3;
  --itemPaddingX: 3.125rem;
  column-gap: calc(var(--itemPaddingX) * 2);
}
@media (width <= 1439.98px) {
  .bordered-grid--3-cols {
    --itemPaddingX: 2.5rem;
  }
}
@media (width > 1023.98px) {
  .bordered-grid--3-cols .bordered-grid__item {
    /**
      Элементы в 1-й и 2-й колонке
     */
    /**
      Элементы во 2-й колонке
     */
  }
  .bordered-grid--3-cols .bordered-grid__item:nth-child(3n-2), .bordered-grid--3-cols .bordered-grid__item:nth-child(3n-1) {
    position: relative;
  }
  .bordered-grid--3-cols .bordered-grid__item:nth-child(3n-2)::after, .bordered-grid--3-cols .bordered-grid__item:nth-child(3n-1)::after {
    content: "";
    position: absolute;
    top: 0;
    left: calc(100% + var(--itemPaddingX));
    width: 0.0625rem;
    height: 100%;
    background-color: var(--color-dark-15);
  }
  .bordered-grid--3-cols .bordered-grid__item:nth-child(3n-1) {
    position: relative;
  }
  .bordered-grid--3-cols .bordered-grid__item:nth-child(3n-1)::before {
    content: "";
    position: absolute;
    left: 50%;
    right: auto;
    bottom: 0;
    translate: -50%;
    width: var(--100vw);
    height: 0.0625rem;
    background-color: var(--color-dark-15);
  }
}
@media (width <= 1023.98px) {
  .bordered-grid--3-cols {
    --columns: 1;
  }
  .bordered-grid--3-cols .bordered-grid__item:not(:last-child) {
    border-bottom: var(--border);
  }
}
.bordered-grid--4-cols {
  --columns: 4;
  --itemPaddingX: 3.125rem;
  column-gap: calc(var(--itemPaddingX) * 2);
}
@media (width <= 1439.98px) {
  .bordered-grid--4-cols {
    --itemPaddingX: 1.875rem;
  }
}
@media (width > 1023.98px) {
  .bordered-grid--4-cols .bordered-grid__item {
    /**
      Элементы в 1-й, 2-й и 3-й колонке
     */
  }
  .bordered-grid--4-cols .bordered-grid__item:nth-child(4n-3), .bordered-grid--4-cols .bordered-grid__item:nth-child(4n-2), .bordered-grid--4-cols .bordered-grid__item:nth-child(4n-1) {
    position: relative;
  }
  .bordered-grid--4-cols .bordered-grid__item:nth-child(4n-3)::after, .bordered-grid--4-cols .bordered-grid__item:nth-child(4n-2)::after, .bordered-grid--4-cols .bordered-grid__item:nth-child(4n-1)::after {
    content: "";
    position: absolute;
    top: 0;
    left: calc(100% + var(--itemPaddingX));
    width: 0.0625rem;
    height: 100%;
    background-color: var(--color-dark-15);
  }
}
@media (width <= 1023.98px) {
  .bordered-grid--4-cols {
    --columns: 2;
  }
}
@media (width <= 767.98px) {
  .bordered-grid--2-cols, .bordered-grid--4-cols {
    --columns: 1;
  }
  .bordered-grid--2-cols .bordered-grid__item:not(:last-child), .bordered-grid--4-cols .bordered-grid__item:not(:last-child) {
    border-bottom: var(--border);
  }
}
.bordered-grid__item {
  padding-block: var(--itemPaddingY);
}

.rating-view {
  display: inline-flex;
  column-gap: 0.4375rem;
  padding: 0.625rem 1rem;
  background-color: var(--color-dark);
  border: var(--border);
  border-radius: 6.25rem;
}
@media (width <= 1439.98px) {
  .rating-view {
    column-gap: 0.25rem;
    padding: 0.5rem 0.75rem;
  }
}
.rating-view__star {
  --size: 1.5rem;
  width: var(--size);
  height: var(--size);
  background: url("../../icons/star_gray.svg") center/contain no-repeat;
}
.rating-view__star.is-active {
  background-image: url("../../icons/star_yellow.svg");
}
@media (width <= 1439.98px) {
  .rating-view__star {
    --size: 1.25rem;
  }
}

.review-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 3.75rem;
  max-width: 31.25rem;
  margin-inline: auto;
}
@media (width <= 1439.98px) {
  .review-card {
    row-gap: 3.125rem;
  }
}
.review-card__author {
  --imageSize: 3.75rem;
}
@media (width <= 1439.98px) {
  .review-card__author {
    --imageSize: 3.125rem;
  }
}
.review-card__body {
  position: relative;
  padding: clamp(1.25rem, 1.048553719rem + 0.826446281vw, 1.875rem);
  padding-top: clamp(1.875rem, 1.472107438rem + 1.652892562vw, 3.125rem);
  color: var(--color-light);
  text-align: center;
}
.review-card__rating-view {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  top: 0;
}

.about-card {
  display: flex;
  flex-direction: column;
  row-gap: clamp(0.625rem, 0.423553719rem + 0.826446281vw, 1.25rem);
}
.about-card__title {
  font-size: clamp(1rem, 0.8791322314rem + 0.4958677686vw, 1.375rem);
  display: flex;
  align-items: center;
  font-family: var(--font-family-base);
  font-weight: 600;
}

.about__title {
  display: flex;
  justify-content: center;
  padding-top: 346px;
  margin-bottom: 24px;
  font-size: 24px;
  opacity: 0.4;
  font-weight: 500;
  line-height: 32px;
}
@media (width <= 479.98px) {
  .about__title {
    text-align: left;
    justify-content: left;
    margin-bottom: 16px;
    font-size: 20px;
    padding-top: 280px;
  }
}
.about__description {
  display: flex;
  justify-content: center;
  padding: 0 188px;
  color: #c7c7c7;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  letter-spacing: -0.96px;
  text-align: center;
  transition: color 1.5s ease-in;
}
@media (width <= 1023.98px) {
  .about__description {
    padding: 0 40px;
    text-align: center;
  }
}
@media (width <= 479.98px) {
  .about__description {
    text-align: left;
    padding: 0;
    font-size: 36px;
    line-height: 44px;
    letter-spacing: -0.72px;
  }
}
.about__description.active {
  color: #000;
}

.m-about {
  margin-top: 80px;
  background-image: url("/assets/static/images/planet.svg");
  background-repeat: no-repeat;
  background-position: 50% 0;
}
@media (width <= 479.98px) {
  .m-about {
    background-position: 65% 0;
  }
}

.hero-alt__header {
  padding-top: clamp(2.5rem, 0.6869834711rem + 7.4380165289vw, 8.125rem);
  padding-bottom: clamp(2.5rem, 0.2840909091rem + 9.0909090909vw, 9.375rem);
  border-bottom: var(--border);
}
.hero-alt__header-inner {
  display: grid;
  align-items: center;
  gap: 1.25rem 5rem;
}
@media (width <= 1439.98px) {
  .hero-alt__header-inner {
    column-gap: 3.75rem;
  }
}
@media (width > 767.98px) {
  .hero-alt__header-inner {
    grid-template-columns: auto 1fr;
  }
}
@media (width <= 767.98px) {
  .hero-alt__header-inner {
    row-gap: 0.875rem;
  }
}
.hero-alt__title {
  grid-column: -1/1;
}
@media (width > 767.98px) {
  .hero-alt__title-hidden-part {
    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;
  }
}

.summary--2-cols .summary__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.875rem 1.25rem;
}
@media (width <= 1439.98px) {
  .summary--2-cols .summary__list {
    row-gap: 1.25rem;
  }
}
.summary--2-cols .summary__item--wide {
  grid-column: -1/1;
  row-gap: clamp(0.625rem, 0.5041322314rem + 0.4958677686vw, 1rem);
  margin-top: 1.25rem;
}
.summary__list {
  display: flex;
  column-gap: clamp(1.25rem, 0.645661157rem + 2.479338843vw, 3.125rem);
}
.summary__item {
  display: grid;
  row-gap: 0.25rem;
}
@media (width <= 1439.98px) {
  .summary__item {
    row-gap: 0.125rem;
  }
}
.summary__value {
  color: var(--color-light);
}

.news-card {
  display: grid;
  row-gap: 1.25rem;
  height: 100%;
}
@media (width <= 1439.98px) {
  .news-card {
    row-gap: 1rem;
  }
}
.news-card:has(.news-card__summary) {
  align-items: center;
  column-gap: 5rem;
  padding-block: clamp(2.5rem, 1.694214876rem + 3.305785124vw, 5rem);
}
@media (width <= 1439.98px) {
  .news-card:has(.news-card__summary) {
    column-gap: 2.5rem;
  }
}
@media (width > 767.98px) {
  .news-card:has(.news-card__summary) {
    grid-template-columns: 32% 1fr;
    grid-template-areas: "image other" "image other" "image other";
  }
}
.news-card:has(.news-card__summary) .news-card__image {
  height: clamp(13.3125rem, 9.0015495868rem + 17.6859504132vw, 26.6875rem);
}
@media (width > 767.98px) {
  .news-card:has(.news-card__summary) .news-card__image {
    grid-area: image;
  }
}
.news-card:has(.news-card__summary) .news-card__title {
  font-size: clamp(1.25rem, 1.0082644628rem + 0.9917355372vw, 2rem);
  font-family: var(--font-family-base);
  font-weight: 600;
}
.news-card__image {
  width: 100%;
  height: 13.875rem;
  object-fit: cover;
  border-radius: 0.75rem;
}
@media (width <= 1439.98px) {
  .news-card__image {
    height: 11.5625rem;
    border-radius: 0.625rem;
  }
}
.news-card__body {
  display: grid;
  row-gap: 0.625rem;
}
@media (width <= 1439.98px) {
  .news-card__body {
    row-gap: 0.25rem;
  }
}
.news-card__controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 1rem;
}
@media (width <= 479.98px) {
  .news-card__link {
    min-width: 9.5625rem;
  }
}

.news {
  display: grid;
  row-gap: 5rem;
  padding-block: clamp(2.5rem, 1.694214876rem + 3.305785124vw, 5rem);
}
@media (width <= 1439.98px) {
  .news {
    row-gap: 2.5rem;
  }
}
.news__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 1rem;
}
.news__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(22.375rem, 1fr));
  gap: 1.875rem;
}

.video-player {
  position: relative;
}
.video-player__video {
  width: 100%;
  height: clamp(13.125rem, 9.055785124rem + 16.694214876vw, 25.75rem);
  object-fit: cover;
  border-radius: 0.75rem;
}
@media (width <= 1439.98px) {
  .video-player__video {
    border-radius: 0.625rem;
  }
}
.video-player__video--small {
  height: clamp(13rem, 11.3481404959rem + 6.7768595041vw, 18.125rem);
}
.video-player__panel {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: end;
  column-gap: 1rem;
  padding: 1.875rem;
  transition-duration: var(--transition-duration);
}
.video-player__panel--center {
  justify-content: center;
  align-items: center;
}
.video-player__panel:not(.is-active) {
  opacity: 0;
  visibility: hidden;
}
.video-player__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg, rgba(20, 20, 20, 0) 44.27%, #141414 100%);
}
.video-player__panel * {
  position: relative;
}
.video-player__play-button {
  --size: 4.375rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: var(--size);
  height: var(--size);
  padding: 0;
  color: var(--color-light);
  background-color: transparent;
  border: none;
}
@media (any-hover: hover) {
  .video-player__play-button:hover {
    color: var(--color-accent);
  }
}
@media (any-hover: none) {
  .video-player__play-button:active {
    color: var(--color-accent);
  }
}
@media (width <= 1439.98px) {
  .video-player__play-button {
    --size: 3.125rem;
  }
}

.video-card {
  display: flex;
  flex-direction: column;
  align-items: start;
  row-gap: 1.875rem;
  height: 100%;
}
@media (width <= 1439.98px) {
  .video-card {
    row-gap: 1.25rem;
  }
}
.video-card__body {
  display: grid;
  row-gap: clamp(0.25rem, 0.1291322314rem + 0.4958677686vw, 0.625rem);
  flex-grow: 1;
}
.video-card__player {
  width: 100%;
}

.table-of-contents {
  padding: 1.25rem;
  color: var(--color-light);
  background-color: var(--color-dark-10);
  border-radius: 0.75rem;
}
@media (width <= 1439.98px) {
  .table-of-contents {
    border-radius: 0.625rem;
  }
}
.table-of-contents__list {
  display: grid;
  row-gap: 1.25rem;
}
@media (width <= 1439.98px) {
  .table-of-contents__list {
    row-gap: 1rem;
  }
}
.table-of-contents__item {
  list-style-type: disc;
  margin-left: 1.5em;
}

.blog-details__banner {
  display: flex;
  align-items: end;
  min-height: clamp(17.5625rem, 11.1766528926rem + 26.1983471074vw, 37.375rem);
  padding-block: clamp(1.0625rem, 0.0955578512rem + 3.9669421488vw, 4.0625rem);
  text-align: center;
  background: linear-gradient(180deg, rgba(20, 20, 20, 0) 0%, rgba(20, 20, 20, 0.88) 75.52%, #141414 100%), var(--bgImg) center/cover no-repeat;
}
.blog-details__title {
  font-size: clamp(1.75rem, 1.0247933884rem + 2.9752066116vw, 4rem);
  font-family: var(--font-family-base);
  font-weight: 600;
}
.blog-details__body {
  border-block: var(--border);
}
.blog-details__body-inner {
  display: grid;
  grid-template-columns: 1fr 32.5rem;
}
@media (width <= 1023.98px) {
  .blog-details__body-inner {
    display: flex;
    flex-direction: column-reverse;
  }
}
@media (width > 1023.98px) {
  .blog-details__content {
    border-right: var(--border);
  }
}
.blog-details__intro, .blog-details__main, .blog-details__actions, .blog-details__summary {
  padding: clamp(2.5rem, 1.694214876rem + 3.305785124vw, 5rem) 5rem;
}
@media (width <= 1439.98px) {
  .blog-details__intro, .blog-details__main, .blog-details__actions, .blog-details__summary {
    padding-inline: 3.75rem;
  }
}
@media (width <= 1023.98px) {
  .blog-details__intro, .blog-details__main, .blog-details__actions, .blog-details__summary {
    padding-inline: 0;
  }
}
@media (width <= 1023.98px) {
  .blog-details__intro, .blog-details__actions, .blog-details__summary {
    position: relative;
  }
  .blog-details__intro::before, .blog-details__actions::before, .blog-details__summary::before {
    content: "";
    position: absolute;
    left: 50%;
    right: auto;
    bottom: 0;
    translate: -50%;
    width: var(--100vw);
    height: 0.0625rem;
    background-color: var(--color-dark-15);
  }
}
@media (width > 1023.98px) {
  .blog-details__intro, .blog-details__actions {
    border-bottom: var(--border);
  }
}
.blog-details__actions {
  padding-block: clamp(1.25rem, 0.645661157rem + 2.479338843vw, 3.125rem);
}
.blog-details__body h2:not(:first-child), .blog-details__body h3:not(:first-child), .blog-details__body h4:not(:first-child), .blog-details__body h5:not(:first-child), .blog-details__body h6:not(:first-child) {
  margin-top: 1.5em;
}
.blog-details__body h2:not(:last-child), .blog-details__body h3:not(:last-child), .blog-details__body h4:not(:last-child), .blog-details__body h5:not(:last-child), .blog-details__body h6:not(:last-child) {
  margin-bottom: 1em;
}
.blog-details__main {
  --initialMaxHeight: 46.3125rem;
}
@media (width <= 1439.98px) {
  .blog-details__main {
    --initialMaxHeight: 43.25rem;
  }
}
@media (width <= 767.98px) {
  .blog-details__main {
    --initialMaxHeight: 41.8125rem;
  }
}

.report-card {
  display: flex;
  flex-direction: column;
  row-gap: clamp(1.25rem, 1.048553719rem + 0.826446281vw, 1.875rem);
  height: 100%;
}
.report-card__image {
  width: 100%;
  height: 18.125rem;
  object-fit: cover;
  border-radius: 0.75rem;
}
@media (width <= 767.98px) {
  .report-card__image {
    height: 13.9375rem;
  }
}
.report-card__body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  row-gap: 0.875rem;
}
@media (width <= 1439.98px) {
  .report-card__body {
    row-gap: 0.625rem;
  }
}
.report-card__actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 1.25rem;
}
@media (width <= 1439.98px) {
  .report-card__actions {
    column-gap: 0.625rem;
  }
}

.contacts-card {
  display: grid;
  row-gap: clamp(1.25rem, 0.645661157rem + 2.479338843vw, 3.125rem);
}
.contacts-card__body {
  display: flex;
  flex-direction: column;
  align-items: start;
  row-gap: 0.9375rem;
}
@media (width <= 1439.98px) {
  .contacts-card__body {
    row-gap: 0.625rem;
  }
}
@media (width <= 767.98px) {
  .contacts-card__body {
    padding-left: 3.125rem;
  }
}

.field {
  display: flex;
  flex-direction: column;
  align-items: start;
  row-gap: 1rem;
  font-weight: 500;
  font-size: 1.125rem;
  color: var(--color-light);
}
@media (width <= 1439.98px) {
  .field {
    row-gap: 0.75rem;
    font-size: 1rem;
  }
}
.field__body {
  display: flex;
  column-gap: 1rem;
  width: 100%;
}
@media (width <= 1439.98px) {
  .field__body {
    column-gap: 0.75rem;
  }
}
.field__required-star {
  color: var(--color-red);
}
.field__control {
  width: 100%;
  height: 4.1875rem;
  padding-inline: 1.25rem;
  color: var(--color-light);
  background-color: var(--color-dark-10);
  border: var(--border);
  border-radius: 0.5rem;
}
@media (width <= 1439.98px) {
  .field__control {
    height: 3.3125rem;
    padding-inline: 1rem;
    border-radius: 0.375rem;
  }
}
@media (any-hover: hover) {
  .field__control:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow);
  }
}
@media (any-hover: none) {
  .field__control:active {
    border-color: var(--color-accent);
    box-shadow: var(--shadow);
  }
}
.field__control::placeholder {
  color: var(--color-dark-40);
}
.field__control:user-invalid {
  border-color: var(--color-red);
}
.field textarea.field__control {
  resize: vertical;
  min-height: 10.1875rem;
  padding-block: 1.25rem;
}
@media (width <= 1439.98px) {
  .field textarea.field__control {
    padding-block: 1rem;
  }
}
@media (width <= 767.98px) {
  .field textarea.field__control {
    min-height: 7.9375rem;
  }
}

.select__original-control {
  min-width: 6.25rem;
}
@media (width > 767.98px) {
  .select__original-control {
    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;
  }
}
.select__body {
  position: relative;
}
@media (width <= 767.98px) {
  .select__body {
    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;
  }
}
.select__button, .select__option {
  user-select: none;
  cursor: pointer;
}
.select__button *, .select__option * {
  pointer-events: none;
}
.select__button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 0.375rem;
  transition-duration: var(--transition-duration);
}
@media (width <= 1439.98px) {
  .select__button {
    column-gap: 0.25rem;
  }
}
.select__button.is-expanded::after {
  rotate: -180deg;
}
.select__button::after {
  --size: 1.5rem;
  width: var(--size);
  height: var(--size);
  content: "";
  background: url("../../icons/arrow-down_white.svg") center/contain no-repeat;
  transition-duration: var(--transition-duration);
}
@media (width <= 1439.98px) {
  .select__button::after {
    --size: 1.25rem;
  }
}
.select__dropdown {
  position: absolute;
  top: calc(100% + 0.25rem);
  display: grid;
  row-gap: 0.25rem;
  min-width: 9.375rem;
  max-width: 18.75rem;
  max-height: 15.625rem;
  overflow-y: auto;
  padding: 0.25rem;
  background-color: var(--color-dark-10);
  border: var(--border);
  border-radius: 0.375rem;
  transition-duration: var(--transition-duration);
}
.select__dropdown.is-on-the-left-side {
  left: 0;
  transform-origin: 0 0;
}
.select__dropdown.is-on-the-right-side {
  right: 0;
  transform-origin: 100% 0;
}
.select__dropdown:not(.is-expanded) {
  opacity: 0;
  visibility: hidden;
  scale: 0;
}
.select__option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 0.625rem;
  padding: 0.625rem;
  border: var(--border);
  border-radius: inherit;
}
@media (any-hover: hover) {
  .select__option:hover {
    color: var(--color-accent);
    background-color: var(--color-dark);
  }
}
@media (any-hover: none) {
  .select__option:active {
    color: var(--color-accent);
    background-color: var(--color-dark);
  }
}
.select__option.is-selected {
  color: var(--color-accent);
}
.select__option.is-selected::after {
  content: "✔";
}
.select__option.is-current {
  border-color: var(--color-accent);
}

.checkbox {
  display: inline-flex;
  align-items: center;
  column-gap: 0.625rem;
  color: var(--color-light);
}
@media (width <= 1439.98px) {
  .checkbox {
    column-gap: 0.375rem;
  }
}
@media (any-hover: hover) {
  .checkbox:hover {
    color: var(--color-accent);
  }
  .checkbox:hover .checkbox__input {
    border-color: var(--color-accent);
  }
}
@media (any-hover: none) {
  .checkbox:active {
    color: var(--color-accent);
  }
  .checkbox:active .checkbox__input {
    border-color: var(--color-accent);
  }
}
.checkbox__input {
  --size: 1.75rem;
  width: var(--size);
  height: var(--size);
  display: flex;
  justify-content: center;
  align-items: center;
  appearance: none;
  margin: 0;
  background-color: var(--color-dark-10);
  border: var(--border);
  border-radius: 0.25rem;
}
@media (width <= 1439.98px) {
  .checkbox__input {
    --size: 1.5rem;
  }
}
.checkbox__input:not(:checked)::after {
  opacity: 0;
  visibility: hidden;
}
.checkbox__input:user-invalid {
  border-color: var(--color-red);
}
.checkbox__input::after {
  content: "✔";
  color: var(--color-light);
  transition-duration: var(--transition-duration);
}

.feedback-form {
  display: grid;
  gap: clamp(1.25rem, 0.645661157rem + 2.479338843vw, 3.125rem) 3.125rem;
}
@media (width > 479.98px) {
  .feedback-form {
    grid-template-columns: repeat(2, 1fr);
  }
}
.feedback-form__cell--wide {
  grid-column: -1/1;
}
.feedback-form__actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 1rem;
}
@media (width <= 479.98px) {
  .feedback-form__actions {
    flex-direction: column;
    align-items: stretch;
    row-gap: 1.25rem;
  }
}

.accordion__details[open] .accordion__title::before, .accordion__details[open] .accordion__title::after {
  background-color: var(--color-light);
}
.accordion__details[open] .accordion__title::after {
  rotate: 0deg;
}
.accordion__details[open] + .accordion__content {
  grid-template-rows: 1fr;
}
.accordion__summary {
  color: var(--color-light);
  list-style: none;
}
@media (any-hover: hover) {
  .accordion__summary:hover {
    color: var(--color-accent);
  }
}
@media (any-hover: none) {
  .accordion__summary:active {
    color: var(--color-accent);
  }
}
.accordion__summary::-webkit-details-marker {
  display: none;
}
.accordion__title {
  position: relative;
  padding-right: 3.125rem;
  color: inherit;
  transition-duration: var(--transition-duration);
}
.accordion__title::before, .accordion__title::after {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  content: "";
  right: 0;
  width: 1rem;
  height: 0.125rem;
  background-color: var(--color-accent);
  border-radius: 1rem;
  transition-duration: var(--transition-duration);
}
.accordion__title::after {
  rotate: 90deg;
}
.accordion__content {
  display: grid;
  grid-template-rows: 0fr;
  transition-duration: 0.3s;
}
.accordion__content-inner {
  overflow: hidden;
}
.accordion__content-body {
  --offsetTop: clamp(1rem, 0.8388429752rem + 0.6611570248vw, 1.5rem);
  margin-top: var(--offsetTop);
  padding-top: var(--offsetTop);
  border-top: var(--border);
}

.accordion-group {
  display: grid;
  row-gap: clamp(1.25rem, 1.048553719rem + 0.826446281vw, 1.875rem);
}

.contacts__header {
  border-bottom: var(--border);
}

.vacancies {
  margin: 24px 0;
}
.vacancies__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.vacancies__header-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  /* 133.333% */
  letter-spacing: -0.24px;
  margin-bottom: 24px;
}
.vacancies__section {
  margin-bottom: 32px;
}
.vacancies__subtitle {
  color: var(--color-grey-30);
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  /* 133.333% */
  text-transform: uppercase;
  margin-bottom: 8px;
}
.vacancies__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (width <= 479.98px) {
  .vacancies__list {
    grid-template-columns: 1fr;
  }
}

:root {
  --swiper-pagination-bullet-horizontal-gap: 6px;
  --swiper-pagination-bullet-width: 10px;
  --swiper-pagination-bullet-height: 4px;
}

.c-swiper {
  position: relative;
  z-index: 1;
}
.c-swiper .swiper-slide .row {
  margin: 0 80px;
}
@media (width <= 1023.98px) {
  .c-swiper .swiper-slide .row {
    margin: 0;
  }
}
.c-swiper .swiper-controls {
  display: flex;
}
@media (width <= 1023.98px) {
  .c-swiper .swiper-controls {
    position: relative;
    align-items: center;
    justify-content: space-between;
    margin-top: 32px;
  }
}
@media (width > 1023.98px) {
  .c-swiper .swiper-controls.m-office {
    display: none;
  }
}
.c-swiper .swiper-button-prev,
.c-swiper .swiper-button-next {
  display: flex;
  width: 48px;
  height: 48px;
  padding: 13px;
  justify-content: center;
  align-items: center;
  border-radius: 120px;
  background: rgba(65, 65, 81, 0.05);
}
.c-swiper .swiper-button-prev.m-custom,
.c-swiper .swiper-button-next.m-custom {
  display: none;
}
@media (width <= 1023.98px) {
  .c-swiper .swiper-button-prev,
  .c-swiper .swiper-button-next {
    position: relative;
    margin-top: 0;
  }
}
@media (width > 1023.98px) {
  .c-swiper .swiper-button-prev.m-team,
  .c-swiper .swiper-button-next.m-team {
    display: none;
  }
}
.c-swiper .swiper-button-prev::after,
.c-swiper .swiper-button-next::after {
  display: none;
  font-size: 12px;
  color: #414151;
}
@media (width <= 1023.98px) {
  .c-swiper .swiper-pagination {
    position: relative;
  }
}
.c-swiper .swiper-pagination.swiper-pagination-horizontal {
  width: auto;
}
.c-swiper .swiper-pagination-bullets .swiper-pagination-bullet {
  border-radius: 48px;
  background: #CFD1D6;
}
.c-swiper .swiper-pagination-bullets .swiper-pagination-bullet-active {
  background: var(--color-dark-12);
}
@media (width > 1023.98px) {
  .c-swiper .swiper-pagination-bullets {
    display: none;
  }
}
.c-swiper.m-custom {
  margin: 0;
}
@media (width > 1023.98px) {
  .c-swiper.m-custom {
    margin: 0 90px;
  }
}

.c-outer-swiper {
  display: none;
}
@media (width > 1023.98px) {
  .c-outer-swiper {
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0; /* розтягуємо на всю ширину секції */
    transform: translateY(-50%);
    height: 0; /* “нульова” планка — не заважає drag */
    z-index: 2;
    pointer-events: none; /* пропускаємо події до слайдів */
  }
}
@media (width > 1023.98px) {
  .c-outer-swiper-wrapper {
    position: relative;
    width: 100%;
    max-width: var(--container-width);
    margin-inline: auto;
    padding-inline: var(--container-padding-x);
  }
}
.c-outer-swiper-controls .swiper-button-prev,
.c-outer-swiper-controls .swiper-button-next {
  position: absolute;
  top: 0; /* центр планки */
  transform: translateY(-50%); /* рівно по середині каруселі */
  pointer-events: auto;
  display: flex;
  width: 48px;
  height: 48px;
  padding: 13px;
  justify-content: center;
  align-items: center;
  border-radius: 120px;
  background: rgba(65, 65, 81, 0.05);
}
.c-outer-swiper-controls .swiper-button-prev::after,
.c-outer-swiper-controls .swiper-button-next::after {
  display: none;
}
.c-outer-swiper-controls .swiper-button-prev {
  left: 0;
}
.c-outer-swiper-controls .swiper-button-next {
  right: 0;
}

.quick-filter-container {
  margin: 24px 0 56px 0;
}
@media (width <= 767.98px) {
  .quick-filter-container {
    overflow: hidden;
  }
}

.c-quick-filters {
  position: relative;
  display: flex;
  justify-content: center;
}
.c-quick-filters__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 800px;
  gap: 12px;
}
@media (width <= 767.98px) {
  .c-quick-filters__list {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    border-radius: 48px;
    padding: 0;
    margin: 0;
    overflow-x: auto;
  }
}
.c-quick-filters__item {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (width <= 767.98px) {
  .c-quick-filters__item {
    flex-shrink: 0;
  }
}
.c-quick-filters__link {
  display: flex;
  gap: 8px;
  padding: 4px 10px 4px 4px;
  align-items: center;
  border-radius: 48px;
  border: 1px solid #d0d9e3;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  color: var(--color-dark-12);
  white-space: nowrap;
}
.c-quick-filters__link:hover {
  border: 1px solid #A0A8B1;
}
.c-quick-filters__link.m-active {
  border: 1px solid #a5bacf;
  background-color: #f1f6fa;
}
@media (width <= 767.98px) {
  .c-quick-filters__link {
    padding: 4px 10px 4px 4px;
    gap: 6px;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
  }
}

.card {
  position: relative;
}
.card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.card-content.m-country {
  align-items: start;
}
@media (width <= 479.98px) {
  .card-content {
    flex-direction: row;
    align-items: flex-start;
    column-gap: 12px;
    text-align: left;
  }
  .card-content.m-country {
    flex-direction: column;
  }
}
.card-content__text {
  display: flex;
  flex-direction: column;
}
@media (width <= 479.98px) {
  .card-content__text {
    text-align: left;
  }
}
.card-content__icon {
  width: 28px;
  height: 28px;
  margin-bottom: 8px;
  flex-shrink: 0;
}
.card-content__title {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
}
@media (width <= 479.98px) {
  .card-content__title {
    font-size: 16px;
    text-align: left;
  }
}
.card-content__title.m-country {
  text-align: left;
}
.card-content__description {
  color: var(--color-grey-30);
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0.16px;
}
.card-content__description.m-country {
  align-items: start;
  text-align: left;
}
@media (width <= 479.98px) {
  .card-content__description {
    font-size: 14px;
    text-align: left;
  }
}
.card-content.m-services {
  margin: 16px 0 0 16px;
  border-radius: 9.582px 0 9.582px 9.582px;
  border: 0.5px solid #505254;
  background: #FFF;
}
.card .card-body .image-background {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
@media (width <= 479.98px) {
  .card .card-body .image-background {
    max-height: 160px;
  }
}
.card .card-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  color: var(--text-white);
  background: linear-gradient(180deg, rgba(24, 27, 31, 0) 0%, rgba(24, 27, 31, 0.8) 69.77%);
  border-radius: 16px;
}
.card .card-info__title {
  color: var(--text-white);
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: -0.24px;
}
@media (width <= 479.98px) {
  .card .card-info__title {
    font-size: 18px;
  }
}
.card .card-info__subtitle {
  color: var(--text-white);
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
}
@media (width <= 479.98px) {
  .card .card-info__subtitle {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.14px;
    line-height: 18px;
  }
}
.card.m-sticky {
  position: sticky;
  top: 85px;
  z-index: 1;
}
.card-vacancies {
  border-radius: 16px;
  border: 1px solid rgba(37, 40, 44, 0.08);
  background: #fff;
}
.card-vacancies__body {
  display: flex;
  column-gap: 12px;
  padding: 12px;
}
.card-vacancies__body .card-image {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 8px;
}
.card-vacancies__body .card-content__title {
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  /* 133.333% */
}
.card-vacancies__body .card-content__title.m-green {
  color: var(--color-green);
  font-size: 16px;
  font-weight: 700;
}
.card-vacancies__body .card-content__title.m-grey {
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0.16px;
}
.card-vacancies__body .card-content__description {
  color: var(--color-grey-30);
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  /* 137.5% */
  letter-spacing: 0.16px;
}
.card-vacancies__body .card-content__description.m-green {
  color: var(--color-green);
}
.card-vacancies.m-green {
  background-color: var(--color-green-10);
}
.card-vacancies.m-grey {
  background-color: var(--color-grey-20);
}
.card-offices__background {
  position: static;
  transform: none;
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.card-badge {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  column-gap: 10px;
  margin-bottom: 300px;
  margin: 24px;
  color: #414151;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: -0.24px;
}
.card-badge__icon {
  width: 24px !important;
  height: 24px !important;
}
.card-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 16px;
}
.card-footer .m-location {
  display: flex;
  align-items: center;
  color: #0e0e14;
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  column-gap: 12px;
}
.card-footer .m-location__icon {
  width: 24px !important;
  height: 24px !important;
}
.card .m-managers__grid {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.card .m-managers__grid-mobile {
  display: flex;
}
.card-managers {
  margin-top: 50px;
  min-width: 290px;
}
.card-managers__img {
  border: none !important;
  width: 24px !important;
  height: 24px !important;
}
.card-managers__title {
  margin-top: 8px;
  color: #000;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
}
@media (width <= 1023.98px) {
  .card-managers__title {
    text-align: center;
  }
}
.card-managers__subtitle {
  text-align: center;
  color: #8e8da4;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0.16px;
}
@media (width <= 1023.98px) {
  .card-managers__subtitle {
    text-align: center;
  }
}
.card.m-services {
  border-radius: 24px;
  border: 1px solid rgba(37, 40, 44, 0.1);
  background: linear-gradient(180deg, #F5F6F8 0%, #F5F6F8 100%);
}
.card.m-info-card {
  border-radius: 24px;
  border: 1px solid rgba(37, 40, 44, 0.1);
  background: #fff;
  padding: 24px;
}

.accreditation-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  gap: 12px;
  opacity: 1;
  border-radius: 24px;
  border-width: 1px;
  padding-top: 30px;
  padding-right: 34px;
  padding-bottom: 34px;
  padding-left: 34px;
  border: 1px solid #EFF0F0;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.0588235294);
}
@media (width <= 767.98px) {
  .accreditation-card {
    width: 100%;
  }
}
.accreditation-card__body {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.accreditation-card__image {
  display: block;
  width: 74px;
  height: 74px;
  min-width: 74px;
  min-height: 74px;
  object-fit: contain;
  background: #FFFFFF;
  border: 1px solid #EFF0F0;
  border-radius: 50%;
  padding: 8px;
  margin-bottom: 20px;
}
.accreditation-card__image.is-empty {
  border: none;
  padding: 0;
}
.accreditation-card__image--fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0257DA;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  background: #F5F8FD;
}
.accreditation-card__title {
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  margin-bottom: 40px;
}
.accreditation-card__content {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #5D5D5D;
  margin-bottom: 20px;
}
.accreditation-card__link {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 6px;
  opacity: 1;
  border-radius: 12px;
  padding-top: 9px;
  padding-right: 12px;
  padding-bottom: 9px;
  padding-left: 16px;
  background: #24242A;
  color: var(--text-white);
}
.accreditation-card__link:hover {
  background-color: #2e2e36;
  color: var(--text-white);
}
.accreditation-card__footer {
  border-top: 1px solid #EFF0F0;
  padding-top: 10px;
  margin-top: auto;
}

.accreditation-centers__country {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.accreditation-centers__country-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.accreditation-centers__country-flag svg {
  width: 100%;
  height: 100%;
}

.accreditation-centers__country-name {
  font-size: 20px;
  font-weight: 600;
  line-height: 22px;
}

@media (width <= 767.98px) {
  .accreditation-centers__row {
    --gutter-x: 0;
  }
  .accreditation-centers__row > [class*=col-] {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.clinic-card {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
  gap: 12px;
  opacity: 1;
  border-radius: 24px;
  border-width: 1px;
  padding: 32px;
  border: 1px solid #EFF0F0;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.0588235294);
}
.clinic-card__body {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.clinic-card__image {
  display: block;
  width: 74px;
  height: 74px;
  min-width: 74px;
  min-height: 74px;
  object-fit: contain;
  background: #FFFFFF;
  border: 1px solid #EFF0F0;
  border-radius: 50%;
  padding: 8px;
  margin-bottom: 20px;
}
.clinic-card__image.is-empty {
  border: none;
  padding: 0;
}
.clinic-card__title {
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  margin-bottom: 40px;
}
.clinic-card__content {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #5D5D5D;
  margin-bottom: 20px;
}
.clinic-card__link {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 6px;
  border-radius: 12px;
  padding: 9px 25px;
  background: #24242A;
  color: var(--text-white);
}
.clinic-card__link:hover {
  background-color: #2e2e36;
  color: var(--text-white);
}
.clinic-card__location {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #5D5D5D;
}
.clinic-card__badges {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-bottom: 20px;
}
.clinic-card__footer {
  border-top: 1px solid #EFF0F0;
  padding-top: 20px;
  margin-top: auto;
}

.photo-team {
  display: flex;
  justify-content: center;
  position: relative;
}
.photo-team__item {
  width: 100%;
  height: auto;
}

.info {
  background-image: linear-gradient(180deg, rgba(242, 245, 247, 0) 80%, #f2f5f7 100%), url("/assets/static/images/docs1440.png");
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
@media (width <= 1023.98px) {
  .info {
    background-image: linear-gradient(180deg, rgba(242, 245, 247, 0) 80%, #f2f5f7 100%), url("/assets/static/images/docs1024.png");
  }
}
@media (width <= 767.98px) {
  .info {
    background-image: url("/assets/static/images/docs768.png");
  }
}
@media (width <= 479.98px) {
  .info {
    background-image: linear-gradient(180deg, rgba(242, 245, 247, 0) 80%, #f2f5f7 100%), url("/assets/static/images/docs375.png");
    background-position: 50% 85%;
  }
}

.opportunities-content {
  margin-top: 80px;
}
.opportunities-content__header-title {
  text-align: center;
  color: #000;
  opacity: 40%;
  font-size: 20px;
  font-weight: 400;
  line-height: 26px; /* 130% */
}
.opportunities-content .opportunities-content-info {
  display: flex;
  gap: 40px;
}
@media (width <= 1023.98px) {
  .opportunities-content .opportunities-content-info {
    gap: 32px;
  }
}
@media (width <= 767.98px) {
  .opportunities-content .opportunities-content-info {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
}
.opportunities-content .opportunities-content-info__block {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.opportunities-content .opportunities-content-info__title-about {
  color: #000;
  text-align: center;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
}
.opportunities-content .opportunities-content-info__subtitle-about {
  color: #8e8da4;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0.16px;
}
.opportunities-content .contact-info {
  margin-top: 82px;
  text-align: center;
}
.opportunities-content .contact-info__header {
  color: #000;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px; /* 130% */
  letter-spacing: -0.4px;
}
.opportunities-content .contact-info__description {
  color: #858585;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px; /* 137.5% */
  letter-spacing: 0.16px;
}
.opportunities-content .contact-info__description span {
  font-weight: 700;
}
.opportunities-content .btn-info {
  margin-top: 24px;
  margin-bottom: 94px;
}

.services {
  border-radius: 48px;
  background: #F5F6F8;
  padding: 80px 24px 24px 24px;
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(37, 40, 44, 0.1);
  background: linear-gradient(180deg, #F5F6F8 0%, #F5F6F8 100%);
}
.service-card__body {
  position: relative;
  margin: 16px 0 0 16px;
  padding: 25.7px 25.7px 24px 25.7px;
  border-radius: 9.582px;
  outline: 1.5px solid #e7e9eb;
  background: #fff;
}
.service-card__body.m-animation {
  transform: translate(0px, -11px) rotate(-1.403deg);
  transition: transform 0.2s ease 0s;
}
.service-card__header {
  display: flex;
  column-gap: 6px;
  margin-bottom: 33.4px;
}
.service-card__icon {
  width: 32px;
  height: 32px;
}
.service-card__title {
  color: #101015;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: -0.24px;
}
.service-card__content {
  display: grid;
  gap: 18px;
}
.service-card__footer {
  position: relative;
  display: flex;
  justify-content: center;
}
.service-card__cover {
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: calc(100% - 160px);
  justify-content: center;
  align-items: end;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFF 50%);
  padding-bottom: 24px;
}

.team-card {
  display: flex;
  flex-direction: column;
  max-width: 246px;
}
.team-card__image {
  margin-bottom: 16px;
}
.team-card__title {
  margin-bottom: 8px;
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: -0.24px;
}
.team-card .manager-link {
  color: #000;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  border: none;
  background-color: transparent;
  margin-bottom: 8px;
}
.team-card .manager-link.m-empty::before {
  content: " "; /* NBSP — невидимий символ, щоб зберегти висоту рядка */
}
.team-card .manager-description {
  --clamp-lines: 3;
  --lh: 24px;
  color: #8e8da4;
  font-size: 18px;
  font-weight: 500;
  line-height: var(--lh);
}
.team-card .manager-description .toggle {
  display: none;
}
.team-card .manager-description__text {
  position: relative;
  overflow: hidden;
  max-height: calc(var(--lh) * var(--clamp-lines));
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--clamp-lines);
}
.team-card .manager-description__text::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2.2em;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 60%);
  pointer-events: none;
}
.team-card .manager-description .show-more {
  display: inline-block;
  margin-top: 8px;
  cursor: pointer;
  border: 0;
  background: transparent;
  text-decoration: underline;
  color: #8e8da4;
}
.team-card .manager-description .show-more::after {
  content: attr(data-more);
}
.team-card .manager-description .toggle:checked ~ .manager-description__text {
  max-height: none;
  -webkit-line-clamp: unset;
}
.team-card .manager-description .toggle:checked ~ .manager-description__text::after {
  display: none;
}
.team-card .manager-description .toggle:checked ~ .show-more::after {
  content: attr(data-less);
}

.c-form {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
}
@keyframes city-loader-spin {
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}
.c-form-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.c-form-header__image {
  display: flex;
  margin-bottom: 16px;
  justify-content: center;
}
.c-form-header__title {
  color: #000;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: -0.24px;
  margin-bottom: 6px;
}
.c-form-header__subtitle {
  color: #858585;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 32px;
}
.c-form label {
  display: block;
  color: #626971;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0.16px;
  margin-bottom: 6px;
}
.c-form-field {
  display: flex;
  flex-direction: column;
}
.c-form-field__error {
  min-height: 20px;
  margin-top: 6px;
  color: #FF4C16;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}
.c-form-field__error:empty {
  min-height: 0;
  margin-top: 0;
}
.c-form input,
.c-form textarea {
  display: block;
  border-radius: 12px;
  border: 1px solid #EFF0F0;
  background: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0;
  width: 100%;
  padding: 12px 16px;
  color: #A5A29D;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.0784313725);
}
.c-form select {
  display: block;
  width: 100%;
  border-radius: 12px;
  border: 1px solid #EFF0F0;
  background-color: #fff;
  background-image: url("/assets/static/icons/arrow-down.svg");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px 16px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  padding: 12px 16px;
  padding-right: 44px;
  color: #A5A29D;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.0784313725);
}
.c-form input:hover,
.c-form textarea:hover {
  border: 1px solid #9a9792;
}
.c-form input::placeholder,
.c-form textarea::placeholder {
  color: #A5A29D;
}
.c-form #query {
  font-weight: 600;
  color: #25221C;
}
.c-form #query::placeholder {
  font-weight: 400;
  color: #A5A29D;
}
.c-form #city {
  font-weight: 600;
  color: #25221C;
  padding-right: 44px;
  background-image: none;
}
.c-form #city::placeholder {
  font-weight: 400;
  color: #A5A29D;
}
.c-form #city::-webkit-calendar-picker-indicator {
  opacity: 0;
  pointer-events: none;
}
.c-form #clinic-type,
.c-form #specialty {
  font-weight: 500;
  color: #202633;
}
.c-form #clinic-type.is-placeholder,
.c-form #specialty.is-placeholder {
  font-weight: 500;
  color: #bcc3d3;
}
.c-form #clinic-type:hover,
.c-form #clinic-type:focus,
.c-form #clinic-type:focus-visible,
.c-form #specialty:hover,
.c-form #specialty:focus,
.c-form #specialty:focus-visible {
  outline: none;
}
.c-form input[type=text],
.c-form input[type=email],
.c-form input[type=tel] {
  padding: 12px 16px;
}
.c-form input[type=checkbox] {
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  border: 1px solid #D2D1CF;
  accent-color: #FFF;
}
.c-form input[type=checkbox]:hover {
  border-radius: 6px;
  accent-color: #3B3730;
}
.c-form input[type=checkbox]:checked {
  border-radius: 6px;
  accent-color: #25221C;
}
.c-form input.m-error,
.c-form textarea.m-error {
  border-radius: 12px;
  border: 1px solid #FF4C16;
  background: #FFF;
}
.c-form textarea {
  resize: vertical;
  min-height: 120px;
  position: relative;
}
.c-form-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #858585;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-transform: lowercase;
}
.c-form-divider::before, .c-form-divider::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: #EFF0F0;
}
.c-form-divider::before {
  margin-right: 12px;
}
.c-form-divider::after {
  margin-left: 12px;
}
.c-form-group {
  display: flex;
  align-items: stretch;
  gap: 12px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  min-height: 0;
  margin-bottom: 0;
}
@media (width <= 479.98px) {
  .c-form-group {
    flex-direction: row;
    align-items: stretch;
    gap: 12px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    border-radius: 0;
    min-height: 0;
  }
}
.c-form-group__field {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1 1 0;
  min-width: 0;
  padding: 10px 28px;
  border: 1px solid #e7ebf3;
  border-radius: 14px;
  background: #fff;
  transition: border-color 0.2s ease;
}
.c-form-group__field:focus-within {
  border-color: #c7d8ff;
}
@media (width <= 767.98px) {
  .c-form-group__field {
    padding: 0;
    flex: initial;
    width: 100%;
  }
  .c-form-group__field:focus-within {
    border-color: #bfd1fb;
  }
}
.c-form-group__field--city {
  border-left: 1px solid #e7ebf3;
  border-right: 1px solid #e7ebf3;
  z-index: 3;
}
@media (width <= 767.98px) {
  .c-form-group__field--city {
    border: 1px solid #e7ebf3;
  }
}
.c-form-group__label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #788094;
  margin-bottom: 10px;
  line-height: 1.2;
}
.c-form-group__field--name, .c-form-group__field--city {
  flex: 1.05 1 0;
}
.c-form-group__field--name, .c-form-group__field--city, .c-form-group__field--type {
  position: relative;
}
.c-form-group__field--type {
  flex: 1.05 1 0;
}
.c-form-group .c-city-field {
  flex: 1 1 0;
  width: 0;
  min-width: 0;
}
.c-form .c-query-field {
  position: static;
  display: block;
  width: 100%;
  min-width: 0;
}
.c-form .c-clinic-type-field,
.c-form .c-specialty-field {
  position: static;
  display: block;
  width: 100%;
  min-width: 0;
}
.c-form .c-field-clear {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--color-icon-primary);
  cursor: pointer;
  appearance: none;
}
.c-form .c-field-clear[hidden] {
  display: none;
}
.c-form .c-field-clear svg {
  pointer-events: none;
}
.c-form .c-field-clear--clinic-type,
.c-form .c-field-clear--specialty {
  right: 16px;
}
.c-form .c-field-clear--city {
  right: 16px;
}
.c-form .c-field-clear:hover,
.c-form .c-field-clear:focus-visible {
  background: #eaf1ff;
  color: #4f8df4;
  outline: none;
}
.c-form .c-form-group__field--type.is-filled :is(#clinic-type, #specialty) {
  background-image: none;
  padding-right: 34px;
}
.c-form .c-form-group__field--city.is-loading .c-field-clear--city {
  opacity: 0;
  pointer-events: none;
}
.c-form-group #query {
  width: 100%;
  min-width: 0;
  padding-right: 36px;
}
.c-form-group :is(#clinic-type, #specialty) {
  flex: 1 1 auto;
  display: block;
  width: 100%;
  min-width: 0;
  margin: 0;
  font-family: inherit;
}
.c-form .c-city-field {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
}
.c-form .c-city-field__pin {
  display: flex;
  margin-right: 10px;
  color: var(--color-icon-primary);
}
.c-form .c-city-field #city {
  width: 100%;
  flex: 1 1 auto;
  min-width: 0;
}
.c-form .c-city-field__loader {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transform-origin: center;
  width: 16px;
  height: 16px;
  border: 2px solid #d2d1cf;
  border-top-color: #25221C;
  border-radius: 50%;
  animation: city-loader-spin 0.75s linear infinite;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}
.c-form .c-city-field #city.is-loading + .c-city-field__loader {
  opacity: 1;
}
.c-form .c-city-field__suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  box-sizing: border-box;
  z-index: 12;
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-height: 228px;
  padding: 8px;
  border: 1px solid #D2D1CF;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  overflow-y: auto;
}
.c-form .c-city-field__suggestions[hidden] {
  display: none;
}
.c-form .c-city-field__suggestion {
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #25221C;
  text-align: left;
  font-size: 16px;
  line-height: 20px;
  padding: 8px 10px;
  cursor: pointer;
}
.c-form .c-city-field__suggestion:hover,
.c-form .c-city-field__suggestion:focus-visible,
.c-form .c-city-field__suggestion.is-active {
  background: #f4f3f1;
  outline: none;
}
.c-form-group input, .c-form-group select {
  border: none;
  box-shadow: none;
  background: transparent;
  padding: 0;
  height: auto;
  font-size: 22px;
  font-family: inherit;
  line-height: 1.45;
}
.c-form-group input {
  padding-top: 3px;
  padding-bottom: 3px;
}
.c-form-group input:hover, .c-form-group input:focus, .c-form-group select:hover, .c-form-group select:focus {
  border: none;
  outline: none;
}
.c-form-group input[type=text], .c-form-group input[type=email], .c-form-group input[type=tel] {
  padding-left: 0;
  padding-right: 0;
}
.c-form-group :is(#clinic-type, #specialty) {
  background-color: transparent;
  background-image: url("/assets/static/icons/arrow-down.svg");
  background-repeat: no-repeat;
  background-position: right 2px center;
  background-size: 22px 22px;
  padding-right: 34px;
}
.c-form-group #city {
  padding-right: 0;
  background-image: none;
}
.c-form-group #query, .c-form-group #city, .c-form-group :is(#clinic-type, #specialty) {
  color: #202633;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.45;
}
.c-form-group #query::placeholder, .c-form-group #city::placeholder, .c-form-group :is(#clinic-type, #specialty).is-placeholder {
  color: #bcc3d3;
  font-weight: 500;
  opacity: 1;
}
.c-form .button-form {
  flex-shrink: 0;
  align-self: stretch;
  border-radius: 16px;
  height: auto;
  padding: 0 34px;
  gap: 14px;
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  margin-left: 0;
  background: linear-gradient(90deg, #0356d6 0%, #1b64dc 100%);
}
@media (width <= 1023.98px) {
  .c-form .button-form {
    min-width: 240px;
    padding: 0 24px;
    font-size: 18px;
    margin-left: 0;
  }
}
.c-form .button-form svg {
  width: 22px;
  height: 22px;
}
@media (width <= 1023.98px) {
  .c-form-group {
    min-height: 0;
    padding: 0;
    border-radius: 0;
  }
  .c-form-group__field {
    padding: 8px 18px;
  }
  .c-form-group__label {
    font-size: 11px;
    margin-bottom: 8px;
  }
  .c-form-group #query, .c-form-group #city, .c-form-group :is(#clinic-type, #specialty) {
    font-size: 18px;
  }
  .c-form-group :is(#clinic-type, #specialty) {
    background-size: 18px 18px;
    padding-right: 28px;
  }
}
@media (width <= 767.98px) {
  .c-form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
  }
  .c-form-group::before {
    content: none;
  }
  .c-form-group__field {
    flex-direction: column;
    border: 1px solid #e7ebf3;
    border-radius: 16px;
    box-shadow: none;
    background-color: #fff;
    min-height: 82px;
    height: auto;
    justify-content: center;
    padding: 12px 16px;
  }
  .c-form-group__label {
    font-size: 11px;
    margin-bottom: 6px;
  }
  .c-form-group #query {
    border: none;
    box-shadow: none;
    background: transparent;
    height: auto;
    padding: 3px;
    min-width: 0;
    font-size: 18px;
    line-height: 1.45;
    padding-right: 34px;
  }
  .c-form-group .c-city-field {
    width: 100%;
  }
  .c-form-group .c-city-field #city {
    border: 0;
    box-shadow: none;
    background-color: transparent;
    height: auto;
    padding: 3px;
    min-width: 0;
    font-size: 18px;
    line-height: 1.45;
  }
  .c-form-group .c-city-field #city:hover, .c-form-group .c-city-field #city:focus {
    border: 0;
    outline: none;
  }
  .c-form-group :is(#clinic-type, #specialty) {
    height: auto;
    padding: 0;
    padding-right: 28px;
    background-position: right center;
    background-size: 18px 18px;
    font-size: 18px;
    line-height: 1.45;
  }
  .c-form .c-form-group__field--type.is-filled :is(#clinic-type, #specialty) {
    padding-right: 34px;
    background-image: none;
  }
  .c-form .button-form {
    width: 100%;
    min-width: 0;
    min-height: 56px;
    height: 56px;
    margin: 2px 0 0;
    border-radius: 16px;
    font-size: 20px;
    line-height: 1;
    gap: 10px;
    justify-content: center;
    padding: 0 20px;
  }
  .c-form .button-form svg {
    width: 20px;
    height: 20px;
  }
}
.c-form .iti {
  width: 100%;
}
.c-form .iti--separate-dial-code .iti__selected-dial-code {
  font-weight: 700;
}
.c-form .iti__country-list {
  max-height: 240px;
  overflow: auto;
}
.c-form-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 100px 0;
  text-align: center;
}
.c-form-message__icon {
  margin-bottom: 24px;
}
.c-form-message__title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: -0.24px;
  margin-bottom: 8px;
}
.c-form-message__description {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  opacity: 0.4;
}
.c-form-message--below {
  margin: 8px 0 0;
}

.c-form-enquiry {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.c-form-enquiry__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.c-form-enquiry .iti {
  width: 100%;
}
.c-form-enquiry .iti__dropdown-content {
  background: #0d1b2e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.c-form-enquiry .iti__dropdown-content .iti__search-input {
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 8px 12px;
}
.c-form-enquiry .iti__dropdown-content .iti__search-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.c-form-enquiry .iti__dropdown-content .iti__country {
  color: rgba(255, 255, 255, 0.8);
}
.c-form-enquiry .iti__dropdown-content .iti__country:hover, .c-form-enquiry .iti__dropdown-content .iti__country.iti__highlight {
  background: rgba(201, 169, 110, 0.12);
}
.c-form-enquiry .iti__dropdown-content .iti__dial-code {
  color: rgba(255, 255, 255, 0.4);
}
.c-form-enquiry .iti__dropdown-content .iti__divider {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.c-form-enquiry__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}
.c-form-enquiry__checkbox input[type=checkbox] {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 1px;
  accent-color: #c9a96e;
  cursor: pointer;
}
.c-form-enquiry__checkbox a {
  color: #c9a96e;
  text-decoration: none;
}
.c-form-enquiry__checkbox a:hover {
  text-decoration: underline;
}
.c-form-enquiry__field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.c-form-enquiry__field label {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.04em;
}
.c-form-enquiry__field input,
.c-form-enquiry__field select,
.c-form-enquiry__field textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9px;
  padding: 11px 14px;
  font-size: 0.88rem;
  color: #fff;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.c-form-enquiry__field input::placeholder,
.c-form-enquiry__field select::placeholder,
.c-form-enquiry__field textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}
.c-form-enquiry__field input:focus,
.c-form-enquiry__field select:focus,
.c-form-enquiry__field textarea:focus {
  border-color: rgba(201, 169, 110, 0.6);
}
.c-form-enquiry__field select {
  appearance: none;
  cursor: pointer;
  padding-right: 36px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='1.8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
}
.c-form-enquiry__field select option {
  background: #0d1b2e;
}
.c-form-enquiry__field textarea {
  resize: vertical;
  min-height: 88px;
  line-height: 1.5;
}

@media (max-width: 760px) {
  .c-form-enquiry__field input,
  .c-form-enquiry__field select,
  .c-form-enquiry__field textarea {
    font-size: 1rem;
  }
  .c-form-enquiry__row {
    grid-template-columns: 1fr;
  }
}
.b-inquiry {
  position: relative;
  z-index: 2;
}
.b-inquiry-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.b-inquiry-header__image {
  display: flex;
  margin-bottom: 16px;
  justify-content: center;
}
.b-inquiry-header__title {
  color: #000;
  font-variant-numeric: lining-nums;
  font-size: 48px;
  font-weight: 700;
  line-height: 60px;
  margin-bottom: 18px;
}
@media (width <= 1023.98px) {
  .b-inquiry-header__title {
    font-size: 44px;
  }
}
@media (width <= 767.98px) {
  .b-inquiry-header__title {
    font-size: 32px;
    line-height: 40px;
  }
}
.b-inquiry-header__subtitle {
  color: #858585;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 32px;
}
.b-inquiry-footer {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 12px;
}
.b-inquiry-footer__text {
  color: #858585;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: -0.14px;
  margin-bottom: 64px;
}
.b-inquiry-footer__image {
  width: 100%;
  mask-image: linear-gradient(180deg, rgba(217, 217, 217, 0.84) 0%, rgba(217, 217, 217, 0) 100%);
  -webkit-mask-image: linear-gradient(180deg, rgba(217, 217, 217, 0.84) 0%, rgba(217, 217, 217, 0) 100%);
  padding: 0 calc(var(--container-padding-x) * 4);
  max-height: 300px;
}
@media (width <= 767.98px) {
  .b-inquiry-footer__image {
    max-height: 200px;
    padding: 0 calc(var(--container-padding-x) * 2);
  }
}
@media (width <= 479.98px) {
  .b-inquiry-footer__image {
    max-height: 180px;
    padding: 0 calc(var(--container-padding-x));
  }
}
@media (width > 1023.98px) {
  .b-inquiry-footer__image {
    display: none;
  }
}
.b-inquiry-background {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  margin-top: 250px;
  z-index: 1;
}
.b-inquiry-background__footer {
  position: absolute;
  flex-shrink: 0;
  width: 100%;
  height: calc(50% - 200px);
  bottom: 0;
  left: 0;
  background: linear-gradient(0deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}
.b-inquiry-background .cover,
.b-inquiry-background .paper {
  position: absolute;
  display: flex;
  justify-content: space-between;
  width: 100%;
  top: 0;
  left: 0;
}
.b-inquiry-background .cover {
  z-index: 1;
}
.b-inquiry-background .cover .cover-image {
  display: block;
  opacity: 0.5;
  filter: blur(1.8999999762px);
}
.b-inquiry-background .cover .cover-image.m-left {
  align-self: flex-start;
  transition: transform 0.6s ease 0.2s, filter 0.6s ease 0.2s;
  transform: translate(18px, 82px) rotate(-4deg);
}
.b-inquiry-background .cover .cover-image.m-right {
  align-self: flex-start;
  transition: transform 0.6s ease 0.2s, filter 0.6s ease 0.2s;
  transform: translate(45px, 40px) rotate(0deg);
}
.b-inquiry-background .cover .cover-image.m-animation {
  transform: translate(0, 0) rotate(0deg);
  filter: blur(0);
}
.b-inquiry-background .paper {
  z-index: 2;
}
.b-inquiry-background .paper .paper-image {
  display: block;
  filter: blur(3.5px);
}
.b-inquiry-background .paper .paper-image.m-left {
  align-self: flex-start;
  transition: transform 0.6s ease 0.2s, filter 0.6s ease 0.2s;
  transform: translate(-36px, 40px) rotate(8deg);
}
.b-inquiry-background .paper .paper-image.m-animation {
  transform: translate(0, 0) rotate(0deg) !important;
  filter: blur(0);
}
.b-inquiry-background .paper .paper-image.m-right {
  align-self: flex-start;
  transition: transform 0.6s ease 0.2s, filter 0.6s ease 0.2s;
  transform: translate(45px, 40px) rotate(0deg);
}

.c-textarea {
  position: relative;
}
.c-textarea__counter {
  position: absolute;
  right: 17px;
  bottom: 10px;
  color: #A5A29D;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0.14px;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: var(--z-index-overlay);
  display: none;
}
.overlay.m-show {
  display: block;
}

html.is-locked,
body.is-locked {
  overflow: hidden;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(7, 16, 31, 0.82);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.modal-overlay.is-open {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}
.modal-overlay.is-open .modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.modal-overlay .modal {
  position: relative;
  inset: auto;
  display: block;
  background: #0d1b2e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 36px;
  width: 100%;
  max-width: 480px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  transform: translateY(18px) scale(0.98);
  transition: transform 0.28s ease, opacity 0.28s ease;
  opacity: 0;
  z-index: auto;
}
@media (max-width: 520px) {
  .modal-overlay .modal {
    width: 100dvw;
    max-width: none;
    height: 100dvh;
    max-height: none;
    padding: calc(22px + env(safe-area-inset-top)) 20px calc(28px + env(safe-area-inset-bottom));
    border-radius: 0;
    border: none;
  }
}
@media (max-width: 520px) {
  .modal-overlay {
    align-items: stretch;
    justify-content: stretch;
    padding: 0;
  }
  .modal-overlay.is-open .modal {
    transform: translateY(0);
  }
  .modal-overlay .modal {
    transform: translateY(100%);
  }
}

.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1000;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.modal__close:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.modal__label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 6px;
}

.modal__title {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.modal__sub {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 28px;
}

.modal-submit {
  width: 100%;
  padding: 15px 18px;
  background: #c9a96e;
  border: none;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-color-ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s, transform 0.15s;
  margin-top: 6px;
}
.modal-submit:hover {
  background: #d9bc85;
  transform: translateY(-1px);
}

.modal-note {
  font-size: 0.67rem;
  color: rgba(255, 255, 255, 0.25);
  text-align: center;
  margin-top: 10px;
  line-height: 1.55;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  background: rgba(0, 0, 0, 0.5);
  z-index: var(--z-index-modal);
  overflow-y: scroll;
  /* Плаваюча кнопка */
  /* розмір іконки усередині */
}
.modal.m-open {
  display: block;
}
.modal-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 24px;
}
.modal-header__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: -0.48px;
}
.modal-header__subtitle {
  color: #858585;
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
}
.modal-wrapper {
  position: relative;
  max-width: 458px;
  margin: 6vh auto;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
}
@media (width <= 767.98px) {
  .modal-wrapper {
    max-width: none;
    margin: 6vh 16px;
  }
}
.modal-actions {
  position: absolute;
  top: 0px;
  right: -64px;
  z-index: calc(var(--z-index-modal) + 1);
}
@media (width <= 767.98px) {
  .modal-actions {
    position: fixed;
    top: auto;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    /* safe-area для iOS */
  }
  @supports (top: env(safe-area-inset-top)) {
    .modal-actions {
      top: calc(env(safe-area-inset-top) + 16px);
    }
  }
}
.modal-close {
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 120px;
  background: #FCFCFF;
  display: grid;
  place-items: center;
  cursor: pointer;
  line-height: 0;
}
.modal-close:hover {
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.16);
}
.modal-close img, .modal-close svg {
  width: 36px;
  height: 36px;
  pointer-events: none;
}

.pkg-enquiry-toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: #1a1a1a;
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.pkg-enquiry-toast svg {
  color: #c9a96e;
  flex-shrink: 0;
}
.pkg-enquiry-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
@media (max-width: 480px) {
  .pkg-enquiry-toast {
    white-space: normal;
    max-width: calc(100vw - 32px);
    text-align: center;
  }
}

.top-button {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: none;
  width: 48px;
  height: 48px;
  padding: 14px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  border-radius: 120px;
  background: var(--ci-accent, #c9a96e);
  box-shadow: 0 8px 23.8px 0 rgba(28, 20, 11, 0.09);
  z-index: 25;
  border: 0;
  outline: 0;
  color: var(--ci-black, #111);
  transition: background-color 0.2s var(--ci-ease-out, ease), color 0.2s var(--ci-ease-out, ease), box-shadow 0.2s var(--ci-ease-out, ease), transform 0.2s var(--ci-ease-out, ease);
}
.top-button::before {
  content: "";
  width: 20px;
  height: 20px;
  background-color: currentColor;
  mask: url("/assets/static/icons/arrow-up.svg") center/contain no-repeat;
  -webkit-mask: url("/assets/static/icons/arrow-up.svg") center/contain no-repeat;
}
.top-button:hover {
  background: #d7b56d;
  color: var(--ci-black, #111);
  box-shadow: 0 12px 28px rgba(201, 169, 110, 0.26);
  transform: translateY(-2px);
}
.top-button:focus-visible {
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.32);
}
.top-button.m-active {
  display: flex;
}
@media (width <= 1023.98px) {
  .top-button {
    right: 18px;
    bottom: 88px;
  }
}
@media (width <= 479.98px) {
  .top-button {
    right: 16px;
    bottom: 96px;
    width: 44px;
    height: 44px;
    padding: 12px;
  }
}

.c-breadcrumb {
  display: flex;
  align-items: center;
}
.c-breadcrumb__link {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0%;
  text-decoration: none;
}
.c-breadcrumb__link.m-active {
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0%;
}
.c-breadcrumb a.c-breadcrumb__link {
  text-decoration-line: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  text-decoration-thickness: from-font;
  transition: text-decoration-color 0.25s ease;
}
@media (any-hover: hover) {
  .c-breadcrumb a.c-breadcrumb__link:hover {
    text-decoration-color: #000;
  }
}
.c-breadcrumb a.c-breadcrumb__link:focus-visible {
  text-decoration-color: #000;
}
@media (prefers-reduced-motion: reduce) {
  .c-breadcrumb a.c-breadcrumb__link {
    transition: none;
  }
}
.c-breadcrumb__separator {
  margin: 0 10px;
  display: inline-flex;
  align-items: center;
  color: var(--color-grey-30);
}
.c-breadcrumb__icon {
  display: block;
}

.c-search__header {
  font-weight: 700;
  font-size: 28px;
  line-height: 100%;
  letter-spacing: 0%;
}
.c-search__count {
  color: #919194;
}

.c-care-services__loading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: #4f4f57;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
}

.c-care-services__loading-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid #d8e4f8;
  border-top-color: var(--color-blue);
  border-radius: 50%;
  animation: c-care-services-spin 0.8s linear infinite;
}

[data-care-services].is-loading [data-care-list],
[data-care-services].is-loading [data-care-pagination] {
  opacity: 0.45;
  pointer-events: none;
}

@keyframes c-care-services-spin {
  to {
    transform: rotate(360deg);
  }
}
.c-care-services__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.c-care-services__pagination--desktop {
  flex-direction: row;
  flex-wrap: wrap;
}

.c-care-services__pagination--mobile {
  display: none;
  flex-direction: column;
}

.c-care-services__load-progress {
  color: #6f6f76;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}

.c-care-services__load-more {
  width: auto;
  min-width: 180px;
}

@media (width <= 767.98px) {
  .c-care-services__pagination--desktop {
    display: none;
  }
  .c-care-services__pagination--mobile {
    display: flex;
  }
}
@media (width <= 479.98px) {
  .c-care-services__load-progress {
    font-size: 13px;
  }
  .c-care-services__load-more {
    width: 100%;
  }
}
.home-page {
  min-height: 100vh;
  background: var(--color-ink);
}

.hero {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 120px var(--container-padding-x) 40px;
  text-align: left;
  overflow: visible;
  background: linear-gradient(90deg, rgba(5, 32, 60, 0.96), rgba(5, 32, 60, 0.88)), url("https://images.pexels.com/photos/8460157/pexels-photo-8460157.jpeg?auto=compress&cs=tinysrgb&w=1800&h=1100&fit=crop") center/cover no-repeat;
}
.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1180px;
}
.hero__search {
  width: 100%;
}
.hero__title {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.hero__title-main {
  color: #fff;
}
.hero__sub {
  font-size: 1rem;
  color: #fff;
  line-height: 1.65;
  margin: 0 0 32px;
}

.hs-tabs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin-bottom: 90px;
  position: relative;
  z-index: 1;
}

.hs-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.55);
  background: transparent;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.hs-tab svg {
  display: block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 1;
}
.hs-tab:hover {
  border-color: rgba(255, 255, 255, 0.9);
}
.hs-tab:focus-visible {
  outline: 3px solid rgba(0, 166, 152, 0.75);
  outline-offset: 2px;
}
.hs-tab.is-active {
  background: #fff;
  color: #05203c;
  border-color: #fff;
}
.hs-tab.is-active svg {
  opacity: 1;
}

.hs-card {
  width: 100%;
  background: transparent;
  border-radius: 0 16px 0 0;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.55);
  overflow: visible;
}

.hs-fields {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  align-items: stretch;
  gap: 8px;
  border-radius: 12px;
}

.hs-field {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 19px 22px 17px;
  background: #fff;
  border: 4px solid #fff;
  border-radius: 0;
  cursor: text;
  transition: background 0.15s, box-shadow 0.15s;
}
.hs-field:hover {
  background: #f9f9f9;
}
.hs-field:focus-within {
  box-shadow: inset 0 0 0 4px #0257da;
}
.hs-field.is-invalid {
  border-color: #d84040;
  background: #fff5f5;
  box-shadow: inset 0 0 0 2px rgba(216, 64, 64, 0.32);
}
.hs-field__label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 5px;
}
.hs-field__input {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.hs-field__input svg {
  width: 15px;
  height: 15px;
  color: #6b7280;
  flex-shrink: 0;
  stroke-width: 2.1px;
}
.hs-field__input input,
.hs-field__input select {
  font: 500 0.95rem/1.3 inherit;
  color: #111;
  background: transparent;
  border: none;
  outline: none;
  width: 100%;
  min-width: 0;
  -webkit-appearance: none;
}
.hs-field__input input {
  padding-right: 30px;
}
.hs-field__input input::placeholder {
  color: #6b7280;
  font-weight: 500;
  font-size: 1rem;
}
.hs-field__input select {
  color: #ccc;
  cursor: pointer;
}
.hs-field__input select.has-val {
  color: #111;
}

.hs-clear {
  position: absolute;
  top: 50%;
  right: 18px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #0257da;
  cursor: pointer;
  transform: translateY(-50%);
}

.hs-clear[hidden] {
  display: none;
}

.hs-clear svg {
  width: 18px;
  height: 18px;
}

.hs-clear:hover,
.hs-clear:focus-visible {
  color: #034dbf;
  outline: none;
}

.hs-mobile-modal-close {
  display: none;
}

.hs-mobile-modal-header {
  display: none;
}

.hs-mobile-modal-title {
  display: none;
}

.hs-mobile-modal-divider {
  display: none;
}

.hs-duration-native {
  display: none;
}

.hs-duration-dropdown {
  position: relative;
  width: 100%;
}

.hs-duration-dropdown__trigger {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: #ccc;
  font: 500 0.95rem/1.3 inherit;
  text-align: left;
  cursor: pointer;
}

.hs-field.has-duration .hs-duration-dropdown__trigger {
  color: #111;
}

.hs-duration-dropdown__list {
  position: absolute;
  z-index: 30;
  top: calc(100% + 24px);
  right: 0;
  left: 0;
  display: grid;
  gap: 2px;
  min-width: 190px;
  padding: 6px;
  border: 1px solid rgba(5, 32, 60, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(5, 32, 60, 0.14);
}

.hs-duration-dropdown__list[hidden] {
  display: none;
}

.hs-duration-dropdown__item {
  width: 100%;
  padding: 10px 12px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #111;
  font: 600 0.9rem/1.3 inherit;
  text-align: left;
  cursor: pointer;
}

.hs-duration-dropdown__item:hover,
.hs-duration-dropdown__item:focus-visible {
  background: #f5f7fb;
  outline: none;
}

.hs-field:first-of-type {
  border-radius: 12px 0 0 12px;
}

#hs-form.is-clinic-mode .hs-field--clinic-name {
  order: -1;
  border-radius: 12px 0 0 12px;
}

#hs-form.is-clinic-mode .hs-field:first-of-type {
  border-radius: 0;
}

.hs-suggestions {
  position: absolute;
  z-index: 30;
  top: calc(100% + 6px);
  right: auto;
  left: 0;
  width: min(420px, 100vw - 32px);
  display: grid;
  gap: 2px;
  padding: 6px;
  border: 1px solid rgba(5, 32, 60, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(5, 32, 60, 0.14);
}

.hs-suggestions[hidden] {
  display: none;
}

.hs-suggestions__item {
  width: 100%;
  padding: 10px 12px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #111;
  font: 600 0.9rem/1.3 inherit;
  text-align: left;
  cursor: pointer;
}

.hs-suggestions__item:hover,
.hs-suggestions__item:focus-visible,
.hs-suggestions__item.is-active {
  background: #f5f7fb;
  outline: none;
}

.hs-field .c-city-field__suggestions {
  position: absolute;
  z-index: 30;
  top: calc(100% + 14px);
  right: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-height: 228px;
  padding: 6px;
  border: 1px solid rgba(5, 32, 60, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(5, 32, 60, 0.14);
  overflow-y: auto;
}

.hs-field .c-city-field__suggestions[hidden] {
  display: none;
}

.hs-field .c-city-field__suggestion {
  width: 100%;
  padding: 10px 12px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #111;
  font: 600 0.9rem/1.3 inherit;
  text-align: left;
  cursor: pointer;
}

.hs-field .c-city-field__suggestion:hover,
.hs-field .c-city-field__suggestion:focus-visible,
.hs-field .c-city-field__suggestion.is-active {
  background: #f5f7fb;
  outline: none;
}

.hs-sep {
  width: 1px;
  background: #efefef;
  margin: 14px 0;
  display: none;
}

.hs-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 30px;
  background: #0257da;
  color: #fff;
  font: 700 0.92rem/1 inherit;
  border: none;
  cursor: pointer;
  border-radius: 0 8px 8px 0;
  white-space: nowrap;
  transition: background 0.2s;
}
.hs-submit svg {
  width: 18px;
  height: 18px;
}
.hs-submit:hover {
  background: #0463f3;
}

.hs-includes {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-top: 0;
  background: transparent;
  flex-wrap: wrap;
}
.hs-includes__label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 4px;
  color: #677384;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hs-includes__sep {
  width: 1px;
  height: 16px;
  background: #e8e8e8;
}

.hs-package-filter {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hs-package-filter__label {
  color: #777;
  font-size: 0.78rem;
  font-weight: 700;
}

.hs-package-filter__select {
  min-height: 31px;
  padding: 5px 30px 5px 12px;
  border: 1.5px solid #e0e0e0;
  border-radius: 999px;
  background: #fff;
  color: #333;
  font-size: 0.78rem;
  font-weight: 700;
}

.hs-include {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 750;
  color: #334155;
  border: 1px solid rgba(5, 32, 60, 0.12);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 1px 2px rgba(5, 32, 60, 0.04);
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s, color 0.18s, box-shadow 0.18s;
  user-select: none;
}
.hs-include svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}
.hs-include:hover {
  border-color: rgba(2, 87, 218, 0.38);
  color: #0257da;
  background: #fff;
}
.hs-include input[type=checkbox] {
  display: none;
}
.hs-include.is-on {
  background: #0257da;
  border-color: #0257da;
  color: #fff;
  box-shadow: 0 8px 18px rgba(2, 87, 218, 0.18);
}
.hs-include__check {
  display: none;
}
.hs-include__plus {
  display: block;
}
.hs-include.is-on .hs-include__check {
  display: block;
}
.hs-include.is-on .hs-include__plus {
  display: none;
}

@media (max-width: 760px) {
  .hs-includes {
    align-items: flex-start;
    gap: 7px;
    padding: 10px 12px 12px;
  }
  .hs-includes__label {
    width: 100%;
    min-height: auto;
    padding: 0;
  }
  .hs-include {
    flex: 1 1 auto;
    justify-content: center;
    min-width: calc(50% - 7px);
  }
}
.hs-powered {
  margin-top: 16px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.62);
  text-align: right;
}
.hs-powered a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}
.hs-powered a:hover {
  text-decoration: underline;
}

.hs-trust {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.hs-trust__item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
}
.hs-trust__item svg {
  width: 15px;
  height: 15px;
  stroke: rgba(255, 255, 255, 0.25);
}
.hs-trust__item strong {
  color: rgba(255, 255, 255, 0.55);
}

.b-section {
  background: #fff;
  color: #07101f;
  padding: 60px var(--container-padding-x);
}
.b-section.m-packages {
  padding-bottom: 54px;
}
.b-section.m-partners {
  background: #f7f9fc;
  padding-top: 68px;
  padding-bottom: 88px;
}
.b-section.m-map {
  padding-top: 54px;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
}

.m-packages {
  display: block;
}
.m-packages .home-packages__inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}
.m-packages .home-packages__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}
.m-packages .home-packages__title {
  margin: 0;
  color: #07101f;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.2;
}
.m-packages .home-packages__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #0257da;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}
.m-packages .home-packages__link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.m-packages .home-packages__link:hover, .m-packages .home-packages__link:focus-visible {
  text-decoration: underline;
}
.m-packages .home-packages__carousel {
  margin-inline: calc(var(--container-padding-x) * -1);
  padding: 2px var(--container-padding-x) 28px;
  overflow: hidden;
}
.m-packages .home-packages__wrapper {
  display: flex;
  gap: 0;
}
.m-packages .home-packages__pagination {
  display: block;
  position: relative;
  bottom: auto;
  margin-top: 18px;
}
.m-packages .home-packages__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(7, 16, 31, 0.2);
  opacity: 1;
}
.m-packages .home-packages__pagination .swiper-pagination-bullet-active {
  background: #0257da;
}
.m-packages .home-package-card {
  display: flex;
  flex-direction: column;
  min-height: 392px;
  color: #07101f;
  background: #fff;
  border: 1px solid rgba(7, 16, 31, 0.1);
  border-radius: 16px;
  box-shadow: 0 10px 34px rgba(7, 16, 31, 0.08);
  overflow: visible;
  text-decoration: none;
  scroll-snap-align: start;
}
.m-packages .home-package-card__image {
  position: relative;
  height: 180px;
  flex-shrink: 0;
  background: #e8edf5;
  overflow: hidden;
}
.m-packages .home-package-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.m-packages .home-package-card__categories {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  max-width: calc(100% - 24px);
}
.m-packages .home-package-card__category {
  padding: 4px 10px;
  color: #c9a96e;
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(201, 169, 110, 0.32);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}
.m-packages .home-package-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px 18px 20px;
}
.m-packages .home-package-card__title {
  margin: 0 0 8px;
  color: #07101f;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.28;
}
.m-packages .home-package-card__text {
  display: -webkit-box;
  margin: 0 0 16px;
  color: rgba(7, 16, 31, 0.58);
  font-size: 0.84rem;
  line-height: 1.5;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.m-packages .home-package-card__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: auto;
  color: rgba(7, 16, 31, 0.48);
  font-size: 0.76rem;
  font-weight: 600;
}
.m-packages .home-package-card__meta span {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 5px;
}
.m-packages .home-package-card__meta svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  color: #c9a96e;
}

.m-partners .home-partners__inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}
.m-partners .home-partners__title {
  margin: 0 0 24px;
  color: #07101f;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.2;
}
.m-partners .home-partners__logos {
  width: 100%;
  padding: 4px 2px 34px;
  overflow: hidden;
}
.m-partners .home-partners__wrapper {
  align-items: stretch;
}
.m-partners .home-partners__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  aspect-ratio: 3/2;
  padding: 24px 18px;
  border: 1px solid var(--partner-border-color, rgba(7, 16, 31, 0.1));
  border-radius: 14px;
  background: var(--partner-bg, #fff);
  box-shadow: 0 10px 30px rgba(7, 16, 31, 0.06);
  color: var(--partner-color, #07101f);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.m-partners .home-partners__logo.swiper-slide {
  height: auto;
}
.m-partners .home-partners__logo:hover,
.m-partners .home-partners__logo:focus-visible {
  border-color: var(--partner-hover-border-color, rgba(2, 87, 218, 0.28));
  outline: none;
  transform: translateY(-2px);
}
.m-partners .home-partners__image {
  display: block;
  width: min(156px, 100%);
  height: 66px;
  flex-shrink: 0;
  object-fit: contain;
}
.m-partners .home-partners__name {
  display: block;
}
.m-partners .home-partners__pagination {
  display: block;
  position: absolute;
  bottom: 0;
}
.m-partners .home-partners__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(7, 16, 31, 0.2);
  opacity: 1;
}
.m-partners .home-partners__pagination .swiper-pagination-bullet-active {
  background: #0257da;
}

@media (max-width: 767.98px) {
  .b-section {
    padding-top: 44px;
    padding-bottom: 44px;
  }
  .b-section.m-packages {
    padding-bottom: 48px;
  }
  .b-section.m-partners {
    padding-top: 56px;
    padding-bottom: 68px;
  }
  .b-section.m-map {
    padding-top: 48px;
    padding-bottom: 56px;
  }
  .m-partners .home-partners__logos {
    padding-bottom: 32px;
  }
  .m-partners .home-partners__logo {
    padding: 20px 14px;
    font-size: 0.82rem;
  }
  .m-partners .home-partners__image {
    height: 58px;
  }
}
.home-map__inner {
  width: 100%;
  max-width: none;
  margin: 0 auto;
}
.home-map__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, 100% - var(--container-padding-x) * 2);
  margin-inline: auto;
  margin-bottom: 26px;
}
.home-map__title {
  margin: 0;
  color: #07101f;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.2;
}
.home-map__address {
  margin: 0;
  color: rgba(7, 16, 31, 0.58);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: right;
}
.home-map__frame {
  position: relative;
  width: var(--100vw);
  margin-inline: calc(50% - var(--100vw) / 2);
  aspect-ratio: 16/7;
  min-height: 520px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: #e8edf5;
}
.home-map__frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
}

@media (max-width: 767.98px) {
  .home-map__header {
    width: auto;
    margin-inline: var(--container-padding-x);
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .home-map__address {
    text-align: left;
  }
  .home-map__frame {
    aspect-ratio: 1/1;
    min-height: auto;
  }
  .home-map__frame iframe {
    height: 320px;
    min-height: 320px;
  }
}
@media (max-width: 760px) {
  body.has-hs-mobile-modal {
    overflow: hidden;
  }
  body.has-hs-mobile-modal .hero,
  body.has-hs-mobile-modal .hero__inner,
  body.has-hs-mobile-modal .hero__search,
  body.has-hs-mobile-modal .hs-card,
  body.has-hs-mobile-modal #hs-form,
  body.has-hs-mobile-modal .hs-fields {
    position: relative;
    z-index: 2147483646;
    overflow: visible;
  }
  body.has-hs-mobile-modal .site-header {
    visibility: hidden;
    pointer-events: none;
  }
  .hs-fields {
    grid-template-columns: 1fr;
    border-radius: 12px;
    overflow: visible;
  }
  .hs-sep {
    display: none;
  }
  .hs-field {
    justify-content: center;
    min-height: 56px;
    padding: 0 22px;
    border-bottom: 1px solid #f2f2f2;
    border-radius: 0;
  }
  .hs-field.is-invalid {
    border-color: #d84040;
    background: #fff5f5;
  }
  .hs-field__label {
    display: none;
  }
  .hs-field__input {
    position: relative;
    min-height: 100%;
  }
  .hs-field__input svg {
    width: 20px;
    height: 20px;
    color: #5f6875;
    stroke-width: 2.2px;
  }
  .hs-field__input input,
  .hs-field__input select {
    font-size: 1rem;
  }
  .hs-field__input input::placeholder {
    color: #5f6875;
    font-weight: 500;
    font-size: 1rem;
  }
  .hs-field[data-mobile-placeholder]:not(.is-mobile-modal):has(input:placeholder-shown)::after {
    content: attr(data-mobile-placeholder);
    position: absolute;
    inset: 0 54px 0 50px;
    z-index: 2;
    display: flex;
    align-items: center;
    color: #5f6875;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
    pointer-events: none;
  }
  .hs-field[data-mobile-placeholder]:not(.is-mobile-modal):has(input:placeholder-shown) input::placeholder {
    color: transparent;
  }
  .hs-field[data-mobile-placeholder]:not(.is-mobile-modal):has(input:placeholder-shown) input {
    color: transparent;
  }
  .hs-field:first-of-type {
    border-radius: 12px 12px 0 0;
  }
  #hs-form.is-clinic-mode .hs-field--clinic-name {
    border-radius: 12px 12px 0 0;
  }
  .hs-field.c-city-field {
    border-radius: 0 0 12px 12px;
  }
  .hs-submit {
    margin-top: 18px;
    padding: 18px 15px;
    border-radius: 12px;
    justify-content: center;
  }
  .hs-field.is-mobile-modal {
    position: fixed;
    inset: 0;
    z-index: 2147483647;
    isolation: isolate;
    display: block;
    width: 100vw;
    height: 100dvh;
    min-height: 100dvh;
    padding: 28px clamp(24px, 7vw, 54px) 28px;
    border: 0;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
    cursor: auto;
    overflow-y: auto;
  }
  body.has-hs-mobile-modal .hs-field.c-city-field.is-mobile-modal {
    z-index: 2147483647;
  }
  body.has-hs-mobile-modal .hs-field.hs-field--clinic-name.is-mobile-modal {
    border-radius: 0;
  }
  body.has-hs-mobile-modal #hs-form.is-clinic-mode .hs-field.hs-field--clinic-name.is-mobile-modal {
    border-radius: 0;
  }
  .search-page {
    background: #f6f8fb;
  }
  .search-page__main {
    padding: 112px 0 72px;
  }
  .search-page__search-bar {
    position: sticky;
    top: 74px;
    z-index: 8;
    padding: 14px 0;
    border-bottom: 1px solid rgba(7, 16, 31, 0.09);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(6px);
  }
  .search-page__search-grid {
    display: block;
  }
  .search-page__summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
    gap: 10px;
    align-items: stretch;
  }
  .search-page__summary-pill {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 4px;
    min-height: 72px;
    padding: 14px 18px;
    border: 1px solid rgba(7, 16, 31, 0.12);
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    text-align: left;
  }
  .search-page__editor {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) auto auto;
    gap: 10px;
    align-items: stretch;
  }
  .search-page__editor[hidden] {
    display: none;
  }
  .search-page__search-grid.is-editing .search-page__summary {
    display: none;
  }
  .search-page__field {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    min-height: 72px;
    padding: 14px 18px;
    border: 1px solid rgba(7, 16, 31, 0.12);
    border-radius: 10px;
    background: #fff;
  }
  .search-page__field-label {
    color: rgba(7, 16, 31, 0.52);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
  }
  .search-page__field-value {
    color: #07101f;
    font-size: 1.15rem;
    font-weight: 700;
  }
  .search-page__action {
    min-width: 170px;
    min-height: 72px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 10px;
    background: #0257da;
    color: #fff;
    font-size: 1.08rem;
    font-weight: 800;
    cursor: pointer;
  }
  .search-page__action--ghost {
    border: 1px solid rgba(7, 16, 31, 0.2);
    background: #fff;
    color: #07101f;
  }
  .search-page__input {
    width: 100%;
    border: 0;
    outline: none;
    padding: 0;
    background: transparent;
    color: #07101f;
    font-size: 1.15rem;
    font-weight: 700;
  }
  .search-page__input.is-invalid {
    color: #c5221f;
  }
  .search-page__title {
    margin: 0 0 16px;
    color: #07101f;
    font-size: 1.35rem;
    font-weight: 800;
  }
  .search-page__results-shell {
    display: grid;
    grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
    gap: 18px;
    margin-top: 22px;
  }
  .search-page__filters {
    align-self: start;
    position: sticky;
    top: 160px;
    padding: 16px;
    border: 1px solid rgba(7, 16, 31, 0.1);
    border-radius: 14px;
    background: #fff;
  }
  .search-page__filters.is-loading {
    pointer-events: none;
  }
  .search-page__filters.is-loading::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.6);
    z-index: 10;
  }
  .search-page__filters-title {
    margin: 0 0 14px;
    color: #07101f;
    font-size: 1rem;
    font-weight: 800;
  }
  .search-page__filter + .search-page__filter {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(7, 16, 31, 0.08);
  }
  .search-page__filter-label {
    margin: 0 0 8px;
    color: rgba(7, 16, 31, 0.72);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
  }
  .search-page__check {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #07101f;
    font-size: 0.9rem;
    font-weight: 500;
  }
  .search-page__check + .search-page__check {
    margin-top: 7px;
  }
  .search-page__range {
    height: 6px;
    border-radius: 100px;
    background: linear-gradient(90deg, #0257da 0%, #7cb0ff 100%);
  }
  .search-page__range-scale {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    color: rgba(7, 16, 31, 0.56);
    font-size: 0.76rem;
    font-weight: 700;
  }
  .search-page__results-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
  }
  .search-page__sort {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(7, 16, 31, 0.66);
    font-size: 0.88rem;
    font-weight: 700;
  }
  .search-page__sort select {
    min-width: 168px;
    height: 42px;
    padding: 0 36px 0 14px;
    border: 1px solid rgba(7, 16, 31, 0.12);
    border-radius: 12px;
    background-color: #fff;
    color: #07101f;
    font: inherit;
    font-weight: 800;
  }
  .search-page__result-card {
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr) 120px;
    gap: 16px;
    align-items: center;
    margin-top: 12px;
    padding: 14px;
    border: 1px solid rgba(7, 16, 31, 0.1);
    border-radius: 14px;
    background: #fff;
  }
  .search-page__result-logo {
    width: 84px;
    height: 84px;
    border-radius: 10px;
    background: #e9edf4;
  }
  .search-page__line {
    height: 10px;
    border-radius: 100px;
    background: #e7ebf2;
  }
  .search-page__line + .search-page__line {
    margin-top: 8px;
  }
  .search-page__line--lg {
    width: 88%;
  }
  .search-page__line--md {
    width: 62%;
  }
  .search-page__line--sm {
    width: 42%;
  }
  .search-page__line--xs {
    width: 100%;
  }
  .search-page__empty {
    min-height: 260px;
    margin-top: 12px;
    padding: 42px 28px;
    border: 1px solid rgba(7, 16, 31, 0.1);
    border-radius: 14px;
    background: #fff;
  }
  .search-page__empty {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .search-page__empty[hidden] {
    display: none !important;
  }
  .search-page__empty-title {
    margin: 0 0 8px;
    color: #07101f;
    font-size: 1.05rem;
    font-weight: 800;
  }
  .search-page__empty-text {
    margin: 0;
    color: rgba(7, 16, 31, 0.6);
    font-size: 0.95rem;
    font-weight: 500;
  }
  .search-page__list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 18px;
  }
  .search-page__clinic-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 100%;
    padding: 0;
    border: 1px solid rgba(7, 16, 31, 0.1);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(7, 16, 31, 0.12);
  }
  .search-page__clinic-media {
    display: grid;
    place-items: center;
    width: 100%;
    height: auto;
    aspect-ratio: 16/7;
    overflow: hidden;
    border-radius: 0;
    background: linear-gradient(135deg, #e8edf5 0%, #f5f7fb 100%);
    color: #07101f;
    font-size: 2rem;
    font-weight: 800;
  }
  .search-page__clinic-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .search-page__clinic-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px 24px 0;
  }
  .search-page__clinic-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
  }
  .search-page__clinic-name {
    margin: 0;
    color: #07101f;
    font-size: 1.5rem;
    font-weight: 850;
    line-height: 1.15;
  }
  .search-page__accreditation {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 1;
    padding: 7px 10px;
    border-radius: 999px;
    background: #3159dd;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 850;
    line-height: 1;
    box-shadow: 0 8px 20px rgba(7, 16, 31, 0.18);
  }
  .search-page__clinic-address,
  .search-page__clinic-accreditations {
    margin: 10px 0 0;
    color: rgba(7, 16, 31, 0.64);
    font-size: 0.98rem;
    font-weight: 550;
    line-height: 1.4;
  }
  .search-page__clinic-accreditations {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: flex-start;
    gap: 7px;
  }
  .search-page__clinic-accreditations span {
    padding: 6px 9px;
    border-radius: 999px;
    background: rgba(49, 89, 221, 0.1);
    color: #1746d1;
    font-size: 0.74rem;
    font-weight: 850;
    line-height: 1;
  }
  .search-page__clinic-contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin-top: 16px;
  }
  .search-page__clinic-contacts a {
    color: #0257da;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
  }
  .search-page__clinic-contacts a:hover,
  .search-page__clinic-contacts a:focus-visible {
    text-decoration: underline;
  }
  .search-page__clinic-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 22px -24px 0;
    padding: 18px 24px;
    border-top: 1px solid rgba(7, 16, 31, 0.12);
    color: #07101f;
    font-size: 0.98rem;
    font-weight: 850;
  }
}
@media (max-width: 760px) and (max-width: 1023.98px) {
  .search-page__search-grid {
    display: block;
  }
  .search-page__summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .search-page__editor {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .search-page__action {
    min-height: 64px;
  }
  .search-page__results-shell {
    grid-template-columns: minmax(0, 1fr);
  }
  .search-page__filters {
    position: static;
  }
}
@media (max-width: 760px) and (max-width: 767.98px) {
  .search-page__main {
    padding-top: 96px;
    padding-bottom: 52px;
  }
  .search-page__search-bar {
    top: 62px;
    padding: 10px 0;
  }
  .search-page__search-grid {
    display: block;
  }
  .search-page__summary {
    grid-template-columns: minmax(0, 1fr);
  }
  .search-page__editor {
    grid-template-columns: minmax(0, 1fr);
  }
  .search-page__field {
    min-height: 62px;
    padding: 12px 14px;
  }
  .search-page__results-top {
    align-items: flex-start;
    flex-direction: column;
  }
  .search-page__result-card {
    grid-template-columns: 56px minmax(0, 1fr);
  }
  .search-page__clinic-card {
    border-radius: 14px;
  }
  .search-page__clinic-media {
    width: 100%;
    height: auto;
  }
  .search-page__clinic-header {
    flex-direction: column;
    gap: 8px;
  }
  .search-page__clinic-body {
    padding: 18px 18px 0;
  }
  .search-page__clinic-name {
    font-size: 1.28rem;
  }
  .search-page__clinic-footer {
    margin-right: -18px;
    margin-left: -18px;
    padding: 16px 18px;
  }
  .search-page__result-side {
    display: none;
  }
  .search-page__result-logo {
    width: 56px;
    height: 56px;
  }
  .search-page__empty {
    min-height: 260px;
    padding: 28px 18px;
  }
}
@media (max-width: 760px) {
  .hs-field.is-mobile-modal:hover,
  .hs-field.is-mobile-modal:focus-within {
    background: #fff;
    box-shadow: none;
  }
  .hs-field.is-mobile-modal .hs-mobile-modal-header {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 44px;
    margin: 0 0 28px;
  }
  .hs-field.is-mobile-modal .hs-mobile-modal-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    width: 44px;
    height: 44px;
    min-height: 44px;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: #111;
    cursor: pointer;
  }
  .hs-field.is-mobile-modal .hs-mobile-modal-close::before {
    content: "";
    width: 13px;
    height: 13px;
    border-bottom: 3px solid currentColor;
    border-left: 3px solid currentColor;
    transform: rotate(45deg);
  }
  .hs-field.is-mobile-modal .hs-mobile-modal-close::after {
    content: "";
    position: absolute;
    left: 16px;
    width: 20px;
    height: 3px;
    border-radius: 999px;
    background: currentColor;
  }
  .hs-field.is-mobile-modal .hs-mobile-modal-title {
    display: block;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0 52px;
    color: #111;
    font-size: clamp(0.75rem, 4.5vw, 1.9rem);
    font-weight: 800;
    line-height: 1.15;
    text-align: center;
  }
  .hs-field.is-mobile-modal .hs-field__label {
    display: none;
  }
  .hs-field.is-mobile-modal .hs-field__input {
    min-height: 64px;
    padding: 0 54px 0 18px;
    border: 2px solid transparent;
    border-radius: 12px;
    background: #edf2f8;
  }
  .hs-field.is-mobile-modal .hs-field__input:focus-within {
    border-color: #0257da;
  }
  .hs-field.is-mobile-modal .hs-mobile-modal-divider {
    display: block;
    width: calc(100% + clamp(24px, 7vw, 54px) * 2);
    height: 1px;
    margin: 24px calc(clamp(24px, 7vw, 54px) * -1) 0;
    background: rgba(5, 32, 60, 0.18);
  }
  .hs-field.is-mobile-modal .hs-field__input::before {
    content: none;
  }
  .hs-field.is-mobile-modal .hs-field__input svg {
    display: none;
  }
  .hs-field.is-mobile-modal .hs-field__input input,
  .hs-field.is-mobile-modal .hs-duration-dropdown__trigger {
    font-size: 16px;
    font-weight: 500;
  }
  .hs-field.is-mobile-modal .hs-clear {
    top: 50%;
    right: 18px;
  }
  .hs-field.is-mobile-modal .hs-suggestions,
  .hs-field.is-mobile-modal .c-city-field__suggestions,
  .hs-field.is-mobile-modal .hs-duration-dropdown__list {
    position: static;
    width: 100%;
    max-height: none;
    margin-top: 22px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
    overflow: visible;
  }
  .hs-field.is-mobile-modal .hs-suggestions__item,
  .hs-field.is-mobile-modal .c-city-field__suggestion,
  .hs-field.is-mobile-modal .hs-duration-dropdown__item {
    min-height: 52px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(5, 32, 60, 0.1);
    border-radius: 0;
    color: #05203c;
    font-size: 1rem;
  }
  .hs-card {
    border-radius: 0;
  }
  .hs-tabs {
    width: 100%;
    margin-bottom: 50px;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }
  .hs-tab {
    flex: 0 0 auto;
    min-height: 40px;
    padding: 8px 14px;
    font-size: 0.86rem;
  }
}
@media (max-width: 480px) {
  .hero__title {
    font-size: 2rem;
  }
  .hs-trust {
    gap: 14px;
  }
}
/* Global styles for search results page */
body.search-page {
  background: #f6f8fb;
}

body.search-page .search-page__main {
  padding: 112px 0 72px;
  background: #f6f8fb;
}

body.search-page .search-page__search-bar {
  position: sticky;
  top: 74px;
  z-index: 8;
  padding: 14px 0;
  border-bottom: 0;
  background: #07101f;
  backdrop-filter: none;
  box-shadow: 0 -140px 0 140px #07101f;
}

body.search-page .site-header {
  background: #07101f;
}

body.search-page .search-page__search-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 10px;
  align-items: stretch;
}
body.search-page .search-page__field {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  min-height: 60px;
  padding: 10px 14px;
  border: 1px solid rgba(7, 16, 31, 0.12);
  border-radius: 10px;
  background: #fff;
}
body.search-page .search-page__field-label {
  color: rgba(7, 16, 31, 0.52);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}
body.search-page .search-page__field-value {
  color: #07101f;
  font-size: 0.98rem;
  font-weight: 700;
}
body.search-page .search-page__action {
  min-width: 132px;
  border: 0;
  border-radius: 10px;
  background: #0257da;
  color: #fff;
  font-size: 0.96rem;
  font-weight: 800;
  cursor: pointer;
}
body.search-page .search-page__results-shell {
  display: grid;
  grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
  gap: 18px;
  margin-top: 22px;
}
body.search-page .search-page__filters {
  align-self: start;
  position: sticky;
  top: 160px;
  padding: 16px;
  border: 1px solid rgba(7, 16, 31, 0.1);
  border-radius: 14px;
  background: #fff;
}
body.search-page .search-page__filters-title {
  margin: 0 0 14px;
  color: #07101f;
  font-size: 1rem;
  font-weight: 800;
}
body.search-page .search-page__filter + .search-page__filter {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(7, 16, 31, 0.08);
}
body.search-page .search-page__filter-label {
  margin: 0 0 8px;
  color: rgba(7, 16, 31, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}
body.search-page .search-page__check {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #07101f;
  font-size: 0.9rem;
  font-weight: 500;
}
body.search-page .search-page__check + .search-page__check {
  margin-top: 7px;
}
body.search-page .search-page__range {
  height: 6px;
  border-radius: 100px;
  background: linear-gradient(90deg, #0257da 0%, #7cb0ff 100%);
}
body.search-page .search-page__range-scale {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  color: rgba(7, 16, 31, 0.56);
  font-size: 0.76rem;
  font-weight: 700;
}
body.search-page .search-page__results-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
body.search-page .search-page__title {
  margin: 0 0 16px;
  color: #07101f;
  font-size: 1.35rem;
  font-weight: 800;
}
body.search-page .search-page__sort {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(7, 16, 31, 0.66);
  font-size: 0.88rem;
  font-weight: 700;
}
body.search-page .search-page__sort select {
  min-width: 168px;
  height: 42px;
  padding: 0 36px 0 14px;
  border: 1px solid rgba(7, 16, 31, 0.12);
  border-radius: 12px;
  background-color: #fff;
  color: #07101f;
  font: inherit;
  font-weight: 800;
}
body.search-page .search-page__result-card {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) 120px;
  gap: 16px;
  align-items: center;
  margin-top: 12px;
  padding: 14px;
  border: 1px solid rgba(7, 16, 31, 0.1);
  border-radius: 14px;
  background: #fff;
}
body.search-page .search-page__result-logo {
  width: 84px;
  height: 84px;
  border-radius: 10px;
  background: #e9edf4;
}
body.search-page .search-page__line {
  height: 10px;
  border-radius: 100px;
  background: #e7ebf2;
}
body.search-page .search-page__line + .search-page__line {
  margin-top: 8px;
}
body.search-page .search-page__line--lg {
  width: 88%;
}
body.search-page .search-page__line--md {
  width: 62%;
}
body.search-page .search-page__line--sm {
  width: 42%;
}
body.search-page .search-page__line--xs {
  width: 100%;
}
body.search-page .search-page__empty {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 260px;
  margin-top: 12px;
  padding: 42px 28px;
  border: 1px solid rgba(7, 16, 31, 0.1);
  border-radius: 14px;
  background: #fff;
}
body.search-page .search-page__empty-title {
  margin: 0 0 8px;
  color: #07101f;
  font-size: 1.05rem;
  font-weight: 800;
}
body.search-page .search-page__empty-text {
  margin: 0;
  color: rgba(7, 16, 31, 0.6);
  font-size: 0.95rem;
  font-weight: 500;
}

@media (max-width: 1023.98px) {
  body.search-page .search-page__search-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  body.search-page .search-page__action {
    min-height: 56px;
  }
  body.search-page .search-page__results-shell {
    grid-template-columns: minmax(0, 1fr);
  }
  body.search-page .search-page__filters {
    position: static;
  }
}
@media (max-width: 767.98px) {
  body.search-page .search-page__main {
    padding-top: 0;
    padding-bottom: 52px;
  }
  body.search-page .search-page__search-bar {
    position: static;
    padding: 10px 0;
  }
  body.search-page .search-page__search-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  body.search-page .search-page__field {
    min-height: 54px;
    padding: 9px 12px;
  }
  body.search-page .search-page__results-top {
    align-items: flex-start;
    flex-direction: column;
  }
  body.search-page .search-page__result-card {
    grid-template-columns: 56px minmax(0, 1fr);
  }
  body.search-page .search-page__result-side {
    display: none;
  }
  body.search-page .search-page__result-logo {
    width: 56px;
    height: 56px;
  }
  body.search-page .search-page__empty {
    min-height: 260px;
    padding: 28px 18px;
  }
}
/* Search bar mode overrides (keep after legacy search-page rules) */
body.search-page .search-page__search-grid {
  display: block !important;
  width: 100%;
}

body.search-page .search-page__summary {
  position: relative;
  z-index: 2;
  order: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 10px;
  width: 100%;
}

body.search-page .search-page__summary-pill {
  min-height: 48px;
  padding: 6px 14px;
  gap: 6px;
  align-items: flex-start;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  background: #223049;
  box-shadow: none;
  text-align: left;
}

body.search-page .search-page__summary-pill:hover,
body.search-page .search-page__summary-pill:focus-visible {
  background: #2a3a56;
}

body.search-page .search-page__editor {
  position: relative;
  z-index: 1;
  order: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto auto;
  gap: 10px;
  margin-top: 8px;
  width: 100%;
}

body.search-page .search-page__summary .search-page__action,
body.search-page .search-page__editor .search-page__action {
  align-self: stretch;
}

body.search-page .search-page__summary .search-page__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 56px;
  width: 56px;
  padding: 0;
  border-radius: 8px;
  background: #3159dd;
}

body.search-page .search-page__action--icon svg {
  display: block;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin: 0;
}

body.search-page .search-page__action-text {
  display: none;
}

body.search-page .search-page__field-label,
body.search-page .search-page__summary-pill .search-page__field-label {
  color: rgba(255, 255, 255, 0.58);
}

body.search-page .search-page__field-value,
body.search-page .search-page__summary-pill .search-page__field-value {
  color: #fff;
}

body.search-page .search-page__summary-pill .search-page__field-value {
  margin-top: 6px;
}

body.search-page .search-page__editor .hs-field {
  min-width: 0;
  min-height: 76px;
  border: 0;
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
}

body.search-page .search-page__editor .hs-field:hover,
body.search-page .search-page__editor .hs-field:focus-within {
  background: #fff;
  box-shadow: none;
}

body.search-page .search-page__editor .hs-field__label {
  color: rgba(7, 16, 31, 0.52);
}

body.search-page .search-page__editor .hs-field__input svg {
  color: rgba(7, 16, 31, 0.52);
}

body.search-page .search-page__editor .hs-field__input input {
  padding-right: 34px;
  color: #07101f;
}

body.search-page .search-page__editor .hs-clear {
  right: 14px;
}

body.search-page .search-page__editor .hs-field__input input::placeholder {
  color: rgba(7, 16, 31, 0.58);
  opacity: 1;
}

body.search-page .search-page__editor .hs-submit {
  min-height: 76px;
  margin: 0;
  width: 100%;
  border-radius: 8px;
  background: #3159dd;
}

body.search-page .search-page__editor[hidden] {
  display: none !important;
}

body.search-page .search-page__search-grid:not(.is-editing) .search-page__editor {
  display: none !important;
}

body.search-page .search-page__search-grid.is-editing .search-page__summary {
  display: none !important;
}

@media (max-width: 1023.98px) {
  body.search-page .search-page__summary {
    grid-template-columns: minmax(0, 1fr);
  }
  body.search-page .search-page__editor {
    grid-template-columns: minmax(0, 1fr);
  }
  body.search-page .search-page__summary .search-page__action,
  body.search-page .search-page__editor .search-page__action {
    width: 100%;
  }
  body.search-page .search-page__summary .search-page__action {
    gap: 8px;
    align-items: center;
    justify-content: center;
  }
  body.search-page .search-page__summary .search-page__action svg {
    width: 18px;
    height: 18px;
  }
  body.search-page .search-page__summary .search-page__action-text {
    display: inline-flex;
    align-items: center;
    line-height: 1;
  }
  body.search-page .search-page__search-grid {
    position: static;
  }
  body.search-page .search-page__search-grid.is-editing .search-page__summary {
    display: grid;
  }
  body.search-page .search-page__editor {
    position: fixed;
    z-index: 1220;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: calc(100dvh - 72px);
    max-height: none;
    padding: 12px 20px 28px;
    overflow-y: auto;
    border-radius: 22px 22px 0 0;
    background: #fff;
    box-shadow: 0 -20px 60px rgba(7, 16, 31, 0.24);
    transform: translateY(var(--search-drawer-y, 0px));
    transition: transform 180ms ease;
    will-change: transform;
    overscroll-behavior: contain;
  }
  body.search-page .search-page__editor[hidden] {
    display: none;
  }
  body.search-page .search-page__editor.is-dragging {
    transition: none;
  }
  body.search-page .search-page__editor-backdrop {
    position: fixed;
    z-index: 1210;
    inset: 0;
    background: rgba(7, 16, 31, 0.48);
  }
  body.search-page.is-search-open .search-page__editor-backdrop:not([hidden]) {
    display: block;
  }
  body.search-page .search-page__editor-handle {
    display: block;
    width: 54px;
    height: 24px;
    margin: 0 auto 4px;
    padding: 0;
    border: 0;
    background: transparent;
    touch-action: none;
    cursor: grab;
  }
  body.search-page .search-page__editor-handle::before {
    content: "";
    display: block;
    width: 42px;
    height: 5px;
    margin: 9px auto 0;
    border-radius: 999px;
    background: rgba(7, 16, 31, 0.18);
  }
  body.search-page .search-page__editor.is-dragging .search-page__editor-handle {
    cursor: grabbing;
  }
  body.search-page .search-page__editor-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 6px;
  }
  body.search-page .search-page__editor-title {
    margin: 0;
    color: #07101f;
    font-size: 1.2rem;
    font-weight: 850;
  }
  body.search-page .search-page__editor-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 12px;
    background: #f1f4f8;
    color: #07101f;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1;
  }
  body.search-page .search-page__editor .hs-field {
    min-height: 64px;
    border: 1px solid rgba(7, 16, 31, 0.07);
    background: #f5f7fb;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  }
  body.search-page .search-page__editor .hs-field:focus-within {
    border-color: rgba(49, 89, 221, 0.38);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(49, 89, 221, 0.12);
  }
  body.search-page .search-page__editor .hs-submit {
    width: 100%;
    min-height: 52px;
  }
}
@media (max-width: 767.98px) {
  body.search-page .search-page__summary,
  body.search-page .search-page__editor {
    grid-template-columns: minmax(0, 1fr);
  }
}
/* Final clinic-card overrides outside legacy nested media blocks */
body.search-page .search-page__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

body.search-page .search-page__clinic-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 100%;
  padding: 0;
  border: 1px solid rgba(7, 16, 31, 0.1);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(7, 16, 31, 0.12);
  cursor: pointer;
  transition: box-shadow 0.16s, transform 0.16s;
}

body.search-page .search-page__package-card {
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}

body.search-page .search-page__package-price {
  flex: 0 0 auto;
  width: fit-content;
  max-width: 44%;
  padding: 8px 10px;
  border-radius: 999px;
  background: #1746d1;
  color: #fff;
  font-size: 0.74rem;
  font-weight: 850;
  line-height: 1;
  text-align: center;
}

body.search-page .search-page__package-deal {
  flex: 0 0 auto;
  width: fit-content;
  padding: 8px 10px;
  border-radius: 999px;
  background: #fff3d7;
  color: #9a4b00;
  font-size: 0.74rem;
  font-weight: 850;
  line-height: 1;
}

body.search-page .search-page__package-discount {
  flex: 0 0 auto;
  width: fit-content;
  padding: 8px 10px;
  border-radius: 999px;
  background: #e9fbf4;
  color: #08734f;
  font-size: 0.74rem;
  font-weight: 850;
  line-height: 1;
}

body.search-page .search-page__package-special-offer {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 6px;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: #f0edff;
  color: #5b35c8;
  font-size: 0.74rem;
  font-weight: 850;
  line-height: 1;
}

body.search-page .search-page__package-special-offer span {
  display: inline-grid;
  place-items: center;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #5b35c8;
  color: #fff;
  font-size: 0.62rem;
  line-height: 1;
}

body.search-page .search-page__package-card .search-page__clinic-header {
  justify-content: flex-end;
  margin-bottom: 14px;
}

body.search-page .search-page__clinic-card:hover,
body.search-page .search-page__clinic-card:focus-within {
  box-shadow: 0 18px 42px rgba(7, 16, 31, 0.16);
  transform: translateY(-2px);
}

body.search-page .search-page__clinic-card.is-skeleton {
  min-height: 330px;
  cursor: default;
  box-shadow: 0 14px 34px rgba(7, 16, 31, 0.08);
  transform: none;
}

body.search-page .search-page__clinic-card.is-skeleton:hover,
body.search-page .search-page__clinic-card.is-skeleton:focus-within {
  box-shadow: 0 14px 34px rgba(7, 16, 31, 0.08);
  transform: none;
}

body.search-page .search-page__clinic-media {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 16/8;
  overflow: hidden;
  background: linear-gradient(135deg, #e8edf5 0%, #f5f7fb 100%);
  color: #07101f;
  font-size: 2rem;
  font-weight: 800;
}

body.search-page .search-page__clinic-card.is-skeleton .search-page__clinic-media {
  min-height: 176px;
}

body.search-page .search-page__clinic-card.is-skeleton .search-page__result-logo {
  width: 64%;
  height: 58%;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.42);
}

body.search-page .search-page__clinic-card.is-skeleton .search-page__line {
  height: 14px;
  background: #e7ebf2;
}

body.search-page .search-page__clinic-card.is-skeleton .search-page__line--lg {
  width: 82%;
  height: 22px;
}

body.search-page .search-page__clinic-card.is-skeleton .search-page__line--md {
  width: 58%;
}

body.search-page .search-page__clinic-card.is-skeleton .search-page__line--sm {
  width: 42%;
}

body.search-page .search-page__clinic-card.is-skeleton .search-page__line--xs {
  width: 70%;
}

body.search-page .search-page__accreditation {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  padding: 8px 12px;
  border-radius: 999px;
  background: #1746d1;
  color: #fff;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.02em;
  line-height: 1;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.18);
  box-shadow: 0 8px 22px rgba(7, 16, 31, 0.28);
}

body.search-page .search-page__clinic-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.search-page .search-page__clinic-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px 22px 24px;
}

body.search-page .search-page__clinic-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

body.search-page .search-page__clinic-name {
  margin: 0 0 10px;
  color: #07101f;
  font-size: 1.28rem;
  font-weight: 850;
  line-height: 1.18;
}

body.search-page .search-page__clinic-accreditations {
  position: static;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: flex-start;
  gap: 7px;
  margin: 12px 0 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-shadow: none;
}

body.search-page .search-page__clinic-accreditations span {
  display: inline-flex;
  width: fit-content;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(49, 89, 221, 0.1);
  color: #1746d1;
  font-size: 0.74rem;
  font-weight: 850;
  line-height: 1;
}

body.search-page .search-page__load-more {
  min-height: 1px;
}

body.search-page .search-page__load-more.is-loading {
  min-height: 54px;
  margin-top: 18px;
}

body.search-page .search-page__load-more.is-loading::before {
  content: "Loading more clinics...";
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  color: rgba(7, 16, 31, 0.58);
  font-size: 0.9rem;
  font-weight: 750;
}

@media (max-width: 1199.98px) {
  body.search-page .search-page__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767.98px) {
  body.search-page .search-page__list {
    grid-template-columns: minmax(0, 1fr);
  }
  body.search-page .search-page__clinic-body {
    padding: 18px 18px 22px;
  }
}
body.search-page .search-page__clinic-profile[hidden] {
  display: none;
}

body.search-page.is-clinic-profile-open .search-page__results-shell {
  grid-template-columns: minmax(0, 1fr);
}

body.search-page.is-clinic-profile-open .search-page__filters,
body.search-page.is-clinic-profile-open .search-page__results-top,
body.search-page.is-clinic-profile-open .search-page__list,
body.search-page.is-clinic-profile-open .search-page__load-more,
body.search-page.is-clinic-profile-open .search-page__empty {
  display: none !important;
}

body.search-page .search-page__clinic-profile {
  width: 100%;
  min-width: 0;
}

body.search-page .search-page__clinic-profile-toolbar {
  position: sticky;
  top: 74px;
  z-index: 5;
  display: flex;
  align-items: center;
  padding: 0 0 16px;
  background: #f4f6fa;
}

body.search-page .search-page__clinic-profile-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  min-height: 42px;
  padding: 10px 15px 10px 12px;
  border: 1px solid rgba(7, 16, 31, 0.12);
  border-radius: var(--border-radius-btn);
  background: #fff;
  color: #07101f;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

body.search-page .search-page__clinic-profile-back:hover,
body.search-page .search-page__clinic-profile-back:focus-visible {
  border-color: rgba(7, 16, 31, 0.28);
  box-shadow: 0 10px 24px rgba(7, 16, 31, 0.08);
  outline: 0;
  transform: translateY(-1px);
}

body.search-page .search-page__clinic-profile-back svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

body.search-page .search-page__clinic-profile-image {
  display: block;
  width: 100%;
  aspect-ratio: 16/6;
  object-fit: cover;
}

body.search-page .search-page__clinic-profile-body {
  padding: 28px;
}

body.search-page .search-page__clinic-profile-state {
  padding: 34px 30px;
  border: 1px solid rgba(7, 16, 31, 0.1);
  border-radius: 18px;
  background: #fff;
}

body.search-page .search-page__clinic-profile-state p {
  margin: 10px 0 0;
  color: rgba(7, 16, 31, 0.62);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.5;
}

body.search-page .search-page__clinic-profile-content .js-clinic {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 24px;
  width: 100%;
  max-width: none;
  padding: 0;
}

body.search-page .search-page__clinic-profile-content .js-clinic > [class*=col-] {
  width: auto;
  max-width: none;
  padding: 0;
}

body.search-page .search-page__clinic-profile-content .js-accreditation-data {
  width: 100%;
  max-width: none;
}

body.search-page .search-page__clinic-profile-content .js-clinic > [class*=col-] > .card,
body.search-page .search-page__clinic-profile-content .js-accreditation-data > .card {
  margin: 0;
  border: 1px solid rgba(7, 16, 31, 0.1);
  border-radius: 18px;
  box-shadow: none;
}

body.search-page .search-page__clinic-profile-content .js-clinic img,
body.search-page .search-page__clinic-profile-content .js-accreditation-data img {
  max-width: 100%;
  height: auto;
}

body.search-page .search-page__clinic-profile-content .clinic-profile__map iframe {
  width: 100%;
  min-height: 240px;
  border: 0;
}

@media (max-width: 1023.98px) {
  body.search-page .search-page__clinic-profile-content .js-clinic {
    grid-template-columns: minmax(0, 1fr);
  }
}
body.search-page .search-page__clinic-profile-label {
  margin: 0 0 8px;
  color: #8b6b25;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

body.search-page .search-page__clinic-profile-title {
  margin: 0;
  color: #07101f;
  font-size: 1.8rem;
  font-weight: 850;
  line-height: 1.15;
}

body.search-page .search-page__clinic-profile-badge {
  display: inline-flex;
  margin: 14px 0 0;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(215, 181, 109, 0.16);
  color: #8b6b25;
  font-size: 0.82rem;
  font-weight: 800;
}

body.search-page .search-page__clinic-profile-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 22px;
  margin: 24px 0 0;
}

body.search-page .search-page__clinic-profile-details div {
  min-width: 0;
}

body.search-page .search-page__clinic-profile-details dt {
  color: rgba(7, 16, 31, 0.48);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

body.search-page .search-page__clinic-profile-details dd {
  margin: 5px 0 0;
  color: #07101f;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

body.search-page .search-page__clinic-profile-specializations {
  margin-top: 26px;
}

body.search-page .search-page__clinic-profile-specializations h3 {
  margin: 0 0 12px;
  color: #07101f;
  font-size: 1rem;
  font-weight: 850;
}

body.search-page .search-page__clinic-profile-specializations div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

body.search-page .search-page__clinic-profile-specializations span {
  padding: 7px 9px;
  border-radius: 999px;
  background: #f1f4f8;
  color: rgba(7, 16, 31, 0.72);
  font-size: 0.82rem;
  font-weight: 700;
}

@media (max-width: 767.98px) {
  body.search-page .search-page__clinic-profile-toolbar {
    top: 62px;
  }
  body.search-page .search-page__clinic-profile-body {
    padding: 22px 18px 28px;
  }
  body.search-page .search-page__clinic-profile-title {
    font-size: 1.35rem;
  }
  body.search-page .search-page__clinic-profile-details {
    grid-template-columns: minmax(0, 1fr);
  }
}
body.search-page .search-page__empty[hidden] {
  display: none !important;
}

body.search-page .search-page__empty {
  position: relative;
  display: flex;
  min-height: 230px;
  margin-top: 18px;
  padding: 44px 32px 44px 112px;
  overflow: hidden;
  border: 1px solid rgba(18, 43, 79, 0.1);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(229, 189, 112, 0.14), rgba(229, 189, 112, 0) 38%), #fff;
  box-shadow: 0 18px 46px rgba(7, 16, 31, 0.08);
}

body.search-page .search-page__empty::before {
  content: none;
}

body.search-page .search-page__empty::after {
  content: none;
}

body.search-page .search-page__empty-icon {
  position: absolute;
  left: 32px;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background-color: #263a5a;
  color: #fff;
  transform: translateY(-50%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

body.search-page .search-page__empty-icon svg {
  width: 30px;
  height: 30px;
}

body.search-page .search-page__empty-title {
  position: relative;
  margin: 0 0 8px;
  color: #07101f;
  font-size: 1.18rem;
  font-weight: 850;
  line-height: 1.2;
}

body.search-page .search-page__empty-text {
  position: relative;
  max-width: 520px;
  margin: 0;
  color: rgba(7, 16, 31, 0.62);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.5;
}

@media (max-width: 767.98px) {
  body.search-page .search-page__empty {
    min-height: 190px;
    padding: 94px 22px 28px;
  }
  body.search-page .search-page__empty-icon {
    left: 22px;
    top: 28px;
    transform: none;
  }
}
body.search-page .search-page__results-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
}

body.search-page .search-page__results {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

body.search-page .search-page__filters .search-page__sort {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

body.search-page .search-page__filters .search-page__sort span {
  color: rgba(7, 16, 31, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

body.search-page .search-page__filters .search-page__sort select {
  width: 100%;
}

body.search-page .search-page__sort-custom {
  display: none;
}

body.search-page .search-page__filters .search-page__filter--sort {
  display: none;
}

body.search-page .search-page__filters-body {
  display: block;
}

body.search-page .search-page__filters {
  display: flex;
  flex-direction: column;
}

body.search-page .search-page__filters-apply {
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  margin-top: auto;
  border: 0;
  border-radius: 12px;
  background: #3157d8;
  color: #fff;
  font-size: 0.96rem;
  font-weight: 850;
  cursor: pointer;
}

body.search-page .search-page__filters-apply:hover,
body.search-page .search-page__filters-apply:focus-visible {
  background: #2448c5;
}

body.search-page .search-page__filter-toggle,
body.search-page .search-page__filters-close,
body.search-page .search-page__filters-handle,
body.search-page .search-page__editor-head,
body.search-page .search-page__editor-handle,
body.search-page .search-page__editor-backdrop,
body.search-page .search-page__filters-backdrop {
  display: none;
}

body.search-page .search-page__filters-head {
  display: block;
}

@media (max-width: 1023.98px) {
  body.search-page .search-page__results-shell {
    grid-template-columns: minmax(0, 1fr);
  }
  body.search-page .search-page__results-top {
    align-items: stretch;
    gap: 12px;
  }
  body.search-page .search-page__title {
    margin: 0;
  }
  body.search-page .search-page__filter-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid rgba(7, 16, 31, 0.12);
    border-radius: 12px;
    background: #fff;
    color: #07101f;
    font-size: 0.9rem;
    font-weight: 850;
    white-space: nowrap;
    box-shadow: 0 8px 22px rgba(7, 16, 31, 0.08);
  }
  body.search-page .search-page__filters {
    position: fixed;
    z-index: 1200;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    height: calc(100dvh - 72px);
    max-height: none;
    padding: 12px 20px 28px;
    overflow: hidden;
    border: 0;
    border-radius: 22px 22px 0 0;
    background: #fff;
    box-shadow: 0 -20px 60px rgba(7, 16, 31, 0.22);
    transform: translateY(calc(105% + var(--filters-drawer-y, 0px)));
    transition: transform 180ms ease;
    will-change: transform;
    overscroll-behavior: contain;
  }
  body.search-page .search-page__filters.is-loading::after {
    border-radius: 22px 22px 0 0;
  }
  body.search-page .search-page__filters-body {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    padding-bottom: 20px;
  }
  body.search-page.is-filters-open .search-page__filters {
    transform: translateY(var(--filters-drawer-y, 0px));
  }
  body.search-page .search-page__filters.is-dragging {
    transition: none;
  }
  body.search-page .search-page__filters-backdrop {
    position: fixed;
    z-index: 1190;
    inset: 0;
    background: rgba(7, 16, 31, 0.48);
  }
  body.search-page.is-filters-open .search-page__filters-backdrop:not([hidden]) {
    display: block;
  }
  body.search-page .search-page__filters-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
  }
  body.search-page .search-page__filters-handle {
    display: block;
    width: 54px;
    height: 24px;
    margin: 0 auto 8px;
    padding: 0;
    border: 0;
    background: transparent;
    touch-action: none;
    cursor: grab;
  }
  body.search-page .search-page__filters-handle::before {
    content: "";
    display: block;
    width: 42px;
    height: 5px;
    margin: 9px auto 0;
    border-radius: 999px;
    background: rgba(7, 16, 31, 0.18);
  }
  body.search-page .search-page__filters.is-dragging .search-page__filters-handle {
    cursor: grabbing;
  }
  body.search-page .search-page__filters-title {
    margin: 0;
    font-size: 1.2rem;
  }
  body.search-page .search-page__filters-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 12px;
    background: #f1f4f8;
    color: #07101f;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1;
  }
  body.search-page .search-page__sort {
    align-self: stretch;
  }
  body.search-page .search-page__sort--desktop {
    display: none;
  }
  body.search-page .search-page__filters .search-page__filter--sort {
    display: block;
  }
  body.search-page .search-page__filters .search-page__sort select {
    display: none;
  }
  body.search-page .search-page__sort-custom {
    position: relative;
    display: block;
    width: 100%;
  }
  body.search-page .search-page__sort-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    border: 1px solid rgba(7, 16, 31, 0.12);
    border-radius: 14px;
    background: #f7f9fc;
    color: #07101f;
    font: inherit;
    font-size: 1rem;
    font-weight: 850;
    text-align: left;
    cursor: pointer;
  }
  body.search-page .search-page__sort-toggle svg {
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    color: rgba(7, 16, 31, 0.72);
    transition: transform 160ms ease;
  }
  body.search-page .search-page__sort-custom.is-open .search-page__sort-toggle svg {
    transform: rotate(180deg);
  }
  body.search-page .search-page__sort-toggle:focus-visible {
    outline: 3px solid rgba(49, 87, 216, 0.22);
    outline-offset: 2px;
  }
  body.search-page .search-page__sort-menu {
    position: absolute;
    z-index: 4;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: grid;
    gap: 2px;
    padding: 8px;
    border: 1px solid rgba(7, 16, 31, 0.1);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(7, 16, 31, 0.16);
  }
  body.search-page .search-page__sort-menu[hidden] {
    display: none;
  }
  body.search-page .search-page__sort-option {
    width: 100%;
    min-height: 44px;
    padding: 0 12px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: #07101f;
    font: inherit;
    font-size: 0.96rem;
    font-weight: 780;
    text-align: left;
    cursor: pointer;
  }
  body.search-page .search-page__sort-option:hover,
  body.search-page .search-page__sort-option:focus-visible,
  body.search-page .search-page__sort-option.is-selected {
    background: #edf3ff;
    color: #2448c5;
    outline: none;
  }
  body.search-page .search-page__filters-apply {
    display: inline-flex;
    flex: 0 0 auto;
    min-height: 54px;
    margin-top: 0;
  }
  body.search-page .search-page__search-grid {
    position: static;
  }
  body.search-page .search-page__search-grid.is-editing .search-page__summary {
    display: grid;
  }
  body.search-page .search-page__editor {
    position: fixed;
    z-index: 1220;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: calc(100dvh - 72px);
    max-height: none;
    padding: 12px 20px 28px;
    overflow-y: auto;
    border-radius: 22px 22px 0 0;
    background: #fff;
    box-shadow: 0 -20px 60px rgba(7, 16, 31, 0.24);
    transform: translateY(var(--search-drawer-y, 0px));
    transition: transform 180ms ease;
    will-change: transform;
    overscroll-behavior: contain;
  }
  body.search-page .search-page__editor[hidden] {
    display: none;
  }
  body.search-page .search-page__editor.is-dragging {
    transition: none;
  }
  body.search-page .search-page__editor-backdrop {
    position: fixed;
    z-index: 1210;
    inset: 0;
    background: rgba(7, 16, 31, 0.48);
  }
  body.search-page.is-search-open .search-page__editor-backdrop:not([hidden]) {
    display: block;
  }
  body.search-page .search-page__editor-handle {
    display: block;
    width: 54px;
    height: 24px;
    margin: 0 auto 4px;
    padding: 0;
    border: 0;
    background: transparent;
    touch-action: none;
    cursor: grab;
  }
  body.search-page .search-page__editor-handle::before {
    content: "";
    display: block;
    width: 42px;
    height: 5px;
    margin: 9px auto 0;
    border-radius: 999px;
    background: rgba(7, 16, 31, 0.18);
  }
  body.search-page .search-page__editor.is-dragging .search-page__editor-handle {
    cursor: grabbing;
  }
  body.search-page .search-page__editor-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 6px;
  }
  body.search-page .search-page__editor-title {
    margin: 0;
    color: #07101f;
    font-size: 1.2rem;
    font-weight: 850;
  }
  body.search-page .search-page__editor-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 12px;
    background: #f1f4f8;
    color: #07101f;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1;
  }
  body.search-page .search-page__editor .hs-field {
    min-height: 64px;
    border: 1px solid rgba(7, 16, 31, 0.07);
    background: #f5f7fb;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  }
  body.search-page .search-page__editor .hs-field:focus-within {
    border-color: rgba(49, 89, 221, 0.38);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(49, 89, 221, 0.12);
  }
  body.search-page .search-page__editor .hs-submit {
    width: 100%;
    min-height: 52px;
  }
}
@media (max-width: 767.98px) {
  body.search-page .search-page__main {
    padding-top: 72px;
  }
  body.search-page .search-page__search-bar {
    position: static !important;
    top: auto !important;
    z-index: auto;
    margin-top: 0;
    padding: 24px 0 40px;
    box-shadow: none;
  }
  body.search-page .search-page__search-grid {
    position: static !important;
    display: block !important;
    padding-top: 0;
  }
  body.search-page .search-page__summary {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }
  body.search-page .search-page__summary-pill {
    display: flex;
    min-height: 44px;
    padding: 6px 12px;
    border-radius: 10px;
  }
  body.search-page .search-page__summary-pill .search-page__field-value {
    margin-top: 2px;
    font-size: 0.95rem;
  }
  body.search-page .search-page__summary .search-page__action {
    width: 100%;
    min-height: 46px;
    gap: 8px;
    border-radius: 12px;
  }
  body.search-page .search-page__summary .search-page__action-text {
    display: inline-flex;
  }
}
body.guide-page {
  --guide-ink: #07101f;
  --guide-muted: rgba(7, 16, 31, 0.58);
  --guide-line: rgba(7, 16, 31, 0.1);
  --guide-gold: #c9a96e;
  --guide-green: #0f766e;
  min-height: 100vh;
  margin: 0;
  background: #fbfcfb;
  color: var(--guide-ink);
  font-family: Inter, system-ui, sans-serif;
}

.guide-hero {
  position: relative;
  display: grid;
  min-height: 520px;
  padding: 148px 36px 72px;
  overflow: hidden;
  color: #fff;
  background-color: #07101f;
  background-image: linear-gradient(90deg, rgba(7, 16, 31, 0.86), rgba(7, 16, 31, 0.54) 58%, rgba(7, 16, 31, 0.24));
  background-size: cover;
  background-position: center;
}

.guide-hero__inner {
  width: min(100%, 1120px);
  margin: 0 auto;
}

.guide-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--guide-gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.guide-hero__label::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.guide-hero__title {
  max-width: 760px;
  margin: 0 0 18px;
  font-size: clamp(2.45rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.guide-hero__sub {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.7;
}

.guide-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 40px;
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 72px 36px 96px;
}

.guide-main {
  display: grid;
  gap: 22px;
}

.guide-section {
  padding: 30px;
  border: 1px solid var(--guide-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 50px rgba(7, 16, 31, 0.05);
}
.guide-section h2 {
  margin: 0 0 14px;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.18;
  letter-spacing: 0;
}
.guide-section p {
  margin: 0 0 16px;
  color: var(--guide-muted);
  font-size: 0.98rem;
  line-height: 1.75;
}
.guide-section p a {
  color: var(--guide-green);
  font-weight: 700;
  text-decoration: none;
}
.guide-section p a:hover {
  text-decoration: underline;
}

.guide-section__eyebrow {
  margin-bottom: 10px;
  color: var(--guide-gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.guide-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}
.guide-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(7, 16, 31, 0.72);
  line-height: 1.6;
}
.guide-list li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 10px;
  height: 10px;
  border: 2px solid var(--guide-gold);
  border-radius: 50%;
}
.guide-list a {
  color: var(--guide-green);
  font-weight: 700;
  text-decoration: none;
}
.guide-list a:hover {
  text-decoration: underline;
}

.guide-steps {
  display: grid;
  gap: 14px;
  margin-top: 22px;
  counter-reset: guide-step;
}

.guide-step {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(15, 118, 110, 0.16);
  border-radius: 8px;
  background: rgba(15, 118, 110, 0.045);
  counter-increment: guide-step;
}
.guide-step::before {
  content: counter(guide-step);
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.16);
  color: var(--guide-gold);
  font-weight: 800;
}
.guide-step h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  line-height: 1.3;
}
.guide-step p {
  margin: 0;
  font-size: 0.92rem;
}

.guide-accreditation-list {
  margin-top: 16px;
  border: 1px solid rgba(201, 169, 110, 0.24);
  border-radius: 8px;
  background: rgba(201, 169, 110, 0.06);
  overflow: hidden;
}
.guide-accreditation-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  color: var(--guide-ink);
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}
.guide-accreditation-list summary::-webkit-details-marker {
  display: none;
}
.guide-accreditation-list summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--guide-gold);
  color: #07101f;
  font-size: 1rem;
  line-height: 1;
}
.guide-accreditation-list[open] summary::after {
  content: "-";
}
.guide-accreditation-list .guide-list {
  margin: 0;
  padding: 0 16px 16px;
}

.guide-aside {
  align-self: start;
  position: sticky;
  top: 104px;
  display: grid;
  gap: 18px;
}

.guide-panel {
  padding: 24px;
  border: 1px solid var(--guide-line);
  border-radius: 8px;
  background: #fff;
}
.guide-panel h2 {
  margin: 0 0 12px;
  font-size: 1rem;
  line-height: 1.3;
}
.guide-panel a:not(.button-gold) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--guide-line);
  color: var(--guide-ink);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}
.guide-panel a:not(.button-gold):hover {
  color: var(--guide-gold);
}

body.guide-page .site-footer {
  padding: 32px 36px;
  border-top: 1px solid var(--guide-line);
  background: #fff;
  text-align: center;
}

body.guide-page .site-footer__nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
body.guide-page .site-footer__nav a {
  color: rgba(7, 16, 31, 0.62);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

body.guide-page .site-footer__copy {
  color: rgba(7, 16, 31, 0.45);
  font-size: 0.82rem;
}

body.guide-page .site-footer__insurance {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-bottom: 12px;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s;
}
body.guide-page .site-footer__insurance-label {
  color: rgba(7, 16, 31, 0.48);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}
body.guide-page .site-footer__insurance img {
  display: block;
  width: 130px;
  height: auto;
}
body.guide-page .site-footer__insurance:hover {
  opacity: 0.82;
}

@media (max-width: 900px) {
  .guide-hero {
    min-height: 460px;
    padding: 120px 22px 56px;
  }
  .guide-layout {
    grid-template-columns: 1fr;
    padding: 48px 20px 72px;
  }
  .guide-aside {
    position: static;
  }
}
@media (max-width: 560px) {
  .guide-section {
    padding: 24px 20px;
  }
  .guide-step {
    grid-template-columns: 1fr;
  }
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.is-open {
  border-color: rgba(201, 169, 110, 0.35);
}
.faq-item.is-open .faq-q {
  background: rgba(201, 169, 110, 0.06);
  color: #c9a96e;
}
.faq-item.is-open .faq-icon {
  transform: rotate(180deg);
  color: #c9a96e;
}
.faq-item.is-open .faq-a {
  max-height: 600px;
  padding: 4px 20px 18px;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: none;
  cursor: pointer;
  color: #fff;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: left;
  transition: background 0.2s;
}
.faq-q:hover {
  background: rgba(255, 255, 255, 0.06);
}

.faq-icon {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.35);
  transition: transform 0.3s ease, color 0.2s;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
  padding: 0 20px;
}
.faq-a p {
  font-size: 0.87rem;
  line-height: 1.7;
  margin-bottom: 10px;
}
.faq-a p:last-child {
  margin-bottom: 0;
}

.faq-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 8px 0 10px;
}
.faq-bullets li {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}
.faq-bullets li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #c9a96e;
}

body.packages-page {
  min-height: 100vh;
  background: #fff;
  color: var(--text-color-ink);
}

body.package-detail-page {
  min-height: 100vh;
  background: #fff;
  color: var(--text-color-ink);
}

.pkg-hero--dynamic {
  background: linear-gradient(135deg, rgba(5, 32, 60, 0.92), rgba(14, 93, 86, 0.84)), url("https://images.unsplash.com/photo-1576091160550-2173dba999ef?w=1600&h=900&fit=crop&auto=format&q=82");
  background-position: center;
  background-size: cover;
}

.pkg-detail-state {
  min-height: 55vh;
  padding: 150px 0 80px;
  color: #05203c;
}

.pkg-hero {
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  padding: 0 36px 60px;
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.pkg-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 16, 31, 0.9) 0%, rgba(7, 16, 31, 0.3) 60%, rgba(7, 16, 31, 0.1) 100%);
}
.pkg-hero__emoji {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11rem;
  opacity: 0.12;
  pointer-events: none;
  visibility: hidden;
}
.pkg-hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin-top: 80px;
}
.pkg-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 16px;
}
.pkg-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
}
.pkg-hero__breadcrumb a:hover {
  color: #c9a96e;
}
.pkg-hero__category {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c9a96e;
  border: 1px solid rgba(201, 169, 110, 0.4);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 14px;
}
.pkg-hero__title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: #fff;
}
.pkg-hero__tagline {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  max-width: 580px;
  margin-bottom: 24px;
}
.pkg-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pkg-hero__pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 6px 14px;
}

.pkg-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 36px 80px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

.pkg-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.pkg-pillars__item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 0 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 20px 24px;
  align-items: start;
}
@media (max-width: 600px) {
  .pkg-pillars__item {
    grid-template-columns: 1fr;
  }
}
.pkg-pillars__header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 600px) {
  .pkg-pillars__header {
    flex-direction: row;
    align-items: center;
    margin-bottom: 12px;
  }
}
.pkg-pillars__icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(201, 169, 110, 0.1);
  border: 1px solid rgba(201, 169, 110, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pkg-pillars__icon svg {
  width: 16px;
  height: 16px;
  color: #c9a96e;
}
.pkg-pillars__title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #c9a96e;
  line-height: 1.4;
}
.pkg-pillars__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pkg-pillars__list li {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
  padding-left: 12px;
  position: relative;
}
.pkg-pillars__list li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: #c9a96e;
}

.pkg-section__note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.55;
  background: rgba(201, 169, 110, 0.06);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 10px;
  padding: 12px 16px;
  margin-top: 16px;
}
.pkg-section__note::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' stroke='%23c9a96e' stroke-width='1.5' stroke-linecap='round' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='6.5'/%3E%3Cpath d='M8 7.5v3.5'/%3E%3Ccircle cx='8' cy='5' r='.5' fill='%23c9a96e' stroke='none'/%3E%3C/svg%3E") center/contain no-repeat;
}

.pkg-section__lead {
  font-size: 0.9rem;
  color: var(--text-color-ink);
  line-height: 1.7;
  margin-bottom: 16px;
}
.pkg-section__lead--spaced {
  margin-bottom: 18px;
}

.pkg-section-group-title {
  margin-bottom: 20px;
  color: var(--text-color-ink);
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 750;
  line-height: 1.15;
  letter-spacing: 0;
  text-transform: capitalize;
}

.pkg-feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}

.feature-block {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  overflow: hidden;
  background: rgba(7, 16, 31, 0.03);
  border: 1px solid rgba(7, 16, 31, 0.08);
  border-radius: 14px;
  padding: 18px 20px;
}
.feature-block::before, .feature-block::after {
  content: "";
  position: absolute;
  inset: 0;
}
.feature-block::before {
  background: var(--pkg-feature-image) center/cover no-repeat;
  opacity: 0.22;
}
.feature-block::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.84) 62%, rgba(255, 255, 255, 0.62) 100%);
}
.feature-block__content {
  position: relative;
  z-index: 1;
}
.feature-block__index {
  position: relative;
  z-index: 1;
  min-width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.12);
  border: 1.5px solid rgba(201, 169, 110, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  color: #c9a96e;
  flex-shrink: 0;
}
.feature-block__title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-color-ink);
  margin-bottom: 4px;
}
.feature-block__text {
  font-size: 0.84rem;
  color: var(--text-color-ink);
  line-height: 1.5;
}

.pkg-education-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 600px) {
  .pkg-education-grid {
    grid-template-columns: 1fr;
  }
}

.pkg-image-card {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  background: rgba(7, 16, 31, 0.03);
  border: 1px solid rgba(7, 16, 31, 0.08);
  border-radius: 14px;
  padding: 18px 20px;
}
.pkg-image-card::before, .pkg-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
}
.pkg-image-card::before {
  background: var(--pkg-education-image) center/cover no-repeat;
  opacity: 0.32;
}
.pkg-image-card::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.78) 58%, rgba(255, 255, 255, 0.52) 100%);
}
.pkg-image-card__content {
  position: relative;
  z-index: 1;
}
.pkg-image-card__title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-color-ink);
  margin-bottom: 8px;
}
.pkg-image-card__text {
  font-size: 0.84rem;
  color: var(--text-color-ink);
  line-height: 1.55;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}
@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.why-grid__item {
  background: rgba(201, 169, 110, 0.06);
  border: 1px solid rgba(201, 169, 110, 0.15);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.4;
}

.conditions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.conditions-grid__item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 20px 22px;
}
.conditions-grid__title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: 12px;
}

.pkg-care-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
@media (max-width: 700px) {
  .pkg-care-options {
    grid-template-columns: 1fr;
  }
}
.pkg-care-options__panel {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 14px;
  padding: 22px;
}
.pkg-care-options__title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #c9a96e;
  margin-bottom: 8px;
}
.pkg-care-options__desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.55;
  margin-bottom: 14px;
}
.pkg-care-options__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.pkg-care-options__list li {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.pkg-care-options__list li::before {
  content: "—";
  color: #c9a96e;
  flex-shrink: 0;
}
.pkg-care-options__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.pkg-care-options__meta div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}
.pkg-care-options__meta div span {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}
.pkg-care-options__meta div:not(span) {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}
.pkg-care-options__meta-title {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.pkg-section {
  margin-bottom: 44px;
}
.pkg-section__heading {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.pkg-section__body {
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
}
.pkg-section__body p + p {
  margin-top: 12px;
}

.pkg-checklist {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin-bottom: 16px;
}
.pkg-checklist--single {
  grid-template-columns: 1fr;
}
.pkg-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.4;
}
.pkg-checklist li::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.12) url("data:image/svg+xml,%3Csvg viewBox='0 0 14 14' fill='none' stroke='%23c9a96e' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 7l3.5 4L12 3'/%3E%3C/svg%3E") center/10px no-repeat;
  border: 1.5px solid rgba(201, 169, 110, 0.35);
  flex-shrink: 0;
  margin-top: 1px;
}

.pkg-sidebar {
  position: sticky;
  top: 100px;
}

.pkg-cta-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 26px;
}
.pkg-cta-card__label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 6px;
}
.pkg-cta-card__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}
.pkg-cta-card__details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}
.pkg-cta-card__note {
  font-size: 0.68rem;
  color: var(--text-color-ink);
  margin-top: 12px;
  line-height: 1.5;
  text-align: center;
}

.pkg-detail-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
}
.pkg-detail-row__icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(201, 169, 110, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pkg-detail-row__icon svg {
  width: 14px;
  height: 14px;
  color: #c9a96e;
}
.pkg-detail-row__label {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.4);
}
.pkg-detail-row__val {
  font-weight: 600;
  font-size: 0.87rem;
}
.pkg-detail-row__val--tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 4px;
}
.pkg-detail-row__val--tags span {
  padding: 2px 8px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.75rem;
  font-weight: 500;
}

.pkg-enquire-btn--whatsapp {
  margin-top: 10px;
  background: #25d366;
}
.pkg-enquire-btn--whatsapp:hover {
  background: #35e074;
  color: #fff;
}

.pkg-mobile-actions-toggle {
  display: none;
}

.pkg-trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}
.pkg-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.4);
}

.pricing-table {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 16px;
}

.pricing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.pricing-row:last-child {
  border-bottom: none;
}
.pricing-row:nth-child(odd) {
  background: rgba(255, 255, 255, 0.02);
}
.pricing-row__label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 3px;
}
.pricing-row__nights {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}
.pricing-row__price {
  font-size: 1.05rem;
  font-weight: 700;
  color: #c9a96e;
  white-space: nowrap;
}

.pricing-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(7, 16, 31, 0.5);
  line-height: 1.55;
  background: rgba(201, 169, 110, 0.06);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 10px;
  padding: 12px 16px;
  margin-top: 16px;
}
.pricing-note::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' stroke='%23c9a96e' stroke-width='1.5' stroke-linecap='round' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='6.5'/%3E%3Cpath d='M8 7.5v3.5'/%3E%3Ccircle cx='8' cy='5' r='.5' fill='%23c9a96e' stroke='none'/%3E%3C/svg%3E") center/contain no-repeat;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  margin-bottom: 48px;
  transition: color 0.2s;
}
.back-link:hover {
  color: #c9a96e;
}

@media (max-width: 900px) {
  .pkg-content {
    grid-template-columns: 1fr;
    padding: 36px 20px 60px;
  }
  .pkg-sidebar {
    position: static;
  }
  .pkg-hero {
    padding: 0 20px 44px;
    min-height: 42vh;
    padding-top: 80px;
  }
  .pkg-checklist {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .pkg-mobile-actions-toggle {
    position: fixed;
    left: 14px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    z-index: 860;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 13px 16px;
    border: 0;
    border-radius: 999px;
    background: #c9a96e;
    color: #07101f;
    box-shadow: 0 10px 30px rgba(7, 16, 31, 0.2);
    font: inherit;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    touch-action: manipulation;
  }
  .pkg-mobile-actions-toggle svg {
    transition: transform 0.2s ease;
  }
  body.has-pkg-mobile-actions-open .pkg-mobile-actions-toggle svg {
    transform: rotate(180deg);
  }
  .pkg-hero {
    background-attachment: scroll;
  }
  .pkg-hero__title {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }
  .pkg-hero__tagline {
    font-size: 0.88rem;
  }
  .pkg-content {
    padding: 24px 16px 48px;
    gap: 32px;
  }
  .pkg-cta-card {
    padding: 20px;
  }
  .pkg-cta-card .pkg-enquire-btn:not(.pkg-enquire-btn--whatsapp) {
    position: fixed;
    left: 14px;
    right: auto;
    bottom: calc(126px + env(safe-area-inset-bottom));
    z-index: 850;
    box-sizing: border-box;
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    min-height: 48px;
    margin: 0;
    padding: 13px 10px;
    white-space: nowrap;
    box-shadow: 0 10px 30px rgba(7, 16, 31, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .pkg-cta-card .pkg-enquire-btn--whatsapp {
    position: fixed;
    left: 14px;
    right: auto;
    bottom: calc(68px + env(safe-area-inset-bottom));
    z-index: 850;
    box-sizing: border-box;
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    min-height: 48px;
    margin: 0;
    padding: 13px 10px;
    white-space: nowrap;
    box-shadow: 0 10px 30px rgba(7, 16, 31, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  body.has-pkg-mobile-actions-open .pkg-cta-card .pkg-enquire-btn {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .pkg-section {
    margin-bottom: 32px;
  }
  .pkg-section__heading {
    font-size: 1.1rem;
  }
  .service-grid,
  .conditions-grid {
    grid-template-columns: 1fr !important;
  }
  .pkg-detail-row__val--tags {
    flex-wrap: wrap;
  }
}
.packages-page {
  min-height: 100vh;
  background: #fff;
  color: var(--text-color-ink);
}
.packages-page .page-hero {
  max-width: 720px;
  margin: 0 auto;
  padding: 140px 36px 64px;
  text-align: center;
}
.packages-page .page-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 18px;
  color: #c9a96e;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.packages-page .page-hero__label::before, .packages-page .page-hero__label::after {
  content: "";
  width: 24px;
  height: 1px;
  background: #c9a96e;
  opacity: 0.5;
}
.packages-page .page-hero__title {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.packages-page .page-hero__title span {
  color: #c9a96e;
}
.packages-page .page-hero__sub {
  color: rgba(7, 16, 31, 0.5);
  font-size: 1rem;
  line-height: 1.65;
}
.packages-page .filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 36px 48px;
}
.packages-page .filter-btn {
  padding: 7px 18px;
  border: 1.5px solid rgba(7, 16, 31, 0.15);
  border-radius: 999px;
  background: transparent;
  color: rgba(7, 16, 31, 0.6);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 600;
  transition: all 0.2s;
}
.packages-page .filter-btn:hover, .packages-page .filter-btn.is-active {
  border-color: #c9a96e;
  background: rgba(201, 169, 110, 0.08);
  color: #c9a96e;
}
.packages-page .packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 36px 80px;
}
.packages-page .pkg-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(7, 16, 31, 0.1);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(7, 16, 31, 0.06);
  color: var(--text-color-ink);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.packages-page .pkg-card:hover {
  border-color: rgba(201, 169, 110, 0.4);
  box-shadow: 0 20px 60px rgba(7, 16, 31, 0.12);
  transform: translateY(-4px);
}
.packages-page .pkg-card__img {
  position: relative;
  flex-shrink: 0;
  height: 210px;
  overflow: hidden;
}
.packages-page .pkg-card__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.packages-page .pkg-card:hover .pkg-card__img img {
  transform: scale(1.07);
}
.packages-page .pkg-card__img::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.packages-page .pkg-card__categories {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  z-index: 1;
}
.packages-page .pkg-card__category {
  padding: 4px 10px;
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.4);
  color: #c9a96e;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.packages-page .pkg-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px 24px 24px;
}
.packages-page .pkg-card__title {
  margin-bottom: 8px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}
.packages-page .pkg-card__tagline {
  display: -webkit-box;
  flex: 1;
  margin-bottom: 6px;
  overflow: hidden;
  color: rgba(7, 16, 31, 0.5);
  font-size: 0.82rem;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}
.packages-page .pkg-card__tagline.is-expanded {
  display: block;
  overflow: visible;
}
.packages-page .pkg-card__read-more {
  display: block;
  margin: 0 0 12px auto;
  padding: 0;
  border: 0;
  background: none;
  color: #c9a96e;
  cursor: pointer;
  font-size: 0.78rem;
}
.packages-page .pkg-card__read-more:hover {
  text-decoration: underline;
}
.packages-page .pkg-card__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.packages-page .pkg-card__meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(7, 16, 31, 0.45);
  font-size: 0.75rem;
}
.packages-page .pkg-card__meta-item svg {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  color: #c9a96e;
}
.packages-page .pkg-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 20px;
  border: 1.5px solid rgba(201, 169, 110, 0.35);
  border-radius: 999px;
  background: rgba(201, 169, 110, 0.12);
  color: #c9a96e;
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
  transition: background 0.2s, border-color 0.2s;
}
.packages-page .pkg-card__btn svg {
  width: 14px;
  height: 14px;
}
.packages-page .pkg-card:hover .pkg-card__btn {
  border-color: #c9a96e;
  background: rgba(201, 169, 110, 0.22);
}
.packages-page .site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 36px 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.32);
  font-size: 0.74rem;
}
.packages-page .site-footer__nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.packages-page .site-footer__nav a {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 650;
  text-decoration: none;
  transition: color 0.2s;
}
.packages-page .site-footer__nav a:hover {
  color: #c9a96e;
}
.packages-page .site-footer__copy {
  white-space: nowrap;
}
.packages-page .site-footer__insurance {
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s;
}
.packages-page .site-footer__insurance img {
  display: block;
  width: 130px;
  height: auto;
}
.packages-page .site-footer__insurance:hover {
  opacity: 0.82;
}

body.package-detail-page .pkg-hero__content,
body.package-detail-page .pkg-hero__content *,
body.packages-page .pkg-hero__content,
body.packages-page .pkg-hero__content *,
body.mce-content-body .pkg-hero__content,
body.mce-content-body .pkg-hero__content * {
  color: #fff !important;
}
body.package-detail-page .pkg-hero__pill,
body.packages-page .pkg-hero__pill,
body.mce-content-body .pkg-hero__pill {
  background: rgba(255, 255, 255, 0.15) !important;
  color: rgba(255, 255, 255, 0.9) !important;
}
body.package-detail-page .pkg-section__heading,
body.package-detail-page .pkg-section__body,
body.package-detail-page .pkg-section__note,
body.packages-page .pkg-section__heading,
body.packages-page .pkg-section__body,
body.packages-page .pkg-section__note,
body.mce-content-body .pkg-section__heading,
body.mce-content-body .pkg-section__body,
body.mce-content-body .pkg-section__note {
  color: var(--text-color-ink);
}
body.package-detail-page .pkg-section__body,
body.packages-page .pkg-section__body,
body.mce-content-body .pkg-section__body {
  color: var(--text-color-ink);
}
body.package-detail-page .pkg-section__note,
body.packages-page .pkg-section__note,
body.mce-content-body .pkg-section__note {
  color: rgba(7, 16, 31, 0.45);
}
body.package-detail-page .pkg-breadcrumb,
body.packages-page .pkg-breadcrumb,
body.mce-content-body .pkg-breadcrumb {
  color: rgba(7, 16, 31, 0.45);
}
body.package-detail-page .pkg-breadcrumb a,
body.packages-page .pkg-breadcrumb a,
body.mce-content-body .pkg-breadcrumb a {
  color: rgba(7, 16, 31, 0.45);
}
body.package-detail-page .pkg-content,
body.packages-page .pkg-content,
body.mce-content-body .pkg-content {
  background: #fff;
}
body.package-detail-page .pkg-cta-card,
body.packages-page .pkg-cta-card,
body.mce-content-body .pkg-cta-card {
  background: rgba(7, 16, 31, 0.03);
  border-color: rgba(7, 16, 31, 0.1);
}
body.package-detail-page .pkg-cta-card__label,
body.packages-page .pkg-cta-card__label,
body.mce-content-body .pkg-cta-card__label {
  color: rgba(7, 16, 31, 0.4);
}
body.package-detail-page .pkg-cta-card__title,
body.packages-page .pkg-cta-card__title,
body.mce-content-body .pkg-cta-card__title {
  color: var(--text-color-ink);
}
body.package-detail-page .pkg-detail-row__label,
body.packages-page .pkg-detail-row__label,
body.mce-content-body .pkg-detail-row__label {
  color: rgba(7, 16, 31, 0.4);
}
body.package-detail-page .pkg-detail-row__val,
body.packages-page .pkg-detail-row__val,
body.mce-content-body .pkg-detail-row__val {
  color: var(--text-color-ink);
}
body.package-detail-page .pkg-detail-row__val--tags span,
body.packages-page .pkg-detail-row__val--tags span,
body.mce-content-body .pkg-detail-row__val--tags span {
  background: rgba(7, 16, 31, 0.06);
  border-color: rgba(7, 16, 31, 0.14);
  color: rgba(7, 16, 31, 0.75);
}
body.package-detail-page .pkg-detail-row__icon,
body.packages-page .pkg-detail-row__icon,
body.mce-content-body .pkg-detail-row__icon {
  background: rgba(201, 169, 110, 0.12);
}
body.package-detail-page .pkg-detail-row__icon svg,
body.packages-page .pkg-detail-row__icon svg,
body.mce-content-body .pkg-detail-row__icon svg {
  color: #c9a96e;
}
body.package-detail-page .pkg-trust-item,
body.packages-page .pkg-trust-item,
body.mce-content-body .pkg-trust-item {
  color: rgba(7, 16, 31, 0.5);
}
body.package-detail-page .pkg-care-options__panel,
body.packages-page .pkg-care-options__panel,
body.mce-content-body .pkg-care-options__panel {
  background: rgba(7, 16, 31, 0.02);
  border-color: rgba(201, 169, 110, 0.2);
}
body.package-detail-page .pkg-care-options__title,
body.packages-page .pkg-care-options__title,
body.mce-content-body .pkg-care-options__title {
  color: #a07840;
}
body.package-detail-page .pkg-care-options__desc,
body.packages-page .pkg-care-options__desc,
body.mce-content-body .pkg-care-options__desc {
  color: rgba(7, 16, 31, 0.55);
}
body.package-detail-page .pkg-care-options__list li,
body.packages-page .pkg-care-options__list li,
body.mce-content-body .pkg-care-options__list li {
  color: var(--text-color-ink);
}
body.package-detail-page .pkg-care-options__list li::before,
body.packages-page .pkg-care-options__list li::before,
body.mce-content-body .pkg-care-options__list li::before {
  color: #c9a96e;
}
body.package-detail-page .pkg-care-options__meta-title,
body.packages-page .pkg-care-options__meta-title,
body.mce-content-body .pkg-care-options__meta-title {
  border-color: rgba(7, 16, 31, 0.08);
  color: rgba(7, 16, 31, 0.42);
}
body.package-detail-page .pkg-care-options__meta div,
body.packages-page .pkg-care-options__meta div,
body.mce-content-body .pkg-care-options__meta div {
  background: rgba(7, 16, 31, 0.04);
  border-color: rgba(7, 16, 31, 0.08);
  color: rgba(7, 16, 31, 0.8);
}
body.package-detail-page .pkg-care-options__meta div span,
body.packages-page .pkg-care-options__meta div span,
body.mce-content-body .pkg-care-options__meta div span {
  color: rgba(7, 16, 31, 0.35);
}
body.package-detail-page .why-grid__item,
body.packages-page .why-grid__item,
body.mce-content-body .why-grid__item {
  background: rgba(201, 169, 110, 0.06);
  border-color: rgba(201, 169, 110, 0.18);
  color: rgba(7, 16, 31, 0.75);
}
body.package-detail-page .conditions-grid__item,
body.packages-page .conditions-grid__item,
body.mce-content-body .conditions-grid__item {
  background: rgba(7, 16, 31, 0.03);
  border-color: rgba(7, 16, 31, 0.08);
}
body.package-detail-page .conditions-grid__title,
body.packages-page .conditions-grid__title,
body.mce-content-body .conditions-grid__title {
  color: #a07840;
}
body.package-detail-page .pkg-pillars__item,
body.packages-page .pkg-pillars__item,
body.mce-content-body .pkg-pillars__item {
  background: rgba(7, 16, 31, 0.03);
  border-color: rgba(7, 16, 31, 0.08);
}
body.package-detail-page .pkg-pillars__title,
body.packages-page .pkg-pillars__title,
body.mce-content-body .pkg-pillars__title {
  color: #a07840;
}
body.package-detail-page .pkg-pillars__list li,
body.packages-page .pkg-pillars__list li,
body.mce-content-body .pkg-pillars__list li {
  color: var(--text-color-ink);
}
body.package-detail-page .pkg-pillars__list li::before,
body.packages-page .pkg-pillars__list li::before,
body.mce-content-body .pkg-pillars__list li::before {
  color: #c9a96e;
}
body.package-detail-page .pkg-checklist li,
body.packages-page .pkg-checklist li,
body.mce-content-body .pkg-checklist li {
  color: var(--text-color-ink);
}
body.package-detail-page .pkg-checklist li::before,
body.packages-page .pkg-checklist li::before,
body.mce-content-body .pkg-checklist li::before {
  background-color: rgba(201, 169, 110, 0.12);
  border-color: rgba(201, 169, 110, 0.35);
}
body.package-detail-page .faq-item,
body.packages-page .faq-item,
body.mce-content-body .faq-item {
  border-color: rgba(7, 16, 31, 0.08);
}
body.package-detail-page .faq-q,
body.packages-page .faq-q,
body.mce-content-body .faq-q {
  color: var(--text-color-ink);
}
body.package-detail-page .faq-q:hover,
body.packages-page .faq-q:hover,
body.mce-content-body .faq-q:hover {
  color: #c9a96e;
}
body.package-detail-page .faq-icon,
body.packages-page .faq-icon,
body.mce-content-body .faq-icon {
  color: rgba(7, 16, 31, 0.35);
}
body.package-detail-page .faq-item.is-open .faq-icon,
body.packages-page .faq-item.is-open .faq-icon,
body.mce-content-body .faq-item.is-open .faq-icon {
  color: #c9a96e;
}
body.package-detail-page .faq-a,
body.packages-page .faq-a,
body.mce-content-body .faq-a {
  color: rgba(7, 16, 31, 0.65);
  background: rgba(7, 16, 31, 0.02);
}
body.package-detail-page .faq-bullets li,
body.packages-page .faq-bullets li,
body.mce-content-body .faq-bullets li {
  color: rgba(7, 16, 31, 0.65);
}
body.package-detail-page .faq-bullets li::before,
body.packages-page .faq-bullets li::before,
body.mce-content-body .faq-bullets li::before {
  color: #c9a96e;
}
body.package-detail-page .pricing-table,
body.packages-page .pricing-table,
body.mce-content-body .pricing-table {
  border-color: rgba(7, 16, 31, 0.08);
}
body.package-detail-page .pricing-row,
body.packages-page .pricing-row,
body.mce-content-body .pricing-row {
  border-color: rgba(7, 16, 31, 0.06);
}
body.package-detail-page .pricing-row__label,
body.packages-page .pricing-row__label,
body.mce-content-body .pricing-row__label {
  color: var(--text-color-ink);
}
body.package-detail-page .pricing-row__nights,
body.packages-page .pricing-row__nights,
body.mce-content-body .pricing-row__nights {
  color: rgba(7, 16, 31, 0.45);
}
body.package-detail-page .pricing-row__price,
body.packages-page .pricing-row__price,
body.mce-content-body .pricing-row__price {
  color: var(--text-color-ink);
}
body.package-detail-page .pkg-hero__pill,
body.packages-page .pkg-hero__pill,
body.mce-content-body .pkg-hero__pill {
  background: rgba(7, 16, 31, 0.12);
  color: rgba(7, 16, 31, 0.75);
}
body.package-detail-page .modal-overlay .modal,
body.packages-page .modal-overlay .modal,
body.mce-content-body .modal-overlay .modal {
  background: #fff;
  border-color: rgba(7, 16, 31, 0.1);
  max-width: 560px;
}
@media (max-width: 520px) {
  body.package-detail-page .modal-overlay .modal,
  body.packages-page .modal-overlay .modal,
  body.mce-content-body .modal-overlay .modal {
    max-width: none;
  }
}
body.package-detail-page .modal__label,
body.packages-page .modal__label,
body.mce-content-body .modal__label {
  color: #c9a96e;
}
body.package-detail-page .modal__title,
body.packages-page .modal__title,
body.mce-content-body .modal__title {
  color: var(--text-color-ink);
}
body.package-detail-page .modal__sub,
body.packages-page .modal__sub,
body.mce-content-body .modal__sub {
  color: rgba(7, 16, 31, 0.45);
}
body.package-detail-page .modal__close,
body.packages-page .modal__close,
body.mce-content-body .modal__close {
  background: rgba(7, 16, 31, 0.07);
  color: rgba(7, 16, 31, 0.6);
}
body.package-detail-page .modal__close:hover,
body.packages-page .modal__close:hover,
body.mce-content-body .modal__close:hover {
  background: rgba(7, 16, 31, 0.12);
  color: var(--text-color-ink);
}
body.package-detail-page .modal-note,
body.packages-page .modal-note,
body.mce-content-body .modal-note {
  color: rgba(7, 16, 31, 0.35);
}
body.package-detail-page .modal-whatsapp,
body.packages-page .modal-whatsapp,
body.mce-content-body .modal-whatsapp {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(7, 16, 31, 0.08);
}
body.package-detail-page .modal-whatsapp__label,
body.packages-page .modal-whatsapp__label,
body.mce-content-body .modal-whatsapp__label {
  font-size: 0.8rem;
  color: rgba(7, 16, 31, 0.4);
}
body.package-detail-page .c-form-enquiry__field label,
body.packages-page .c-form-enquiry__field label,
body.mce-content-body .c-form-enquiry__field label {
  color: var(--text-color-ink);
}
body.package-detail-page .c-form-enquiry__field input,
body.package-detail-page .c-form-enquiry__field select,
body.package-detail-page .c-form-enquiry__field textarea,
body.packages-page .c-form-enquiry__field input,
body.packages-page .c-form-enquiry__field select,
body.packages-page .c-form-enquiry__field textarea,
body.mce-content-body .c-form-enquiry__field input,
body.mce-content-body .c-form-enquiry__field select,
body.mce-content-body .c-form-enquiry__field textarea {
  background: rgba(7, 16, 31, 0.04);
  border-color: rgba(7, 16, 31, 0.12);
  color: var(--text-color-ink);
}
body.package-detail-page .c-form-enquiry__field input::placeholder,
body.package-detail-page .c-form-enquiry__field select::placeholder,
body.package-detail-page .c-form-enquiry__field textarea::placeholder,
body.packages-page .c-form-enquiry__field input::placeholder,
body.packages-page .c-form-enquiry__field select::placeholder,
body.packages-page .c-form-enquiry__field textarea::placeholder,
body.mce-content-body .c-form-enquiry__field input::placeholder,
body.mce-content-body .c-form-enquiry__field select::placeholder,
body.mce-content-body .c-form-enquiry__field textarea::placeholder {
  color: rgba(7, 16, 31, 0.3);
}
body.package-detail-page .c-form-enquiry__field input:focus,
body.package-detail-page .c-form-enquiry__field select:focus,
body.package-detail-page .c-form-enquiry__field textarea:focus,
body.packages-page .c-form-enquiry__field input:focus,
body.packages-page .c-form-enquiry__field select:focus,
body.packages-page .c-form-enquiry__field textarea:focus,
body.mce-content-body .c-form-enquiry__field input:focus,
body.mce-content-body .c-form-enquiry__field select:focus,
body.mce-content-body .c-form-enquiry__field textarea:focus {
  border-color: rgba(201, 169, 110, 0.6);
}
body.package-detail-page .c-form-enquiry__field select,
body.packages-page .c-form-enquiry__field select,
body.mce-content-body .c-form-enquiry__field select {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' fill='none' stroke='rgba(7,16,31,0.4)' stroke-width='1.8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
}
body.package-detail-page .c-form-enquiry__field select option,
body.packages-page .c-form-enquiry__field select option,
body.mce-content-body .c-form-enquiry__field select option {
  background: #fff;
  color: var(--text-color-ink);
}
body.package-detail-page .c-form-enquiry__checkbox,
body.packages-page .c-form-enquiry__checkbox,
body.mce-content-body .c-form-enquiry__checkbox {
  color: rgba(7, 16, 31, 0.5);
}
body.package-detail-page .c-form-enquiry__checkbox a,
body.packages-page .c-form-enquiry__checkbox a,
body.mce-content-body .c-form-enquiry__checkbox a {
  color: #a07840;
}
body.package-detail-page .iti__dropdown-content,
body.packages-page .iti__dropdown-content,
body.mce-content-body .iti__dropdown-content {
  background: #fff;
  border-color: rgba(7, 16, 31, 0.1);
}
body.package-detail-page .iti__dropdown-content .iti__search-input,
body.packages-page .iti__dropdown-content .iti__search-input,
body.mce-content-body .iti__dropdown-content .iti__search-input {
  background: rgba(7, 16, 31, 0.04);
  color: var(--text-color-ink);
  border-color: rgba(7, 16, 31, 0.08);
}
body.package-detail-page .iti__dropdown-content .iti__search-input::placeholder,
body.packages-page .iti__dropdown-content .iti__search-input::placeholder,
body.mce-content-body .iti__dropdown-content .iti__search-input::placeholder {
  color: rgba(7, 16, 31, 0.3);
}
body.package-detail-page .iti__dropdown-content .iti__country,
body.packages-page .iti__dropdown-content .iti__country,
body.mce-content-body .iti__dropdown-content .iti__country {
  color: rgba(7, 16, 31, 0.8);
}
body.package-detail-page .iti__dropdown-content .iti__country:hover, body.package-detail-page .iti__dropdown-content .iti__country.iti__highlight,
body.packages-page .iti__dropdown-content .iti__country:hover,
body.packages-page .iti__dropdown-content .iti__country.iti__highlight,
body.mce-content-body .iti__dropdown-content .iti__country:hover,
body.mce-content-body .iti__dropdown-content .iti__country.iti__highlight {
  background: rgba(201, 169, 110, 0.1);
}
body.package-detail-page .iti__dropdown-content .iti__dial-code,
body.packages-page .iti__dropdown-content .iti__dial-code,
body.mce-content-body .iti__dropdown-content .iti__dial-code {
  color: rgba(7, 16, 31, 0.4);
}
body.package-detail-page .iti__dropdown-content .iti__divider,
body.packages-page .iti__dropdown-content .iti__divider,
body.mce-content-body .iti__dropdown-content .iti__divider {
  border-color: rgba(7, 16, 31, 0.08);
}
body.package-detail-page .pkg-back-link,
body.packages-page .pkg-back-link,
body.mce-content-body .pkg-back-link {
  color: rgba(7, 16, 31, 0.45);
}
body.package-detail-page .pkg-back-link:hover,
body.packages-page .pkg-back-link:hover,
body.mce-content-body .pkg-back-link:hover {
  color: #c9a96e;
}

@media (max-width: 1024px) {
  .packages-page .packages-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .packages-page .page-hero {
    padding: 100px 20px 48px;
  }
  .packages-page .filter-bar {
    padding: 0 20px 40px;
  }
  .packages-page .packages-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 20px 60px;
  }
  .packages-page .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px 32px;
  }
  .packages-page .site-footer__nav {
    gap: 12px 18px;
  }
  .packages-page .site-footer__copy {
    white-space: normal;
  }
}
/* ================================================================
   Search Widget — Skyscanner-style hero search
   ================================================================ */
.search-widget {
  width: 100%;
  max-width: 860px;
  margin-inline: auto;
  /* ---- Tabs (Clinics / Treatments) ---- */
  /* ---- Main panel ---- */
  /* ---- Search button ---- */
  /* ---- Add-ons bar (Skyscanner style) ---- */
}
.search-widget__tabs {
  display: flex;
  gap: 4px;
  margin-bottom: -1px;
  position: relative;
  z-index: 1;
}
.search-widget__tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 12px 12px 0 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.search-widget__tab svg {
  width: 16px;
  height: 16px;
  opacity: 0.7;
}
.search-widget__tab:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}
.search-widget__tab.is-active {
  background: #fff;
  color: #111;
  border-color: #fff;
}
.search-widget__tab.is-active svg {
  opacity: 1;
}
.search-widget__panel {
  background: #fff;
  border-radius: 0 16px 0 0;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
  overflow: visible;
}
.search-widget__fields {
  display: grid;
  grid-template-columns: 1fr 1fr 220px auto;
  border-bottom: 1px solid #e8e8e8;
}
.search-widget__field {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 14px 20px 12px;
  border-right: 1px solid #e8e8e8;
  cursor: text;
  transition: background 0.15s;
}
.search-widget__field:hover {
  background: #f9f9f9;
}
.search-widget__field:last-child {
  border-right: none;
}
.search-widget__field label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 4px;
  pointer-events: none;
}
.search-widget__field input,
.search-widget__field select {
  font: 500 1rem/1.3 "Inter", system-ui, sans-serif;
  color: #111;
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  width: 100%;
  -webkit-appearance: none;
}
.search-widget__field input::placeholder,
.search-widget__field select::placeholder {
  color: #aaa;
  font-weight: 400;
}
.search-widget__field select {
  cursor: pointer;
  color: #aaa;
}
.search-widget__field select.has-value {
  color: #111;
}
.search-widget__field--icon {
  padding-left: 44px;
}
.search-widget__field__icon {
  position: absolute;
  left: 16px;
  bottom: 14px;
  color: #aaa;
  pointer-events: none;
}
.search-widget__field__icon svg {
  width: 18px;
  height: 18px;
}
.search-widget__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  background: #0257DA;
  color: #fff;
  font: 600 1rem/1 "Inter", system-ui, sans-serif;
  gap: 8px;
  border: none;
  cursor: pointer;
  border-radius: 0 16px 0 0;
  transition: background 0.2s;
  white-space: nowrap;
}
.search-widget__submit svg {
  width: 20px;
  height: 20px;
}
.search-widget__submit:hover {
  background: #0463f3;
}
.search-widget__addons {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: #fff;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
  flex-wrap: wrap;
}
.search-widget__addon-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #0257DA;
  border: 1.5px solid #0257DA;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.search-widget__addon-btn svg {
  width: 14px;
  height: 14px;
}
.search-widget__addon-btn:hover, .search-widget__addon-btn.is-active {
  background: #0257DA;
  color: #fff;
}
.search-widget__addon-btn.is-active .search-widget__addon-plus {
  display: none;
}
.search-widget__addon-btn.is-active .search-widget__addon-check {
  display: block;
}
.search-widget__addon-btn:not(.is-active) .search-widget__addon-plus {
  display: block;
}
.search-widget__addon-btn:not(.is-active) .search-widget__addon-check {
  display: none;
}
.search-widget__addon-divider {
  width: 1px;
  height: 18px;
  background: #e8e8e8;
  margin: 0 2px;
}
.search-widget__addon-label {
  font-size: 0.75rem;
  color: #aaa;
  margin-left: 2px;
}

/* ================================================================
   Search Results
   ================================================================ */
.search-results {
  display: none;
  margin-top: 32px;
  /* ---- Grid: 50% clinics / 50% tourist ---- */
  /* ---- Loading skeleton ---- */
  /* ---- Accommodation col (toggleable) ---- */
}
.search-results.is-visible {
  display: block;
}
.search-results__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.search-results__col-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 12px 12px 0 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.search-results__col-header svg {
  width: 16px;
  height: 16px;
}
.search-results__col--clinics .search-results__col-header {
  background: #0257DA;
  color: #fff;
}
.search-results__col--tourist .search-results__col-header {
  background: #111;
  color: #fff;
}
.search-results__list {
  background: #fff;
  border-radius: 0 0 12px 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.search-results__count {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  margin-left: auto;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}
.search-results__skeleton {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.search-results__skeleton-item {
  height: 72px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  border-radius: 8px;
  animation: skeleton-shimmer 1.4s infinite;
}
@keyframes skeleton-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.search-results__col--accommodation {
  grid-column: 1/-1;
  display: none;
}
.search-results__col--accommodation.is-visible {
  display: block;
}
.search-results__col--accommodation .search-results__col-header {
  background: #c9a96e;
  color: #fff;
}
.search-results__col--accommodation .search-results__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: 0 0 12px 12px;
}

/* ---- Clinic result card ---- */
.s-clinic-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.15s;
  text-decoration: none;
  color: inherit;
}
.s-clinic-card:last-child {
  border-bottom: none;
}
.s-clinic-card:hover {
  background: #f7f9ff;
}
.s-clinic-card__img {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  background: #f0f0f0;
}
.s-clinic-card__body {
  flex: 1;
  min-width: 0;
}
.s-clinic-card__name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.s-clinic-card__location {
  font-size: 0.78rem;
  color: #6b6b6b;
  display: flex;
  align-items: center;
  gap: 4px;
}
.s-clinic-card__location svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}
.s-clinic-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  color: #318633;
  background: #EBF8DF;
  border-radius: 999px;
  padding: 2px 8px;
  margin-top: 5px;
}
.s-clinic-card__badge svg {
  width: 10px;
  height: 10px;
}
.s-clinic-card__arrow {
  color: #aaa;
  flex-shrink: 0;
  margin-top: 4px;
}
.s-clinic-card__arrow svg {
  width: 16px;
  height: 16px;
}

/* ---- Tourist place card ---- */
.s-tourist-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.15s;
}
.s-tourist-card:last-child {
  border-bottom: none;
}
.s-tourist-card:hover {
  background: #fffaf5;
}
.s-tourist-card__emoji {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #fff8ee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.s-tourist-card__body {
  flex: 1;
}
.s-tourist-card__name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 3px;
}
.s-tourist-card__desc {
  font-size: 0.78rem;
  color: #6b6b6b;
  line-height: 1.45;
}
.s-tourist-card__tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #c9a96e;
  border: 1px solid #c9a96e;
  border-radius: 999px;
  padding: 1px 7px;
  margin-top: 5px;
}

/* ---- Hotel card ---- */
.s-hotel-card {
  padding: 16px 18px;
  border-right: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}
.s-hotel-card:nth-child(3n) {
  border-right: none;
}
.s-hotel-card__name {
  font-size: 0.88rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 4px;
}
.s-hotel-card__stars {
  color: #c9a96e;
  font-size: 0.75rem;
  margin-bottom: 4px;
}
.s-hotel-card__price {
  font-size: 0.82rem;
  color: #0257DA;
  font-weight: 600;
}
.s-hotel-card__location {
  font-size: 0.75rem;
  color: #aaa;
  margin-top: 3px;
}

/* ---- View all link ---- */
.s-view-all {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #0257DA;
  text-decoration: none;
  border-top: 1px solid #f0f0f0;
  transition: background 0.15s;
}
.s-view-all:hover {
  background: #f7f9ff;
}
.s-view-all svg {
  width: 14px;
  height: 14px;
}

/* ================================================================
   Responsive
   ================================================================ */
@media (max-width: 900px) {
  .search-widget__fields {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .search-widget__submit {
    grid-column: 1/-1;
    padding: 14px;
    border-radius: 0;
  }
  .search-results__grid {
    grid-template-columns: 1fr;
  }
  .search-results__col--accommodation .search-results__list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .search-widget__tabs {
    overflow-x: auto;
  }
  .search-widget__fields {
    grid-template-columns: 1fr;
  }
  .search-widget__field {
    border-right: none;
    border-bottom: 1px solid #e8e8e8;
  }
  .search-results__col--accommodation .search-results__list {
    grid-template-columns: 1fr;
  }
}
/* ================================================================
   WCS Search Results Page
   ================================================================ */
/* ---- Sticky search bar ---- */
.wcs-search-bar {
  position: sticky;
  top: var(--header-h);
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--color-border, #e8e8e8);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.wcs-search-bar__inner {
  max-width: var(--container-width);
  margin-inline: auto;
  padding: 12px var(--container-padding-x);
}
.wcs-search-bar__form {
  display: flex;
  align-items: center;
  background: #f7f7f7;
  border: 1.5px solid #e8e8e8;
  border-radius: 999px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.wcs-search-bar__form:focus-within {
  border-color: var(--color-blue, #0257DA);
  box-shadow: 0 0 0 3px rgba(2, 87, 218, 0.1);
}
.wcs-search-bar__field {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  padding: 0 18px;
  min-width: 0;
}
.wcs-search-bar__field svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: #aaa;
}
.wcs-search-bar__field input,
.wcs-search-bar__field select {
  flex: 1;
  font: 500 0.9rem/1 inherit;
  color: #111;
  background: transparent;
  border: none;
  outline: none;
  padding: 12px 0;
  min-width: 0;
  -webkit-appearance: none;
}
.wcs-search-bar__field input::placeholder,
.wcs-search-bar__field select::placeholder {
  color: #aaa;
  font-weight: 400;
}
.wcs-search-bar__field--select select {
  cursor: pointer;
}
.wcs-search-bar__divider {
  width: 1px;
  height: 24px;
  background: #ddd;
  flex-shrink: 0;
}
.wcs-search-bar__btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px 10px 18px;
  margin: 4px;
  background: var(--color-blue, #0257DA);
  color: #fff;
  font: 600 0.88rem/1 inherit;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.wcs-search-bar__btn svg {
  width: 16px;
  height: 16px;
}
.wcs-search-bar__btn:hover {
  background: #0463f3;
}

/* ---- Add-ons bar ---- */
.wcs-addons {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 4px 4px;
  flex-wrap: wrap;
}
.wcs-addons__label {
  font-size: 0.72rem;
  font-weight: 600;
  color: #aaa;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.wcs-addon-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-blue, #0257DA);
  border: 1.5px solid var(--color-blue, #0257DA);
  background: transparent;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.wcs-addon-btn svg {
  width: 12px;
  height: 12px;
}
.wcs-addon-btn__check {
  display: none;
}
.wcs-addon-btn__plus {
  display: block;
}
.wcs-addon-btn.is-active {
  background: var(--color-blue, #0257DA);
  color: #fff;
}
.wcs-addon-btn.is-active .wcs-addon-btn__check {
  display: block;
}
.wcs-addon-btn.is-active .wcs-addon-btn__plus {
  display: none;
}

/* ================================================================
   Results page layout
   ================================================================ */
.wcs-results-page {
  background: var(--color-grey-20, #f7f7f7);
  min-height: 100vh;
  padding: 32px 0 80px;
}
.wcs-results-page__inner {
  max-width: var(--container-width);
  margin-inline: auto;
  padding-inline: var(--container-padding-x);
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: start;
}

/* ---- Sidebar filters ---- */
.wcs-filters {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e8e8e8;
  overflow: hidden;
  position: sticky;
  top: calc(var(--header-h) + 80px);
}
.wcs-filters__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-size: 0.88rem;
  font-weight: 700;
  border-bottom: 1px solid #f0f0f0;
}
.wcs-filters__reset {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-blue, #0257DA);
  text-decoration: none;
}
.wcs-filters__reset:hover {
  text-decoration: underline;
}

.wcs-filter-group {
  padding: 16px 20px;
  border-bottom: 1px solid #f0f0f0;
}
.wcs-filter-group:last-child {
  border-bottom: none;
}
.wcs-filter-group__title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 12px;
}

.wcs-filter-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #333;
  cursor: pointer;
  padding: 4px 0;
}
.wcs-filter-check input[type=checkbox] {
  width: 16px;
  height: 16px;
  accent-color: var(--color-blue, #0257DA);
  cursor: pointer;
}
.wcs-filter-check__badge {
  margin-left: auto;
  font-size: 0.75rem;
}

/* ---- Results meta ---- */
.wcs-results-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.wcs-results-meta__count {
  font-size: 0.88rem;
  color: #666;
}
.wcs-results-meta__count strong {
  color: #111;
}
.wcs-results-meta__count em {
  font-style: normal;
  color: #111;
  font-weight: 600;
}
.wcs-results-meta__sort {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #666;
}

.wcs-sort-select {
  font: 500 0.82rem/1 inherit;
  color: #111;
  background: #fff;
  border: 1.5px solid #e8e8e8;
  border-radius: 8px;
  padding: 6px 10px;
  cursor: pointer;
  outline: none;
}
.wcs-sort-select:focus {
  border-color: var(--color-blue, #0257DA);
}

/* ================================================================
   Split grid — 50/50
   ================================================================ */
.wcs-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

/* ---- Column header ---- */
.wcs-col__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 12px 12px 0 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.wcs-col__header svg {
  width: 15px;
  height: 15px;
}
.wcs-col__header .wcs-col__count {
  margin-left: auto;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}
.wcs-col--clinics .wcs-col__header {
  background: var(--color-blue, #0257DA);
  color: #fff;
}
.wcs-col--tourist .wcs-col__header {
  background: #111;
  color: #fff;
}
.wcs-col__header--gold {
  background: var(--ci-accent, #c9a96e);
  color: #fff;
}

/* ---- Clinic card ---- */
.wcs-clinic-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.15s;
  text-decoration: none;
  color: inherit;
}
.wcs-clinic-card:last-child {
  border-bottom: none;
}
.wcs-clinic-card:hover {
  background: #f7f9ff;
}
.wcs-clinic-card__img {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  background: #f0f0f0;
}
.wcs-clinic-card__body {
  flex: 1;
  min-width: 0;
}
.wcs-clinic-card__name {
  font-size: 0.92rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wcs-clinic-card__location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  color: #666;
}
.wcs-clinic-card__location svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}
.wcs-clinic-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 6px;
}
.wcs-clinic-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
}
.wcs-clinic-card__badge--accredited {
  color: #318633;
  background: #EBF8DF;
}
.wcs-clinic-card__badge--specialism {
  color: #555;
  background: #f0f0f0;
}
.wcs-clinic-card__arrow {
  flex-shrink: 0;
  color: #ccc;
  margin-top: 4px;
}
.wcs-clinic-card__arrow svg {
  width: 16px;
  height: 16px;
}

/* ---- Tourist card ---- */
.wcs-tourist-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
}
.wcs-tourist-card:last-child {
  border-bottom: none;
}
.wcs-tourist-card:hover {
  background: #fffaf5;
}
.wcs-tourist-card__emoji {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #fff8ee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.wcs-tourist-card__name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 3px;
}
.wcs-tourist-card__desc {
  font-size: 0.78rem;
  color: #666;
  line-height: 1.45;
}
.wcs-tourist-card__tag {
  display: inline-block;
  margin-top: 5px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ci-accent, #c9a96e);
  border: 1px solid var(--ci-accent, #c9a96e);
  border-radius: 999px;
  padding: 1px 7px;
}

/* ---- Accommodation row ---- */
.wcs-accommodation-row {
  grid-column: 1/-1;
  margin-top: 8px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.wcs-hotels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #fff;
}

/* ---- Hotel card ---- */
.wcs-hotel-card {
  padding: 18px 20px;
  border-right: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}
.wcs-hotel-card:nth-child(3n) {
  border-right: none;
}
.wcs-hotel-card__name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 4px;
}
.wcs-hotel-card__stars {
  color: var(--ci-accent, #c9a96e);
  font-size: 0.8rem;
  margin-bottom: 4px;
}
.wcs-hotel-card__price {
  font-size: 0.88rem;
  color: var(--color-blue, #0257DA);
  font-weight: 700;
}
.wcs-hotel-card__loc {
  font-size: 0.75rem;
  color: #aaa;
  margin-top: 3px;
}
.wcs-hotel-card__btn {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--color-blue, #0257DA);
  color: #fff;
  text-decoration: none;
  transition: background 0.2s;
}
.wcs-hotel-card__btn:hover {
  background: #0463f3;
}

/* ================================================================
   Responsive
   ================================================================ */
@media (max-width: 1100px) {
  .wcs-results-page__inner {
    grid-template-columns: 220px 1fr;
  }
}
@media (max-width: 900px) {
  .wcs-results-page__inner {
    grid-template-columns: 1fr;
  }
  .wcs-filters {
    position: static;
  }
  .wcs-split-grid {
    grid-template-columns: 1fr;
  }
  .wcs-hotels-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .wcs-search-bar__form {
    flex-wrap: wrap;
    border-radius: 16px;
    background: #fff;
  }
  .wcs-search-bar__field {
    padding: 8px 16px;
  }
  .wcs-search-bar__divider {
    display: none;
  }
  .wcs-search-bar__btn {
    width: 100%;
    margin: 4px;
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .wcs-hotels-grid {
    grid-template-columns: 1fr;
  }
}
.c-filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.c-filter__results {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: 0;
  text-align: center;
  color: #24242A;
}
.c-filter__count {
  font-weight: 700;
}
.c-filter__button {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
}
.c-filter__button:hover svg {
  color: #464646;
}
.c-filter__sort {
  position: relative;
}
.c-filter__sort-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1.2;
  padding-block: 2px;
  overflow: visible;
}
.c-filter__sort-menu {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 4px;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  padding: 8px;
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity var(--transition-duration), transform var(--transition-duration), visibility var(--transition-duration);
  z-index: 10;
}
.c-filter__sort-option {
  width: 100%;
  padding: 8px 10px;
  border: none;
  border-radius: 8px;
  background: none;
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  color: #000000;
  cursor: pointer;
}
.c-filter__sort-option:hover, .c-filter__sort-option.is-selected {
  background-color: #f7f7f7;
  font-weight: bold;
}
.c-filter__sort.is-open .c-filter__sort-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (width <= 767.98px) {
  .c-filter {
    flex-wrap: nowrap;
    row-gap: 0;
    column-gap: 12px;
  }
  .c-filter > .c-filter__sort {
    display: none;
  }
  .c-filter > .c-filter__results {
    order: 1;
    flex: 1 1 auto;
    text-align: left;
    font-size: 16px;
  }
  .c-filter > .c-filter__button {
    order: 2;
    margin-left: auto;
  }
}
.c-filter__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.c-filter__tags-label {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-gray-60);
}

.c-filter__tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.c-filter__tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  border-radius: 50px;
  background-color: var(--color-blue);
  letter-spacing: 0;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  cursor: default;
}

.c-filter__tag-remove {
  display: flex;
  flex-direction: row;
  align-items: center;
  border: none;
  background: none;
  color: #ffffff;
  cursor: pointer;
}

.c-filter__tag-remove:hover {
  color: rgba(255, 255, 255, 0.3);
}

.c-filter__tag-remove:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 2px;
}

.c-filter__clear {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: none;
  background: none;
  color: var(--color-blue);
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 1%;
  cursor: pointer;
}

.c-filter__clear:hover {
  opacity: 0.8;
}

.modal.m-filter {
  background: rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.modal.m-filter .modal-wrapper {
  margin: 5px;
  height: calc(100% - 10px);
  max-height: calc(100dvh - 10px);
  max-width: 420px;
  width: 100%;
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}
@media (width <= 479.98px) {
  .modal.m-filter .modal-wrapper {
    max-width: 100%;
    width: auto;
  }
}

.modal.m-filter .modal-header {
  align-items: center;
  margin-bottom: 24px;
  flex-shrink: 0;
  padding: 24px 24px 0;
}

.modal.m-filter .modal-close {
  background: transparent;
  box-shadow: none;
}

.modal.m-filter .modal-close:hover {
  box-shadow: none;
  background: rgba(0, 0, 0, 0.05);
}

.filter-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1 1 auto;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 0 24px 16px;
}

.filter-panel--scrollable {
  padding-bottom: 16px;
}

.filter-panel__section {
  padding-bottom: 16px;
  border-bottom: 1px solid #efefef;
}

.filter-panel__section--sort {
  display: none;
}

.filter-panel__sort-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.filter-panel__section-content {
  margin-top: 10px;
}

.filter-panel__section-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0;
  border: none;
  background: none;
  text-align: left;
  cursor: pointer;
}

.filter-panel__section-toggle .filter-panel__title {
  margin-bottom: 0;
}

.filter-panel__section-toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 22px;
  line-height: 1;
  color: #1b1b24;
}

.filter-panel__sort-radio {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.filter-panel__sort-radio-input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--color-blue);
  flex-shrink: 0;
}

.filter-panel__sort-radio-label {
  font-size: 15px;
  font-weight: 600;
  color: #1b1b24;
}

.filter-panel__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}

.filter-panel__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-panel__chip {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid #d5d7dd;
  background: #ffffff;
  font-size: 14px;
  font-weight: 600;
  color: #1b1b24;
  cursor: pointer;
}

.filter-panel__chip.is-active {
  background: var(--color-blue);
  border-color: var(--color-blue);
  color: #ffffff;
}

.filter-panel__chip:hover {
  border-color: #b5b9c2;
}

.filter-panel__footer {
  display: flex;
  flex-shrink: 0;
  padding: 16px 24px calc(16px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid #efefef;
  background: #ffffff;
}

.filter-panel__selected {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 24px 16px;
}

.filter-panel__selected-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.filter-panel__selected[hidden] {
  display: none !important;
}

.filter-panel__selected-label {
  font-size: 14px;
  font-weight: 600;
  color: #696b72;
}

.filter-panel__selected-clear {
  border: none;
  background: transparent;
  padding: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-blue);
  cursor: pointer;
}

.filter-panel__selected-clear:hover {
  opacity: 0.8;
}

.filter-panel__selected-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-panel__selected-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  border: none;
  background: #edf2ff;
  color: var(--color-blue);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
}

.filter-panel__selected-item-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(16, 52, 166, 0.12);
  font-size: 12px;
  line-height: 1;
}

.filter-panel__apply {
  width: 100%;
  flex: 1 1 100%;
  border-radius: 6px;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 1%;
  padding: 8px 16px;
}

@media (width <= 767.98px) {
  .filter-panel__section--sort {
    display: block;
  }
  .filter-panel__section--sort .filter-panel__sort-radio {
    min-height: 28px;
  }
}
.c-clinic .card.m-info-card {
  position: relative;
}
.c-clinic .card.m-info-card.m-sticky {
  position: sticky;
  top: 85px;
  z-index: 2;
}

.clinic-accreditation-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.clinic-profile {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.clinic-profile__hero {
  position: relative;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
  margin: -24px -24px 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.clinic-profile__hero .badge.m-accredited {
  position: static;
  align-self: flex-end;
  margin-left: auto;
}

.clinic-profile__hero > * {
  position: relative;
  z-index: 1;
}

.clinic-profile__hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.clinic-profile__header {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.clinic-profile__logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #eff0f0;
  display: grid;
  place-items: center;
  background: #ffffff;
}

.clinic-profile__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.clinic-profile__logo.is-empty,
.clinic-profile__logo.m-hide {
  border: none;
  background: transparent;
}

.clinic-profile__logo.is-empty img,
.clinic-profile__logo.m-hide img {
  display: none;
}

.clinic-profile__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.6;
  margin: 0;
  align-self: flex-start;
}

.clinic-profile__hero.has-bg .clinic-profile__title-text {
  background: rgba(255, 255, 255, 0.65);
  padding: 2px 8px;
  border-radius: 12px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.clinic-profile__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.clinic-profile__tag {
  padding: 4px 8px;
  border-radius: 8px;
  background: #f1f3f6;
  color: #3b3b3b;
  font-size: 12px;
  font-weight: 600;
}

.clinic-profile__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.clinic-profile__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: var(--color-dark-40);
}

.clinic-profile__info a {
  color: #5D5D5D;
}
.clinic-profile__info a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.clinic-profile__info-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.clinic-profile__info-item svg {
  flex-shrink: 0;
}

@media (width <= 479.98px) {
  .clinic-profile__info-item {
    align-items: flex-start;
    gap: 6px;
  }
  .clinic-profile__info-item svg {
    margin-top: 2px;
  }
}
.clinic-profile__address,
.clinic-profile__website,
.clinic-profile__phone {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0;
  color: #5D5D5D;
}

.clinic-profile__map {
  height: 200px;
  border-radius: 16px;
  border: 1px solid #eff0f0;
  background: #f6f7f9;
  overflow: hidden;
}

.clinic-profile__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.clinic-accreditation {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.clinic-accreditation__title {
  font-size: 28px;
  font-weight: 700;
}

.clinic-accreditation__center {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.clinic-accreditation__logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #eff0f0;
  display: grid;
  place-items: center;
  background: #fff;
  position: relative;
}
@media (width <= 479.98px) {
  .clinic-accreditation__logo {
    width: 32px;
    height: 32px;
  }
}

.clinic-accreditation__logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.clinic-accreditation__logo-check {
  position: absolute;
  bottom: -4px;
  right: -4px;
}

.clinic-accreditation__name {
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0;
  margin-bottom: 6px;
}

.clinic-accreditation__meta {
  font-size: 16px;
  color: #5D5D5D;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 4px;
}

.clinic-accreditation__meta-value {
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0;
  color: #000000;
}

.clinic-accreditation__notice {
  border: 1px solid #f0d9ad;
  background: #fff8e9;
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.clinic-accreditation__notice-title,
.clinic-accreditation__notice-text {
  margin: 0;
}

.clinic-accreditation__notice-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  color: #1f2328;
}

.clinic-accreditation__notice-text {
  font-size: 14px;
  line-height: 1.4;
  color: #5d5d5d;
}

.clinic-info-cards__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.clinic-info-cards {
  border-radius: 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.clinic-info-cards__title,
.clinic-info-cards__text {
  margin: 0;
}

.clinic-section-subtitle,
.clinic-info-cards__title,
.clinic-accreditation__specialisms-title,
.clinic-overview__title,
.clinic-history__title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  color: #1f2328;
}

.clinic-info-cards__text {
  font-size: 14px;
  line-height: 1.35;
  color: #4f5b69;
}

.clinic-info-cards__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  min-height: 170px;
  border: 1px solid rgba(37, 40, 44, 0.1);
  border-radius: 22px;
  background: #fff;
  box-shadow: none;
  padding: 18px 16px;
}

.clinic-info-cards__icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #f3f3f3;
  color: #004cb7;
  flex-shrink: 0;
}

.clinic-info-cards__content {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.clinic-info-cards__card-title {
  margin: 0;
  font-size: 12px;
  line-height: 1.3;
  color: #73839a;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.clinic-info-cards__card-value {
  margin: 0;
  font-size: 16px;
  line-height: 1.3;
  color: #1f2328;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.clinic-info-cards__payments {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.clinic-info-cards__payment-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid #e9ecef;
  border-radius: 999px;
  background: #f8fafc;
  padding: 3px 8px;
  font-size: 12px;
  line-height: 1.25;
  color: #334150;
  font-weight: 600;
}

.clinic-info-cards__payment-item svg {
  flex-shrink: 0;
}

.clinic-accreditation__specialisms {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #e4e9f0;
  border-radius: 12px;
  background: #fff;
  padding: 14px;
}

.clinic-accreditation__specialisms-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.clinic-accreditation__specialism {
  display: inline-flex;
  align-items: center;
  border: 1px solid #dde3ea;
  background: #f5f8fb;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 13px;
  line-height: 1.3;
  color: #334150;
}

.clinic-accreditation__insights {
  display: grid;
  gap: 12px;
}

.clinic-history {
  border: 1px solid #e4e9f0;
  border-radius: 12px;
  padding: 14px;
}

.clinic-history__title {
  margin-bottom: 10px;
}

.clinic-history__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.clinic-history__item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.clinic-history__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 6px;
  background: #2171ff;
  flex-shrink: 0;
}

.clinic-history__value {
  font-size: 14px;
  line-height: 1.4;
  color: #1f2328;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.clinic-overview {
  border: 1px solid #e4e9f0;
  border-radius: 12px;
  background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.clinic-overview__content {
  position: relative;
  max-height: 200px;
  overflow: hidden;
}

.clinic-overview__content::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 48px;
  background: linear-gradient(180deg, rgba(238, 245, 255, 0) 0%, #eef5ff 100%);
  pointer-events: none;
}

.clinic-overview__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
  color: #000;
}

.clinic-overview__toggle,
.clinic-accreditation__specialisms-toggle {
  align-self: flex-end;
  appearance: none;
  border: 1px solid #d5dce6;
  background: #ffffff;
  color: #1f2328;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
  cursor: pointer;
}

.clinic-overview__toggle:hover,
.clinic-accreditation__specialisms-toggle:hover {
  border-color: #b9c2cf;
}

.clinic-overview.is-expanded .clinic-overview__content {
  max-height: none;
}

.clinic-overview.is-expanded .clinic-overview__content::after {
  display: none;
}

@media (width <= 1023.98px) {
  .clinic-info-cards__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (width <= 767.98px) {
  .clinic-accreditation__meta {
    flex-direction: column;
    align-items: flex-start;
  }
  .clinic-accreditation__meta-value {
    display: block;
  }
  .clinic-info-cards__grid {
    grid-template-columns: 1fr;
  }
  .clinic-inline-info__content {
    right: auto;
    left: -80px;
    min-width: 240px;
    max-width: min(300px, 78vw);
  }
}
.clinic-accreditation__ratings {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.clinic-rating-group__title {
  font-weight: 700;
  margin-bottom: 12px;
}

.clinic-rating {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.clinic-rating-expandable {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.clinic-rating-expandable__main {
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.clinic-rating-expandable__main .clinic-rating__item {
  flex: 1 1 auto;
}

.clinic-rating-expandable__main--section {
  align-items: flex-start;
}

.clinic-rating-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.clinic-rating-section + .clinic-rating-section {
  margin-top: 8px;
}

.clinic-rating-section__title {
  font-size: 14px;
  font-weight: 600;
  color: #232323;
}

.clinic-rating-details-panel {
  padding-top: 10px;
  border-top: 1px solid #eceff2;
}

.clinic-rating-tree {
  margin: 0;
  padding: 0 0 0 14px;
  list-style: none;
  border-left: 1px solid #dfe4ea;
  max-height: none;
  overflow: visible;
}

.clinic-rating-tree--nested {
  margin-top: 8px;
}

[data-jcqhc-report-ratings-list] {
  max-height: none;
  overflow: visible;
  padding-right: 0;
}

.clinic-rating-tree__item {
  position: relative;
  padding: 8px 0 8px 12px;
}

.clinic-rating-tree__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 10px;
  border-top: 1px solid #dfe4ea;
}

.clinic-rating-tree__item:last-child::after {
  content: "";
  position: absolute;
  left: -1px;
  top: 19px;
  bottom: 0;
  width: 2px;
  background: #ffffff;
}

.clinic-rating-tree__content {
  display: block;
}

.clinic-rating-tree__content .clinic-rating__item {
  width: 100%;
}

.clinic-rating__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.clinic-rating-tree__label {
  font-size: 13px;
  font-weight: 600;
  color: #232323;
  min-width: 0;
}

.clinic-rating-tree__value {
  flex-shrink: 0;
  border-radius: 0;
  padding: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  color: #232323;
}

.clinic-rating-tree__value.m-green {
  background: transparent;
  color: inherit;
}

.clinic-rating-tree__value.m-yellow {
  background: transparent;
  color: inherit;
}

.clinic-rating-tree__value.m-red {
  background: transparent;
  color: inherit;
}

.clinic-rating-tree__value.m-gray {
  background: transparent;
  color: inherit;
}

.clinic-rating-tree__value.m-dark-green {
  background: transparent;
  color: inherit;
}

.clinic-rating-service {
  border: 1px solid #eceff2;
  border-radius: 12px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.clinic-rating-service__title {
  font-size: 14px;
  font-weight: 700;
}

.clinic-rating-service__meta {
  font-size: 13px;
  line-height: 1.35;
  color: #5d5d5d;
  margin-top: -6px;
}

.clinic-rating__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 14px;
  font-weight: 600;
  gap: 12px;
}

.clinic-rating__row span:first-child {
  flex: 1 1 auto;
  min-width: 0;
}

.clinic-rating__row span:last-child {
  flex: 0 0 auto;
  white-space: nowrap;
}

.clinic-rating-toggle {
  appearance: none;
  border: 1px solid #dfe4ea;
  background: #ffffff;
  color: #3b3b3b;
  border-radius: 999px;
  width: 28px;
  height: 28px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
}

.clinic-rating-toggle:hover {
  border-color: #c5ccd4;
}

.clinic-rating-toggle.is-open {
  background: #f5f7fa;
}

.clinic-rating-subtoggle {
  width: 28px;
  height: 28px;
  min-width: 28px;
}

.clinic-rating-subpanel {
  margin-top: 8px;
}

.clinic-rating__bar {
  height: 6px;
  border-radius: 999px;
  background: #eceff2;
  overflow: hidden;
}

.clinic-rating__fill {
  display: block;
  height: 100%;
  border-radius: 999px;
}

.clinic-rating__fill.m-green {
  background: #34a853;
}

.clinic-rating__fill.m-yellow {
  background: #fbbc04;
}

.clinic-rating__fill.m-red {
  background: #ea4335;
}

.clinic-rating__fill.m-gray {
  background: #c9cdd4;
}

.clinic-rating__fill.m-dark-green {
  background: #105C25;
}

.clinic-accreditation__footer {
  display: flex;
  justify-content: center;
}

.clinic-accreditation__footer--multi {
  gap: 10px;
  flex-wrap: wrap;
}

.clinic-accreditation__logo--jcqhc {
  border: 1px solid #eff0f0;
  background: #ffffff;
  color: #1f6bdb;
}

.clinic-accreditation__logo--jcqhc.is-fallback {
  border: none;
  background: linear-gradient(135deg, #133a8a 0%, #1f6bdb 100%);
  color: #ffffff;
}

.clinic-accreditation__logo-mark {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.clinic-inline-info {
  position: relative;
  display: inline-flex;
  margin-left: 4px;
}

.clinic-inline-info__trigger {
  list-style: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid #d5dce6;
  color: #4f5b69;
  background: #f8fafc;
  cursor: pointer;
}

.clinic-inline-info__trigger::-webkit-details-marker {
  display: none;
}

.clinic-inline-info__content {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  z-index: 3;
  min-width: 280px;
  max-width: 360px;
  border: 1px solid #e4e9f0;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(21, 31, 52, 0.14);
  padding: 10px 12px;
}

.clinic-inline-info__content p {
  margin: 0 0 8px;
  font-size: 13px;
  line-height: 1.4;
  color: #1f2328;
}

.clinic-inline-info__content p:last-of-type {
  margin-bottom: 6px;
}

.clinic-inline-info__content a {
  font-size: 13px;
  font-weight: 600;
  color: #0d4fba;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.clinic-inline-info:not([open]) .clinic-inline-info__content {
  display: none;
}

.clinic-inline-info:not([open]):hover .clinic-inline-info__content,
.clinic-inline-info:not([open]):focus-within .clinic-inline-info__content {
  display: block;
}

.clinic-accreditation--hfea {
  gap: 0;
}

.clinic-hfea {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.clinic-hfea__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.clinic-hfea__identity {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex: 1 1 auto;
}

.clinic-hfea__logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid #eff0f0;
  display: grid;
  place-items: center;
  background: #fff;
  flex: 0 0 auto;
  position: relative;
  overflow: visible;
}

.clinic-hfea__logo .clinic-accreditation__logo-check {
  bottom: -2px;
  right: -2px;
}

.clinic-hfea__logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.clinic-hfea__name {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
}

.clinic-hfea__ratings {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.clinic-hfea__rating {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.clinic-hfea__rating-label {
  font-size: 14px;
  font-weight: 600;
  color: #5D5D5D;
}

.clinic-hfea__rating-body {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.clinic-hfea__rating-track {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid #e6e8eb;
  background: #fff;
}

.clinic-hfea__dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid #2e2e2e;
  background: #fff;
  display: inline-block;
}

.clinic-hfea__dot.is-filled {
  background: #8BC34A;
  border-color: #6ea33b;
}

.clinic-hfea__star {
  width: 24px;
  height: 24px;
  fill: #d0d4da;
}

.clinic-hfea__star.is-filled {
  fill: #f7c21a;
}

.clinic-hfea__score {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.clinic-hfea__chart {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 24px;
  align-items: start;
}

.clinic-hfea__chart-figure {
  border: 1px solid #e7dccf;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.clinic-hfea__chart-period {
  font-size: 14px;
  color: #5D5D5D;
}

.clinic-hfea__chart-grid {
  position: relative;
  height: 170px;
  padding-top: 0;
  border-radius: 8px;
  border: 1px solid #e7dccf;
  background-color: #ffffff;
  overflow: hidden;
}

.clinic-hfea__chart-svg {
  width: 100%;
  height: 100%;
  display: block;
  font-family: inherit;
}

.clinic-hfea__chart-band {
  position: absolute;
  top: 26px;
  bottom: 0;
  left: 18%;
  width: 20%;
  background: #f5fac6;
}

.clinic-hfea__chart-bar {
  position: absolute;
  top: 26px;
  bottom: 0;
  width: 3px;
  border-radius: 999px;
}

.clinic-hfea__chart-label {
  position: absolute;
  top: 4px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  transform: translateX(-50%);
  white-space: nowrap;
}

.clinic-hfea__chart-label.m-clinic {
  color: #f28c28;
  top: 6px;
}

.clinic-hfea__chart-label.m-national {
  color: #007d75;
  top: auto;
  bottom: 6px;
}

.clinic-hfea__chart-bar.m-clinic {
  background: #f28c28;
}

.clinic-hfea__chart-bar.m-national {
  background: #007d75;
}

.clinic-hfea__chart-bar.m-clinic::after,
.clinic-hfea__chart-bar.m-national::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 4px;
  left: 50%;
  transform: translateX(-50%);
}

.clinic-hfea__chart-bar.m-clinic::after {
  top: -6px;
  background: #f28c28;
}

.clinic-hfea__chart-bar.m-national::after {
  bottom: -6px;
  background: #007d75;
}

.clinic-hfea__chart-switch {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.clinic-hfea__switch-card {
  border-radius: 16px;
  background: #ffffff;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid rgba(37, 40, 44, 0.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.clinic-hfea__switch-card.is-active {
  border-color: var(--color-blue);
  background: #f1f6fa;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.clinic-hfea__switch-card.is-active .clinic-hfea__switch-title {
  color: var(--color-blue);
}

.clinic-hfea__switch-title {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: #1b1b24;
  line-height: 1.3;
}

.clinic-hfea__switch-title::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 12px solid var(--color-blue);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  margin-top: 2px;
  flex: 0 0 auto;
}

.clinic-hfea__options {
  display: none;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #1b1b24;
}

.clinic-hfea__switch-card.is-active .clinic-hfea__options {
  display: flex;
}

.clinic-hfea__switch-card[aria-expanded=true] .clinic-hfea__options {
  display: flex;
}

.clinic-hfea__option {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.clinic-hfea__option span {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid #d5d7dd;
  background: #ffffff;
  color: #1b1b24;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.clinic-hfea__option:hover span {
  border-color: #b5b9c2;
}

.clinic-hfea__checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.clinic-hfea__checkbox:checked + span {
  background: var(--color-blue);
  border-color: var(--color-blue);
  color: #ffffff;
}

.clinic-hfea__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  font-size: 12px;
  color: #5D5D5D;
}

.clinic-hfea__legend-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.clinic-hfea__legend-swatch {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  display: inline-block;
}

.clinic-hfea__legend-swatch.m-clinic {
  background: #f28c28;
}

.clinic-hfea__legend-swatch.m-national {
  background: #007d75;
}

.clinic-hfea__legend-swatch.m-range {
  background: #f5fac6;
  border: 1px solid #e4ef9b;
}

.clinic-hfea__status {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #5D5D5D;
}

.clinic-hfea__status-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #eef1f4;
  color: #5D5D5D;
  border: 1px solid #d0d6dd;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  line-height: 1;
}

.clinic-hfea__status-icon.m-negative {
  background: #d9534f;
  border-color: #d9534f;
  color: #fff;
}

.clinic-hfea__status-icon.m-positive {
  background: #34a853;
  border-color: #34a853;
  color: #fff;
}

.clinic-hfea__status-icon.m-neutral {
  background: #eef1f4;
  border-color: #d0d6dd;
  color: #5D5D5D;
}

.clinic-hfea__footnote {
  font-size: 13px;
  color: var(--color-blue);
  font-weight: 600;
}

.clinic-hfea__count-note {
  margin-top: 8px;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid #f1d7a5;
  background: #fff4df;
  color: #7b5a1d;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 600;
}

.clinic-hfea__section-title {
  font-size: 28px;
  font-weight: 700;
}

.clinic-hfea__section-period {
  font-size: 16px;
  font-weight: 600;
  color: #5D5D5D;
}

@media (width <= 1023.98px) {
  .clinic-hfea__header {
    flex-direction: column;
    align-items: stretch;
  }
  .clinic-hfea__score {
    font-size: 24px;
  }
  .clinic-hfea__chart {
    grid-template-columns: 1fr;
  }
}
@media (width <= 767.98px) {
  .clinic-hfea__logo {
    width: 44px;
    height: 44px;
  }
  .clinic-hfea__logo img {
    width: 30px;
    height: 30px;
  }
  .clinic-hfea__name {
    font-size: 20px;
  }
  .clinic-hfea__dot {
    width: 22px;
    height: 22px;
  }
  .clinic-hfea__ratings {
    grid-template-columns: 1fr;
    width: 100%;
  }
  .clinic-hfea__star {
    width: 20px;
    height: 20px;
  }
  .clinic-hfea__chart {
    padding: 12px;
  }
  .clinic-hfea__rating {
    width: 100%;
  }
}
.clinic-packages {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.clinic-packages__title {
  font-size: 22px;
  font-weight: 700;
}

.clinic-packages__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
@media (width <= 1023.98px) {
  .clinic-packages__grid {
    grid-template-columns: 1fr;
  }
}

.package-card {
  border: 1px solid #eff0f0;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.package-card__header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-weight: 700;
}

.package-card__price {
  color: var(--color-green);
}

.package-card__list {
  margin: 0;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  color: var(--color-dark-40);
}

.clinic-packages__more {
  align-self: center;
  background: none;
  border: none;
  color: var(--color-blue);
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.c-countries .c-countries__eyebrow {
  margin-bottom: 8px;
  color: #5d5d5d;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.c-countries .c-countries__title {
  margin-bottom: 8px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.c-countries .c-countries__subtitle {
  margin-bottom: 24px;
  color: #5d5d5d;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
}
.c-countries .c-countries__intro {
  margin: 56px 0;
}
.c-countries .c-countries__intro p {
  margin: 0;
}
.c-countries .c-countries__intro p + p {
  margin-top: 14px;
}
.c-countries .c-countries__global-word {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  font-weight: 700;
  color: #0257da;
  white-space: nowrap;
}
.c-countries .c-countries__global-word::before {
  content: "";
  width: 1.05em;
  height: 1.05em;
  flex: 0 0 auto;
  background: url("/assets/static/icons/about/about-globe.svg") center/contain no-repeat;
  animation: c-countries-globe-spin 4s linear infinite;
  transform-origin: 50% 50%;
}
.c-countries .c-countries__mission {
  display: flex;
  justify-content: center;
  align-self: center;
  padding: 0;
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  font-style: italic;
  line-height: 60px;
  color: #000;
}
.c-countries .c-countries__mission::before,
.c-countries .c-countries__mission::after {
  color: #0257da;
  font-size: 1.15em;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}
.c-countries .c-countries__mission::before {
  content: "“";
}
.c-countries .c-countries__mission::after {
  content: " ”";
}
.c-countries .c-countries__intro-list {
  margin: 14px 0 0;
  padding-left: 1.2rem;
  list-style: disc;
}
.c-countries .c-countries__intro-list li {
  margin-bottom: 8px;
}
.c-countries .c-countries__intro-list--check {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
  padding-left: 0;
  list-style: none;
}
.c-countries .c-countries__intro-list--check li {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0;
  min-height: 96px;
  padding: 16px 16px 16px 48px;
  border: 1px solid #e5edf8;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  box-shadow: 0 8px 20px rgba(7, 42, 120, 0.06);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  color: #1b2f52;
}
.c-countries .c-countries__intro-list--check li::before {
  content: "✓";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-blue);
  font-weight: 700;
  line-height: 1;
}

.c-countries--search .c-countries__search-head {
  margin: 0;
}
.c-countries--search .c-countries__search-head .l-section__title {
  margin-bottom: 8px;
  color: #141c27;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.c-countries--search .c-countries__search-head .l-section__description {
  margin: 0;
  color: #5a626c;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.c-countries--search .c-countries__search-link-wrap {
  align-self: flex-end;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

@media (width >= 992px) {
  .c-countries--search .c-countries__search-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    column-gap: 24px;
    row-gap: 0;
    margin: 0;
  }
  .c-countries--search .c-countries__search-head > [class*=col-] {
    width: auto;
    max-width: none;
    flex: 0 0 auto;
    padding-right: 0;
    padding-left: 0;
    margin-top: 0;
  }
  .c-countries--search .c-countries__search-head > :first-child {
    min-width: 0;
  }
}
@media (width <= 767.98px) {
  .c-countries .c-countries__intro-list--check {
    grid-template-columns: 1fr;
  }
  .c-countries--search .c-countries__search-head .l-section__title {
    font-size: 30px;
  }
  .c-countries--search .c-countries__search-head .l-section__description {
    font-size: 18px;
  }
  .c-countries--search .c-countries__search-link-wrap {
    justify-content: flex-end;
    margin-top: -6px;
  }
}
@keyframes c-countries-globe-spin {
  to {
    transform: rotate(360deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .c-countries .c-countries__global-word::before {
    animation: none;
  }
}
.country-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 112px;
  padding: 24px;
  border: 1px solid #eff0f0;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

a.country-card {
  display: flex;
  width: 100%;
  color: inherit;
  text-decoration: none;
}

.country-card__flag {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  background: #f5f6f8;
}
.country-card__flag svg {
  display: block;
  width: 100%;
  height: 100%;
}

.country-card__name {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

.c-countries--search .country-card--photo {
  position: relative;
  display: block;
  min-height: 380px;
  padding: 0;
  border: 0;
  border-radius: 24px;
  overflow: hidden;
  background: #001b3f;
  box-shadow: 0 20px 45px rgba(0, 19, 53, 0.26);
  isolation: isolate;
  transition: box-shadow 240ms ease;
}
.c-countries--search .country-card--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(5, 17, 41, 0.08) 15%, rgba(5, 17, 41, 0.84) 78%);
}
.c-countries--search .country-card--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: inherit;
  z-index: 2;
  pointer-events: none;
}
.c-countries--search .country-card--photo:hover {
  box-shadow: 0 24px 52px rgba(0, 20, 60, 0.34);
}
.c-countries--search .country-card--photo:hover .country-card__photo {
  transform: scale(1.06);
}
.c-countries--search .country-card--photo .country-card__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}
.c-countries--search .country-card--photo .country-card__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 380px;
  padding: 24px;
  gap: 12px;
}
.c-countries--search .country-card--photo .country-card__tag {
  display: inline-flex;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(3, 16, 42, 0.45);
  color: #e1efff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  backdrop-filter: blur(2px);
}
.c-countries--search .country-card--photo .country-card__name {
  color: #fff;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.3);
}

@media (width <= 991.98px) {
  .c-countries--search .country-card--photo,
  .c-countries--search .country-card--photo .country-card__content {
    min-height: 340px;
  }
  .c-countries--search .country-card--photo .country-card__name {
    font-size: 26px;
  }
}
.c-content-page .c-content-page__article {
  max-width: 980px;
}
.c-content-page .c-content-page__title {
  margin-bottom: 12px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.c-content-page .c-content-page__meta {
  margin-bottom: 20px;
  color: #5f646b;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}
.c-content-page .c-content-page__section {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid #eff0f0;
}
.c-content-page .c-content-page__heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.c-content-page .c-content-page__text {
  margin-bottom: 14px;
  color: #2d2d36;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0;
}
.c-content-page .c-content-page__text em {
  font-style: normal;
  font-weight: 700;
}
.c-content-page .c-content-page__list {
  margin-bottom: 16px;
  padding-left: 1.3rem;
  list-style: disc;
}
.c-content-page .c-content-page__list li {
  margin-bottom: 8px;
  color: #2d2d36;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
}
.c-content-page .c-content-page__list--none {
  padding-left: 0;
  list-style: none;
}
.c-content-page .c-content-page__list--check {
  list-style: none;
  padding-left: 0;
}
.c-content-page .c-content-page__list--check li {
  position: relative;
  padding-left: 1.6rem;
}
.c-content-page .c-content-page__list--check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-blue);
  font-weight: 700;
  line-height: 1.5;
}
.c-content-page .c-content-page__list--prohibited {
  list-style: none;
  padding-left: 0;
}
.c-content-page .c-content-page__list--prohibited li {
  position: relative;
  padding-left: 1.8rem;
}
.c-content-page .c-content-page__list--prohibited li::before {
  content: "✖";
  position: absolute;
  left: 0;
  top: 0;
  color: #d35a57;
  font-weight: 700;
  line-height: 1.5;
}
.c-content-page .c-content-page__link {
  color: var(--color-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

body.about-page {
  background: #f7f9fc;
  color: #07101f;
}

.about-hero {
  padding: 132px var(--container-padding-x) 72px;
  background: #07101f;
  color: #fff;
}

.about-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  align-items: stretch;
  gap: 44px;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.about-hero__eyebrow,
.about-section__heading p {
  margin: 0 0 14px;
  color: #c9a96e;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.7rem, 5.5vw, 5.7rem);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: 0;
}

.about-hero__content > p:last-child {
  max-width: 700px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.06rem;
  line-height: 1.68;
}

.about-hero__media {
  position: relative;
  min-height: 100%;
  border-radius: 0 28px 0 0;
  background: transparent;
  overflow: hidden;
  box-shadow: none;
}

.about-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.about-hero__media--cutout {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 clamp(18px, 3vw, 36px);
}

.about-hero__media--cutout img {
  width: auto;
  max-width: 100%;
  height: min(100%, 620px);
  min-height: 0;
  object-fit: contain;
  object-position: center bottom;
  filter: none;
}

.about-section {
  padding: 72px var(--container-padding-x);
  background: #fff;
}

.about-section:nth-of-type(odd) {
  background: #f7f9fc;
}

.about-section__inner {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: 44px;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.about-section__heading {
  position: sticky;
  top: 110px;
  align-self: start;
}

.about-section__heading h2 {
  margin: 0;
  color: #07101f;
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
}

.about-section--approach .about-section__inner,
.about-section--advisory .about-section__inner {
  grid-template-columns: 1fr;
  gap: 28px;
}

.about-section--approach .about-section__heading,
.about-section--advisory .about-section__heading {
  position: static;
  max-width: 820px;
}

.about-copy {
  display: grid;
  gap: 16px;
}

.about-copy p {
  margin: 0;
  color: rgba(7, 16, 31, 0.72);
  font-size: 1rem;
  line-height: 1.78;
}

.about-copy--intro {
  margin-bottom: 28px;
}

.about-section--team .about-section__inner {
  display: block;
}

.about-founder {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
  margin-bottom: 48px;
}

.about-founder__media {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: clamp(460px, 54vw, 700px);
  overflow: hidden;
  background: transparent;
}

.about-founder__media img {
  display: block;
  width: 112%;
  height: 112%;
  min-height: inherit;
  object-fit: contain;
  object-position: center bottom;
  transform: translateX(-4%);
}

.about-founder__content {
  max-width: 680px;
}

.about-founder__content h2 {
  margin: 0 0 28px;
  color: #07101f;
  font-size: clamp(2.4rem, 4vw, 4.35rem);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: 0;
}

.about-founder__content p {
  margin: 0;
  color: rgba(7, 16, 31, 0.66);
  font-size: clamp(1rem, 1.3vw, 1.24rem);
  line-height: 1.9;
}

.about-founder__content a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.about-founder__content a:hover,
.about-founder__content a:focus-visible {
  color: #0257da;
  outline: none;
}

.about-team-heading {
  max-width: 720px;
  margin: 0 0 24px;
}

.about-team-heading p {
  margin: 0 0 10px;
  color: #c9a96e;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.about-team-heading h2 {
  margin: 0;
  color: #07101f;
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
}

.about-advisors,
.about-team {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.about-person,
.about-team-card {
  min-height: 100%;
  padding: 22px;
  border: 1px solid rgba(7, 16, 31, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(7, 16, 31, 0.06);
}

.about-person__photo {
  display: block;
  width: 120px;
  height: 120px;
  margin: 0 0 16px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #e8edf5;
  box-shadow: 0 10px 26px rgba(7, 16, 31, 0.13);
  object-fit: cover;
  object-position: center;
}

.about-person__fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  margin: 0 0 16px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.18), rgba(7, 16, 31, 0.06));
  box-shadow: 0 10px 26px rgba(7, 16, 31, 0.13);
  color: #07101f;
  font-size: 1.9rem;
  font-weight: 850;
  line-height: 1;
}

.about-person h3,
.about-team-card h3 {
  margin: 0 0 10px;
  color: #07101f;
  font-size: 1.05rem;
  font-weight: 850;
  line-height: 1.28;
}

.about-person p,
.about-team-card p {
  margin: 0;
  color: rgba(7, 16, 31, 0.64);
  font-size: 0.92rem;
  line-height: 1.65;
}

.about-person__linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-top: 16px;
  border: 1px solid rgba(2, 87, 218, 0.18);
  border-radius: 50%;
  color: #0257da;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}

.about-person__linkedin svg {
  display: block;
  width: 16px;
  height: 16px;
}

.about-person__linkedin:hover,
.about-person__linkedin:focus-visible {
  border-color: #0257da;
  background: #0257da;
  color: #fff;
  outline: none;
  transform: translateY(-1px);
}

.about-team-card {
  display: flex;
  flex-direction: column;
}

.about-team-card p {
  margin-bottom: 10px;
  color: #c9a96e;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.about-team-card a {
  width: fit-content;
  color: rgba(7, 16, 31, 0.66);
  font-size: 0.9rem;
  line-height: 1.55;
  text-decoration: none;
}

.about-team-card a:hover,
.about-team-card a:focus-visible {
  color: #0257da;
  outline: none;
}

@media (max-width: 1023.98px) {
  .about-hero__inner,
  .about-section__inner {
    grid-template-columns: 1fr;
  }
  .about-founder {
    gap: 36px;
  }
  .about-hero__media {
    min-height: 360px;
  }
  .about-section__heading {
    position: static;
  }
}
@media (max-width: 767.98px) {
  .about-hero {
    position: relative;
    padding: 104px var(--container-padding-x) 48px;
    overflow: hidden;
  }
  .about-hero__inner {
    position: relative;
    gap: 28px;
  }
  .about-hero__content {
    position: relative;
    z-index: 1;
  }
  .about-hero h1 {
    font-size: clamp(2.25rem, 15vw, 3.4rem);
  }
  .about-hero__media {
    position: absolute;
    right: -26vw;
    bottom: 0;
    z-index: 0;
    width: min(74vw, 330px);
    min-height: 260px;
    border-radius: 0 18px 0 0;
    pointer-events: none;
    opacity: 0.72;
  }
  .about-hero__media--cutout {
    padding: 0;
  }
  .about-hero__media--cutout img {
    width: 100%;
    height: auto;
    max-height: none;
  }
  .about-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .about-section__inner {
    gap: 26px;
  }
  .about-founder {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 34px;
  }
  .about-founder__media {
    min-height: 420px;
  }
  .about-founder__content h2 {
    margin-bottom: 18px;
  }
  .about-founder__content p {
    line-height: 1.75;
  }
  .about-advisors,
  .about-team {
    grid-template-columns: 1fr;
  }
  .about-person,
  .about-team-card {
    padding: 18px;
  }
}
.c-content-page__note {
  margin: 8px 0 16px;
  padding: 14px 16px 14px 18px;
  border: 1px solid #cfe0f6;
  border-left: 4px solid #2f6fbf;
  border-radius: 14px;
  background: linear-gradient(96deg, #eef5ff 0%, #f6f9ff 100%);
  box-shadow: 0 8px 20px rgba(32, 66, 109, 0.08);
}

.c-content-page__note-label {
  margin: 0 0 6px;
  color: #2f6fbf;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.c-content-page__note-text {
  margin: 0;
  color: #1f2f45;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
}

.c-content-page--about .c-content-page__article,
.c-content-page--featured .c-content-page__article {
  max-width: 100%;
  padding: clamp(22px, 2.8vw, 38px);
  border-radius: 28px;
  background: radial-gradient(circle at 100% 0, #e9f2ff 0, rgba(233, 242, 255, 0) 32%), #fff;
  box-shadow: 0 20px 50px rgba(24, 42, 68, 0.08);
}
.c-content-page--about .c-content-page__title,
.c-content-page--featured .c-content-page__title {
  margin-bottom: 18px;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1;
  letter-spacing: -0.03em;
}
.c-content-page--about .c-content-page__section,
.c-content-page--featured .c-content-page__section {
  margin-top: 28px;
  padding: 26px;
  border: 1px solid #e8eef5;
  border-radius: 24px;
  background: #fff;
}
.c-content-page--about .c-content-page__heading,
.c-content-page--featured .c-content-page__heading {
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  font-size: clamp(27px, 2.15vw, 34px);
  line-height: 1.1;
}
.c-content-page--about .c-about-hero,
.c-content-page--featured .c-about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 22px;
  margin-bottom: 8px;
}
.c-content-page--about .c-about-hero__content,
.c-content-page--featured .c-about-hero__content {
  align-self: center;
}
.c-content-page--about .c-about-hero__media,
.c-content-page--featured .c-about-hero__media {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(0, 0.84fr);
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  min-height: 330px;
}
.c-content-page--about .c-about-hero__photo,
.c-content-page--featured .c-about-hero__photo {
  margin: 0;
  border: 1px solid #deebfb;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(19, 44, 79, 0.13);
}
.c-content-page--about .c-about-hero__photo img,
.c-content-page--featured .c-about-hero__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.45s ease;
}
.c-content-page--about .c-about-hero__photo--main,
.c-content-page--featured .c-about-hero__photo--main {
  grid-row: 1/span 2;
  min-height: 330px;
}
.c-content-page--about .c-about-hero__photo--top,
.c-content-page--about .c-about-hero__photo--bottom,
.c-content-page--featured .c-about-hero__photo--top,
.c-content-page--featured .c-about-hero__photo--bottom {
  min-height: 158px;
}
.c-content-page--about .c-about-hero__badge,
.c-content-page--featured .c-about-hero__badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(16, 32, 54, 0.68);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}
.c-content-page--about .c-about-notice,
.c-content-page--featured .c-about-notice {
  margin: 8px 0 16px;
  padding: 14px 16px 14px 18px;
  border: 1px solid #cfe0f6;
  border-left: 4px solid #2f6fbf;
  border-radius: 14px;
  background: linear-gradient(96deg, #eef5ff 0%, #f6f9ff 100%);
  box-shadow: 0 8px 20px rgba(32, 66, 109, 0.08);
}
.c-content-page--about .c-about-notice__label,
.c-content-page--featured .c-about-notice__label {
  margin: 0 0 6px;
  color: #2f6fbf;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.c-content-page--about .c-about-notice__text,
.c-content-page--featured .c-about-notice__text {
  margin: 0;
  color: #1f2f45;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
}
.c-content-page--about .c-about-mission,
.c-content-page--featured .c-about-mission {
  margin-bottom: 22px;
  padding: 16px 18px;
  border: 1px solid #dce8f6;
  border-radius: 16px;
  background: linear-gradient(102deg, #f4f9ff 0%, #edf6ff 56%, #f8fbff 100%);
  font-weight: 700;
}
.c-content-page--about .c-about-gallery,
.c-content-page--featured .c-about-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 8px;
}
.c-content-page--about .c-about-gallery__item,
.c-content-page--featured .c-about-gallery__item {
  margin: 0;
  border: 1px solid #e5edf7;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 28px rgba(19, 44, 79, 0.08);
}
.c-content-page--about .c-about-gallery__item img,
.c-content-page--featured .c-about-gallery__item img {
  display: block;
  width: 100%;
  height: 156px;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.c-content-page--about .c-about-gallery__item figcaption,
.c-content-page--featured .c-about-gallery__item figcaption {
  padding: 11px 13px 13px;
  color: #34445a;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.01em;
}
.c-content-page--about .c-about-inline-visual,
.c-content-page--featured .c-about-inline-visual {
  margin: 8px 0 18px;
  border: 1px solid #e5edf7;
  border-radius: 18px;
  overflow: hidden;
  background: #f4f8fd;
}
.c-content-page--about .c-about-inline-visual img,
.c-content-page--featured .c-about-inline-visual img {
  display: block;
  width: 100%;
  max-height: 270px;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.c-content-page--about .c-about-inline-visual figcaption,
.c-content-page--featured .c-about-inline-visual figcaption {
  padding: 10px 14px 12px;
  color: #425268;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}
.c-content-page--about .c-about-partnership-visual,
.c-content-page--featured .c-about-partnership-visual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 6px 0 16px;
}
.c-content-page--about .c-about-partnership-visual__item,
.c-content-page--featured .c-about-partnership-visual__item {
  margin: 0;
  border: 1px solid #e5edf7;
  border-radius: 16px;
  overflow: hidden;
}
.c-content-page--about .c-about-partnership-visual__item img,
.c-content-page--featured .c-about-partnership-visual__item img {
  display: block;
  width: 100%;
  height: 135px;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.c-content-page--about .c-about-hero__photo:hover img,
.c-content-page--about .c-about-gallery__item:hover img,
.c-content-page--about .c-about-inline-visual:hover img,
.c-content-page--about .c-about-partnership-visual__item:hover img,
.c-content-page--featured .c-about-hero__photo:hover img,
.c-content-page--featured .c-about-gallery__item:hover img,
.c-content-page--featured .c-about-inline-visual:hover img,
.c-content-page--featured .c-about-partnership-visual__item:hover img {
  transform: scale(1.04);
}
.c-content-page--about .c-content-page__heading--uk::before,
.c-content-page--about .c-content-page__heading--partnership::before,
.c-content-page--about .c-content-page__heading--globe::before,
.c-content-page--about .c-content-page__heading--shield::before,
.c-content-page--featured .c-content-page__heading--uk::before,
.c-content-page--featured .c-content-page__heading--partnership::before,
.c-content-page--featured .c-content-page__heading--globe::before,
.c-content-page--featured .c-content-page__heading--shield::before {
  content: "";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border: 1px solid #dce7f5;
  border-radius: 50%;
  background-color: #f6fafe;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 17px 17px;
}
.c-content-page--about .c-content-page__heading--uk::before,
.c-content-page--featured .c-content-page__heading--uk::before {
  border: none;
  background-color: transparent;
  background-image: url("/assets/static/icons/about/about-uk.svg");
  background-size: 20px 20px;
}
.c-content-page--about .c-content-page__heading--partnership::before,
.c-content-page--featured .c-content-page__heading--partnership::before {
  background-image: url("/assets/static/icons/about/about-partnership.svg");
  background-size: 20px 20px;
}
.c-content-page--about .c-content-page__heading--globe::before,
.c-content-page--featured .c-content-page__heading--globe::before {
  background-image: url("/assets/static/icons/about/about-globe.svg");
}
.c-content-page--about .c-content-page__heading--shield::before,
.c-content-page--featured .c-content-page__heading--shield::before {
  background-image: url("/assets/static/icons/about/about-shield.svg");
}

.c-legal-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 18px;
  margin-bottom: 22px;
}

.c-legal-hero__content .c-content-page__text:last-child {
  margin-bottom: 0;
}

.c-legal-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 10px;
}

.c-legal-summary__item {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 56px;
  padding: 12px 14px;
  border: 1px solid #dce8f6;
  border-radius: 14px;
  background: #fff;
  color: #1f3c67;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.c-legal-summary__item:hover {
  border-color: #b8d1ef;
  box-shadow: 0 10px 20px rgba(22, 57, 97, 0.12);
  transform: translateY(-2px);
}

.c-legal-subheading {
  margin: 22px 0 12px;
  color: #193761;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.c-legal-section > .c-legal-subheading:first-of-type {
  margin-top: 8px;
}

.c-legal-section {
  scroll-margin-top: 108px;
}

.c-legal-contact-card {
  margin-top: 14px;
  padding: 14px 16px;
  border: 1px solid #d6e6f9;
  border-left: 4px solid #2f6fbf;
  border-radius: 14px;
  background: linear-gradient(97deg, #eef5ff 0%, #f7faff 100%);
}

.c-legal-contact-card__label {
  margin: 0 0 6px;
  color: #2f6fbf;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.c-legal-contact-card__value {
  margin: 0;
  color: #203753;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
}

@media (width <= 991.98px) {
  .c-content-page--about .c-content-page__article,
  .c-content-page--featured .c-content-page__article {
    border-radius: 24px;
    box-shadow: 0 14px 34px rgba(24, 42, 68, 0.08);
  }
  .c-content-page--about .c-content-page__section,
  .c-content-page--featured .c-content-page__section {
    padding: 22px;
    border-radius: 20px;
  }
  .c-content-page--about .c-about-hero,
  .c-content-page--featured .c-about-hero {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .c-content-page--about .c-about-gallery,
  .c-content-page--featured .c-about-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .c-legal-hero {
    grid-template-columns: 1fr;
  }
  .c-legal-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (width <= 767.98px) {
  .c-content-page .c-content-page__title {
    font-size: 30px;
  }
  .c-content-page .c-content-page__heading {
    font-size: 23px;
  }
  .c-content-page .c-content-page__text,
  .c-content-page .c-content-page__list li {
    font-size: 16px;
  }
  .c-content-page--about .c-content-page__article,
  .c-content-page--featured .c-content-page__article {
    padding: 18px 16px;
    border-radius: 20px;
  }
  .c-content-page--about .c-content-page__title,
  .c-content-page--featured .c-content-page__title {
    font-size: 34px;
    line-height: 0.98;
  }
  .c-content-page--about .c-content-page__section,
  .c-content-page--featured .c-content-page__section {
    margin-top: 22px;
    padding: 18px 16px;
    border-radius: 18px;
  }
  .c-content-page--about .c-about-hero__media,
  .c-content-page--featured .c-about-hero__media {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 210px 130px;
    min-height: 0;
  }
  .c-content-page--about .c-about-hero__photo--main,
  .c-content-page--featured .c-about-hero__photo--main {
    grid-column: 1/span 2;
    grid-row: 1;
    min-height: 210px;
  }
  .c-content-page--about .c-about-hero__photo--top,
  .c-content-page--about .c-about-hero__photo--bottom,
  .c-content-page--featured .c-about-hero__photo--top,
  .c-content-page--featured .c-about-hero__photo--bottom {
    min-height: 130px;
  }
  .c-content-page--about .c-about-hero__photo--top,
  .c-content-page--featured .c-about-hero__photo--top {
    grid-column: 1;
    grid-row: 2;
  }
  .c-content-page--about .c-about-hero__photo--bottom,
  .c-content-page--featured .c-about-hero__photo--bottom {
    grid-column: 2;
    grid-row: 2;
  }
  .c-content-page--about .c-about-hero__badge,
  .c-content-page--featured .c-about-hero__badge {
    left: 10px;
    bottom: 10px;
    height: 30px;
    padding: 0 10px;
    font-size: 10px;
    letter-spacing: 0.08em;
  }
  .c-content-page--about .c-about-mission,
  .c-content-page--featured .c-about-mission {
    padding: 14px 15px;
    border-radius: 14px;
  }
  .c-content-page--about .c-about-notice,
  .c-content-page--featured .c-about-notice {
    padding: 12px 13px 12px 14px;
    border-radius: 12px;
  }
  .c-content-page--about .c-about-notice__label,
  .c-content-page--featured .c-about-notice__label {
    margin-bottom: 5px;
    font-size: 11px;
  }
  .c-content-page--about .c-about-notice__text,
  .c-content-page--featured .c-about-notice__text {
    font-size: 16px;
  }
  .c-content-page--about .c-about-gallery,
  .c-content-page--featured .c-about-gallery {
    grid-template-columns: 1fr;
  }
  .c-content-page--about .c-about-gallery__item img,
  .c-content-page--featured .c-about-gallery__item img {
    height: 185px;
  }
  .c-content-page--about .c-about-inline-visual img,
  .c-content-page--featured .c-about-inline-visual img {
    max-height: 210px;
  }
  .c-content-page--about .c-about-partnership-visual,
  .c-content-page--featured .c-about-partnership-visual {
    grid-template-columns: 1fr;
  }
  .c-legal-hero {
    margin-bottom: 18px;
    gap: 12px;
  }
  .c-legal-summary {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .c-legal-summary__item {
    min-height: 48px;
    padding: 10px 12px;
    font-size: 14px;
  }
  .c-legal-subheading {
    margin-top: 18px;
    font-size: 21px;
    line-height: 1.2;
  }
  .c-legal-section > .c-legal-subheading:first-of-type {
    margin-top: 6px;
  }
  .c-legal-contact-card {
    margin-top: 12px;
    padding: 12px 13px;
    border-radius: 12px;
  }
  .c-legal-contact-card__label {
    font-size: 11px;
  }
  .c-legal-contact-card__value {
    font-size: 16px;
  }
}

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