:root {
  --main-content-offset: 54px;
  --container-width: clamp(280px,94vw,1180px);
  --max-width-container: 1180px;
  --count-item: 2;
  --gap-size: 20px;
}

html {
  box-sizing: border-box;
  font-family: "Fira Sans", sans-serif;
  font-size: 12px;
}

/* *,
*::before,
*::after {
  box-sizing: inherit;
} */

body {
  margin: 0;
  padding: 0;
  background-color: #f8f8f8;
  display: flex;
  flex-flow: column nowrap;
  min-height: 100vh;
  margin: 0 auto;
}

img {
  max-width: 100%;
}

p {
  margin: 0;
}

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

.header-navigation {
  position: fixed;
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  margin: 0;
  background-color: white;
  padding: clamp(7px, 1vw, 11px) clamp(9px, 1vw, 22px) 7px 9px;
  height: clamp(54px, 15vw, 84px);
  gap: 30px;
  z-index: 100;
}

.logo {
  height: 100%;
}

.section-bg5 {
  background-image: url("../img/new/bg5.jpg");
  aspect-ratio: 3/2;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.card__tile {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;

  font-family: Sigmar, sans-serif;
  color: white;
}

.card__tile__item h3 {
    margin: 0;
    font-size: 26px;
    flex-shrink: 0;
    flex-grow: 0;
    /* white-space: pre-wrap; */
    hyphens: auto;
    line-height: 32px;
    font-weight: 300;
}


.menu {
  position: fixed;
  left: 0px;
  z-index: -1;
  width: 100%;
  height: 100vh;
  opacity: 0;
  margin: 0;
  padding: 0;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  gap: 15px;
  transform: translateY(-100vh);
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  -webkit-transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  -moz-transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  -ms-transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  -o-transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  -webkit-transform: translateY(-100vh);
  -moz-transform: translateY(-100vh);
  -ms-transform: translateY(-100vh);
  -o-transform: translateY(-100vh);
  background-color: white;
  list-style-type: none;
  line-height: 18px;
}
.menu__item {
  margin: 0;
  padding: 0;
  text-align: center;
}
.menu__item .item__link {
  font-size: 12px;
}



.program__image {
  /* border-radius: 30px; */
  order: 0;
  /* aspect-ratio: 1/1; */
}

.program__card {
  display: flex;
  gap: 60px;
  flex-flow: column;
}

.program__info {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  gap: 20px;
}

.program__desc {
    text-align: center;
    max-width: 200px;
}

.program__header {
    font-family: "Sigmar";
    font-size: clamp(16px,4vw,32px);
    text-transform: uppercase;
    margin: 0;
    text-align: center;
    max-width: 200px;
    /* hyphens: auto; */
    font-weight: 300;
}


.header__program {
  max-width: 280px;
}



.section-format-parties .container {
  margin:0;
}

@media (width >= 1220px) {
  .menu__item .item__link {
    font-size: 16px;
  }
}

.menu-show {
  display: flex;
  height: calc(100vh - 40px);
  transform: translateY(25px);
  -webkit-transform: translateY(25px);
  -moz-transform: translateY(25px);
  -ms-transform: translateY(25px);
  -o-transform: translateY(25px);
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  -webkit-transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  -moz-transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  -ms-transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  -o-transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  opacity: 1;
}

.social__list {
  display: flex;
  flex-flow: row wrap;
  list-style-type: none;
  gap: 10px;
  padding: 0;
  margin: 0;
}
.social__list .list__item {
  cursor: pointer;
}

.social_link-in-header {
  display: none;
}

.item__link {
  text-decoration: none;
  text-transform: uppercase;
  color: #679FEC;
  font-weight: 700;
  font-size: 16px;
}
.item__link-active {
  color: #FF6164;
}
.item__link-badge {
  color: white;
  background-color: #679FEC;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  padding: 4px 6px;
}

.burger {
  display: flex;
  flex-flow: column nowrap;
  width: 20px;
  gap: 5px;
}
.burger .line {
  background-color: #679FEC;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  -webkit-transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  -moz-transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  -ms-transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  -o-transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

#burger {
  display: none;
}

#burger:checked ~ .line1 {
  background-color: #FF6164;
  transform: translateY(7px) rotateZ(-45deg) rotate(360deg);
  -webkit-transform: translateY(7px) rotateZ(-45deg) rotate(360deg);
  -moz-transform: translateY(7px) rotateZ(-45deg) rotate(360deg);
  -ms-transform: translateY(7px) rotateZ(-45deg) rotate(360deg);
  -o-transform: translateY(7px) rotateZ(-45deg) rotate(360deg);
}

#burger:checked ~ .line3 {
  background-color: #FF6164;
  transform: translateY(-7px) rotateZ(45deg) rotate(-360deg);
  -webkit-transform: translateY(-7px) rotateZ(45deg) rotate(-360deg);
  -moz-transform: translateY(-7px) rotateZ(45deg) rotate(-360deg);
  -ms-transform: translateY(-7px) rotateZ(45deg) rotate(-360deg);
  -o-transform: translateY(-7px) rotateZ(45deg) rotate(-360deg);
}

#burger:checked ~ .line2 {
  opacity: 0;
}

.no-scroll {
  overflow: hidden;
}

.main-content {
  padding-top: var(--main-content-offset);
  font-size: 1.33333rem;
  font-weight: 300;
}

.container {
  margin: 0px clamp(40px, 10vw, 130px);
  max-width: var(--max-width-container);
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  padding: 0;
  /* padding: 0px clamp(40px, 10vw, 130px); */

}
@media (width > 1300px) {
.container {
    margin: 0 auto;
    padding-left: inherit;
    padding-right: inherit;
}
}

.section-content {
  padding: clamp(50px, 9vw, 130px) 0px clamp(40px, 9vw, 130px) 0px;
}

.main-parties .section-content {
  /* padding: clamp(50px, 9vw, 130px) 0px clamp(40px, 9vw, 130px) 0px; */
  padding:0;
  padding-bottom: clamp(40px, 9vw, 80px);

}


.section-header {
    font-family: "Sigmar";
    text-align: center;
    text-transform: uppercase;
    font-size: clamp(26px, 8vw, 60px);
    color: #FF6164;
    font-weight: 100;
    margin: 0;
    padding: 0;
    margin-bottom: clamp(27px, 17vw, 80px);
}

.first-header {
  padding-top: 50px;
    margin-bottom: clamp(27px, 6vw, 30px);
}


@media (width > 1024px) {
  .section-header {
    max-width: 830px;
  }
}

.section-desc {
  text-align: center;
  margin: 0;
  padding: 0;
}

.section-desc-parties {
  margin-bottom: 30px;
}

@media (width >= 1024px) {
  .section-wellcom {
    background-image: url("../img/new/bg4.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    aspect-ratio: 1.4/1;
  }


  .section-bg5 {
    background-image: url("../img/new/bg5.jpg");
    aspect-ratio: 5/2;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 80px;
}


  .section-wellcom .section-header {
    color: white;
  }
  .section-wellcom .section-desc {
    color: white;
    max-width: 700px;
  }

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

.section-wellcom2 {
  background-image: url("../img/new/bg2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  aspect-ratio: 1/0.6;
}


@media (width >= 1024px) {
  .section-wellcom2 {
    display: none;
  }
}

.bg-image {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 320px;
  -o-object-position: bottom;
     object-position: bottom;
  display: block;
}

.section-achievements {
  background-color: #F8DB53;
}
.section-achievements .button {
  max-width: 360px;
  width: 100%;
}

.section-achievements .section-desc {
  margin-bottom: 20px;
}

.subscribe__list {
  background-color: white;
  border-radius: 40px;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  padding: 25px;
  margin-bottom: 35px;
  width: 100%;
}
@media (width > 565px) {
  .subscribe__list {
    flex-flow: row nowrap;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
  }
}
.subscribe__list__item {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 80%;
  padding: 10px 0px;
}
.subscribe__list__item:not(:last-child) {
  border-bottom: 1px solid rgba(103, 158, 236, 0.4431372549);
}
@media (width > 565px) {
  .subscribe__list__item:not(:last-child) {
    border-right: 1px solid rgba(103, 158, 236, 0.4431372549);
    border-bottom: none;
  }
}
.subscribe__list__item > .subscribe__count {
  font-family: "Sigmar", sans-serif;
  font-size: 45px;
  padding: 0;
  margin: 0;
  color: #679FEC;
}
.subscribe__list__item > .subscribe__platform {
  font-family: "Fira Sans";
  font-weight: 300;
  font-size: 16px;
}

.achivements__list {
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 15px;
  grid-column-gap: 30px;
}
@media (width > 610px) {
  .achivements__list {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 70px;
  }
}
@media (width >= 1024px) {
  .achivements__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.achivements__list__item {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: 1fr;
  grid-template-rows: 125px;
  justify-items: center;
}
.achivements__list__item > .achivements__desc {
  text-align: center;
  margin: 0;
}
.achivements__list__item > .achivment_1 {
  width: 100px;
  transform: rotate(350deg);
  -webkit-transform: rotate(350deg);
  -moz-transform: rotate(350deg);
  -ms-transform: rotate(350deg);
  -o-transform: rotate(350deg);
}
.achivements__list__item > .achivment_2 {
  width: 130px;
  transform: rotate(10deg);
  -webkit-transform: rotate(10deg);
  -moz-transform: rotate(10deg);
  -ms-transform: rotate(10deg);
  -o-transform: rotate(10deg);
}
.achivements__list__item > .achivment_3 {
  width: 134px;
  transform: rotate(324deg);
  -webkit-transform: rotate(324deg);
  -moz-transform: rotate(324deg);
  -ms-transform: rotate(324deg);
  -o-transform: rotate(324deg);
}
.achivements__list__item > .achivment_4 {
  width: 112px;
  transform: rotate(357deg);
  -webkit-transform: rotate(357deg);
  -moz-transform: rotate(357deg);
  -ms-transform: rotate(357deg);
  -o-transform: rotate(357deg);
}

.contact-section {
  background-image: url("../img/new/back_mobile.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.contact-section .container {
  padding: 0;
}
@media (width > 378px) {
  .contact-section {
    background-image: url("../img/new/back_table.jpg");
    aspect-ratio: 1/1;
  }
}
@media (width > 768px) {
  .contact-section {
    background-image: url("../img/new/back_desktop.jpg");
    aspect-ratio: auto;
  }
}
.contact-section .section-header {
  color: white;
  text-align: center;
  margin-bottom: 30px;
}
.contact-section .contact-form .button {
  width: 100%;
  max-width: 320px;
}
@media (width > 378px) {
  .contact-section .contact-form .button {
    margin-top: 40px;
  }
}
.contact-section .contact-form input {
  border: 1px solid lightgray;
  border-radius: 100px;
  padding: 18px;
  width: 100%;
}
.contact-section .contact-form input:focus {
  outline: none;
}

.form__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column nowrap;
  padding: 0px 20px;
}

.form {
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  gap: 20px;
  max-width: 580px;
  width: 100%;
}

.button {
  font-family: "Sigmar";
  text-align: center;
  border: none;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  user-select: none;
  text-transform: lowercase;
}

.red-button {
  background-color: #FF6164;
  color: white;
  padding: 16px 32px;
}

.geography-section {
  background-color: #0C1357;
  color: white;
  overflow: hidden;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  padding-bottom: 0;
  position: relative;
}
@media (width >= 768px) {
  .geography-section {
    background-color: #f8f8f8;
    padding-top: 0;
  }

  .section-desc-parties {
    margin-bottom: 30px;
    font-size: 22px;
    max-width: 780px;
  }

  .header__program {
    max-width: none;
  }

.program__header {
    font-family: "Sigmar";
    font-size: 32px;
    text-transform: uppercase;
    margin: 0;
    text-align: initial;
    max-width: none;
}

.program__desc {
    text-align: center;
    max-width: none;
}



  .program__image {
    border-radius: 30px;
    order: 0;
    aspect-ratio:initial;
}

.section-format-parties .container {
  margin: 0 auto;
}

.main-parties .section-header {
  max-width: 980px;
  max-width: 700px;

}


}
.geography-section .section-header {
  color: white;
}
@media (width >= 768px) {
  .geography-section .section-header {
    color: #679FEC;
  }
}
.geography-section .section-desc {
  margin-bottom: 40px;
}
@media (width >= 768px) {
  .geography-section .section-desc {
    color: black;
  }
}
.geography-section .img__map {
  width: 100%;
  overflow-x: auto;
  display: flex;
  position: relative;
}
.geography-section .img__map::-webkit-scrollbar {
  display: none;
}
@media (width >= 1440px) {
  .geography-section .img__map {
    justify-content: center;
    width: auto;
  }

  .card__tile {
    grid-template-columns: repeat(3,1fr);
  }

  .program__card {
    display: flex;
    flex-flow: row nowrap;
    gap: 60px;
}


/* FFFFFFFFFFFFFFFF */

.first-element {
  order:0;
}

.last-element {
  order: 1;
}

.program__info {
  display: flex;
  flex-flow: column nowrap;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
}

.program__desc {
  text-align: initial;
}

}
.geography-section .svg__map {
  /* width: 740px;
  height: 404px; */
  flex-shrink: 0;
  position: relative;
}
@media (width > 730px) {
  .geography-section .svg__map {
    width: 1380px;
    height: 740px;
  }
}
@media (width >= 1280px) {
  .geography-section .svg__map {
    width: 100%;
    height: auto;
  }
}
.geography-section .svg__map .map_poi {
  transform-origin: center center;
  transform-box: border-box;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;

  position: relative;
}

.character-list {
  --list-character-gap: 20px;
  --count-character: 1;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  -moz-column-gap: var(--list-character-gap);
       column-gap: var(--list-character-gap);
  list-style-type: none;
  margin: 0;
  padding: 0;
  row-gap: 40px;
}
.character-list-item {
  width: calc((100% - var(--list-character-gap) * (var(--count-character) - 1)) / var(--count-character));
}
@media (width >= 640px) {
  .character-list-item {
    --count-character: 2;
  }
}
@media (width >= 1024px) {
  .character-list-item {
    --count-character: 3;
    max-width: 380px;
  }
}
.character-list-item figure {
  display: flex;
  flex-flow: column nowrap;
  gap: 20px;
  margin: 0;
}
.character-list-item figure figcaption {
  text-align: center;
  width: 95%;
  margin: 0 auto;
}

.character-img {
  background: linear-gradient(181deg, rgba(52, 172, 247, 0.168627451), transparent);
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  max-height: 380px;
  -o-object-fit: cover;
     object-fit: cover;
}

.blue {
  color: #679FEC;
}

.white {
  color: white;
}

.red {
  color: #FF6164;
}

.trust-section .container {
  margin: initial;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  overflow: visible;
}
@media (width >= 768px) {
  .trust-section .container {
    margin: 0 clamp(50px, 6vw, 130px);
  }
}
@media (width >= 1300px) {
  .trust-section .container {
    margin: 0 auto;
  }
}

.catalog-section {
  background-image: url("../img/new/back2.jpg");
}
@media (width >= 768px) {
  .catalog-section {
    background-image: url("../img/new/back2-table.jpg");
  }

  .card__tile__item h3 {
    margin: 0;
    font-size: 26px;
}

}
@media (width >= 1024px) {
  .catalog-section {
    background-image: url("../img/new/back2-desktop.jpg");
  }
}
.catalog-section .section-desc {
  margin-bottom: 30px;
}

.support-section {
  background-color: #F8DB53;
}
.support-section .section-desc {
  max-width: clamp(260px, 80vw, 580px);
  text-align: center;
  margin-bottom: 30px;
}
.support-section .section-desc a {
  color: inherit;
}

.small-header {
  font-size: 0.6em;
}

.social__icon__list {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.social__icon__list__item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.btb-smi {
  margin: 0;
  margin-bottom: 10px;
}

.smi-list {
  text-align: center;
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  gap: 5px;
  margin-bottom: 20px;
}
.smi-list a {
  color: inherit;
}

.mySwiper.swiper {
  width: 100%;
  height: auto;
}
@media (width >= 425px) {
  .mySwiper.swiper {
    overflow: visible;
  }
}

.mySwiper .swiper-wrapper {
  padding-bottom: 70px;
  height: 250px;
  max-height: 250px;
}
@media (width >= 425px) {
  .mySwiper .swiper-wrapper {
    gap: 20px;
    height: initial;
    max-height: initial;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.mySwiper .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  max-height: 250px;
  padding: 0;
}
@media (width >= 425px) {
  .mySwiper .swiper-slide {
    width: calc((100% - var(--gap-size) * (var(--count-item) - 1)) / var(--count-item));
  }
}
@media (width >= 1024px) {
  .mySwiper .swiper-slide {
    --count-item: 3;
  }
}

.mySwiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
     object-fit: scale-down;
  aspect-ratio: 1.8/1;
}

.swiper-pagination-bullet-active {
  width: 20px;
  border-radius: 5px;
}

.swiper-pagination-bullet {
  transition: all 0.3s ease-in-out;
  background-color: #679FEC;
}

.partner-logo {
  background-color: white;
  border-radius: 10px;
  width: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.partners-st {
  margin-bottom: 60px;
}

.section-partners .section-desc {
  margin-bottom: 30px;
}

.section-statistic {
  padding-top: 0px;
}
@media (width < 1023px) {
  .section-statistic .container {
    margin: 0;
  }
}

.mySwiper-statistic {
  width: 100%;
  height: auto;
}
.mySwiper-statistic .swiper-slide {
  display: flex;
  justify-content: center;
  padding:0;
  cursor: pointer;
}

@media (min-width: 428px) {
  .header__menu {
    display: flex;
    position: absolute;
    transform: translate(0px);
    -webkit-transform: translate(0px);
    -moz-transform: translate(0px);
    -ms-transform: translate(0px);
    -o-transform: translate(0px);
    height: 54px;
    z-index: -1;
    width: 100%;
    left: 0px;
  }
  .logo {
    margin-right: auto;
  }
  .social__list {
    display: flex;
    flex-flow: row wrap;
    list-style-type: none;
    gap: 10px;
    padding: 0;
    margin: 0;
  }
  .social__list .list__item {
    cursor: pointer;
  }
  .social_link-in-menu {
    display: none;
  }
}
@media (min-width: 1024px) {
  :root {
    --main-content-offset: 74px;
  }
  .header-navigation {
    flex-wrap: nowrap;
    height: auto;
  }
  .header__menu {
    position: relative;
    transform: translate(0px);
    -webkit-transform: translate(0px);
    -moz-transform: translate(0px);
    -ms-transform: translate(0px);
    -o-transform: translate(0px);
    width: auto;
  }
  .menu {
    position: relative;
    flex-flow: row nowrap;
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    height: auto;
    opacity: 1;
  }
  .logo {
    margin: 0;
  }
  .social__list {
    flex-flow: row nowrap;
  }
  .burger {
    display: none;
  }
  .main-content {
    padding-top: var(--main-content-offset);
    font-size: 1.83333rem;
  }
}

.success_window {
    position: fixed;
    left: 50%;
    top: 50%;
    background-color: var(--cvet-blue);
    width: max-content;
    height: max-content;
    padding: 30px;
    transform: translate(-50%, -50%);
    border-radius: 30px;
    z-index: 100000;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    color: white;
    row-gap: 20px;
    display:none;
}

.invalid_input {
  outline: 2px solid red;
  color: red;
}

.invalid_input::placeholder {
  color: red;
}

.popup_title {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  position: absolute;
  /* width: 280px; */
  /* z-index: 10000; */
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  font-size: 12px;
  color: black;
  align-items: center;
  width: 200px;
  gap: 15px;
  height: 150px;
}

.popup_title h2 {
  color: var(--cvet-blue);
  margin: 0;
  margin-bottom: 10px;
}

.popup_corner {
  width:80px;
  height: 80px;
  background-color: white;
  transform: rotate(45deg);
  z-index: 9999;
  position: absolute;
}

img.popup__image {
  width: 50%;
  height: auto;
}

.popup__wrapper {
  max-width: 200px;
}

.popup__wrapper p {
  text-align: center;
}


/* .card__tile__item {
  display:flex;
  flex-flow:column nowrap;
  justify-content: space-between;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 340px;
  padding: 40px 20px 30px 30px;
  border-radius: 30px;
  text-transform: uppercase;
  font-size:24px;
} */


.card__tile__item {
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 380px;
    padding: 40px 20px 30px 30px;
    border-radius: 30px;
    text-transform: uppercase;
    /* font-size: 24px; */
    /* transform: none !important; */
    /* aspect-ratio: 1/1.2; */
}


.card__tile__item h3 {
  margin:0;
}

.card__item__footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.card__item__number {
font-size: 60px;
}

.list__programs {
  display: flex;
  flex-flow: column nowrap;
  gap: 80px;
}

.program__card {
  display: flex;
  gap: 60px;
}

.footer_program {
    background: url('../img/new/footer_program.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    aspect-ratio: 1/0.7;
}

.footer_program .section__desc {
  text-transform: none;
}


.footer_program .multischool__desc {
    font-size: 14px;
    font-weight: 300;
}


.questions {
  display: flex;
  flex-flow: column;
}

.question-input {
  display: none;
}

.question-img {
  background-image: url('../img/new/icons/btn-expand.svg');
}

.questions {
    display: flex;
    flex-flow: column;
    width: 100%;
}

.question-img {
    background-image: url('../img/new/icons/btn-expand.svg');
    width: 20px;
    display: block;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center center;
}

.question-label {
    display: flex;
    justify-content: space-evenly;
}





.details {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 auto 10px;
  /* background: rgba(255,255,255,0.5); */
  border-radius: 5px;
  transition: 0.3s;
  overflow: hidden;
}

.details::after {
  position: absolute;
  right: 0;
  top: -3px;
  content: url('../img/new/icons/btn-expand.svg');
  display: block;
  transition: .3s;
}

.details[open]::after {
  content: url('../img/new/icons/btn-collapse.svg');
}

.details[open] {
  padding-bottom: 100px;
}

.details[open] .details__title {
  margin-bottom: 32px;
}

.details__title {
    padding: 12px 24px;
    font-size: clamp(16px,3vw,22px);
    font-weight: 400;
    cursor: pointer;
    list-style: none;
    font-weight: 400;
    transition: .3s;
    color: var(--blue);
}

.details__title::-webkit-details-marker {
  display: none;
}

.details__content {
  padding: 0 32px;
  font-size: 18px;
  margin-bottom: -60px;
}

.details__content p:last-child {
  margin-bottom: 0;
}
.details__content p:first-child {
  margin-top: 0;
}


.book-section {
  background-color: #F8DB53;
  background-image: none;
}

.book-section .section-header {
  color: #FF6164;
}

/* .book-section {
  padding: 100px !important;
  margin-bottom: 100px;
} */


.book-section {
    padding: clamp(50px,10vw,100px) !important;
    margin-bottom: 100px;
}


.section-happy {
  padding-bottom: 0 !important;
}
.mySwiper-happy {
  position: relative;
  margin-bottom: 0px;
}

.mySwiper-happy > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 40px;
    /* top: 0px; */
    left: 0;
    width: 100%;
}

.mySwiper-happy  .swiper-slide {

    padding: 0px;
}

.section-happy .container {
    /* margin: 0px clamp(40px, 10vw, 130px); */
    /* max-width: var(--max-width-container); */
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    padding: 0;
    max-width: 100%;
    margin: 0 !important;
}

.section-what {
    margin-top: clamp(80px,13vw,120px);
    padding-bottom: clamp(80px,10vw,120px) !important;
}

.mySwiper-happy .swiper-pagination-bullet {
    /* transition: all 0.3s ease-in-out; */
    background-color: white;
}

.mySwiper-happy .swiper-button-prev {
    filter: brightness(3);
}

.mySwiper-happy .swiper-button-next {
    filter: brightness(3);
}


.mySwiper-happy .swiper-button-next, .swiper-button-prev {
    top: var(--swiper-navigation-top-offset,50%);
}