@font-face {
  font-family: "BebasNeue";
  src: url("https://static.tildacdn.com/tild3532-3333-4362-b964-646162666634/1638453859802_BebasN.woff")
    format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "BebasNeue";
  src: url("https://static.tildacdn.com/tild3932-3932-4334-b931-376238373636/1638453840335_BebasN.woff")
    format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "BebasNeuePro";
  src: url("https://static.tildacdn.com/tild6234-3031-4762-b435-353865643038/Bebas-Neue-Pro-Light.woff")
    format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "BebasNeuePro";
  src: url("https://static.tildacdn.com/tild3938-3565-4133-b436-383132346138/Bebas-Neue-Pro-Regul.woff")
    format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "BebasNeuePro";
  src: url("https://static.tildacdn.com/tild3936-3361-4833-a663-383566633338/Bebas-Neue-Pro-Bold.woff")
    format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --mustard: #f6ca69;
  --teal: #063a4b;
  --teal-soft: #0f4b5e;
  --pink: #e94770;
  --blue: #1771f1;
  --green: #06d19a;
  --yellow: #f8cc69;
  --white: #ffffff;
  --black: #111111;
  --muted: rgba(6, 58, 75, 0.68);
  --line-light: rgba(255, 255, 255, 0.16);
  --line-dark: rgba(6, 58, 75, 0.12);
  --shadow: 0 24px 70px rgba(6, 58, 75, 0.16);
  --container: 1260px;
  --radius-xl: 40px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --heading-font: "BebasNeue", Arial, sans-serif;
  --body-font: "BebasNeuePro", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--teal);
  font-family: var(--body-font);
  font-size: 24px;
  line-height: 1.14;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 20px;
  top: -48px;
  z-index: 120;
  padding: 10px 14px;
  color: var(--white);
  background: var(--blue);
  border-radius: 12px;
}

.skip-link:focus {
  top: 20px;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 14px 32px;
  border: 2px solid transparent;
  border-radius: 999px;
  background: var(--pink);
  color: var(--white);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.button--small {
  min-height: 50px;
  padding: 12px 22px;
  font-size: 22px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--blue);
  font-family: var(--heading-font);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: var(--mustard);
}

.section-title {
  margin: 0;
  font-family: var(--heading-font);
  font-size: clamp(54px, 6vw, 86px);
  line-height: 0.96;
  font-weight: 700;
  text-transform: uppercase;
}

.section-title--wide {
  max-width: 1180px;
}

.section-title--light {
  color: var(--white);
}

.section-subtitle {
  margin: 20px 0 0;
  max-width: 900px;
  font-size: 28px;
  line-height: 1.08;
}

.section-subtitle--light {
  color: rgba(255, 255, 255, 0.84);
}

.section {
  padding: 108px 0;
}

.section-heading {
  margin-bottom: 44px;
}

.section-heading--light {
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--mustard);
  border-bottom: 1px solid rgba(6, 58, 75, 0.1);
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 70px;
  min-height: 68px;
}

.site-header .container,
.site-footer .container {
  width: min(calc(100% - 80px), 1200px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 150px;
  min-height: 79px;
  color: var(--teal);
  font-family: var(--heading-font);
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
}

.brand__icon {
  width: 100px;
  height: auto;
  flex: 0 0 auto;
}

.brand__text {
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  justify-content: flex-start;
  color: var(--teal);
  font-family: var(--heading-font);
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
}

.site-nav a,
.site-footer__nav a {
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-footer__nav a:hover,
.site-footer__nav a:focus-visible {
  color: var(--pink);
}

.site-nav__mobile-meta {
  display: none;
}

.site-header__meta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-header__contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  color: var(--teal);
  font-size: 18px;
  line-height: 1;
}

.site-header__contacts a {
  font-weight: 700;
}

.vk-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: var(--blue);
}

.vk-link svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.vk-link--large {
  width: 52px;
  height: 52px;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--blue);
}

.menu-toggle__line {
  display: block;
  width: 26px;
  height: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  overflow: clip;
  background: var(--teal);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.82fr) minmax(540px, 1.18fr);
  align-items: center;
  gap: 12px;
  min-height: 550px;
  padding: 34px 0 40px;
}

.hero__copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.hero__title {
  margin: 0;
  font-family: var(--heading-font);
  text-transform: uppercase;
  line-height: 0.92;
}

.hero__title-top,
.hero__title-bottom {
  display: block;
}

.hero__title-top {
  color: var(--white);
  font-size: clamp(68px, 7.4vw, 94px);
}

.hero__title-bottom {
  color: var(--yellow);
  font-size: clamp(62px, 6.7vw, 86px);
}

.hero__lead {
  display: grid;
  gap: 4px;
  margin: 18px 0 0;
  max-width: 700px;
  color: var(--pink);
  font-size: 30px;
  line-height: 0.98;
}

.hero__lead strong {
  color: var(--green);
  font-weight: 700;
}

.hero__button {
  margin-top: 28px;
}

.hero__visual {
  position: relative;
  min-height: 470px;
}

.hero__image,
.hero__badge {
  position: absolute;
  box-shadow: var(--shadow);
}

.hero__image--field {
  left: -12%;
  top: 36px;
  width: 420px;
  box-shadow: none;
}

.hero__image--main {
  left: 2%;
  top: 28px;
  width: min(100%, 820px);
  border-radius: 30px;
}

.hero__image--strip {
  left: -4%;
  top: 136px;
  width: 146px;
  height: 352px;
  object-fit: cover;
  border-radius: 22px;
}

.hero__image--portrait {
  right: 0;
  top: 8px;
  width: 36%;
  border-radius: 26px;
}

.hero__image--bottom {
  right: 21%;
  bottom: 22px;
  width: 39%;
  border-radius: 24px;
}

.hero__image--planet {
  right: -1%;
  bottom: -14px;
  width: 220px;
  box-shadow: none;
}

.hero__image--planet-small {
  right: 39%;
  top: 18px;
  width: 190px;
  box-shadow: none;
}

.hero__badge {
  box-shadow: none;
}

.hero__badge--one {
  left: 10%;
  top: 20px;
  width: 120px;
}

.hero__badge--two {
  left: 31%;
  top: 18px;
  width: 96px;
}

.hero__badge--three {
  left: 49%;
  top: 24px;
  width: 96px;
}

.ticker {
  overflow: hidden;
  padding: 16px 0;
  background: var(--white);
  border-bottom: 1px solid var(--line-dark);
}

.ticker__track {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-width: 100%;
  color: var(--teal);
  font-family: var(--heading-font);
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  animation: ticker-scroll 24s linear infinite;
}

.ticker__track img {
  width: 18px;
  height: 18px;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-22%);
  }
}

.about-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 34px;
  align-items: center;
  padding: 38px 42px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-xl);
  background: #f9f7f2;
}

.about-card__content p,
.quote-card__text p,
.program-overview__copy p,
.location-card__copy p,
.stats-band__lead p,
.stats-band__summary p {
  margin: 0;
  font-size: 31px;
  line-height: 1.03;
}

.about-card__media {
  display: flex;
  justify-content: center;
}

.about-card__media img {
  width: min(100%, 420px);
}

.about-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.about-feature {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line-dark);
}

.about-feature img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  margin-bottom: 18px;
}

.about-feature h3,
.direction-card h3,
.stats-band__summary h2,
.contacts-card__main a,
.form-card__head h2 {
  margin: 0;
  font-family: var(--heading-font);
  font-weight: 700;
  text-transform: uppercase;
}

.about-feature h3 {
  font-size: 38px;
  line-height: 0.95;
}

.about-feature p {
  margin: 12px 0 0;
  font-size: 26px;
  line-height: 1.02;
}

.directions {
  background: var(--teal);
}

.directions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}

.direction-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.direction-card img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.direction-card__body {
  display: grid;
  gap: 12px;
  padding: 24px 22px 26px;
}

.direction-card h3 {
  font-size: 38px;
  line-height: 0.92;
}

.direction-card p {
  margin: 0;
  font-size: 26px;
  line-height: 0.98;
  color: rgba(255, 255, 255, 0.8);
}

.stats-band {
  padding: 82px 0;
  background: var(--pink);
  color: var(--white);
}

.stats-band__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  gap: 48px;
  align-items: start;
}

.stats-band__summary {
  display: grid;
  gap: 14px;
}

.stats-band__summary h2 {
  font-size: clamp(58px, 5vw, 78px);
  line-height: 0.92;
}

.gallery-section {
  padding: 96px 0 108px;
  overflow: hidden;
  background: var(--teal);
}

.gallery-shell {
  --gallery-slide-width: min(72vw, 940px);
  --gallery-gap: 42px;
  width: min(calc(100% - 48px), 1460px);
  margin: 0 auto;
  color: var(--white);
}

.gallery-stage {
  position: relative;
}

.gallery-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-item {
  flex: 0 0 min(86vw, 900px);
  margin: 0;
  scroll-snap-align: center;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1060 / 500;
  object-fit: cover;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
}

.gallery-item figcaption {
  display: none;
}

.gallery-arrow,
.gallery-pagination,
.gallery-caption {
  display: none;
}

.gallery-shell.is-ready .gallery-stage {
  overflow: visible;
}

.gallery-shell.is-ready .gallery-track {
  gap: var(--gallery-gap);
  overflow: visible;
  padding: 0 calc((100% - var(--gallery-slide-width)) / 2);
  scroll-snap-type: none;
  transition: transform 0.24s linear;
  will-change: transform;
}

.gallery-shell.is-ready .gallery-item {
  flex-basis: var(--gallery-slide-width);
  opacity: 0.28;
  transform: scale(0.88);
  transition: opacity 0.24s linear, transform 0.24s linear;
}

.gallery-shell.is-ready .gallery-item.is-active {
  opacity: 1;
  transform: scale(1);
}

.gallery-shell.is-ready .gallery-arrow {
  position: absolute;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin-top: -30px;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  color: var(--teal);
  font-family: var(--heading-font);
  font-size: 40px;
  cursor: pointer;
}

.gallery-shell.is-ready .gallery-arrow:hover,
.gallery-shell.is-ready .gallery-arrow:focus-visible {
  background: var(--pink);
  color: var(--white);
}

.gallery-arrow--prev {
  left: calc(50% - (var(--gallery-slide-width) / 2) - 88px);
}

.gallery-arrow--next {
  right: calc(50% - (var(--gallery-slide-width) / 2) - 88px);
}

.gallery-shell.is-ready .gallery-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.gallery-bullet {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.gallery-bullet.is-active {
  background: var(--white);
}

.gallery-shell.is-ready .gallery-caption {
  display: block;
  max-width: 760px;
  margin: 26px auto 0;
  text-align: center;
}

.gallery-caption__line {
  width: 100%;
  height: 1px;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.18);
}

.gallery-caption p {
  margin: 0;
  font-family: var(--heading-font);
  font-size: 26px;
  line-height: 1;
  text-transform: uppercase;
}

.quote {
  background: var(--white);
}

.quote-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 30px;
  align-items: center;
  padding: 34px 38px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-dark);
  background: #fff8f9;
}

.quote-card__text {
  display: grid;
  gap: 18px;
}

.quote-card__author {
  display: grid;
  gap: 16px;
  margin: 0;
  justify-items: center;
  text-align: center;
}

.quote-card__author img {
  width: min(100%, 360px);
}

.quote-card__author figcaption {
  display: grid;
  gap: 6px;
}

.quote-card__author strong {
  font-family: var(--heading-font);
  font-size: 38px;
  line-height: 0.92;
  text-transform: uppercase;
}

.quote-card__author span {
  font-size: 24px;
  line-height: 1;
}

.program-overview__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 34px;
  align-items: center;
}

.program-overview__copy {
  display: grid;
  gap: 18px;
}

.program-overview__media img {
  width: min(100%, 480px);
  margin-left: auto;
}

.form-section,
.location,
.contacts-section,
.site-footer {
  background: var(--teal);
}

.form-card {
  padding: 40px;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-card__head {
  max-width: 820px;
  margin-bottom: 28px;
}

.form-card .eyebrow--light,
.form-card .section-title--light {
  color: var(--teal);
}

.form-card .section-subtitle--light {
  color: var(--muted);
}

.form-embed {
  width: 100%;
  min-height: 780px;
  border: 1px solid var(--line-dark);
  border-radius: 24px;
  overflow: hidden;
}

.form-embed iframe {
  display: block;
  width: 100%;
  min-height: 780px;
  border: 0;
}

.location-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: stretch;
}

.location-card__copy {
  display: grid;
  align-content: start;
  gap: 18px;
  color: var(--white);
}

.location-card__map {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
}

.location-card__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
}

.contacts-section {
  padding: 90px 0;
}

.contacts-card {
  display: grid;
  gap: 18px;
  justify-items: start;
  color: var(--white);
}

.contacts-card__main {
  display: grid;
  gap: 8px;
}

.contacts-card__main a {
  font-size: clamp(46px, 5vw, 72px);
  line-height: 0.92;
}

.contacts-card__descr {
  margin: 0;
  font-size: 28px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  padding: 0 0 90px;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 250px 1fr 250px;
  gap: 16px;
  align-items: center;
  min-height: 80px;
  padding-top: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.site-footer__copy,
.site-footer__nav,
.site-footer__top {
  color: var(--white);
  font-family: var(--heading-font);
  font-size: 22px;
  line-height: 1;
  text-transform: uppercase;
}

.site-footer__copy {
  text-align: left;
}

.site-footer__nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  text-align: center;
}

.site-footer__top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
  justify-self: end;
}

.site-footer__top-icon {
  display: inline-flex;
  width: 12px;
  height: 22px;
}

.site-footer__top-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 95;
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 420px;
  padding: 18px 18px 18px 20px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 42px rgba(17, 17, 17, 0.18);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__content {
  display: grid;
  gap: 8px;
}

.cookie-banner__content strong {
  color: var(--black);
  font-family: var(--heading-font);
  font-size: 22px;
  line-height: 1;
  text-transform: uppercase;
}

.cookie-banner__content p {
  margin: 0;
  color: rgba(17, 17, 17, 0.72);
  font-size: 20px;
  line-height: 1;
}

.cookie-banner .button {
  min-width: 132px;
  background: var(--black);
}

.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 94;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  font-family: var(--heading-font);
  font-size: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, bottom 0.2s ease;
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

body.has-cookie-banner .scroll-top {
  bottom: 126px;
}

@media (max-width: 1220px) {
  body {
    font-size: 22px;
  }

  .hero__grid {
    grid-template-columns: minmax(300px, 0.9fr) minmax(500px, 1.1fr);
  }

  .hero__image--main {
    left: 4%;
    width: 92%;
  }

  .hero__image--field {
    left: -9%;
  }

  .hero__image--portrait {
    width: 34%;
  }

  .hero__image--bottom {
    right: 19%;
    width: 42%;
  }

  .about-card__content p,
  .quote-card__text p,
  .program-overview__copy p,
  .location-card__copy p,
  .stats-band__lead p,
  .stats-band__summary p {
    font-size: 28px;
  }

  .about-feature p,
  .direction-card p {
    font-size: 24px;
  }

  .ticker__track {
    font-size: 28px;
  }
}

@media (max-width: 980px) {
  .site-header__inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 20px;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    width: 22px;
    height: 14px;
    gap: 2px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: var(--mustard);
    border-bottom: 1px solid rgba(6, 58, 75, 0.12);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav__mobile-meta {
    display: grid;
    gap: 8px;
    padding-top: 8px;
    font-family: var(--body-font);
    font-size: 18px;
    text-transform: none;
  }

  .site-header__meta {
    display: none;
  }

  .hero__grid,
  .about-card,
  .stats-band__inner,
  .quote-card,
  .program-overview__grid,
  .location-card {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    gap: 26px;
    padding: 34px 0 48px;
  }

  .hero__copy {
    max-width: 460px;
  }

  .hero__visual {
    min-height: 430px;
  }

  .hero__image--field {
    width: 310px;
  }

  .hero__image--main {
    top: 46px;
    left: 6%;
    width: 82%;
  }

  .hero__image--strip {
    top: 152px;
    left: 0;
    width: 108px;
    height: 294px;
  }

  .hero__image--portrait {
    top: 20px;
    width: 38%;
  }

  .hero__image--bottom {
    right: 14%;
    width: 48%;
  }

  .hero__image--planet {
    width: 170px;
  }

  .hero__image--planet-small {
    width: 142px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .gallery-shell {
    --gallery-slide-width: min(82vw, 720px);
  }

  .gallery-arrow--prev {
    left: calc(50% - (var(--gallery-slide-width) / 2) - 42px);
  }

  .gallery-arrow--next {
    right: calc(50% - (var(--gallery-slide-width) / 2) - 42px);
  }

  .contacts-card__main a {
    font-size: clamp(40px, 10vw, 62px);
  }

  .site-footer {
    padding-bottom: 60px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 20px;
    min-height: auto;
    padding-top: 40px;
    justify-items: center;
    text-align: center;
  }

  .site-footer__copy,
  .site-footer__nav {
    justify-content: center;
    flex-wrap: wrap;
  }

  .site-footer__top {
    justify-content: center;
    justify-self: center;
  }
}

@media (max-width: 700px) {
  body {
    font-size: 18px;
    line-height: 1.08;
  }

  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .site-header .container,
  .site-footer .container {
    width: min(calc(100% - 40px), 1200px);
  }

  .section,
  .gallery-section {
    padding: 64px 0;
  }

  .site-header__inner {
    min-height: 64px;
  }

  .brand {
    font-size: 20px;
  }

  .brand__icon {
    width: 100px;
  }

  .site-header {
    background: var(--white);
  }

  .site-nav {
    font-size: 22px;
  }

  .menu-toggle__line {
    width: 22px;
  }

  .hero {
    background-image: linear-gradient(rgba(6, 58, 75, 0.22), rgba(6, 58, 75, 0.22)),
      url("../images/tild3936-3765-4435-b564-343330333763___.jpg");
    background-position: center;
    background-size: cover;
  }

  .hero__grid {
    min-height: 620px;
    padding: 52px 0 26px;
  }

  .hero__copy {
    max-width: 290px;
  }

  .hero__title-top {
    font-size: 58px;
    color: #2a0aff;
  }

  .hero__title-bottom {
    font-size: 56px;
    color: var(--white);
  }

  .hero__lead {
    color: rgba(233, 71, 112, 0.88);
    font-size: 24px;
  }

  .hero__lead strong {
    color: var(--green);
  }

  .hero__button {
    min-height: 56px;
    margin-top: 22px;
    padding-inline: 24px;
    font-size: 22px;
  }

  .hero__visual {
    display: none;
  }

  .ticker {
    padding: 12px 0;
  }

  .ticker__track {
    gap: 12px;
    font-size: 22px;
  }

  .ticker__track img {
    width: 14px;
    height: 14px;
  }

  .section-title {
    font-size: 50px;
  }

  .section-subtitle {
    margin-top: 14px;
    font-size: 22px;
  }

  .about-card,
  .quote-card,
  .form-card {
    padding: 22px;
    border-radius: 24px;
  }

  .about-card__content p,
  .quote-card__text p,
  .program-overview__copy p,
  .location-card__copy p,
  .stats-band__lead p,
  .stats-band__summary p {
    font-size: 24px;
  }

  .about-feature {
    padding: 22px;
  }

  .about-feature h3,
  .direction-card h3 {
    font-size: 30px;
  }

  .about-feature p,
  .direction-card p {
    font-size: 22px;
  }

  .stats-band {
    padding: 58px 0;
  }

  .stats-band__summary h2 {
    font-size: 52px;
  }

  .gallery-shell {
    width: min(calc(100% - 24px), 1460px);
    --gallery-slide-width: 100%;
    --gallery-gap: 0px;
  }

  .gallery-item {
    flex-basis: 100%;
  }

  .gallery-item img {
    border-radius: 18px;
    aspect-ratio: 1 / 0.8;
  }

  .gallery-shell.is-ready .gallery-track {
    gap: 0;
    padding: 0;
  }

  .gallery-shell.is-ready .gallery-item {
    opacity: 1;
    transform: none;
  }

  .gallery-shell.is-ready .gallery-arrow {
    width: 44px;
    height: 44px;
    margin-top: -22px;
    font-size: 28px;
  }

  .gallery-arrow--prev {
    left: 10px;
  }

  .gallery-arrow--next {
    right: 10px;
  }

  .gallery-shell.is-ready .gallery-caption {
    margin-top: 18px;
  }

  .gallery-caption p {
    font-size: 22px;
  }

  .quote-card__author strong {
    font-size: 32px;
  }

  .quote-card__author span {
    font-size: 20px;
  }

  .form-embed,
  .form-embed iframe {
    min-height: 640px;
  }

  .location-card__map iframe {
    min-height: 320px;
  }

  .contacts-section {
    padding: 64px 0;
  }

  .contacts-card__main a {
    font-size: 38px;
  }

  .contacts-card__descr {
    font-size: 22px;
  }

  .site-footer {
    padding-bottom: 60px;
  }

  .site-footer__inner {
    gap: 20px;
  }

  .site-footer__copy,
  .site-footer__nav,
  .site-footer__top {
    font-size: 22px;
  }

  .site-footer__top {
    justify-content: center;
  }

  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    max-width: none;
  }

  .cookie-banner .button {
    width: 100%;
  }

  .scroll-top {
    right: 14px;
    bottom: 14px;
    width: 48px;
    height: 48px;
    font-size: 24px;
  }

  body.has-cookie-banner .scroll-top {
    bottom: 154px;
  }
}
