@font-face {
  font-family: "Roboto Regular";
  src: local("Roboto"), url("../assets/fonts/Roboto-Regular.ttf") format("ttf");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto Medium";
  src: local("Roboto"), url("../assets/fonts/Roboto-Medium.ttf") format("ttf");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}


@font-face {
  font-family: 'InformaPro';
  font-style: normal;
  font-weight: normal;
  src: local('InformaPro'), url('../assets/fonts/InformaPro-Normal.woff') format('woff');
}


@font-face {
  font-family: 'InformaPro Italic';
  font-style: normal;
  font-weight: normal;
  src: local('InformaPro Italic'), url('../assets/fonts/InformaPro-Italic.woff') format('woff');
}


@font-face {
  font-family: 'InformaPro Light';
  font-style: normal;
  font-weight: normal;
  src: local('InformaPro Light'), url('../assets/fonts/InformaPro-Light.woff') format('woff');
}


@font-face {
  font-family: 'InformaPro Medium';
  font-style: normal;
  font-weight: normal;
  src: local('InformaPro Medium'), url('../assets/fonts/InformaPro-Medium.woff') format('woff');
}


@font-face {
  font-family: 'InformaPro Medium Italic';
  font-style: normal;
  font-weight: normal;
  src: local('InformaPro Medium Italic'), url('../assets/fonts/InformaPro-MediumItalic.woff') format('woff');
}


@font-face {
  font-family: 'InformaPro Bold';
  font-style: normal;
  font-weight: normal;
  src: local('InformaPro Bold'), url('../assets/fonts/InformaPro-Bold.woff') format('woff');
}

@font-face {
  font-family: "Roboto Bold";
  src: local("Roboto"), url("../assets/fonts/Roboto-Bold.ttf") format("ttf");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Kiddy Kitty Bold";
  src: url("https://db.onlinewebfonts.com/t/86830081e1298ba5619101d1bc935d36.eot");
  src: url("https://db.onlinewebfonts.com/t/86830081e1298ba5619101d1bc935d36.eot?#iefix")format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/86830081e1298ba5619101d1bc935d36.woff2")format("woff2"),
    url("https://db.onlinewebfonts.com/t/86830081e1298ba5619101d1bc935d36.woff")format("woff"),
    url("https://db.onlinewebfonts.com/t/86830081e1298ba5619101d1bc935d36.ttf")format("truetype"),
    url("https://db.onlinewebfonts.com/t/86830081e1298ba5619101d1bc935d36.svg#Kiddy Kitty Bold")format("svg");
}

body {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  overflow-x: hidden;
}

header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 100%;
  background-color: #fff;
  z-index: 90;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-weight: bold;
}

main {
  overflow-x: hidden;
}

b {
  font-weight: bold;
}

.container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.header {
  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;
  padding-top: 25px;
  padding-bottom: 20px;
  z-index: 5;
}

.header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-preferred-size: 30%;
  flex-basis: 30%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.header__item {
  padding: 0 15px;
  list-style: none;
  position: relative;
}

.header__link {
  padding-bottom: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  color: #0077DB;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  z-index: 5;
}

.header__link:hover {
  border-bottom: 1px solid #28a3dd;
  color: #28a3dd;
}

.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-preferred-size: 24%;
  flex-basis: 24%;
}

.header__contacts {
  -ms-flex-preferred-size: 35%;
  flex-basis: 35%;
  text-align: right;

  .phone {
    color: #0077DB;
  }
}


.dropdown {
  position: absolute;
  top: 200%;
  left: 50%;
  height: 0;
  width: 100%;
  min-width: 120px;
  overflow: hidden;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 5px;
  background-color: #fff;
  -webkit-box-shadow: 0px 18px 55px -27px #000000;
  box-shadow: 0px 18px 55px -27px #000000;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 10;
}

.dropdown__item {
  width: 100%;
  padding: 15px 10px;
  font-weight: 400;
  margin: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  border-radius: 5px;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.dropdown__item:hover {
  background-color: #e0dbdb;
}

.dropdown_active {
  height: 270px;
}

.dropdown-btn {
  position: relative;
}

.phone {
  font-weight: 700;
  font-size: 22px;
  color: #000;
  text-decoration: none;
}

.header__contacts_mobile {
  display: none;
}

a[href^="tel:"]:hover {
  text-decoration: underline;
}

.burger {
  width: 30px;
  height: 20px;
  background: url("../assets/img/burger.svg") no-repeat center/contain;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.burger:hover {
  opacity: 0.5;
}

.title {
  font-size: 26px;
  font-weight: 700;
  color: #000;
}

.hide {
  top: -110px;
}

.burger-menu {
  position: fixed;
  top: 0;
  left: -830px;
  width: 22%;
  height: 100%;
  border-right: 1px solid #dcd8d8;
  background-color: #fff;
  -webkit-box-shadow: -43px 0px 104px 0px rgba(0, 0, 0, 0.81);
  box-shadow: -43px 0px 104px 0px rgba(0, 0, 0, 0.81);
  z-index: 99;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.burger-menu__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  height: 100%;
  padding-top: 120px;
}

.burger-menu__list {
  width: 50%;
}

.burger-menu__item {
  position: relative;
  padding-bottom: 25px;
}

.burger-menu__item .dropdown {
  top: 50%;
}

.burger-menu__link {
  font-size: 20px;
}

.burger-menu__link:hover {
  border-bottom: none;
}

.burger-menu__close {
  width: 30px;
  height: 30px;
  float: right;
  margin: 30px 30px 0 0;
  background: url("../assets/img/close.png") no-repeat center/contain;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.burger-menu_active {
  left: 0;
}

section {
  width: 100%;
}

footer {
  padding: 40px;
}

.footer__wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer__link {
  text-decoration: none;
  font-weight: 400;
  line-height: 19px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #0077DB;
  cursor: pointer;
}
.footer__link:hover {
  text-decoration: underline;
}

.footer-shedule_mobile {
  display: none;
}

.arrow {
  position: fixed;
  right: 80px;
  bottom: 80px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid #fff;
  background: url("../assets/img/arrow-up.png") no-repeat center/contain;
  opacity: 0.7;
  visibility: hidden;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  z-index: 90;
}

.arrow:hover {
  opacity: 1;
}

.scrollbar {
  display: none;
  position: fixed;
  left: 40px;
  top: calc(40% - 15vh);
  height: 70vh;
  width: 2px;
  border-radius: 2px;
  background: black;
}

.scrollball {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  left: -4px;
  top: 30%;
  position: absolute;
  background: black;
}

.scroll-text {
  position: absolute;
  left: -70px;
  top: -50px;
  width: 200px;
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}

.ymaps-2-1-79-copyrights-pane {
  width: 465px !important;
  left: 35% !important;
  bottom: 40px !important;
}

.ymaps-2-1-79-zoom {
  top: -50px;
}

.develop {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  color: #989797;
}

.develop a {
  color: #989797;
  text-decoration: none;
}


/*430px layout*/

@media screen and (max-width:5000px) {
  .cover-section {
    height: 186.046511628vw;
    background-color: #fff;
    position: relative;
    width: 100vw;
  }

  .cover-child-banner {
    /* child */

    position: absolute;
    width: 100vw;
    top: 10px;
    z-index: 2;
  }

  .cover-teal-bg {
    position: absolute;
    width: 100vw;
    height: 100vw;
    top: 80px;
    z-index: 1;
    background: #CCFBF3;
  }

  .cover-gradient {
    /* white rec2 */

    position: absolute;
    width: 100vw;
    height: 100vw;
    top: 58.3651162791vw;
    z-index: 3;
    background: linear-gradient(180.9deg, rgba(255, 255, 255, 0) 7.54%, rgba(255, 255, 255, 0.6) 23.56%, #fff 58.73%);

  }

  .cover-text {
    /* Детский сад «Мышонок Пи» и preschool в Батуми и Тбилиси */

    position: absolute;
    width: 400px;
    height: 282px;
    left: 50%;
    transform: translate(-50%, 0);
    top: 471px;
    z-index: 4;
    font-family: 'Kiddy Kitty Bold', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 45px;
    line-height: 48px;
    /* or 107% */
    text-align: center;

    color: #0077DB;


  }

  .cover-form-container {
    /* запись  */

    display: none;


  }



  /* Welcome section styles (moved from index.html) */
  .welcome-section {
    padding: 40px 0;
    background-color: #CCFBF3;
  }

  .welcome-title {
    font-family: 'Kiddy Kitty Bold', 'Kiddy Kitty', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 25px;
    width: 100vw;
    line-height: 30px;
    /* or 120% */
    text-align: center;
    color: #179797;
    margin: 0 0 60px 0;
  }

  .welcome-grid {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
  }
.question-cheese-bg{
  width: 300px;
  position: absolute;
}
  .welcome-image {
    position: absolute;
    top: -59px;
    left: 50%;
    width: 150px;
    transform: translate(-50%, 0);
  }

  .welcome-card {
    position: relative;
    background: #FFFFFF;
    border-radius: 50px 0px;
    padding: 44px 33px 44px 25px;
    width: 300px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
  }

  .welcome-text {
    font-family: 'InformaPro';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    text-align: justify;
    color: #000000;
    margin: 0;
  }

  /* Groups section */
  .groups-section {
    padding: 60px 0;
  }

  .groups-section__title {
    /* Rectangle 31 */

    box-sizing: border-box;

    width: 256px;
    height: 120px;

    border: 2px solid #0077DB;
    border-radius: 30px;

    font-family: 'Kiddy Kitty Bold';
    font-style: normal;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    line-height: 35px;
    /* or 117% */
    text-align: center;

    color: #0077DB;
    margin-bottom: 62px;


  }

  .groups-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 120px;
    justify-items: center;
  }

  .group-card {
    perspective: 1000px;
    width: 90vw;
    height: 930px;
  }
  .contact-map{
    border-radius: 20px 0px;
    overflow: hidden;
  }
  .group-card__inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    font-family: 'InformaPro', sans-serif;
    /* Fallback font */
  }

  .group-card.is-flipped .group-card__inner {
    transform: rotateY(180deg);
  }

  .group-card__front,
  .group-card__back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px 20px;
    box-sizing: border-box;
    border-radius: 60px 0px;
    text-align: center;
  }

  .group-card__front.nursery-group-card {
    background-color: #DBF3D8;
  }

  .group-card__front.middle-group-card {
    background-color: #F4D7FA;
  }

  .group-card__back {
    background-color: #fff;
    border: 2px solid #17975B;
    transform: rotateY(180deg);
    justify-content: space-around;
  }

  .group-card__title {
    font-family: 'InformaPro Bold', sans-serif;
    font-weight: 800;
    font-size: 30px;
    line-height: 37px;
    color: #4DC45B;
    margin-bottom: 20px;
    text-align: left;
    letter-spacing: 1px;
  }

  .group-card__text {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    color: #000000;
    margin-bottom: 20px;
  }

  .group-card__list {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;
    color: #17975B;
    text-align: left;
    padding-left: 20px;
    margin-bottom: 20px;
    list-style: disc;
  }

  .group-card__list-title {
    font-weight: bold;
    color: #17975B;
    font-size: 16px;
    margin-bottom: 10px;
  }

  .group-card__button,
  .group-card__button-back {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: #17975B;
    position: absolute;
    bottom: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
  }

  .group-card__button-back {
    align-self: center;
  }

  .group-card__header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
  }

  .group-card__mouse-img {
    width: 110px;
    margin-top: -20px;
  }

  .group-card__main-img {
    width: 100%;
    margin-bottom: 15px;
  }

  .group-card__apply-button {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #4DC45B;
    color: white;
    border: none;
    border-radius: 15px;
    padding: 15px 30px;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
  }

  .middle-group-title {
    color: #D498E0;
  }

  .middle-group-card {
    border-color: #AD53BF;
  }

  .middle-group-card .group-card__button {
    color: #AD53BF
  }

  .middle-group-card .group-card__apply-button {
    background-color: #AD53BF;
    color: white;
  }

  .middle-group-card .group-card__list-title,
  .middle-group-card .group-card__list,
  .middle-group-card .group-card__button-back {
    color: #CE8ADB;
  }

  .senior-group-card-front {
    background-color: #FFDAD7;
  }

  .senior-group-title {
    color: #FF867B;
  }

  .senior-group-button.group-card__button {
    color: #FF867B
  }

  .senior-group-button.group-card__apply-button {
    background-color: #FF867B;
  }

  .senior-group-card {
    border-color: #DD3E30;
  }

  .senior-group-card .group-card__list-title,
  .senior-group-card .group-card__text,
  .senior-group-card .group-card__list,
  .senior-group-card .group-card__button-back {
    color: #DD3E30;
  }

  /* Variants section */
  .variants-section {
    padding: 60px 0;
    font-family: 'InformaPro', sans-serif;
  }

  .variants-title-container-container {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    width: 100%;
  }

  .variants-title-container {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    width: 256px;
  }

  .variants-title {
    font-family: 'Kiddy Kitty Bold', 'Kiddy Kitty', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 30px;
    line-height: 35px;
    text-align: center;
    color: #0077DB;
    border: 2px solid #0077DB;
    border-radius: 30px;
    padding: 25px 20px;
    display: inline-block;
  }

  .variant-card {
    background-color: #D9F9FF;
    border-radius: 30px 0px;
    padding: 19px;
    width: 83vw;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin-bottom: 80px;
  }

  .variant-card__title {
    font-family: 'InformaPro Bold';
    font-style: normal;
    font-weight: 800;
    font-size: 32px;
    line-height: 39px;
    text-align: center;
    color: #FF9500;
    margin-bottom: 30px;
  }

  .variant-card__list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    width: 100%;
  }

  .variant-card__item {
    display: flex;
    align-items: center;
    margin-bottom: 0px;
  }

  .variant-card__item:last-child {
    margin-bottom: 0;
  }

  .variant-card__icon {
    width: 15.2791vw;
    height: 15.2791vw;
  }

  .variant-card__text {
    font-family: 'InformaPro', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #000000;
  }

  .variant-card__button {
    background-color: #FF9500;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 15px 40px;
    font-size: 22px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
  }

  /* Why Us section */
  .why-us-section {
    padding: 60px 0;
    background-color: #CCFBF3;
  }

  .why-us-title {
    font-family: 'Kiddy Kitty Bold', 'Kiddy Kitty', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 35px;
    line-height: 35px;
    text-align: center;
    color: #179797;
    margin-bottom: 40px;
  }

  .why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(308px, 1fr));
    gap: 40px;
    justify-items: center;
  }

  .why-us-card {
    position: relative;
    width: 308px;
    height: 111px;
    background: #FFF5BE;
    border-radius: 30px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    padding-left: 43px;
    box-sizing: border-box;
  }

  .why-us-card__img {
    position: absolute;
    left: 0;
    transform: translate(-50%, -50%);
    top: 50%;
    width: 120px;
  }

  .why-us-card__text {
    font-family: 'InformaPro', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 21px;
    color: #000000;
  }

  /* Teachers section */
  .teachers-section {
    padding: 60px 0;
  }

  .teachers-title-container {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
  }

  .teachers-title {
    font-family: 'Kiddy Kitty Bold', 'Kiddy Kitty', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 33px;
    line-height: 35px;
    text-align: center;
    color: #0077DB;
    border: 2px solid #0077DB;
    border-radius: 30px;
    padding: 10px 20px;
    display: inline-block;
    width: 350px;
    height: 120px;
    display: flex;
    align-items: center;
  }

  .glide-teachers {
    position: relative;
  }

  .teacher-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .teacher-img-container {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    background-color: #FFF5BE;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .teacher-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .teacher-name {
    font-family: 'InformaPro', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 30px;
    line-height: 25px;
    text-align: center;
    color: #000000;
  }

  .glide__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: none;
    cursor: pointer;
  }

  .glide__arrow--left {
    left: 39px;
  }

  .glide__arrow--right {
    right: 39px;
  }

  /* Photos section */
  .photos-section {
    padding: 60px 0;
    background-color: #DBF3D8;
  }
.contact-map {
    width: 80vw;
    margin: 0;
  }

  .photos-title {
    font-family: 'Kiddy Kitty Bold', 'Kiddy Kitty', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 35px;
    line-height: 35px;
    text-align: center;
    color: #4DC45B;
    margin-bottom: 40px;
  }

  .glide-photos .glide__slide {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .photo-slide {
    width: 70.6667vw;
    border-radius: 30px 0px;
    height: auto;
  }

  .glide-photos .glide__arrow {
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
  }

  .glide-photos .glide__arrow img {
    width: 17px;
  }

  .glide-photos .glide__arrow--left {
    position: absolute;
    left: 26px;
    top: 50%;
    transform: translateY(-50%);
  }

  .glide-photos .glide__arrow--right {
    position: absolute;
    right: 26px;
    top: 50%;
    transform: translateY(-50%);
  }

  .photos-subtitle {
    font-family: 'InformaPro';
    font-weight: 600;
    font-size: 18px;
    line-height: 20px;
    text-align: center;
    color: #4DC45B;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .photos-links {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 20px;
  }

  .photos-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 50px;
    background: #4DC45B;
    border-radius: 30px 0px;
    text-decoration: none;
    transition: opacity 0.3s ease;
  }

  .photos-link:hover {
    opacity: 0.8;
  }

  .photos-link img {
    margin-right: 10px;
    width: 24px;
    /* Placeholder size */
  }

  .photos-link span {
    font-family: 'Kiddy Kitty Bold', 'Kiddy Kitty', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 24px;
    color: #FFFFFF;
  }

  .know-price-section {
    height: 732px;
    position: relative;
  }

  .know-price-container {
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;

    width: 360px;
    position: relative;
    height: 404px;

    margin-top: 30px;
    background: #D9F9FF;
    border-radius: 50px 0px;


  }

  .know-price-title {

    font-family: 'Kiddy Kitty Bold';
    font-style: normal;
    font-weight: 700;
    font-size: 35px;
    line-height: 35px;
    /* or 100% */
    text-align: center;

    color: #0077DB;


  }

  .know-price-description {

    font-family: 'InformaPro';
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 25px;
    width: 300px;
    /* or 104% */
    text-align: center;

    color: #000000;


  }

  .know-price-button {

    position: absolute;
    width: 244px;
    height: 54px;
    left: 50%;
    transform: translate(-50%, 50%);
    bottom: 0px;
    background: #0077DB;


    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* or 364% */

    color: #FFFFFF;
    text-align: center;

    border: none;
    border-radius: 15px;

  }

  /* FAQ Section */
  .faq-section {
    padding: 60px 0;
    background-color: #FFF5BE;
  }

  .faq-title {
    font-family: 'Kiddy Kitty Bold', 'Kiddy Kitty', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 35px;
    line-height: 35px;
    text-align: center;
    color: #179797;
    margin-bottom: 40px;
  }

  .faq-grid {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 40px;
    align-items: start;
  }

  .faq-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .faq-list-item {
    font-family: 'InformaPro', sans-serif;
    font-size: 20px;
    color: #000000;
    padding-left: 30px;
    position: relative;
    cursor: pointer;
    margin-bottom: 15px;
  }

  .faq-list-item::before {
    content: '►';
    position: absolute;
    left: 0;
    color: #179797;
  }

  .faq-answer-area {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: start;
    justify-content: center;
  }

  .faq-answer-content {
    display: none;
    padding: 30px;
    width: 350px;
    min-height: 320px;
    box-sizing: border-box;
    border: 2px solid #179797;
    border-radius: 50px 0px;
    background-color: #FFF5BE;
    position: absolute;
    z-index: 2;
  }

  .faq-answer-text {
    font-family: 'InformaPro', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;
    color: #179797;
  }

  .faq-question-mark {
    position: absolute;
    width: 300px;
    top: 52.5%;
    left: 51.5%;
    transform: translate(-50%, -50%);
    z-index: 1;
  }

  .faq-form-container {
    display: none;
    background: #CCFBF3;
    border-radius: 30px;
    padding: 20px;
    position: absolute;
    width: 100%;
    z-index: 2;
  }

  .faq-form-input,
  .faq-form-textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #179797;
    background: transparent;
    margin-bottom: 20px;
    padding: 10px 0;
    font-family: 'InformaPro', sans-serif;
    font-size: 18px;
    color: #179797;
  }

  .faq-form-input::placeholder,
  .faq-form-textarea::placeholder {
    color: #179797;
  }

  .faq-form-textarea {
    height: 100px;
    resize: none;
  }

  .faq-form-button {
    background: #FF9500;
    border-radius: 15px;
    border: none;
    color: white;
    padding: 15px 30px;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    cursor: pointer;
  }

  .faq-footer {
    text-align: center;
    margin-top: 40px;
  }

  .faq-footer-title {
    font-family: 'Kiddy Kitty Bold', 'Kiddy Kitty', sans-serif;
    font-size: 30px;
    color: #FF9500;
    margin-bottom: 10px;
  }

  .faq-footer-text {
    font-family: 'InformaPro', sans-serif;
    font-size: 24px;
    color: #000;
    margin-bottom: 20px;
  }

  .faq-footer-button {
    background: #179797;
    border-radius: 20px;
    border: none;
    color: white;
    padding: 15px 30px;
    font-family: 'InformaPro', sans-serif;
    font-size: 20px;
    cursor: pointer;
  }


  .main__content .main__title {
    font-size: 68px;
  }

  .container {
    max-width: 540px;
  }

  .header {
    padding: 10px 22px;
  }

  .header__contacts,
  .header__menu {
    display: none;
  }

  .header__contacts_mobile {
    position: relative;
    display: block;
    width: 21px;
    height: 21px;
    overflow: hidden;
    background: url("../assets/img/phone.svg") no-repeat center / contain;
    font-size: 0;
  }

  .burger-menu_active {
    width: 40%;
  }


  /* Contact Section */
  .contact-section {
    position: relative;
    margin-top: 78px;
  }

  .contact-title {
    font-family: 'Kiddy Kitty Bold', 'Kiddy Kitty', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 35px;
    line-height: 35px;
    text-align: center;
    color: #0077DB;
    margin-bottom: 40px;
  }

  .contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    
    grid-template-columns: 1fr;
    gap: 11.11vw;
    
  }

  .contact-block {
    display: flex;
    align-items: flex-start;
  }

  .contact-icon {
    width: 40px;
    margin: 0px 20px;
    
  }

  .contact-text b {
    font-family: 'Kiddy Kitty Bold', sans-serif;
  }

  .contact-text {
    font-family: 'InformaPro', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 24px;
    color: #000000;
  }

  .contact-map {
    width: 78.1395vw;
    height: 100vw;
    border-radius: 50px 0px;
    margin-left: 46px;
  }

  /* contact-us section */

  .contact-us {
    height: 158.4795vw;
    background-color: #fff;
    padding: 10.193vw 2.193vw 4.386vw 6.193vw;
    position: relative;
  }

  .contact-us-actual-form {
    background-color: #D498E0;
    border-radius: 30px;
    width: 78.6047vw;
    height: 127.1028vw;
    padding: 21px;
    position: relative;
  }

  .contact-us-big-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column-reverse !important;
  }

  .contact-us-form-header {
    text-align: center;
    font-weight: 700;
    font-size: 5.0784vw;
    color: #fff;
    margin-bottom: 3.5vw;
  }

  .contact-us-form-tag {
    font-size: 4.1696vw;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0.6vw;
    padding-left: 1vw;
  }

  .contact-us-form-field {
    width: 100%;
    height: 8.7281vw;
    background-color: #fff;
    border-radius: 4.462vw;
    font-size: 4.1696vw;
    font-weight: 400;
    color: #1E2B69;
    padding-left: 1.5vw;
    margin-bottom: 4.3vw;
    border: none;
  }

  .contact-us-form-message {
    width: 100%;
    height: 30.2339vw;
    background-color: #fff;
    border-radius: 4.462vw;
    font-size: 1.1696vw;
    font-weight: 400;
    color: #1E2B69;
    padding-left: 1.5vw;
    margin-bottom: 1.3vw;
    border: none;
    resize: none;
    margin-top: 6vw;
  }

  .contact-us-form-submit {
    width: 52.1765vw;
    height: 12.4901vw;
    background-color: #AD53BF;
    border-radius: 12vw;
    font-weight: 600;
    font-size: 3.462vw;
    color: #fff;
    text-align: center;
    cursor: pointer;
    z-index: 2;
    border: none;
    position: absolute;
    bottom: -5.9006vw;
    left: 50%;
    transform: translateX(-50%);
  }

  .contact-us-form-tag-message {
    font-size: 3.1696vw;
    font-weight: 400;
    color: #fff;
    margin-top: 1.6vw;
    margin-bottom: 1.6vw;
    padding-left: 1vw;
    margin-right: 3.7vw;
  }

  label {
    font-size: 3.1696vw;
    font-weight: 400;
    padding: 1vw 3vw 2.3vw 1vw;
  }

  .contact-us-form-select {
    width: 236px;
    height: 37px;
    background-color: #fff;
    border-radius: 4.462vw;
    font-size: 3.1696vw;
    font-weight: 400;
    color: #1E2B69;
    padding: 0 3vw;
    border: none;
  }

  .contact-us-container {
    width: 41.7398vw;
    margin-left: 7.6023vw;
    padding-top: 3vw;
    margin-bottom: 3vw;
  }

  .contact-us-phone {
    border-radius: 1.462vw;
    font-size: 3.5088vw;
    font-weight: 700;
    color: #1E2B69;
    margin-right: 1vw;
    border: none;
  }

  .contact-us-phone-underline {
    display: none;
    width: 100%;
    height: 3px;
    background-color: #1E2B69;
    margin: 3vw 0;
  }

  .contact-us-text {
    font-size: 1.6696vw;
    font-weight: 400;
    display: none;
    color: #1E2B69;
  }

  /* Final Section */
  .final-section {
    padding: 40px 0;
    background-color: #CCFBF3;
  }

  .final-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
    color: #179797;
    font-family: 'InformaPro', sans-serif;
    font-size: 20px;
  }

  .working-hours,
  .social-media {
    margin: 20px;
  }

  .social-media a {
    display: inline-block;
    margin-top: 10px;
  }

  .fsbold {
    font-weight: 700;
  }

  /* 
  .mobilehide {
    display: none;
  }
 */
}

@media screen and (min-width:800px) {


  .cover-child-banner {
    width: 55.56vw;
    right: 0;
    bottom: 0.00vw;

  }

  .cover-gray-grad-bg {
    position: absolute;
    width: 74.38vw;
    height: 54.37vw;
    left: 0;
    top: 8.68vw;
    z-index: 3;
    background: linear-gradient(90deg, #FFFFFF 0%, #ECF0F2 73.08%, rgba(255, 255, 255, 0) 85.58%);

  }

  .cover-gray-bg {
    position: absolute;
    width: 100vw;
    height: 54.37vw;
    left: 0;
    top: 8.68vw;
    z-index: 2;
    background: #e9e9e9;
  }

  .cover-form-container {
    display: block;
    position: absolute;
    top: 28.19vw;
    left: 9.72vw;
    z-index: 8;
  }


  .cover-form {
    width: 34.03vw;
    height: 22.01vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.00vw 1.39vw;
    background: rgba(23, 151, 151, 0.5);
    border-radius: 2.08vw;

  }

  .cover-form__title {

    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 1.39vw;
    line-height: 5.56vw;
    text-align: center;
    /* identical to box height, or 400% */

    color: #FFFFFF;
  }

  .cover-form__input {
    background: none;
    border: none;
    border-bottom: 0.07vw solid #FFFFFF;
    width: 29.88vw;
    margin: 1.0vw 1.00vw 1.7vw;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 1.11vw;
    color: #FFFFFF;

  }

  #agree {
    width: 1.39vw;
    height: 1.39vw;
    margin-right: 0.69vw;
    border: none;
  }

  .cover-form__input::placeholder {

    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 1.11vw;
    color: #FFFFFF;


  }

  .cover-form__policy-label {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 1.04vw;
    line-height: 1.39vw;
    padding: 0 1vw;
    /* or 125% */
    text-decoration: none;
    color: #FFFFFF;


  }

  .group-card__list {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 0.91vw;
    line-height: 1.4;
    text-align: left;
    padding-left: 1.39vw;
    margin-bottom: 1.39vw;
    list-style: disc;
  }

  .cover-text {
    text-align: left;
    width: 34.72vw;
    font-size: 3.39vw;
    transform: none;
    left: 10vw;
    top: 13vw;
    line-height: 100%;

  }

  .cover-form__policy-label a {
    text-decoration: underline;
    color: #FFFFFF;
  }

  .cover-form__btn {
    /* Rectangle 13 */

    position: absolute;
    width: 16.46vw;
    height: 3.75vw;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 100%;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 1.53vw;

    color: #FFFFFF;
    border: none;

    background: #FF9500;
    border-radius: 1.04vw;

  }

  .cover-section {
    height: 53vw;
    overflow: hidden;
  }

  .welcome-section {
    padding: 5.56vw 0;
  }

  .welcome-title {
    font-size: 2.78vw;
    width: 69.44vw;
    line-height: 3.47vw;
    margin-bottom: 10.42vw;
  }

  .welcome-card {
    padding: 4.17vw;
    width: 69.44vw;
  }

  .welcome-image {
    width: 18.12vw;
    top: -8.33vw;
  }

  
  .photo-slide {
    width: 21.6667vw;
    border-radius: 30px 0px;
    height: auto;
  }

  .welcome-text {
    font-size: 2.08vw;
    line-height: 130%;
    font-weight: 400;
  }

  .groups-grid {
    padding: 0 3.47vw;
  }

  .groups-section__title {
    width: 55.56vw;
    height: 6.94vw;
    font-weight: 700;
    font-size: 3.47vw;
    line-height: 2.43vw;

  }

  .group-card__mouse-img {
    height: 6.5972vw;
    width: auto;
    margin-top: -20px;
  }

  .variant-card-container {
    display: flex;
    justify-content: space-evenly;
    padding: 0 3.47vw;
  }

  .variant-card {
    margin: 0;
    width: 22.7778vw;
  }

  .variants-title {
    font-size: 3.08vw;
    line-height: 2.43vw;
    text-align: center;
    border-radius: 2.08vw;
    padding: 1.74vw 1.39vw;
    display: inline-block;
    width: 100%;
  }

  .variants-title-container {
    width: 56.0417vw;
  }

  .variants-section {
    padding-bottom: 9.03vw;
  }

  .why-us-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 1fr);
    grid-auto-flow: column;
  }

  .why-us-card {
    width: 33.33vw;
  }

  .why-us-card__text {
    font-size: 1.46vw;
  }

  .why-us-mouse {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 55%;

    width: 18.06vw;
  }

  .photos-links {
    flex-direction: row;
    justify-content: center;
  }


  .cover-form__wrapper {
    padding: 0 10px;
  }

  .know-price-container {
    width: 65.69vw;
    margin-top: 6.94vw;
  }

  .know-price-description {
    font-size: 2.08vw;
    line-height: 2.78vw;
    width: 100%;
  }

  .know-price-title {
    font-size: 3.47vw;
    line-height: 4.17vw;
  }


  .group-card {

    perspective: 1000px;
    width: 27.7778vw;
    height: 65.9722vw;
  }

  .group-card__text {
    font-family: 'InformaPro', sans-serif;
    font-weight: 400;
    font-size: 1.25vw;
    line-height: 130%;
    width: 22.64vw;
    text-align: center;
    color: #000000;
    margin-bottom: 1.39vw;
  }
.group-card__main-img{
  margin-bottom: 30px;
}
  .group-card__front, .group-card__back{
    padding: 3vw 0vw;
}
  .groups-grid {
    display: flex;

  }

  .header__contacts {
    display: block;
  }

  .header__menu {
    display: flex;
  }

  .group-card__title {
    font-family: 'InformaPro', sans-serif;
    font-weight: 800;
    font-size: 2.08vw;
    line-height: 2.57vw;
    margin-bottom: 1.39vw;
    text-align: left;
    letter-spacing: 0.07vw;
    padding-left: 1vw;
  }

  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
  }

  .faq-questions {
    margin-top: 4.17vw;
    margin-left: 6.94vw;
    display: flex;
    flex-direction: column;
  }

  .faq-list-item {
    font-size: 2.43vw;
    line-height: 3.12vw;
    letter-spacing: 0%;

  }

  .faq-list-item {
    padding-left: 3.47vw;
  }

  .faq-answer-area {
    min-height: 350px;
    display: flex;
    position: relative;
    justify-content: center;
    align-items: start;
    padding: 7vw 0px;

  }

  .faq-question-mark {
    position: absolute;
    transform: none;
    top: 24%;
    left: 29.5%;
  }

  .faq-footer-mouse {
    width: 13.89vw;
    margin-bottom: 3.39vw;
  }

  .contact-map {
    width: 40vw;
    height: 25vw;
    margin: 0;
  }

  .contact-info {
    padding: 0 5vw;
    grid-template-rows: auto 1fr;
    gap: 40px;
    margin-bottom: 40px;
    grid-auto-flow: column;
  }
  .contact-title {
    font-size: 3.47vw;
    line-height: 4.17vw;
    margin-bottom: 5.56vw;
  }

  .variant-card__icon {
    width: 4.2791vw;
    height: 4.2791vw;
  }

  .contact-us {
    display: none;
  }

  .final-section {
    display: flex;
    justify-content: space-evenly;

  }

  .final-content {
    flex-direction: column;
  }



  .contact-pc-actual-form {
    background-color: #D498E0;
    border-radius: 2.08vw;
    width: 23.47vw;
    padding: 1.46vw;
    padding-bottom: 3.47vw;
    position: relative;
  }


  .teachers-title {
    width: 752px;
    height: 150px;
    border-radius: 30px;
    font-family: "Kiddy Kitty Bold";
    font-weight: 700;
    font-style: Bold;
    font-size: 50px;
    line-height: 60px;
    text-align: center;

    color: #0077DB;
    border: 2px solid #0077DB;
    border-radius: 30px;
    padding: 0;
    display: flex;
    align-items: center;
  }

  .contact-pc-big-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column-reverse !important;
  }

  .contact-pc-form-header {
    text-align: center;
    font-weight: 700;
    font-size: 1.67vw;
    color: #fff;
    margin-bottom: 0.69vw;
  }

  .contact-pc-form-tag {
    font-size: 1.11vw;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0.6vw;
    padding-left: 1vw;
  }

  .contact-pc-form-field {
    width: 100%;
    height: 3.29vw;
    background-color: #fff;
    border-radius: 1.462vw;
    font-size: 4.1696vw;
    font-weight: 400;
    color: #1E2B69;
    margin-bottom: 1.3vw;
    border: none;
  }

  .contact-pc-form-message {
    width: 100%;
    height: 10.2339vw;
    background-color: #fff;
    border-radius: 1.462vw;
    font-size: 1.1696vw;
    font-weight: 400;
    color: #1E2B69;
    margin-bottom: 1.3vw;
    border: none;
    resize: none;
    margin-top: 1vw;
  }

  .contact-pc-form-submit {
    width: 13.89vw;
    height: 3.47vw;
    background-color: #AD53BF;
    border-radius: 12vw;
    font-weight: 600;
    font-size: 1.39vw;
    color: #fff;
    text-align: center;
    cursor: pointer;
    z-index: 2;
    border: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .contact-pc-form-tag-message {
    font-size: 1.39vw;
    font-weight: 400;
    color: #fff;
    margin-top: 0.6vw;
    margin-bottom: 0.6vw;
    padding-left: 1vw;
    margin-right: 3.7vw;
  }

  label {
    font-size: 1.11vw;
    font-weight: 400;
  }

  .contact-pc-form-select {
    width: 16.39vw;
    height: 2.57vw;
    background-color: #fff;
    border-radius: 4.462vw;
    font-size: 1.11vw;
    font-weight: 400;
    color: #1E2B69;
    border: none;
  }

  .final-content {
    font-size: 2.78vw;
  }

  .pchide {
    display: none;
  }

  .container {
    margin: 0;
    max-width: none !important;
  }
}

@media screen and (max-width: 1200px) {
  .container {
    max-width: 960px;
  }

  .footer__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }


  .footer-shedule_mobile {
    display: block;
  }

  .footer-shedule_mobile>.contacts-shedule {
    display: block;
    max-width: 100%;
    padding-bottom: 0;
  }

  .footer-shedule_mobile>.contacts-shedule span {
    font-weight: 400;
    color: #414141;
  }
}

@media screen and (max-width:800px) {
  .mobilehide {
    display: none;
  }

}
  .footer__column {
    text-align: center;
    display: flex;
    align-items: center;
    
  }