@charset "UTF-8";
body {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: #212121;
  font-weight: 600;
  background-color: #f5f5f5;
  overflow-x: hidden;
}

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

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
figure,
dl,
dd {
  margin: 0;
}

html,
body {
  height: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

main {
  display: block;
}

.layout {
  padding: 60px 200px 20px;
}

h2 {
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 40px;
}

.site {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.site__main {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

.footer {
  margin-top: auto;
  /* на всякий случай прижимает вниз */
}

@media screen and (max-width: 1300px) {
  .layout {
    padding: 40px 20px 20px;
  }
  h2 {
    font-size: 25px;
  }
}
/* =========================
   HEADER (DESKTOP BASE)
========================= */
.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 80px;
  min-height: 110px;
  background: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* =========================
     BURGER BUTTON (BASE)
  ========================= */
}
.header__logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 0;
}
.header__logo svg {
  display: block;
  width: 95px;
  height: 110px;
}
.header__nav {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.header__menu-link {
  text-decoration: none;
  color: #111;
}
.header__phone-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
.header__phone {
  color: #DE913F;
  text-decoration: none;
  white-space: nowrap;
}
.header__burger {
  display: none;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  line-height: 0;
  -webkit-tap-highlight-color: transparent;
}
.header__burger-line {
  display: block;
  width: 35px;
  height: 2px;
  background: #111;
  border-radius: 2px;
}

/* =========================
   MOBILE MENU (OFF-CANVAS)
========================= */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(86vw, 360px);
  background: #fff;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
}
.mobile-menu__close {
  -ms-flex-item-align: end;
      align-self: flex-end;
  border: 0;
  background: transparent;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  padding: 6px 10px;
  -webkit-tap-highlight-color: transparent;
}
.mobile-menu__nav {
  margin-top: 6px;
}
.mobile-menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
}
.mobile-menu__link {
  text-decoration: none;
  color: #111;
  font-size: 18px;
  line-height: 1.2;
}
.mobile-menu__phones {
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.mobile-menu__phone {
  color: #DE913F;
  text-decoration: none;
  font-size: 18px;
  white-space: nowrap;
}
.mobile-menu.is-open {
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu.is-open .mobile-menu__panel {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

/* Блокируем скролл под меню */
body.is-menu-open {
  overflow: hidden;
}

/* =========================
   RESPONSIVE
   под твой скрин: лого слева, бургер справа, компактные отступы
========================= */
@media (max-width: 900px) {
  .header {
    padding: 12px 16px;
    max-height: 45px;
  }
  .header__nav, .header__phone-wrap {
    display: none;
  }
  .header__burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
  }
  .header__logo svg {
    width: 74px;
    height: auto;
  }
}
/* очень маленькие экраны */
@media (max-width: 380px) {
  .header__burger {
    width: 52px;
    height: 52px;
  }
  .header__burger-line {
    width: 40px;
  }
  .mobile-menu__panel {
    width: min(92vw, 360px);
    padding: 16px;
  }
}
.footer {
  padding-top: 30px;
  padding-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
  /* Кнопка заголовка (на десктопе как обычный текст) */
}
.footer__logo {
  font-weight: 800;
  font-size: 30px;
  text-decoration: underline;
  line-height: 0;
}
.footer__logo svg {
  display: block;
  width: 135px;
  height: 135px;
}
.footer__columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 60%;
  gap: 20px;
}
.footer__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.footer__title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-bottom: 5px;
  font-weight: 700;
}
.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.footer__item {
  font-weight: 400;
}
.footer__link {
  color: rgba(17, 17, 17, 0.85);
  text-decoration: none;
}
.footer__link:hover {
  text-decoration: underline;
}
.footer__title-btn {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: default;
}

/* =========================
   MOBILE ACCORDION
========================= */
@media (max-width: 900px) {
  .footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 18px;
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .footer__logo {
    text-align: center;
  }
  .footer__logo svg {
    width: 96px;
    height: 96px;
  }
  .footer__columns {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
  }
  .footer__col {
    width: 100%;
    padding: 0;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  /* Заголовок превращаем в кнопку */
  .footer__title-btn {
    width: 100%;
    cursor: pointer;
    padding: 14px 16px;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    font-weight: 700;
    font-size: 16px;
    color: #111;
    -webkit-tap-highlight-color: transparent;
  }
  /* Стрелка */
  .footer__title-btn::after {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 2px solid rgba(17, 17, 17, 0.65);
    border-bottom: 2px solid rgba(17, 17, 17, 0.65);
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transition: -webkit-transform 0.2s ease;
    transition: -webkit-transform 0.2s ease;
    transition: transform 0.2s ease;
    transition: transform 0.2s ease, -webkit-transform 0.2s ease;
    margin-left: 12px;
  }
  /* Открыто — стрелка вверх */
  .footer__col.is-open .footer__title-btn::after {
    -webkit-transform: rotate(-135deg);
            transform: rotate(-135deg);
  }
  .footer__panel {
    padding: 0 16px 14px;
  }
  .footer__list {
    gap: 10px;
  }
  .footer__link {
    font-size: 15px;
    line-height: 1.25;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}
/* Очень маленькие экраны */
@media (max-width: 420px) {
  .footer__logo svg {
    width: 88px;
    height: 88px;
  }
  .footer__title-btn {
    padding: 12px 14px;
  }
  .footer__panel {
    padding: 0 14px 12px;
  }
  .footer__link {
    font-size: 14px;
  }
}
.hero {
  width: 100%;
  height: 450px;
  background-color: #DE913F;
  color: #fff;
  position: relative;
}
.hero__kids {
  position: absolute;
  right: 10%;
  bottom: 0;
  height: 100%;
  max-height: 450px;
  width: auto;
  z-index: 2;
}
.hero__content {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.hero__subtitle {
  font-size: 18px;
  letter-spacing: 10.7px;
}
.hero__title {
  font-weight: 800;
  font-size: 60px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.hero__text {
  max-width: 30%;
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 20px;
}
.hero__btn {
  font-size: 16px;
  margin-top: 20px;
  background-color: #fff;
  color: #212121;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/images/hero_bcg.png");
  background-size: 50%;
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}

@media screen and (max-width: 1300px) {
  .hero {
    height: 400px;
  }
  .hero__content {
    max-width: calc(100% - 40px);
  }
  .hero__subtitle {
    letter-spacing: normal;
  }
  .hero__title {
    font-size: 30px;
  }
  .hero__text {
    font-size: 14px;
    max-width: 100%;
  }
  .hero__kids {
    display: none;
  }
}
.groups__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.groups__item {
  display: inline-block;
  padding: 10px;
  border-radius: 30px;
  padding-bottom: 40px;
  -webkit-box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.15);
  background-color: #fff;
}
.groups__image {
  width: 100%;
  height: 200px;
  border-radius: 30px;
}
.groups__content {
  padding-left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  max-height: 50%;
}
.groups__name {
  font-size: 28px;
  margin: 15px 0 5px;
}
.groups__age {
  display: inline-block;
  font-weight: 400;
  margin-bottom: 15px;
  font-size: 20px;
}
.groups__link {
  margin-top: auto;
  font-weight: 400;
  font-size: 18px;
}

@media screen and (max-width: 1300px) {
  .groups__list {
    grid-template-columns: repeat(1, 1fr);
  }
  .groups__name {
    font-size: 22px;
  }
  .groups__age {
    font-size: 16px;
    margin-bottom: 30px;
  }
}
.news {
  position: relative;
}
.news__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
.news__all {
  position: absolute;
  font-size: 20px;
  font-weight: 500;
  text-decoration: underline;
  right: 200px;
  bottom: -60px;
}

.news-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  border-radius: 30px;
  padding: 10px;
  -webkit-box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.15);
  background-color: #fff;
}
.news-card__media {
  width: 100%;
  height: 150px;
  border-radius: 30px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.news-card__content {
  position: relative;
  width: 100%;
}
.news-card__title {
  font-size: 20px;
}
.news-card__text {
  font-weight: 400;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.news-card__link {
  display: inline-block;
  margin-left: auto;
  font-weight: 400;
  position: absolute;
  bottom: 0;
  right: 10px;
}

@media screen and (max-width: 1300px) {
  .news__list {
    grid-template-columns: repeat(1, 1fr);
  }
  .news-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .news-card__media {
    height: 100px;
  }
}
.other__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.other__item {
  display: inline-block;
  padding: 10px;
  border-radius: 30px;
  padding-bottom: 40px;
  -webkit-box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.15);
  background-color: #fff;
}
.other__image {
  width: 100%;
  height: 220px;
  border-radius: 30px;
}
.other__content {
  padding-left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  max-height: 35%;
  padding-top: 10px;
}
.other__name {
  font-size: 28px;
  margin: 15px 0 5px;
}
.other__link {
  margin-top: auto;
  font-weight: 400;
  font-size: 18px;
}
.other__item--span-2 {
  grid-column: span 2;
}

@media screen and (max-width: 1300px) {
  .other__list {
    grid-template-columns: repeat(1, 1fr);
  }
  .other__item--span-2 {
    grid-column: span 1;
  }
  .other__image {
    height: 150px;
  }
  .other__content {
    max-height: 45%;
  }
}
.request__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 100px;
}
.request__wrap img {
  width: 420px;
}
.request__content {
  width: 50%;
}
.request__fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.request__input {
  width: 100%;
  padding: 10px 20px;
  border-radius: 25px;
  border: 1px solid #ccc;
  outline: none;
}
.request__policy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.request__checkbox {
  width: 20px;
  height: 20px;
}
.request__submit {
  background-color: #DE913F;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  margin-top: 25px;
}

@media screen and (max-width: 1300px) {
  .request__content {
    width: 100%;
  }
  .request img {
    display: none;
  }
  .request__submit {
    width: 100%;
  }
}
.contact__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.contact__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
.contact__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 30px;
}
.contact__item--phone, .contact__item--email {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact__icon {
  background-color: #DE913F;
  padding: 10px;
  display: inline-block;
  border-radius: 50%;
}
.contact__icon-svg {
  fill: #fff;
  width: 20px;
  height: 20px;
}
.contact__map {
  width: 700px;
  height: 300px;
}
.contact__phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

.y-pin {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
}

.y-pin__popup {
  position: absolute;
  left: 50%;
  bottom: 48px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  min-width: 220px;
  max-width: 280px;
  padding: 10px 12px;
  background: #fff;
  border-radius: 12px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  font: 14px/1.3 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.y-pin__popup::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #fff;
}

.y-pin__title {
  font-weight: 700;
  margin-bottom: 4px;
}

.y-pin__text {
  color: rgba(0, 0, 0, 0.75);
}

.y-pin__icon {
  display: block;
}

@media screen and (max-width: 1300px) {
  .contact__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contact__phone {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
  .contact__map {
    width: 100%;
    margin-top: 30px;
  }
}/*# sourceMappingURL=main.css.map */