/* Fonts:
   - Baloo 2 is used as a close replacement for “Baloo Cyrillic” from Figma
   - Montserrat Alternates is used for body/secondary
*/

:root {
  --blue: #284885;
  --cream: #f7f1ee;
  --red: #da251e;
  --green: #85c226;
  --yellow: #f3ab00;
  --cyan: #00aeef;
  --white: #ffffff;
  --text: var(--blue);

  --container: 1120px;
  --container-max: 1280px;
  --pad: 80px;
  --radius: 35px;
  --btn-radius: 22px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  overflow-x: hidden;
}
body {
  background: var(--white);
  color: var(--text);
  font-family: "Montserrat Alternates", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; color: inherit; }

/* Full width layout */
.page {
  width: 100%;
  margin: 0 auto;
  background: var(--white);
}

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

/* Header */
.topbar {
  position: relative;
  height: 90px;
  background: var(--blue);
  display: flex;
  align-items: center;
}
.topbar__inner {
  position: relative;
  width: 100%;
  top: -8px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  padding-right: 40px;
}
.topbar__item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.topbar__item:first-child {
  margin-left: var(--pad);
}
.topbar__item:last-child {
  margin-right: var(--pad);
}
.topbar__link, .topbar__text {
  font-weight: 800;
  font-size: 20px;
  line-height: 1;
  color: #fff;
}
.topbar__icon {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  display: inline-block;
  position: relative;
  background: transparent;
}
.topbar__icon::after {
  content: "";
  position: absolute;
  inset: 0;
  background: no-repeat center / contain;
}
.topbar__icon--phone::after { background-image: url("/assets/figma/e93c6071-daca-4bdf-a183-5ea71ce376d9.svg"); }
.topbar__icon--loc::after { background-image: url("/assets/figma/4990cd15-8701-4545-8ef6-ff146a5e2055.svg"); }

/* Hide social icons and burger menu on desktop */
.topbar__socials,
.topbar__burger {
  display: none;
}

.mobile-menu {
  display: none;
}

.navwave {
  position: relative;
  height: 113px;
  background: transparent;
  overflow: visible;
  margin-top: -3px;
}
.navwave__bg {
  position: absolute;
  top: -13px;
  left: 0;
  width: 100%;
  height: 110px;
  object-fit: fill;
  pointer-events: none;
  z-index: 10;
}
.navwave__bg--mobile {
  display: none;
}
.navwave__inner {
  position: relative;
  bottom: 10px;
  width: 100%;
  margin: 0 auto;
  height: 100px;
  display: flex;
  align-items: center;
  padding: 0;
  z-index: 11;
}
.nav {
  position: absolute;
  left: calc(var(--pad) + 1px);
  top: 23px;
  height: 50px;
  width: 720px;
  z-index: 12;
}
.nav__link {
  font-weight: 800;
  font-size: 21px;
  color: var(--blue);
  position: relative;
  padding: 4px 0;
  position: absolute;
  top: 0;
}
.nav__link:nth-child(1) { left: 0; }
.nav__link:nth-child(2) { left: 129px; }
.nav__link:nth-child(3) { left: 358px; }
.nav__link:nth-child(4) { left: 580px; }
.nav__link--active::after {
  content: "";
  position: absolute;
  left: 0;
  width: 63px;
  height: 12px;
  bottom: -5px;
  background: url("/assets/figma/191dbaf6-b2a5-4450-b733-aa81bcd6ccd7.svg") no-repeat left center / contain;
}
.navwave__logo {
  display: none;
}
.navwave__social {
  position: absolute;
  right: 40px;
  top: 17px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.social {
  width: 35px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.social img {
  width: 29px;
  height: 29px;
  object-fit: contain;
}
.waIcon {
  width: 29px;
  height: 29px;
  display: inline-block;
  background: url("/assets/figma/56d7ffb8-4499-43ed-acf8-0e2caf738f18.svg") no-repeat center/contain;
  position: relative;
  border-radius: 6px;
}
.waIcon::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/assets/figma/72785189-afb0-465c-949a-62edc3149050.svg") no-repeat center/contain;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 45px;
  border-radius: var(--btn-radius);
  font-weight: 800;
  font-size: 18px;
  line-height: 1.2;
  border: 0;
  cursor: pointer;
}
.contactForm .btn {
  width: auto;
  max-width: 100%;
  align-self: center;
}
.btn--green { background: var(--green); color: #fff; }
.btn--red { background: var(--red); color: #fff; }

/* Hero */
.hero {
  position: relative;
  background: var(--cream);
  height: 700px;
  overflow: hidden;
  margin-top: -127px;
  padding-top: 128px;
  width: 100%;
}
.hero__inner {
  position: relative;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 150px;
  padding-left: 34px;
  margin-left: 145px;
  z-index: 3;
}
.hero__logo {
  position: absolute;
  left: calc(var(--pad) + 171px);
  top: 128px;
  width: 137px;
  height: 150px;
  object-fit: contain;
  pointer-events: none;
  z-index: 4;
}
.hero__decor {
  position: absolute;
  pointer-events: none;
  z-index: 2;
}
.hero__decor--group66 { left: calc(var(--pad) + 41px); top: 135px; width: 63px; height: 64px; }
.hero__decor--v5 { left: calc(var(--pad) + 431px); top: 135px; width: 29px; height: 29px; }
.hero__decor--v7 { position: absolute; right: 600px; top: 190px; width: 72px; height: 78px; }
.hero__decor--v37 { left: calc(var(--pad) + 563px); top: 397px; width: 29px; height: 29px; }
.hero__decor--v40 { left: calc(var(--pad) + 519px); top: 541px; width: 29px; height: 29px; }
.hero__decor--v6 { left: calc(var(--pad) + 14px); top: 560px; width: 69px; height: 85px; }
.hero__decor--vector11 { left: calc(var(--pad) + 8px); top: 430px; width: 50; height: auto; z-index: 2; }
.hero__decor--menuMark { right: calc(var(--pad) + 0px); top: 120px; width: 70px; height: 54px; z-index: 3; }
.hero__title {
  margin: 20px 0 28px 0;
  width: 571px;
  font-family: "Montserrat Alternates", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  font-size: 44px;
  line-height: 1.2;
  color: var(--blue);
}
.hero__kid {
  position: absolute;
  right: 0;
  top: -50px;
  height: 830px;
  width: auto;
  pointer-events: none;
  z-index: 1;
}
.wave {
  width: 100%;
  pointer-events: none;
}
.wave--hero {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -50px;
  height: 128px;
  width: 100%;
  max-width: 100%;
  object-fit: fill;
  z-index: 150;
}

/* About */
.about {
  background: var(--white);
  padding: 80px 0 0;
  position: relative;
}
.about .sectionTitle {
  text-align: center;
  display: block;
}
.about .sectionTitle::after {
  margin-left: auto;
  margin-right: auto;
}
.about__lead {
  margin: 0;
  font-weight: 800;
  font-size: 28px;
  line-height: 1.15;
}
.about__sub {
  margin: 45px 0 36px;
  font-weight: 600;
  font-size: 24px;
}
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 36px;
}
.feature {
  text-align: center;
}
.feature__icon {
  width: 92px;
  height: 92px;
  margin: 0 auto 18px;
}
.feature__text {
  margin: 0;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.15;
}
.about__note {
  margin: 80px 0 0;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.15;
}
.about__decor {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.about__decor--group150 {
  left: 0;
  top: 18%;
  width: 165.28px;
  height: 278.68px;
  transform: translateY(-50%);
}
.about__decor--vector15 {
  left: 0;
  top: calc(18% + 278.68px + 18px);
  width: 42px;
  height: 98px;
  transform: translateY(-50%);
}
.about__decor--cloudRight {
  right: 0;
  top: 15%;
  width: 74px;
  height: 91px;
}
.about__decor--vector11Center {
  left: 650px;
  top: 255px;
  width: 28px;
  height: auto;
  transform: translate(-50%, -50%);
}
.about__decor--starBelow {
  left: 56%;
  top: 78%;
  width: 29px;
  height: 29px;
  transform: translate(-50%, -50%);
}
.about__decor--cloudBottomRight {
  right: 18px;
  bottom: 34px;
  width: 60px;
  height: 50px;
}
.about__decor--starLeft {
  right: 116px;
  top: 28%;
  width: 29px;
  height: 29px;
}
.about .container {
  position: relative;
  z-index: 1;
  max-width: 1240px;
}

/* Section titles */
.sectionTitle {
  margin: 0 0 24px;
  font-family: "Baloo 2", system-ui, sans-serif;
  font-weight: 800;
  font-size: 48px;
  line-height: 1.2;
  color: var(--blue);
  position: relative;
  display: inline-block;
}
.sectionTitle::after {
  content: "";
  display: block;
  width: 190px;
  height: 20px;
  margin-top: -3px;
  background: url("/assets/figma/7201a7d2-fc16-4eb7-8ca5-78fbc45123dd.svg") no-repeat 0 0 / contain;
}

.sectionTitle--about::after {
  width: 130px;
  height: 18px;
  background-image: url("/assets/figma/eca62f17-eee7-4eef-a85c-1c2ea0ad7186.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
}
.sectionTitle--why::after {
  width: 190px;
  height: 20px;
  background-image: url("/assets/figma/7201a7d2-fc16-4eb7-8ca5-78fbc45123dd.svg");
}
.sectionTitle--directions::after {
  width: 123px;
  height: 20px;
  background-image: url("/assets/figma/104969af-45ec-432c-b577-9e5f40fb4b9c.svg");
}
.sectionTitle--gallery::after {
  width: 150px;
  height: 18px;
  margin-left: auto;
  margin-right: auto;
  background-image: url("/assets/figma/eca62f17-eee7-4eef-a85c-1c2ea0ad7186.svg");
}
.sectionTitle--gallery {
  font-family: "Baloo Cyrillic", "Baloo 2", system-ui, sans-serif;
  font-weight: 800;
}

/* Between sections (white wave separator from Figma) */
.wave--between {
  width: 100%;
  height: 164px;
  object-fit: fill;
}

/* Director */
.director {
  position: relative;
  background: #F7F1EE;
  padding: 90px 0 200px;
}
.director__wave {
  position: absolute;
  left: 50%;
  top: 0;
  width: 100vw;
  height: 110px;
  transform: translateX(-50%);
  object-fit: cover;
  pointer-events: none;
  z-index: 0;
}
.director__waveBottom {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100vw;
  height: 110px;
  transform: translateX(-50%);
  object-fit: cover;
  pointer-events: none;
  z-index: 0;
}
.director__starYellow {
  position: absolute;
  left: 50%;
  top: 70px;
  width: 30px;
  height: 30px;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 1;
}
.director__decor {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.director__decor--starLeft {
  left: 90px;
  top: 150px;
  width: 30px;
  height: 30px;
}
.director__decor--starRight {
  right: 90px;
  top: 170px;
  width: 40px;
  height: 40px;
}
.director__decor--starRed {
  left: 40%;
  top: 600px;
  width: 35px;
  height: 35px;
}
.director__decor--starBlue {
  left: 67%;
  bottom: 140px;
  width: 37px;
  height: 37px;
}
.director__decor--cloudMid {
  left: 39%;
  top: 230px;
  width: 64px;
  height: auto;
}
.director__decor--cloudLeft {
  left: 20px;
  top: 560px;
  width: 56px;
  height: auto;
}
.director__decor--bear {
  right: 70px;
  bottom: 160px;
  width: 110px;
  height: auto;
}
.director .container {
  max-width: 1200px;
}
.director__grid {
  display: grid;
  grid-template-columns: 332px 1fr;
  gap: 130px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.director__photoWrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.director__logo {
  width: 135px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 8px;
}
.director__photoCircle {
  width: 350px;
  height: 580px;
  aspect-ratio: 480/719;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  image-rendering: auto;
}
.director__caption {
  margin: -30px 0 0;
  text-align: left;
  font-family: "Montserrat Alternates", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 23px;
  line-height: 1.5;
  font-weight: 800;
  width: 430px;
  align-self: flex-start;
}
.director__name {
  position: relative;
  display: inline-block;
}
.director__name::before {
  content: "";
  position: absolute;
  left: -45px;
  bottom: -60px;
  width: 31px;
  height: 31px;
  background: url("/assets/figma/star-green-director-name.svg") no-repeat center / contain;
  z-index: 1;
}
.director__name::after {
  content: "";
  display: block;
  height: 14px;
  width: 140px;
  margin: -2px 0 0;
  background: url("/assets/figma/7a10e740-1784-44ca-a650-4f01666d4044.svg") no-repeat left center / contain;
}
.director__text {
  width: 80%;
  min-width: 700px;
}
.director__text p {
  margin: 0 0 27px;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.15;
}

/* Why */
.why {
  background: var(--white);
  padding: 70px 0 40px;
  position: relative;
  overflow: hidden;
}
.why__grid {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  grid-template-areas:
    "item1 item2"
    "item3 item3"
    "item4 item5";
  gap: 60px 90px;
  align-items: center;
}
.whyItem {
  display: flex;
  gap: 18px;
  align-items: center;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  max-width: 360px;
}
.whyItem__num {
  width: 80px;
  height: 80px;
  display: block;
  flex: none;
  object-fit: contain;
}
.whyItem--orange { color: var(--yellow); }
.whyItem--green { color: var(--green); }
.whyItem--red { color: var(--red); }
.whyItem--blue { color: var(--cyan); }
.whyItem--yellow { color: var(--yellow); }
.whyItem span:last-child {
  color: var(--blue);
}
.why__grid .whyItem:nth-child(1) { grid-area: item1; justify-self: start; }
.why__grid .whyItem:nth-child(2) { grid-area: item2; justify-self: end; }
.why__grid .whyItem:nth-child(3) { grid-area: item3; justify-self: center; }
.why__grid .whyItem:nth-child(4) { grid-area: item4; justify-self: start; }
.why__grid .whyItem:nth-child(5) { grid-area: item5; justify-self: start; }
.why .sectionTitle {
  display: block;
  text-align: center;
}
.sectionTitle--why::after {
  width: 90px;
  height: 18px;
  margin-left: 0;
  margin-right: auto;
  background-image: url("/assets/figma/eca62f17-eee7-4eef-a85c-1c2ea0ad7186.svg");
}
.why__decor {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.why__decor--cloudLeft {
  left: 30px;
  top: 140px;
  width: 60px;
  height: 50px;
}
.why__decor--cloudRight {
  right: 40px;
  top: 140px;
  width: 74px;
  height: 91px;
}
.why__decor--starBlue {
  left: 50%;
  top: 270px;
  width: 24px;
  height: 24px;
}
.why__decor--starGreen {
  left: 220px;
  top: 360px;
  width: 22px;
  height: 22px;
}
.why__decor--starRed {
  left: 80px;
  bottom: 120px;
  width: 24px;
  height: 24px;
}
.why__decor--starYellow {
  right: 200px;
  bottom: 150px;
  width: 20px;
  height: 20px;
}
.why__decor--moon {
  left: 90px;
  top: 300px;
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.why__decor--rocket {
  left: 50%;
  bottom: 2px;
  width: 100px;
  height: 80px;
  transform: translateX(-50%) rotate(-20deg);
  object-fit: contain;
}
.why__decor--rainbow {
  right: 120px;
  top: 380px;
  width: 172.77px;
  height: 114.87px;
  object-fit: contain;
}
.why .container {
  position: relative;
  z-index: 1;
}

/* Directions */
.directions {
  background: #F7F1EE;
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.directions::before,
.directions::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 100vw;
  height: 110px;
  background: url("/assets/figma/Vector 38.png") no-repeat center/cover;
  pointer-events: none;
  z-index: 1;
}
.directions::before {
  top: 0;
  transform: translateX(-50%);
}
.directions::after {
  bottom: 0;
  background: url("/assets/figma/Vector 78.png") no-repeat center/cover;
  transform: translateX(-50%);
}
.directions-1 {
  padding: 210px 0 200px;
}
.directions-1::after {
  content: none;
}
.directions-1__note {
  position: absolute;
  left: 270px;
  top: 170px;
  width: 96px;
  height: auto;
  pointer-events: none;
  z-index: 2;
}
.directions-1 .directions__decor--cloudTopLeft {
  left: auto;
  right: 1200px;
  top: 750px;
  width: 58px;
  height: auto;
}
.directions-1 .directions__decor--cloudTopRight {
  right: 35px;
  top: 85px;
  width: 78px;
  height: auto;
}
.directions-1 .directions__decor--starRed {
  right: 400px;
  top: 250px;
  width: 18px;
  height: 18px;
}
.directions-1 .directions__decor--starBlue {
  left: 54px;
  top: 400px;
  width: 20px;
  height: 20px;
}
.directions-1__cloudExtra {
  position: absolute;
  right: -20px;
  top: 220px;
  width: 80px;
  height: auto;
  pointer-events: none;
  z-index: 2;
}
.directions-1 .directions__decor--rocket,
.directions-1 .directions__decor--rainbow,
.directions-1 .directions__decor--starGreen,
.directions-1 .directions__decor--starYellow {
  display: none;
}
.directions-1__wave {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100vw;
  height: 110px;
  transform: translateX(-50%);
  object-fit: cover;
  pointer-events: none;
  z-index: 1;
}
.directions-2 {
  background: var(--white);
  padding: 40px 0;
}
.directions-3 {
  padding: 40px 0;
}
.directions-3 {
  padding: 240px 0;
}
.directions-3__wave {
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 110px;
  transform: none;
  object-fit: cover;
  pointer-events: none;
  z-index: 1;
}
.directions-3__waveBottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100vw;
  height: 110px;
  object-fit: cover;
  pointer-events: none;
  z-index: 1;
}
.directions-3__starYellow {
  position: absolute;
  right: 60px;
  bottom: 170px;
  width: 26px;
  height: 26px;
  pointer-events: none;
  z-index: 1;
}
.directions-3__cloud {
  position: absolute;
  right: 68px;
  top: 190px;
  width: 60px;
  height: auto;
  pointer-events: none;
  z-index: 1;
}
.directions-3__starGreen {
  position: absolute;
  width: 22px;
  height: 22px;
  pointer-events: none;
  z-index: 1;
}
.directions-3__starGreen--top {
  left: 46%;
  top: 70px;
}
.directions-3__starGreen--left {
  left: 24px;
  top: 620px;
}
.directions-4__brush,
.directions-4__cloud,
.directions-4__starGreen,
.directions-4__starBlue {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.directions-4__brush {
  top: 0px;
  width: 121px;
  height: 170px;
  z-index: 3;
}
.directions-4__picture {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 90px;
  height: auto;
  pointer-events: none;
  z-index: 2;
}
.directions-4__cloud--top {
  right: -20px;
  top: 0px;
  width: 114px;
  height: 82px;
}
.directions-4__cloud--mid {
  right: 420px;
  top: 360px;
  width: 58px;
  height: auto;
}
.directions-4__starGreen {
  right: 260px;
  top: 250px;
  width: 22px;
  height: 22px;
}
.directions-4__starBlue--top {
  right: 1210px;
  top: -10px;
  width: 22px;
  height: 22px;
  z-index: 5;
}
.directions-4__starBlue--mid {
  right: 550px;
  top: 30px;
  width: 22px;
  height: 22px;
}
.directions-2__starYellow,
.directions-2__yula,
.directions-2__starRedTop,
.directions-2__cloud,
.directions-2__kite,
.directions-2__starRedMid,
.directions-2__starBlue,
.directions-2__line,
.directions-2__spiral {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.directions-2__starYellow {
  left: 256px;
  top: 70px;
  width: 25px;
  height: auto;
}
.directions-2__yula {
  left: 124px;
  bottom: 0px;
  width: 60px;
  height: auto;
}
.directions-2__starRedTop {
  left: 72%;
  top: 0px;
  width: 18px;
  height: 18px;
}
.directions-2__cloud {
  right: 250px;
  top: 0px;
  width: 64px;
  height: auto;
}
.directions-2__kite {
  right: 0px;
  top: 20px;
  width: 120px;
  height: auto;
}
.directions-2__starRedMid {
  right: 290px;
  top: 210px;
  width: 18px;
  height: 18px;
}
.directions-2__starBlue {
  right: 250px;
  bottom: 90px;
  width: 29px;
  height: 29px;
}
.directions-2__line {
  right: -10px;
  top: 200px;
  width: 57px;
  height: 95px;
}
.directions-2__spiral {
  right: -10px;
  top: 340px;
  width: 71px;
  height: 184px;
}
.directions-4 {
  background: var(--white);
}
.directions-2::before,
.directions-2::after,
.directions-3::before,
.directions-3::after {
  content: none;
}
.directions-4 {
  padding: 40px 0 100px;
}
.directions-4::before {
  content: none;
}
.directions__panel {
  position: relative;
  width: 100%;
  margin: 0;
  background: transparent;
  border-radius: 0;
  padding: 0;
  z-index: 2;
}
.directions__panel::before,
.directions__panel::after {
  content: none;
}
.directions__lead {
  margin: 12px auto 52px;
  max-width: 1300px;
  font-weight: 800;
  font-size: 22px;
  line-height: 1.4;
  text-align: center;
}
.directions .sectionTitle {
  display: block;
  text-align: center;
}
.sectionTitle--directions::after {
  width: 150px;
  height: 18px;
  margin-left: auto;
  margin-right: auto;
  background-image: url("/assets/figma/eca62f17-eee7-4eef-a85c-1c2ea0ad7186.svg");
}
.directionsRows {
  display: flex;
  flex-direction: column;
  gap: 80px;
  align-items: center;
}
.directionsRow {
  width: 100%;
  display: flex;
  justify-content: center;
}
.cards__row {
  display: grid;
  gap: 48px 70px;
  width: auto;
  justify-content: center;
  padding: 0;
  border-radius: 0;
  box-sizing: border-box;
}
.cards__row--3 { grid-template-columns: repeat(3, 320px); }
.cards__row--4 { grid-template-columns: repeat(4, minmax(240px, 1fr)); }
.cards__row--2 { grid-template-columns: repeat(2, 320px); }

.cards__row--2 {
  gap: 70px;
  width: 100%;
  justify-content: start;
  justify-items: start;
}
.cards__row--2 .card {
  width: 340px;
  min-height: 390px;
  border-radius: 32px;
}
.cards__row--2 .card__title {
  padding-top: 26px;
  padding-bottom: 12px;
  font-size: 18px;
}
.cards__row--2 .card__imageWrap {
  height: 300px;
  width: auto;
  border-radius: 22px;
}
.cards__row--2 .card__desc {
  font-size: 16px;
  line-height: 1.3;
}

.card {
  width: 320px;
  border-radius: 28px;
  padding: 0 0 8px;
  color: #fff;
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  flex-direction: column;
}
.card--green { background: var(--green); }
.card--yellow { background: var(--yellow); }
.card--blue { background: var(--cyan); }
.card--red { background: var(--red); }

.card__title {
  margin: 0;
  padding: 28px 18px 20px;
  text-align: center;
  font-family: "Baloo 2", system-ui, sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
}
.card__imageWrap {
  width: calc(100% - 32px);
  height: 240px;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  position: relative;
  flex-shrink: 0;
  margin: 0 16px 12px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
}
.card--yellow .card__imageWrap {
  background: #fff;
}
.card--green .card__imageWrap { background: #dff2b8; }
.card--yellow .card__imageWrap { background: #f7d77a; }
.card--blue .card__imageWrap { background: #c9f0fb; }
.card--red .card__imageWrap { background: #f7b9b6; }
.card__imageWrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}
.card__category {
  position: absolute;
  top: 0;
  right: 0;
  padding: 8px 10px;
  text-align: right;
  z-index: 2;
}
.card__category span {
  background: transparent;
  font-family: "Baloo 2", system-ui, sans-serif;
  font-weight: 800;
  margin-top: 5px;
  font-size: 20px;
  display: inline-block;
  line-height: 1.2;
  position: relative;
  overflow: hidden;
}
.card--green .card__category span {
  color: var(--blue);
}
.card--blue .card__category span {
  color: var(--blue);
}
.card--red .card__category span {
  color: var(--blue);
}
.card--yellow .card__category span {
  color: var(--blue);
}
.card__category span::after {
  content: "";
  display: block;
  width: 100px;
  height: 6px;
  margin-top: 2px;
  background: url("/assets/figma/category-underline-blue.svg") no-repeat 0 0 / contain;
}
/* Первая карточка (зеленая): "Музыка" с жёлто-оранжевой волнистой линией */
.cards__row--3 > .card:first-child .card__category span::after {
  width: 100%;
  height: 12px;
  background: url("/assets/figma/category-underline.svg") no-repeat 0 0 / contain;
}
/* Вторая карточка (желтая): "Вокал" синяя с синей линией */
.cards__row--3 > .card:nth-child(2) .card__category span::after {
  width: 100%;
  height: 11px;
  background: url("/assets/figma/category-underline-blue.svg") no-repeat 0 0 / contain;
}
/* Третья карточка (синяя): "Музыка" синяя с зеленой линией */
.cards__row--3 > .card:nth-child(3) .card__category span::after {
  width: 100%;
  height: 12px;
  background: url("/assets/figma/category-underline-green-new.svg") no-repeat 0 0 / contain;
}
/* Четвёртая карточка в ряду из 4 (синяя «Я познаю мир»): "Раннее развитие" с жёлтой линией */
.cards__row--4 > .card:nth-child(1) .card__category span::after {
  width: 100%;
  height: 12px;
  background: url("/assets/figma/category-underline.svg") no-repeat 0 0 / contain;
}
.cards__row--4 > .card:nth-child(2) .card__category span::after {
  width: 100%;
  height: 11px;
  background: url("/assets/figma/category-underline-blue.svg") no-repeat 0 0 / contain;
}
.cards__row--4 > .card:nth-child(3) .card__category span::after {
  width: 100%;
  height: 12px;
  background: url("/assets/figma/category-underline-green-new.svg") no-repeat 0 0 / contain;
}
.cards__row--4 > .card:nth-child(4) .card__category span::after {
  width: 100%;
  height: 12px;
  background: url("/assets/figma/category-underline-yellow.svg") no-repeat 0 0 / contain;
}
.cards__row--2 > .card:first-child .card__category span::after {
  width: 100%;
  height: 12px;
  background: url("/assets/figma/category-underline-yellow.svg") no-repeat 0 0 / contain;
}
.cards__row--2 > .card:nth-child(2) .card__category span::after {
  width: 100%;
  height: 12px;
  background: url("/assets/figma/category-underline-blue-new.svg") no-repeat 0 0 / contain;
}
.card__desc {
  margin: 0;
  padding: 0 18px 16px;
  font-weight: 500;
  font-size: 17px;
  line-height: 1.5;
  text-align: left;
}
.directions__decor {
  position: absolute;
  pointer-events: none;
  z-index: 2;
}
.directions__decor--cloudTopLeft {
  left: 30px;
  top: 10%;
  width: 60px;
  height: 50px;
}
.directions__decor--cloudTopRight {
  right: 40px;
  top: 12%;
  width: 74px;
  height: 91px;
}
.directions__decor--starBlue {
  left: 50%;
  top: 20%;
  width: 22px;
  height: 22px;
}
.directions__decor--starGreen {
  left: 140px;
  top: 38%;
  width: 22px;
  height: 22px;
}
.directions__decor--starRed {
  right: 120px;
  bottom: 28%;
  width: 22px;
  height: 22px;
}
.directions__decor--starYellow {
  left: 90px;
  bottom: 20%;
  width: 20px;
  height: 20px;
}
.directions__decor--rocket {
  left: 50%;
  top: 58%;
  width: 70px;
  height: 34px;
  transform: translateX(-50%) rotate(-20deg);
  border: 2px solid rgba(133, 194, 38, 0.6);
  border-radius: 999px;
  background: transparent;
}
.directions__decor--rocket::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 10px;
  width: 10px;
  height: 10px;
  border: 2px solid rgba(133, 194, 38, 0.6);
  border-left: 0;
  border-radius: 0 999px 999px 0;
}
.directions__decor--rocket::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(133, 194, 38, 0.6);
}
.directions__decor--rainbow {
  right: 120px;
  top: 44%;
  width: 90px;
  height: 50px;
  border-top-left-radius: 90px;
  border-top-right-radius: 90px;
  border: 2px solid rgba(218, 37, 30, 0.5);
  border-bottom: 0;
  background: transparent;
  box-shadow:
    0 -8px 0 0 rgba(243, 171, 0, 0.5),
    0 -16px 0 0 rgba(0, 174, 239, 0.5);
}
.directions .container {
  position: relative;
  z-index: 3;
}

/* Gallery */
.gallery {
  background: #F7F1EE;
  padding: 140px 0 140px;
  position: relative;
  overflow: hidden;
}
.gallery__wave {
  position: absolute;
  left: 50%;
  width: 100vw;
  height: 110px;
  transform: translateX(-50%);
  object-fit: cover;
  pointer-events: none;
  z-index: 1;
}
.gallery__wave--top {
  top: 0;
}
.gallery__wave--bottom {
  bottom: 0;
}
.gallery__decor {
  position: absolute;
  pointer-events: none;
  z-index: 2;
}
.gallery__decor--cloudLeft {
  left: -20px;
  top: 36%;
  width: 86px;
  height: auto;
}
.gallery__decor--cloudRight {
  right: -20px;
  top: 38%;
  width: 78px;
  height: auto;
}
.gallery__decor--cloudBottomLeft {
  left: 24px;
  bottom: 160px;
  width: 66px;
  height: auto;
}
.gallery__decor--starBlueTransparent {
  left: 120px;
  top: 20%;
  width: 24px;
  height: auto;
}
.gallery__decor--starGreen {
  left: 28%;
  top: 27%;
  width: 22px;
  height: auto;
}
.gallery__decor--starYellowTransparent {
  left: 55%;
  top: 12%;
  width: 22px;
  height: auto;
  transform: translateX(-50%);
}
.gallery__decor--starBlueSolid {
  right: 22%;
  top: 25%;
  width: 24px;
  height: 24px;
}
.gallery .container {
  position: relative;
  z-index: 3;
}
.gallery .sectionTitle {
  display: block;
  text-align: center;
}
.gallery__gridWrap {
  position: relative;
  width: calc(100% + 180px);
  margin: 36px -90px 0;
}
.gallery__gridWrap::before,
.gallery__gridWrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 5;
  pointer-events: none;
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
}
.gallery__gridWrap::before {
  left: 0;
  background: linear-gradient(90deg, rgba(247, 241, 238, 0.8) 0%, rgba(247, 241, 238, 0.65) 8%, rgba(247, 241, 238, 0.48) 18%, rgba(247, 241, 238, 0.32) 30%, rgba(247, 241, 238, 0.2) 45%, rgba(247, 241, 238, 0.12) 60%, rgba(247, 241, 238, 0.07) 75%, rgba(247, 241, 238, 0.035) 85%, rgba(247, 241, 238, 0.015) 93%, rgba(247, 241, 238, 0.005) 97%, rgba(247, 241, 238, 0) 100%);
  mask-image: linear-gradient(90deg, black 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, black 0%, transparent 100%);
}
.gallery__gridWrap::after {
  right: 0;
  background: linear-gradient(270deg, rgba(247, 241, 238, 0.8) 0%, rgba(247, 241, 238, 0.65) 8%, rgba(247, 241, 238, 0.48) 18%, rgba(247, 241, 238, 0.32) 30%, rgba(247, 241, 238, 0.2) 45%, rgba(247, 241, 238, 0.12) 60%, rgba(247, 241, 238, 0.07) 75%, rgba(247, 241, 238, 0.035) 85%, rgba(247, 241, 238, 0.015) 93%, rgba(247, 241, 238, 0.005) 97%, rgba(247, 241, 238, 0) 100%);
  mask-image: linear-gradient(270deg, black 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(270deg, black 0%, transparent 100%);
}
.gallery__grid {
  display: flex;
  gap: 60px;
  width: 100%;
  margin: 0 auto;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.gallery__grid::-webkit-scrollbar { display: none; }
.galleryItem {
  padding: 0;
  border-radius: 28px;
  border: 6px solid transparent;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  flex: 0 0 300px;
}
.galleryItem--yellow { border-color: var(--yellow); }
.galleryItem--blue { border-color: var(--cyan); }
.galleryItem--red { border-color: var(--red); }
.galleryItem img { width: 100%; height: 360px; object-fit: cover; }

.gallery__nav {
  margin-top: 28px;
  display: flex;
  gap: 36px;
  justify-content: center;
}
.galleryNavBtn {
  width: 46px;
  height: 46px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.galleryNavBtn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Направления: стрелки навигации только на мобильной */
@media (min-width: 768px) {
  .directions .cards__nav {
    display: none !important;
  }
}

/* Contact */
.contact {
  background: var(--white);
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}
.contact .container {
  position: relative;
  z-index: 2;
}
.contact__lead {
  margin: 0 -150px 40px;
  font-weight: 800;
  font-size: 36px;
  line-height: 1.15;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 240px;
  align-items: start;
  margin-left: -80px;
}
.contact__qrSection {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact__qr {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact__qrTitle {
  margin: 0 0 20px;
  font-weight: 600;
  font-size: 24px;
  text-align: center;
  color: var(--blue);
}
.contact__decor {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.contact__decor--cloud1 {
  right: 210px;
  top: 650px;
  width: 60px;
  height: 50px;
  opacity: 1;
}
.contact__decor--cloud2 {
  right: -20px;
  top: 150px;
  width: 74px;
  height: 91px;
  opacity: 1;
}
.contact__decor--cloud3 {
  left: 40px;
  top: 550px;
  width: 61px;
  height: 50px;
  opacity: 1;
}
.contact__decor--star1 {
  left: 20px;
  top: 80px;
  width: 40px;
  height: 40px;
  opacity: 0.7;
}
.contact__decor--star2 {
  right: 230px;
  top: 0px;
  width: 25px;
  height: 25px;
  opacity: 0.6;
}
.contact__decor--star3 {
  left: 470px;
  top: auto;
  bottom: 30px;
  width: 40px;
  height: 40px;
  opacity: 0.7;
}
.contact__decor--red1 {
  right: 1020px;
  bottom: auto;
  top: 0px;
  width: 28px;
  height: 28px;
  opacity: 0.6;
}
.contact__decor--red2 {
  left: 1050px;
  top: 180px;
  width: 22px;
  height: 22px;
  opacity: 0.7;
}
.contact__decor--yellow1 {
  right: 70px;
  top: auto;
  bottom: 50px;
  width: 24px;
  height: 24px;
  opacity: 0.6;
}
.contact__decor--yellow2 {
  right: 700px;
  bottom: 250px;
  width: 40px;
  height: 40px;
  opacity: 0.6;
}
.contact__qrImg {
  width: 380px;
  height: 402px;
  object-fit: cover;
  border-radius: 16px;
}
.contact__handle {
  margin-top: 42px;
  font-family: "Baloo 2", system-ui, sans-serif;
  font-size: 40px;
  font-weight: 1000;
  color: #01aef0;
  text-align: center;
}
.contactForm {
  position: relative;
  width: 540px;
  display: flex;
  flex-direction: column;
  gap: 42px;
  margin-top: 150px;
}
.contactForm__title {
  margin: 0 0 10px;
  font-weight: 600;
  font-size: 24px;
  text-align: center;
}
.field__label { display: none; }
.field__input {
  width: 100%;
  height: 72px;
  border-radius: var(--radius);
  border: 0;
  background: var(--cream);
  padding: 0 26px;
  font-size: 24px;
  font-weight: 600;
  outline: none;
}
.field__input::placeholder { color: #c2c0c1; }
.contact__footer {
  margin: 40px -150px 0;
  font-weight: 800;
  font-size: 24px;
  line-height: 1.15;
}

/* Footer */
.footerbar {
  height: 79px;
  background: var(--blue);
  display: flex;
  align-items: center;
}
.footerbar__inner {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
}
.footerbar__item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footerbar__item--phone {
  margin-left: -150px;
}
.footerbar__item--address {
  margin-right: -150px;
}
.footerbar__scrollTop {
  position: absolute;
  right: var(--pad);
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: opacity 0.3s ease;
}
.footerbar__scrollTop:hover {
  opacity: 0.8;
}
.footerbar__scrollTop svg {
  width: 100%;
  height: 100%;
}

/* Modal */
.modal[hidden] { display: none; }
.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
}
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.modal__content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 887px;
  height: 518px;
  background: var(--cream);
  border-radius: var(--radius);
  border: 10px solid var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.modal__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal__video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}
.modal__img[hidden],
.modal__video[hidden] {
  display: none;
}
.modal__close {
  position: absolute;
  top: 8px;
  right: 14px;
  border: 0;
  background: transparent;
  font-size: 36px;
  cursor: pointer;
  color: var(--blue);
}
.modal__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 0;
  background: var(--cream);
  color: var(--blue);
  font-size: 32px;
  cursor: pointer;
}
.modal__nav--prev { left: -66px; }
.modal__nav--next { right: -66px; }

/* ======================= */
/* MOBILE (375px) */
/* ======================= */
@media (max-width: 767px) {
  html {
    width: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  html::-webkit-scrollbar {
    display: none;
  }
  body {
    width: 100%;
    min-height: 100vh;
    padding-bottom: 0;
    overflow-x: hidden;
  }
  .page {
    width: 100%;
    min-width: 100%;
    min-height: 100vh;
    padding-bottom: 0;
    overflow-x: hidden;
  }

  :root {
    --container: 100%;
    --container-max: 100%;
    --pad: 16px;
  }
  
  .container {
    padding: 0 16px;
  }
  
  .topbar__inner,
  .navwave__inner,
  .footerbar__inner {
    padding: 0 16px;
  }

  /* Topbar mobile */
  .topbar {
    height: auto;
    min-height: 79px;
    padding: 15px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    position: relative;
    z-index: 100;
    display: flex;
  }
  .topbar__inner {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    position: relative;
    top: 0;
    margin: 0;
    padding: 0;
    padding-left: 16px;
  }
  .topbar__item {
    gap: 12px;
    margin-left: 0;
    padding-left: 0;
  }
  .topbar__item:first-child {
    margin-left: 0;
  }
  .topbar__link, .topbar__text {
    font-size: 16px;
  }
  .topbar__icon {
    width: 20px;
    height: 20px;
  }
  .topbar__burger {
    position: absolute;
    right: 16px;
    top: 1px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .topbar__burger img {
    width: 30px;
    height: 20px;
  }
  .topbar__burger svg {
    width: 30px;
    height: 20px;
  }
  .topbar__socials {
    display: none;
  }
  .topbar__burger {
    display: flex;
  }

  /* Mobile navwave - second header row with logo and socials */
  .navwave {
    display: block;
    height: auto;
    min-height: 80px;
    background: var(--white);
    margin-top: 0;
    padding: 8px 16px 0;
    padding-bottom: 0;
    position: relative;
    overflow: visible;
  }
  .navwave__inner {
    background: var(--white);
    padding-bottom: 10px;
  }
  .navwave__bg--desktop {
    display: none;
  }
  .navwave__bg--mobile {
    display: block;
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 105px;
    min-height: 105px;
    max-height: 105px;
    top: auto;
    z-index: 10;
    object-fit: fill;
    object-position: bottom;
    pointer-events: none;
  }
  .navwave__inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: auto;
    min-height: 70px;
    bottom: auto;
    padding: 0;
    z-index: 11;
  }
  .navwave .nav {
    display: none;
  }
  .navwave__logo {
    display: block;
    width: 90px;
    height: 100px;
    object-fit: contain;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    margin-top: 8px;
  }
  .navwave__social {
    position: static;
    display: flex;
    gap: 8px;
    align-items: center;
    top: auto;
    right: auto;
    z-index: 2;
    margin-top: -5px;
  }
  .navwave__social .social {
    width: 29px;
    height: 29px;
  }
  .navwave__social .social img {
    width: 29px;
    height: 29px;
  }

  /* Mobile menu (burger): вертикальная панель сбоку */
  .mobile-menu {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 300;
    pointer-events: none;
  }
  .mobile-menu.mobile-menu--open {
    pointer-events: auto;
  }
  .mobile-menu__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(40, 72, 133, 0.3);
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.25s ease;
  }
  .mobile-menu.mobile-menu--open .mobile-menu__backdrop {
    opacity: 1;
  }
  .mobile-menu__panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(280px, 85vw);
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: var(--white);
    padding: 80px 24px 24px;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 301;
    overflow-y: auto;
  }
  .mobile-menu.mobile-menu--open .mobile-menu__panel {
    transform: translateX(0);
  }
  .mobile-menu__back {
    position: absolute;
    top: 20px;
    left: 16px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background 0.2s, opacity 0.2s;
  }
  .mobile-menu__back:hover {
    background: rgba(40, 72, 133, 0.08);
    opacity: 0.9;
  }
  .mobile-menu__back img {
    width: 24px;
    height: 24px;
    object-fit: contain;
  }
  .mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .mobile-menu__logo {
    margin-top: auto;
    padding: 24px 0 16px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .mobile-menu__logo img {
    width: 90px;
    height: auto;
    max-height: 100px;
    object-fit: contain;
  }
  .mobile-menu__link {
    color: var(--blue);
    font-weight: 800;
    font-size: 18px;
    text-decoration: none;
    padding: 14px 12px;
    border-radius: 8px;
    transition: background 0.2s, opacity 0.2s;
  }
  .mobile-menu__link:hover {
    opacity: 0.9;
    background: rgba(40, 72, 133, 0.08);
  }

  /* Hero mobile */
  .hero {
    height: auto;
    min-height: 440px;
    padding-bottom: 20px;
    margin-top: 0;
    padding-top: 0;
    position: relative;
    z-index: 1;
  }
  .hero__inner {
    width: 100%;
    padding: 20px 15px 0;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 152;
  }
  .hero__logo {
    left: calc(50% - 45px);
    top: auto;
    bottom: 80px;
    width: 90px;
    height: 100px;
    display: none;
  }
  .hero__title {
    width: 168px;
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: -50px;
    margin-left: -130px;
    margin-top: 100px;
  }
  .hero__inner .btn {
    margin-top: 180px;
    align-self: center;
    margin-right: 270px;
    position: relative;
    z-index: 151;
  }
  .hero__kid {
    position: absolute;
    right: -50px;
    top: 50px;
    height: auto;
    width: 100%;
    max-width: 450px;
    transform: scale(1.3);
    transform-origin: right center;
    z-index: 1;
  }
  .hero__decor--menuMark {
    display: none;
  }
  .hero__decor--vector11 {
    display: none;
  }
  .hero__decor--v5 {
    left: 150px;
    top: 20px;
    width: 12px;
    height: 12px;
  }
  .hero__decor--group66 {
    left: 30px;
    top: 20px;
    width: 53px;
    height: 54px;
  }
  .btn {
    padding: 17px 37px;
    font-size: 16px;
    border-radius: 22px;
  }
  .wave--hero {
    height: 104px;
  }

  /* About mobile */
  .about {
    padding: 30px 16px 30px;
  }
  .about__lead {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.45px;
    line-height: 1.2;
  }
  .about__sub {
    font-size: 12px;
    margin: 20px 0 24px;
  }
  .sectionTitle {
    font-size: 20px;
  }
  .sectionTitle::after {
    width: 55px;
    height: 10px;
    margin-top: 0;
  }
  .sectionTitle--about::after {
    width: 55px;
    height: 10px;
    margin-left: auto;
    margin-right: auto;
  }
  .features {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .feature__icon {
    width: 46px;
    height: 46px;
    margin-bottom: 8px;
  }
  .feature__text {
    font-size: 12px;
  }
  .about__note {
    font-size: 12px;
    letter-spacing: -0.48px;
  }
  .about__decor--group150 {
    display: block;
    left: 1px;
    top: 70px;
    width: 80px;
    height: auto;
    z-index: 1;
  }
  .about__decor--vector15 {
    display: block;
    left: 0;
    top: 200px;
    width: 20px;
    height: auto;
    z-index: 1;
  }
  .about__decor--cloudRight {
    display: block;
    right: 10px;
    top: 20px;
    width: 50px;
    height: auto;
    z-index: 1;
  }
  .about__decor--vector11Center {
    display: none;
  }
  .about__decor--starBelow {
    display: block;
    right: 20px;
    bottom: 20px;
    width: 18px;
    height: 18px;
    z-index: 1;
  }
  .about__decor--cloudBottomRight {
    display: none;
  }
  .about__decor--starLeft {
    display: block;
    left: 20px;
    top: 180px;
    width: 16px;
    height: 16px;
    z-index: 1;
  }

  /* Director mobile */
  .director {
    padding: 40px 0 100px;
  }
  .director .container {
    padding: 0 16px;
  }
  .director__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .director__photoWrap {
    display: contents;
  }
  .director__logo {
    width: 90px;
    height: 100px;
    display: none;
  }
  .director__photoCircle {
    width: 138px;
    height: 177px;
    margin: 0 auto;
    order: -1;
  }
  .director__caption {
    font-size: 11px;
    width: 100%;
    max-width: 320px;
    margin: -10px 0 0;
    text-align: left;
    order: 2;
  }
  .director__name::after {
    width: 100%;
    height: 8px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='58' height='8' viewBox='0 0 58 8' fill='none'%3E%3Cpath d='M55.8224 2.04478C55.9001 2.08964 55.9575 2.21848 56.0353 2.28784C56.3232 2.54794 56.4211 2.69289 56.6212 2.92901C56.6432 2.95591 56.6668 2.98407 56.6923 3.01388C57.0338 3.41287 58.1878 4.45802 57.8676 4.77494C57.8676 4.77495 57.8675 4.77495 57.8675 4.77496C57.8644 4.77807 57.8611 4.7811 57.8577 4.78407C57.7928 4.84057 57.6332 4.81248 57.5504 4.86681C57.4676 4.92118 57.0323 5.37257 56.8752 5.26386C56.6506 5.10296 56.3055 4.52556 56.1982 4.42734C56.1249 4.36021 55.9984 4.3134 55.9019 4.23027C55.7778 4.12328 55.6839 4.03007 55.5924 3.94693C55.4634 3.83101 55.3364 3.74035 55.1225 3.67609C55.0754 3.52633 55.0217 3.37572 54.9628 3.22596C54.7986 3.14373 54.6373 2.8976 54.5397 2.84072C54.4608 2.7941 54.3815 2.81962 54.3002 2.77229C54.2089 2.71971 54.1054 2.57584 53.9294 2.49252C53.6408 2.35824 53.5159 2.48892 53.3397 2.43152C53.1574 2.37295 52.9117 2.17615 52.6582 2.1552C52.6232 2.16305 52.5883 2.17115 52.5536 2.17951C52.5617 2.22605 52.5694 2.27256 52.5768 2.31905C52.4565 2.30035 52.4323 2.2033 52.325 2.17063C52.1986 2.13279 52.1134 2.19523 52.0287 2.17397C51.9594 2.15661 51.8787 2.07118 51.7856 2.05627C51.6503 2.03477 51.662 2.13353 51.5877 2.13767C51.5579 2.13428 51.0241 2.11321 50.9946 2.11609C50.7686 2.09973 50.7568 1.97088 50.5722 1.95172C50.0585 1.90195 49.536 2.04699 49.0866 2.16695C48.8846 2.22016 48.6724 2.25959 48.4664 2.29379C48.7095 1.88628 47.9104 1.84035 48.3253 2.26C48.0789 2.25536 47.9651 2.44117 47.7528 2.49705C47.6154 2.53406 47.4948 2.50523 47.3084 2.59203C46.9724 2.74825 46.7405 3.12124 46.4581 2.86438C46.2707 3.02142 46.073 3.12824 45.9441 3.25595C45.8311 3.36547 45.7635 3.48235 45.7884 3.64407C45.7019 3.73278 45.335 3.76381 45.2091 3.82431C45.0901 3.8816 44.2383 4.4036 44.1046 4.49656C43.9708 4.58952 43.7386 4.75485 43.6453 4.85934C43.5936 4.91698 43.5847 5.01568 43.5499 5.0966C43.4977 5.20509 43.3955 5.28916 43.1185 5.20767C42.8108 5.44295 42.6815 5.50205 42.3408 5.62238C42.2789 5.64341 42.2472 5.59364 42.2134 5.6096C42.1435 5.64267 42.0411 5.73685 41.9147 5.79455C41.7049 5.88995 41.5411 5.81463 41.6283 5.98354C41.4952 6.06468 41.3597 6.14146 41.2197 6.21444C41.1577 6.19454 41.0963 6.17381 41.0356 6.15229C40.9674 6.21109 40.8969 6.26904 40.8251 6.3258C40.8588 6.04339 40.3351 6.31098 40.5439 6.429C40.2378 6.42817 39.9347 6.40777 39.6381 6.36874C39.6615 6.06492 39.0019 6.34856 39.0474 6.51117C39.0132 6.51011 38.9789 6.50881 38.9447 6.50727C38.6503 6.41309 38.3715 6.4559 38.0211 6.34219C37.6751 6.22443 37.7162 6.19595 37.6428 6.03502C37.5606 6.02437 37.4784 6.01223 37.3963 5.99858C36.8625 6.24576 37.1399 5.64912 36.3534 5.64293C36.2353 5.32723 35.6797 5.18153 35.3159 5.01873C35.2738 5.00053 35.2462 5.03938 35.1882 5.01687C35.0439 4.96291 34.7839 4.68127 34.698 4.80667C34.6221 4.68773 34.5519 4.5686 34.4847 4.44741C34.3866 4.39571 34.2902 4.34231 34.1937 4.28537C34.1603 4.31962 34.1269 4.35388 34.0935 4.38815C34.0512 4.11826 33.7799 3.90753 33.7032 3.74948C33.6929 3.72833 33.7112 3.6997 33.708 3.65462C33.708 3.6352 33.7035 3.61265 33.6897 3.58661C33.6396 3.49054 33.4965 3.35573 33.4248 3.25029C33.338 3.26471 33.2521 3.28088 33.1671 3.29875C32.9866 3.17355 33.062 2.9831 32.9728 2.8834C32.9592 2.86287 32.6169 2.60232 32.5941 2.59512C32.4198 2.51173 32.378 2.66336 31.9442 2.35687C31.8657 2.30354 31.826 2.21646 31.7503 2.17375C31.6167 2.09245 31.1443 2.02533 31.0697 2.12828C30.9598 1.91812 30.472 1.82959 30.3434 1.75939C30.3043 1.73653 30.3173 1.64073 30.1881 1.59226C30.0827 1.55153 29.7904 1.57898 29.6548 1.55172C29.5102 1.52086 29.4639 1.43779 29.3972 1.4268C29.334 1.41686 29.2718 1.47746 29.1866 1.47353C28.9209 1.46037 28.6736 1.36451 28.4576 1.37962C28.1445 1.40159 27.902 1.63474 27.6802 1.77044C27.6175 1.77163 27.5483 1.74592 27.485 1.76165C26.6998 1.94944 25.8548 2.33305 25.1916 2.82435C25.1658 2.84318 25.1361 2.86345 25.1034 2.88514C24.7137 3.14912 23.9382 3.55795 24.3887 3.69743C24.3384 3.81821 23.7421 4.19001 23.4216 4.4013C23.3302 4.46321 23.258 4.51006 23.2215 4.53777C23.0434 4.6727 22.9413 4.83776 22.7905 4.9367C22.3337 5.22737 21.9755 5.35467 21.3804 5.6384C21.2258 5.71073 21.0753 5.85022 20.9751 5.87571C20.855 5.90631 20.7061 5.85124 20.5513 5.87693C20.1833 5.94774 19.4871 6.03892 19.1262 6.00882C19.0605 6.00453 19.0394 5.92621 18.9482 5.89801C18.5937 5.78984 18.2051 5.73438 18.2355 5.99111C17.7943 5.78099 17.3516 5.79708 16.9327 5.6528C16.0247 5.39252 14.6761 4.34097 14.1096 3.7542C13.9789 3.63468 13.887 3.56131 13.8045 3.49061C13.6783 3.4006 13.5932 3.32277 13.3904 3.01876C13.3205 2.91662 13.2526 2.81096 13.1567 2.69305C12.9376 2.4202 12.7645 2.05244 12.4021 2.12988C12.0912 1.87628 11.788 1.79892 11.5717 1.50085C11.5214 1.53769 11.4719 1.57522 11.4234 1.61342C11.3764 1.59998 11.3294 1.58725 11.282 1.57517C11.2805 1.52423 11.2787 1.47324 11.2763 1.4222C10.9271 1.3102 10.4494 1.4429 10.1615 1.4298C9.67045 1.35868 8.3907 1.50143 7.92874 1.66766C7.67913 1.73613 7.71635 1.83756 7.48701 1.71266C7.44166 1.75266 7.39698 1.79345 7.3537 1.83456C7.34479 1.89316 7.33686 1.95163 7.32992 2.00997C7.05163 2.17252 6.69495 2.34362 6.46024 2.55573C6.41065 2.60011 6.35991 2.64953 6.30867 2.70324C5.87323 3.15574 5.34599 3.79187 4.88288 4.13443C4.75135 4.23157 4.53838 4.30263 4.42487 4.41361C4.25959 4.57505 4.33051 4.72951 4.12154 4.93518C3.76116 5.28944 2.95436 5.8085 2.62043 6.15028C2.52118 6.25171 2.51496 6.34062 2.44887 6.4132C2.17219 6.71801 1.92607 6.94858 1.70657 7.28835C1.29544 7.47123 1.18401 7.30303 0.950691 7.24987C0.774301 7.21003 0.311978 7.16933 0.188991 7.10406C0.102589 7.05821 0.101189 6.8934 -0.000487555 6.84926C0.307508 6.43874 0.523194 6.35577 0.919293 6.17384C1.46224 5.64234 2.0052 5.11084 2.54815 4.57934C2.63669 4.57158 2.72523 4.56381 2.81376 4.55605C2.81385 4.55614 2.81393 4.55623 2.81402 4.55631C3.06881 4.4002 3.05797 4.21079 3.14857 4.07806C3.61038 3.40151 4.47946 2.55173 5.37512 1.73505C6.24865 0.920023 7.36434 0.447672 8.18795 0.247733C8.55736 0.115314 9.83594 -0.0893285 10.1043 0.0426833C10.173 0.0686955 10.1882 0.155564 10.2602 0.163285C10.9103 0.149148 11.5707 0.236108 12.2095 0.426026C13.2648 0.950506 14.279 1.63175 15.0262 2.57053C15.1245 2.69211 15.2256 2.8078 15.3306 2.92046C17.1758 4.969 20.555 5.09189 22.5383 3.34718C22.8185 3.11267 23.0992 2.87906 23.3803 2.64643C23.6549 2.41928 23.9567 2.14185 24.2579 1.87622C24.5274 1.6394 24.8132 1.43237 25.0878 1.28295C25.3468 1.14479 25.5133 1.20587 25.8064 0.946472C25.8261 0.978319 25.8459 1.0102 25.8655 1.0421C26.141 0.862322 26.3054 0.701588 26.6569 0.573524C26.9491 0.455296 27.7636 0.270414 28.0426 0.26279C28.1864 0.252922 28.1407 0.328046 28.2727 0.314665C28.4967 0.289147 28.9829 0.175544 29.3022 0.195227C29.5918 0.205638 30.0606 0.346666 30.276 0.378877C31.0546 0.479737 31.9362 0.669837 32.663 1.13587C32.8644 1.26275 33.0643 1.5081 33.124 1.54842C33.2433 1.62683 33.3299 1.58266 33.4141 1.63263C33.8498 1.88447 34.3332 2.50523 34.6225 2.88379C34.6287 2.89166 34.6349 2.89954 34.6411 2.90744C35.4124 3.90532 36.6002 4.61852 37.8048 4.92382C38.5699 5.15765 39.9023 5.13158 40.6277 4.98778C40.7852 4.96267 40.769 5.06612 40.9 5.02906C41.0454 4.98646 41.1016 4.89835 41.1656 4.87084C41.5628 4.71394 42.3054 4.27579 42.7266 3.98455C42.7934 3.94064 42.855 3.9027 42.9096 3.87242C42.9943 3.82562 43.0949 3.84476 43.1409 3.81039C43.1643 3.79311 43.1864 3.71275 43.2566 3.65426C43.8761 3.13774 44.3658 2.81246 45.0105 2.35711C45.0687 2.31594 45.1272 2.27423 45.186 2.23201C46.4465 1.30126 48.1718 0.568269 49.818 0.538567C50.1937 0.528558 50.4459 0.685835 50.4965 0.684825C50.6094 0.684813 50.6855 0.585366 50.9197 0.576076C51.7045 0.539037 52.7123 0.876352 53.4101 1.10171C53.7583 1.20578 54.272 1.30531 54.6064 1.46203C54.8782 1.57849 55.4258 2.00421 55.559 2.04088C55.6425 2.06067 55.7378 1.99669 55.8224 2.04478ZM47.0735 2.61152C47.034 2.43464 46.6935 2.77716 46.89 2.7781C46.9331 2.77789 47.0829 2.6564 47.0735 2.61152ZM26.3411 1.8482C26.3659 1.89128 26.3905 1.9344 26.415 1.97757C26.4609 1.93373 26.5076 1.89049 26.5551 1.84789C26.5122 1.83382 26.4689 1.82022 26.4253 1.8071C26.3972 1.82058 26.3691 1.83428 26.3411 1.8482Z' fill='%23DC251D'/%3E%3C/svg%3E") no-repeat left center / contain;
    background-size: contain;
  }
  .director__text {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    order: 1;
    margin-top: 0;
  }
  .director__text p {
    font-size: 12px;
    margin-bottom: 18px;
  }
  .director__decor--bear {
    right: 20px;
    bottom: 80px;
    width: 80px;
    height: auto;
  }
  .director__decor--starBlue {
    left: 110px;
    bottom: 240px;
    width: 10px;
    height: 10px;
  }
  .director__decor--cloudMid {
    left: 100px;
    top: 200px;
    width: 28px;
    height: auto;
  }

  .director__decor--cloudLeft {
    left: 300px;
    top: 100px;
    width: 40px;
    height: auto;
  }
  .director__decor--starLeft {
    left: 340px;
    top: 180px;
    width: 20px;
    height: 20px;
  }
  .director__starYellow {
    position: absolute;
    left: 130px;
    top: 100px;
    width: 18px;
    height: 18px;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 1;
  }
  .director__decor--starRed {
    left: 360px;
    top: 300px;
    width: 16px;
    height: 16px;
  }
  .director__decor--starRight {
    right: 330px;
    top: 170px;
    width: 18px;
    height: 18px;
  }
  .sectionTitle--why::after {
    width: 70px;
    height: 10px;
    margin-left: 57px;
    margin-right: auto;
    background-image: url("/assets/figma/eca62f17-eee7-4eef-a85c-1c2ea0ad7186.svg");
  }

  /* Why mobile */
  .why {
    padding: 25px 16px;
  }
  .why__grid {
    grid-template-columns: 1fr;
    gap: 19px;
    margin-top: 25px;
    grid-template-areas:
      "item1"
      "item2"
      "item3"
      "item4"
      "item5";
  }
  .whyItem {
    gap: 16px;
    font-size: 12px;
    max-width: 100%;
  }
  .whyItem__num {
    width: 52px;
    height: 52px;
  }
  .whyItem__icon {
    width: 65px;
    height: 57px;
    flex: none;
  }
  .whyItem__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .why__decor {
    display: none;
  }
  .why__decor--moon {
    display: block;
    left: 30px;
    top: 2px;
    width: 40px;
    height: 40px;
    z-index: 1;
  }
  .why__decor--starBlue {
    display: block;
    left: 20px;
    top: 120px;
    width: 16px;
    height: 16px;
    z-index: 1;
  }
  .why__decor--starGreen {
    display: block;
    left: 280px;
    top: 200px;
    width: 14px;
    height: 14px;
    z-index: 1;
  }
  .why__decor--starRed {
    display: block;
    left: 20px;
    top: 240px;
    width: 12px;
    height: 12px;
    z-index: 1;
  }
  .why__decor--starYellow {
    display: block;
    right: 30px;
    top: 180px;
    width: 18px;
    height: 18px;
    z-index: 1;
  }
  .why__decor--cloudRight {
    display: block;
    right: 20px;
    top: 140px;
    width: 40px;
    height: 50px;
    z-index: 1;
  }
  .why__decor--rainbow {
    display: block;
    right: 10px;
    margin-bottom: -10px;
    width: 80px;
    height: auto;
    z-index: 1;
  }

  /* Directions mobile */
  .directions {
    padding: 0px 0 70px;
  }
  .directions-2,
  .directions-3,
  .directions-4 {
    display: none;
  }
  .directions-1 {
    padding: 160px 0 100px;
  }
  .directions-1__note {
    left: 24px;
    top: 70px;
    width: 40px;
    height: 40px;
  }
  .directions-1 .directions__decor--cloudTopLeft,
  .directions-1 .directions__decor--cloudTopRight,
  .directions-1 .directions__decor--starRed,
  .directions-1 .directions__decor--starBlue {
    display: none;
  }
  .directions-1__wave {
    left: 0;
    width: 100%;
    height: 70px;
    transform: none;
  }
  .directions-2,
  .directions-3 {
    padding: 24px 0;
  }
  .directions-2__starYellow,
  .directions-2__yula,
  .directions-2__starRedTop,
  .directions-2__cloud,
  .directions-2__kite,
  .directions-2__starRedMid,
  .directions-2__starBlue,
  .directions-2__line,
  .directions-2__spiral {
    display: none;
  }
  .directions-3__wave {
    height: 70px;
  }
  .directions-3__waveBottom {
    height: 70px;
  }
  .directions-3__starYellow {
    display: none;
  }
  .directions-3__cloud,
  .directions-3__starGreen {
    display: none;
  }
  .directions-4__brush,
  .directions-4__picture,
  .directions-4__cloud,
  .directions-4__starGreen,
  .directions-4__starBlue {
    display: none;
  }
.directions-4 {
  padding: 24px 0 80px;
  overflow: visible;
}
  .directions__panel {
    width: 100%;
    border-radius: 0;
    padding: 0;
    padding-right: 0;
    margin-right: 0;
    position: relative;
  }
  .directions__panel .container {
    position: relative;
  }
  .directions-1 .directions__panel .container {
    padding-left: 0px;
    padding-right: 0 !important;
  }
  .directions-1 .cards__row,
  .directions-1 .cards__row.cards__row--3,
  .directions-1 .cards__row.cards__row--4 {
    min-width: 0;
    max-width: 100%;
    justify-content: flex-start;
    gap: 0;
    padding-right: 0;
    margin-right: 0;
  }
  .cards__row-wrapper {
    position: relative;
    margin: 24px 0;
    padding-right: 0;
    margin-right: 0;
    display: block;
  }
  .cards__nav {
    margin-top: 28px;
    display: flex !important;
    gap: 36px;
    justify-content: center;
    visibility: visible;
    opacity: 1;
  }
  .cards__nav-btn {
    width: 46px;
    height: 46px;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .cards__nav-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }
  .directions::before,
  .directions::after {
    width: 100%;
    left: 0;
    transform: none;
    height: 70px;
  }
  .directions__lead {
    font-size: 15px;
    letter-spacing: 0.45px;
    margin: 24px 15px 24px;
    text-align: center;
  }
  .directionsRows {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 16px;
    align-items: start;
  }
  .directionsRow {
    display: contents;
  }
  .cards__row {
    display: flex;
    gap: 5;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin: 0;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
  }
  .cards__row::-webkit-scrollbar {
    display: none;
  }
  .cards__rowWave {
    height: 60px;
  }
  .card {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    min-height: 450px;
    padding: 20px 16px 16px;
    margin-right: 24px;
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    box-sizing: border-box;
  }
  .card:first-child {
    margin-left: 50px;
  }
  .card__title {
    padding: 0 4px 6px;
    font-size: 20px;
    min-height: auto;
    font-weight: 700;
  }
  .card__imageWrap {
    width: 100%;
    height: 180px;
    margin: 10px 0 12px;
    border-radius: 14px;
  }
  .card__imageWrap img {
    border-radius: 12px;
  }
  .card__category span {
    font-size: 10px;
    padding: 2px 8px;
  }
  .card__desc {
    padding: 0 4px;
    font-size: 15px;
    line-height: 1.35;
  }
  .directions__decor {
    display: none;
  }

  /* Gallery mobile */
  .gallery {
    padding: 90px 16px;
  }
  .gallery__wave {
    height: 70px;
  }
  .gallery__gridWrap {
    width: 100%;
    margin: 20px 0 0;
  }
  .gallery__gridWrap::before,
  .gallery__gridWrap::after {
    display: none;
  }
  .gallery__grid {
    width: 100%;
    gap: 20px;
    padding: 0 16px;
    overflow-x: auto;
  }
  .galleryItem {
    flex: 0 0 314px;
  }
  .galleryItem {
    width: 314px;
    border-width: 8px;
  }
  .galleryItem img {
    width: 100%;
    height: auto;
    aspect-ratio: 294/313;
  }
  .gallery__nav {
    gap: 45px;
    margin-top: 20px;
  }
  .galleryNavBtn {
    width: 35px;
    height: 35px;
  }
  .cards__nav {
    display: flex !important;
    gap: 45px;
    margin-top: 20px;
    justify-content: center;
  }
  .cards__nav-btn {
    width: 35px;
    height: 35px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
  }

  /* Contact mobile */
  .contact {
    padding: 40px 0 60px;
    overflow: visible;
    margin-bottom: 0;
    padding-bottom: 40px;
  }
  .contact .container {
    padding-left: 16px;
    padding-right: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  .contact__lead {
    font-size: 15px;
    margin: 0 auto 24px;
    padding: 0;
    text-align: center;
    width: 100%;
    max-width: 100%;
  }
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 30px;
    justify-items: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
  }
  .contactForm {
    order: 0;
    width: 100%;
    max-width: 270px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
  }
  .contact__qrSection {
    order: 1;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    padding: 0;
  }
  .contact__qr {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .contact__qrTitle {
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 20px;
    text-align: center;
    color: var(--blue);
  }
  .contact__qrImg {
    width: 251px;
    height: 256px;
    margin: 0 auto;
    border-radius: 35px;
  }
  .contact__handle {
    font-size: 32px;
    margin-top: 12px;
    text-align: center;
  }
  .contactForm .btn {
    width: 100%;
    max-width: 100%;
    align-self: center;
    margin: 0 auto;
  }
  .contactForm__title {
    font-size: 20px;
  }
  .field__input {
    height: 52px;
    font-size: 12px;
    border-radius: 35px;
  }
  .contact__footer {
    font-size: 15px;
    margin: 24px 0 40px;
    padding-bottom: 0;
  }

  /* Footer mobile */
  html {
    overflow-x: hidden;
    overflow-y: auto;
  }
  body {
    overflow-x: hidden;
    overflow-y: auto;
    padding-bottom: 00px;
  }
  main {
    padding: 0;
    padding-bottom: 0;
    margin-bottom: 0;
    overflow: visible;
  }
  .footer {
    display: block !important;
    position: relative !important;
    width: 100% !important;
    z-index: 10;
    background: var(--blue) !important;
    margin-top: 20px !important;
    padding: 0 !important;
    visibility: visible !important;
    opacity: 1 !important;
    clear: both;
    height: auto;
    min-height: auto;
    transform: none !important;
  }
  .footerbar {
    height: auto !important;
    min-height: 79px;
    padding: 15px 16px !important;
    display: flex !important;
    width: 100% !important;
    position: relative !important;
    background: var(--blue) !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin: 0 !important;
  }
  .footerbar__inner {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 0;
    display: flex;
  }
  .footerbar__item {
    gap: 12px;
    margin-left: 0 !important;
    margin-right: 0 !important;
    display: flex;
    width: 100%;
  }
  .footerbar__item--phone {
    margin-left: 0 !important;
  }
  .footerbar__item--address {
    margin-right: 0 !important;
  }
  .footerbar__item .topbar__link,
  .footerbar__item .topbar__text {
    font-size: 16px;
    color: #fff;
  }
  .footerbar__item .topbar__icon {
    width: 20px;
    height: 20px;
  }
  .footerbar__scrollTop {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    z-index: 11;
  }
  .footerbar__scrollTop svg {
    width: 24px;
    height: 24px;
  }

  /* Wave separators mobile */
  .wave--hero {
    height: 104px;
  }
  .wave--between {
    height: 104px;
  }

  /* Modal mobile */
  .modal__content {
    width: calc(100vw - 32px);
    height: auto;
    max-height: 80vh;
  }
  .modal__nav--prev { left: 10px; }
  .modal__nav--next { right: 10px; }
}

