@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@font-face {
  font-family: "itim-cyrillic";
  src: url("../assets/fonts/itim-cyrillic/itimcyrillic.otf");
}
@font-face {
  font-family: "avenir";
  src: url("../assets/fonts/avenir/avenir-demi.ttf");
}
@font-face {
  font-family: "myriad-pro";
  src: url("../assets/fnts/myriad-pro/MYRIADPRO-REGULAR.OTF"), url("../assets/fonts/myriad-pro/MYRIADPRO-BOLD.OTF");
}
.logobox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.play-btn {
  width: 87px;
  height: 87px;
  background: #fff;
  border-radius: 5000px;
}

.play-btn__icon {
  width: 30px;
  height: 30px;
  fill: red;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media (max-width: 1023px) {
  .break {
    display: none;
  }
}
.main-button {
  display: inline-block;
  text-align: center;
  background: #bad827;
  border: 1px solid #bad827;
  color: #39464a;
  padding: 20px 50px;
  border-radius: 8px;
  font-family: "itim-cyrillic";
  font-size: 30px;
  cursor: pointer;
  text-decoration: none;
}
.main-button:hover {
  background: #9bb41a;
  border-color: #bad827;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

@media (max-width: 567px) {
  .main-button {
    padding: 20px 10px;
    font-size: 24px;
  }
}
@media (max-width: 387px) {
  .main-button {
    font-size: 20px;
  }
}
.present-card {
  padding: 30px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid #8fd7f0;
}
.present-card__img-box {
  margin-bottom: 20px;
  height: 237px;
}
.present-card__img {
  border-radius: 20px;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}
.present-card__title {
  font-family: "avenir", sans-serif;
  font-size: 24px;
  margin-bottom: 24px;
}
.present-card__info {
  font-family: "avenir", sans-serif;
}

.present-card-1 {
  grid-area: item1;
}

.present-card-2 {
  grid-area: item2;
}

.present-card-3 {
  grid-area: item3;
}

.present-card-4 {
  grid-area: item4;
}

.present-card-5 {
  grid-area: item5;
}

@media (max-width: 1023px) {
  .present-card {
    padding: 16px;
  }
}
@media (max-width: 677px) {
  .present-card__img-box {
    height: 250px;
  }
}
@media (max-width: 397px) {
  .present-card__img-box {
    height: 220px;
  }
}
.light-blue {
  color: #00a4dc;
}

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__container {
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__list {
  background-color: #80ab24;
  border-radius: 16px;
  padding: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-transition: 0.17s;
  transition: 0.17s;
}
.header__list:hover {
  background: #89b42a;
}
.header__link {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
}
.header__link:hover {
  text-decoration: underline;
}
.header__phone-box {
  background-color: #00a4dc;
  border-radius: 16px;
  padding: 18px;
  -webkit-transition: 0.17s;
  transition: 0.17s;
}
.header__phone-box:hover {
  background: #0cb2e9;
}
.header__phone {
  font-family: Roboto, sans-serif;
}
.header__phone-link {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
}

@media (max-width: 1279px) {
  .header__link {
    font-size: 16px;
  }
  .header__phone-link {
    font-size: 16px;
  }
}
@media (max-width: 1023px) {
  .header__menu {
    display: none;
  }
}
@media (max-width: 493px) {
  .logobox__dari-box {
    display: none;
  }
}
.burger {
  position: relative;
  z-index: 100;
  width: 40px;
  gap: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  cursor: pointer;
}
.burger__item {
  display: inline-block;
  height: 2px;
  width: 100%;
  background: #80ab24;
}

.burger__one,
.burger__three {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

html.mobile-menu-active .burger__one {
  -webkit-transform: rotate(30deg);
      -ms-transform: rotate(30deg);
          transform: rotate(30deg);
  -webkit-transform-origin: left;
      -ms-transform-origin: left;
          transform-origin: left;
}

html.mobile-menu-active .burger__two {
  visibility: hidden;
  opacity: 0;
}

html.mobile-menu-active .burger__three {
  -webkit-transform: rotate(-30deg);
      -ms-transform: rotate(-30deg);
          transform: rotate(-30deg);
  -webkit-transform-origin: left;
      -ms-transform-origin: left;
          transform-origin: left;
}

@media (min-width: 1024px) {
  .burger {
    display: none;
  }
}
.mobile-menu {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
}

html.mobile-menu-active .mobile-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mobile-menu__list {
  padding-top: 70px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  gap: 40px;
}

.mobile-menu__link {
  font-size: 32px;
  text-decoration: none;
  color: #80ab24;
}
.mobile-menu__link:hover {
  text-decoration: underline;
}

.socials-mobile {
  padding-left: 20px;
  padding-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.socials-mobile__link {
  display: inline-block;
  width: 35px;
  height: 35px;
  border-radius: 5555px;
  overflow: hidden;
}

.socials-mobile__link img {
  width: 100%;
  height: 100%;
}

.socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  margin-bottom: 20px;
}
.socials__link {
  display: inline-block;
  width: 35px;
  height: 35px;
  border-radius: 5555px;
  overflow: hidden;
}
.socials__link img {
  width: 100%;
  height: 100%;
}

.phones-mobile {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  gap: 16px;
  bottom: 20px;
  right: 20px;
}

.phones-mobile-phone {
  font-size: 24px;
  color: #80ab24;
  text-decoration: none;
}
.phones-mobile-phone:hover {
  text-decoration: underline;
}

.hero {
  margin-bottom: 60px;
}
.hero__container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
.hero__info {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
}
.hero__photo-box {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
  position: relative;
}
.hero__photo {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 50px;
}
.hero__title {
  color: #ef6c7a;
  font-size: 60px;
  margin-bottom: 44px;
}
.hero__list {
  margin-bottom: 4px;
}
.hero__item {
  font-family: "avenir", sans-serif;
  font-weight: 500;
  margin-bottom: 36px;
  padding-left: 44px;
  position: relative;
  max-width: 380px;
}
.hero__item::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  left: 0px;
  top: 0px;
  background-image: url("../assets/images/star.png");
  background-size: 30px 30px;
}
.hero__play-btn {
  position: absolute;
  bottom: 20px;
  left: 20px;
  cursor: pointer;
  -webkit-transition: 0.17s;
  transition: 0.17s;
}
.hero__play-btn:hover {
  background: #eee;
}

@media (max-width: 1279px) {
  .hero {
    margin-bottom: 50px;
  }
}
@media (max-width: 1023px) {
  .hero {
    margin-bottom: 40px;
  }
  .hero__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-flow: column-reverse nowrap;
            flex-flow: column-reverse nowrap;
  }
  .hero__title {
    font-size: 42px;
    text-align: center;
  }
  .hero__item {
    font-size: 18px;
    max-width: none;
  }
  .hero__book-box {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .hero__item::before {
    left: -3px;
  }
}
@media (max-width: 567px) {
  .hero__title {
    font-size: 30px;
  }
  .hero__book {
    padding: 20px 10px;
    font-size: 24px;
  }
}
@media (max-width: 387px) {
  .hero__book {
    font-size: 20px;
  }
}
.hero__decor {
  position: absolute;
}

.hero__decor img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.hero__decor-star {
  z-index: 300;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  left: 35%;
  top: 30%;
  width: 215px;
  height: 215px;
}

.hero__decor-triangle {
  z-index: 300;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  left: 42%;
  top: 7%;
  width: 55px;
  height: 55px;
}

.hero__decor-redball {
  width: 25px;
  height: 25px;
  background: #e0717a;
  top: -25px;
  right: 25%;
  border-radius: 999px;
}

.hero__decor-x1 {
  z-index: 300;
  left: 33%;
  top: 70%;
  width: 30px;
  height: 30px;
}

.hero__decor-x2 {
  z-index: 300;
  left: 43.5%;
  top: 27%;
  width: 30px;
  height: 30px;
}

@media (max-width: 1279px) {
  .hero__decor-star {
    width: 150px;
    height: 150px;
    left: 38%;
  }
}
@media (max-width: 1023px) {
  .hero__decor {
    display: none;
  }
}
.itis {
  padding: 0 10px;
  margin-bottom: 70px;
}
.itis__container {
  position: relative;
  padding: 30px 25px !important;
  background: #00a4dc;
  border-radius: 20px;
}
.itis__title {
  font-size: 30px;
  font-family: "itim-cyrillic", sans-serif;
  color: #fff;
  margin-bottom: 30px;
}
.itis__grid {
  display: grid;
  margin-bottom: 40px;
  gap: 18px;
  grid-template-areas: "item1 item1 item2 item2 item3 item3" "item4 item4 item4 item5 item5 item5";
  grid-template-columns: repeat(6, 1fr);
}
.itis__together {
  font-size: 36px;
  color: #fff;
  max-width: 70%;
  margin-bottom: 58px;
  font-family: "avenir";
}

@media (max-width: 1279px) {
  .itis {
    margin-bottom: 50px;
  }
  .itis__grid {
    margin-bottom: 35px;
  }
}
@media (max-width: 1023px) {
  .itis {
    margin-bottom: 30px;
  }
  .itis__grid {
    grid-template-areas: "item1 item2" "item3 item4" "item5 item5";
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 30px;
  }
  .itis__together p {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .itis {
    margin-bottom: 20px;
  }
  .itis__together {
    max-width: 100%;
    margin-bottom: 24px;
  }
  .itis__grid {
    margin-bottom: 25px;
  }
}
@media (max-width: 677px) {
  .itis__grid {
    grid-template-areas: "item1" "item2" "item3" "item4" "item5";
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 460px) {
  .itis__container {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}
.itis__decor {
  position: absolute;
}

.itis__decor-boy {
  bottom: 50px;
  right: 75px;
  height: 250px;
}

.itis__decor-boy img {
  height: 100%;
}

.itis__decor-triangle {
  bottom: 50px;
  right: 200px;
}

@media (max-width: 1023px) {
  .itis__decor-boy {
    right: 50px;
  }
}
@media (max-width: 767px) {
  .itis__decor-boy {
    display: none;
  }
}
.programs {
  margin-bottom: 50px;
}
.programs__title {
  font-size: 30px;
  margin-bottom: 30px;
  color: #39464a;
  font-family: "avenir", sans-serif;
}
.programs__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
}
.programs__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  font-size: 24px;
  color: #333333;
  font-family: "avenir", sans-serif;
  font-weight: 500;
}
.programs__img-box {
  width: 40px;
  height: 40px;
}
.programs__img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.programs__label p {
  max-width: 170px;
}

@media (max-width: 1023px) {
  .programs__grid {
    grid-template-columns: 1fr 1fr;
  }
  .programs__title {
    font-size: 28px;
  }
}
@media (max-width: 720px) {
  .programs__grid {
    grid-template-columns: 1fr;
  }
  .programs__item {
    padding-left: 40px;
  }
}
@media (max-width: 428px) {
  .programs__item {
    padding-left: 20px;
    gap: 30px;
  }
}
.pedagogi {
  margin-bottom: 50px;
}
.pedagogi__list {
  overflow: hidden;
}
.pedagogi__img-box {
  height: 388px;
  width: 311px;
  border-radius: 40px;
  overflow: hidden;
  margin: 0 auto;
}
.pedagogi__name {
  font-family: "avenir", sans-serif;
  text-align: center;
  font-size: 24px;
  margin-bottom: 8px;
}
.pedagogi__label {
  font-family: "avenir", sans-serif;
  text-align: center;
  font-size: 14px;
}
.pedagogi__title {
  font-size: 30px;
  font-family: "avenir", sans-serif;
  color: #39464a;
  margin-bottom: 38px;
  font-weight: 500;
}
.pedagogi__stuff {
  color: #333333;
  margin-bottom: 56px;
  font-size: 24px;
  font-family: "avenir", sans-serif;
  font-weight: 500;
}

@media (max-width: 1279px) {
  .pedagogi {
    margin-bottom: 40px;
  }
  .pedagogi__title {
    font-size: 26px;
    margin-bottom: 26px;
  }
  .pedagogi__stuff {
    font-size: 22px;
    margin-bottom: 22px;
  }
}
@media (max-width: 1023px) {
  .pedagogi {
    margin-bottom: 30px;
  }
  .pedagogi__title {
    font-size: 24px;
    margin-bottom: 24px;
  }
  .pedagogi__stuff {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.swiper-button-prev-custom,
.swiper-button-next-custom {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50px;
  height: 50px;
  background: #c4e819;
  border-radius: 3333px;
  z-index: 700;
  cursor: pointer;
  stroke: #222;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.swiper-button-prev-custom:hover,
.swiper-button-next-custom:hover {
  background: #cff123;
  stroke: #1e1e1e;
}

.swiper-button-prev-custom {
  top: 50%;
  left: 10px;
}

.swiper-button-next-custom {
  top: 50%;
  right: 10px;
}

.swiper-pagination-pedagogi {
  bottom: 70px !important;
}

.swiper-pagination-pedagogi .swiper-pagination-bullet {
  background: #5a5a5a;
  opacity: 1;
}

.swiper-pagination-pedagogi .swiper-pagination-bullet-active {
  background: #fff;
  border: 1px solid #5a5a5a;
}

.short {
  margin-bottom: 50px;
  margin-right: 10px;
  margin-left: 10px;
}
.short__container {
  background: #00a4dc;
  padding: 32px 20px !important;
  border-radius: 20px;
}
.short__title {
  font-size: 30px;
  font-family: "avenir", sans-serif;
  color: #fff;
  font-weight: 500;
  margin-bottom: 30px;
}
.short__inner {
  padding: 20px;
  background: #fff;
  border-radius: 20px;
}
.short__inner-title {
  color: #000333;
  font-family: "avenir", sans-serif;
  margin-bottom: 30px;
  font-size: 30px;
}
.short__title-time-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.short__time-box {
  text-align: center;
  background: #ef6c7a;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 8px;
  font-size: 24px;
  font-family: "avenir", sans-serif;
  color: #fff;
  -ms-flex-item-align: end;
      align-self: end;
}
.short__line {
  font-size: 18px;
  font-family: "avenir", sans-serif;
  font-weight: 500;
  margin-bottom: 26px;
  color: #000333;
  line-height: 1.5;
}
.short__line-last {
  margin-bottom: 32px;
}
.short__line-right p {
  text-align: right;
}
.short__p-left-md {
  padding-left: 30px;
}
.short__p-left-sm {
  padding-left: 20px;
}
.short__p-left-lg {
  padding-left: 50px;
}
.short__btn-box {
  text-align: right;
}

@media (max-width: 1023px) {
  .short__title {
    font-size: 26px;
  }
  .short__inner-title {
    font-size: 26px;
  }
  .short__line p {
    padding-left: 0;
    text-align: left !important;
  }
}
@media (max-width: 558px) {
  .short__inner-title {
    margin-bottom: 0.7em;
  }
  .short__title-time-box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap-reverse;
            flex-flow: row wrap-reverse;
  }
  .short__time-box {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    margin-bottom: 10px;
  }
}
.gallery {
  margin-right: 10px;
  margin-left: 10px;
  margin-bottom: 50px;
}
.gallery__container {
  position: relative;
  background: #80ab24;
  border-radius: 50px;
  padding: 10px 20px !important;
  padding-bottom: 50px !important;
}
.gallery__box {
  border-radius: 30px;
  overflow: hidden;
}
.gallery__title {
  padding: 30px 0;
  padding-left: 50px;
  font-size: 30px;
  color: #fff;
}
.gallery__img-box {
  width: 100%;
}
.gallery__img {
  width: 100%;
}

.swiper-pagination-gallery {
  bottom: 20px !important;
}

.swiper-pagination-gallery .swiper-pagination-bullet {
  background: #5a5a5a;
  opacity: 1;
}

.swiper-pagination-gallery .swiper-pagination-bullet-active {
  background: #fff;
}

@media (max-width: 1279px) {
  .gallery__container {
    padding-bottom: 30px !important;
  }
  .gallery__title {
    padding: 20px 0;
    padding-left: 30px;
  }
}
@media (max-width: 1023px) {
  .gallery__title {
    font-size: 26px;
  }
}
@media (max-width: 625px) {
  .gallery__title {
    padding: 12px 0;
    padding-left: 20px;
  }
}
@media (max-width: 506px) {
  .gallery__title {
    font-size: 23px;
  }
}
.gallery__decor {
  position: absolute;
  background: #fff;
  border-radius: 5555px;
}

.gallery__decor-1 {
  top: 30px;
  right: 100px;
  width: 37px;
  height: 37px;
}

.gallery__decor-1 {
  top: 58px;
  right: 35px;
  width: 27px;
  height: 27px;
}

.gallery__decor-2 {
  top: 30px;
  right: 150px;
  width: 23px;
  height: 23px;
}

.gallery__decor-3 {
  top: 58px;
  right: 250px;
  width: 15px;
  height: 15px;
}

.gallery__decor-4 {
  top: 28px;
  right: 350px;
  width: 18px;
  height: 18px;
}

@media (max-width: 1279px) {
  .gallery__decor-1 {
    top: 48px;
  }

  .gallery__decor-2 {
    top: 20px;
  }

  .gallery__decor-3 {
    top: 48px;
  }

  .gallery__decor-4 {
    top: 18px;
  }
}
@media (max-width: 1023px) {
  .gallery__decor-4 {
    display: none;
  }

  .gallery__decor-1 {
    top: 40px;
  }

  .gallery__decor-3 {
    top: 38px;
  }
}
@media (max-width: 767px) {
  .gallery__decor-3 {
    display: none;
  }
}
@media (max-width: 652px) {
  .gallery__decor-2 {
    top: 14px;
    right: 93px;
  }

  .gallery__decor-1 {
    top: 20px;
    right: 50px;
  }
}
@media (max-width: 566px) {
  .gallery__decor-1, .gallery__decor-2 {
    display: none;
  }
}
.map {
  margin-bottom: 70px;
}
.map__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}
.map__map iframe {
  width: 100%;
}
.map .mapX {
  background: green;
  height: 100%;
  width: 100%;
}
.map__map {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 70%;
          flex: 1 1 70%;
}
.map__info {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 30%;
          flex: 1 1 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  gap: 48px;
}
.map__phone-socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  gap: 30px;
}
.map__phone-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
}
.map__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.map__social-link {
  display: inline-block;
  width: 35px;
  height: 35px;
  border-radius: 5555px;
  overflow: hidden;
}
.map__socials img {
  width: 100%;
  height: 100%;
}
.map__phone a {
  color: #000333;
  font-size: 24px;
  text-decoration: none;
  font-weight: 500;
  font-family: Roboto, sans-serif;
}
.map__phone a:hover {
  text-decoration: underline;
}
.map__logobox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.map__name {
  font-size: 24px;
  color: #000333;
  font-family: Roboto, sans-serif;
}
.map__logo-phone-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  gap: 48px;
}
.map__road {
  font-size: 30px;
  margin-bottom: 20px !important;
  color: #39464a;
  font-family: "avenir", sans-serif;
}

@media (max-width: 1023px) {
  .map__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
  }
  .map__logo-phone-box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
}
@media (max-width: 767px) {
  .map__info {
    gap: 32px;
  }
}
@media (max-width: 500px) {
  .map__logo-dari {
    display: none;
  }
  .map__phone a {
    font-size: 20px;
  }
  .map__name {
    font-size: 21px;
  }
  .map__map iframe {
    height: 300px;
  }
}
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-family: "itim-cyrillic", sans-serif;
}

.wrapper {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  min-height: 100vh;
}

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

.p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

html.lock {
  overflow: hidden;
}

.container {
  width: 100%;
  padding-right: 10px;
  padding-left: 10px;
  margin: 0 auto;
}

.hero__photo-box iframe {
  border-radius: 50px;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

@media screen and (max-width: 1023px) {
  .hero__photo-box {
    flex-basis: 700px;
    height: 700px;
  }
}

@media screen and (max-width: 767px) {
  .hero__photo-box {
    flex-basis: 550px;
    height: 550px;
  }
}

@media screen and (max-width: 532px) {
  .hero__photo-box {
    flex-basis: 497px;
    height: 497px;
  }
}

@media screen and (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}
@media screen and (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media screen and (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}
@media screen and (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

/* Стили для секции расписаний */
.schedule {
  margin-bottom: 50px;
}

.schedule__title {
  font-size: 30px;
  font-family: "avenir", sans-serif;
  color: #39464a;
  margin-bottom: 30px;
  text-align: center;
}

.schedule__group {
  margin-bottom: 40px;
}

.schedule__group-title {
  font-size: 24px;
  font-family: "avenir", sans-serif;
  color: #00a4dc;
  margin-bottom: 20px;
  text-align: center;
}

.schedule__table-container {
  overflow-x: auto;
  margin-bottom: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.schedule__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
}

.schedule__table th,
.schedule__table td {
  padding: 12px 8px;
  text-align: center;
  border: 1px solid #e0e0e0;
  font-family: "avenir", sans-serif;
  font-size: 14px;
}

.schedule__table thead th {
  background-color: #00a4dc;
  color: white;
  font-weight: 500;
  font-size: 16px;
}

.schedule__table tbody tr:nth-child(even) {
  background-color: #f8f9fa;
}

.schedule__table tbody th {
  background-color: #80ab24;
  color: white;
  font-weight: 500;
}

.schedule__table tbody td {
  color: #333;
}

.schedule__program {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 15px;
  margin-top: 20px;
}

.schedule__program-title {
  font-size: 20px;
  font-family: "avenir", sans-serif;
  color: #39464a;
  margin-bottom: 15px;
  text-align: center;
}

.schedule__program-list {
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
  list-style: none;
  padding: 0;
}

.schedule__program-list li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
  font-family: "avenir", sans-serif;
  color: #333;
}

.schedule__program-list li::before {
  content: "•";
  color: #00a4dc;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Стили для стоимости программ */
.programs__pricing {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 2px solid #e0e0e0;
}

.programs__pricing-title {
  font-size: 28px;
  font-family: "avenir", sans-serif;
  color: #39464a;
  margin-bottom: 30px;
  text-align: center;
}

.programs__pricing-group {
  margin-bottom: 30px;
}

.programs__pricing-subtitle {
  font-size: 22px;
  font-family: "avenir", sans-serif;
  color: #00a4dc;
  margin-bottom: 15px;
  text-align: center;
}

.programs__pricing-table-container {
  overflow-x: auto;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.programs__pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 400px;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
}

.programs__pricing-table th,
.programs__pricing-table td {
  padding: 15px 12px;
  text-align: center;
  border: 1px solid #e0e0e0;
  font-family: "avenir", sans-serif;
}

.programs__pricing-table thead th {
  background-color: #80ab24;
  color: white;
  font-weight: 500;
  font-size: 18px;
}

.programs__pricing-table tbody tr:nth-child(even) {
  background-color: #f8f9fa;
}

.programs__pricing-table tbody th {
  background-color: #00a4dc;
  color: white;
  font-weight: 500;
  text-align: left;
  padding-left: 20px;
}

.programs__pricing-table tbody td {
  color: #333;
  font-weight: 500;
  font-size: 16px;
}

.programs__pricing-note {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 10px;
  padding: 15px;
  margin-top: 20px;
  text-align: center;
}

.programs__pricing-note p {
  font-family: "avenir", sans-serif;
  color: #856404;
  font-style: italic;
  margin: 0;
}

/* Адаптивность для расписаний */
@media (max-width: 1023px) {
  .schedule__title {
    font-size: 26px;
  }
  
  .schedule__group-title {
    font-size: 22px;
  }
  
  .schedule__table th,
  .schedule__table td {
    padding: 10px 6px;
    font-size: 13px;
  }
  
  .schedule__table thead th {
    font-size: 14px;
  }
  
  .programs__pricing-title {
    font-size: 24px;
  }
  
  .programs__pricing-subtitle {
    font-size: 20px;
  }
  
  .programs__pricing-table th,
  .programs__pricing-table td {
    padding: 12px 8px;
    font-size: 14px;
  }
  
  .programs__pricing-table thead th {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .schedule__program-list {
    columns: 1;
    -webkit-columns: 1;
    -moz-columns: 1;
  }
  
  .schedule__table th,
  .schedule__table td {
    padding: 8px 4px;
    font-size: 12px;
  }
  
  .schedule__table thead th {
    font-size: 13px;
  }
  
  .programs__pricing-table th,
  .programs__pricing-table td {
    padding: 10px 6px;
    font-size: 13px;
  }
  
  .programs__pricing-table thead th {
    font-size: 15px;
  }
}

@media (max-width: 567px) {
  .schedule__title {
    font-size: 24px;
  }
  
  .schedule__group-title {
    font-size: 20px;
  }
  
  .programs__pricing-title {
    font-size: 22px;
  }
  
  .programs__pricing-subtitle {
    font-size: 18px;
  }
}

