@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital@0;1&display=swap");
* {
  font-family: "Montserrat";
  padding: 0;
  border: 0;
  margin:0;
}
p, h1, h2, h3, h4, h5, h6, a, span, li, label{
  color:var(--charcoal);
}

body {
  position: relative;
}

ul, ol {
  margin-left: 24px;
}

:root {
  --yellow:#FFDD33;
  --charcoal:#395058;
  --mantis:#76C055;
  --platinum:#E3E5E3;
  --battleship_gray: #989898;
  --white_smoke:#F3F3F3;
  --popup-shadow: 0px 2px 12px 0px rgb(0, 0, 0, 0.20);
  --rounding_corners:20px;
  --distance-fields: calc(50% - (1248px/2));
  --distance-blocks: 80px;
  --distance-left-text: 106px;
  --distance-header-and-other: 40px;
}
@media (min-width: 992px) and (max-width: 1440px) {
  :root {
    --distance-fields: 96px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  :root {
    --distance-fields: 52px;
    --distance-blocks: 50px;
    --distance-left-text: 57px;
    --distance-header-and-other: 30px;
  }
}
@media (max-width: 767px) {
  :root {
    --distance-fields: 24px;
    --distance-blocks: 30px;
    --distance-left-text: 0px;
    --distance-header-and-other: 20px;
  }
}
@media (max-width: 991px) {
  :root {
    --popup-shadow: 0px 1px 10px 0px rgb(0, 0, 0, 0.25);
  }
}

/*Typography*/
.h1, h1 {
  font-weight: 700;
  font-size: 45px;
  line-height: 100%;
}
@media (min-width: 768px) and (max-width: 991px) {
  .h1, h1 {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .h1, h1 {
    font-size: 30px;
  }
}

.h2, h2, h2 a {
  font-weight: 700;
  font-size: 35px;
  line-height: 100%;
}
@media (min-width: 768px) and (max-width: 991px) {
  .h2, h2, h2 a {
    font-size: 27px;
  }
}
@media (max-width: 767px) {
  .h2, h2, h2 a {
    font-size: 25px;
    line-height: 110%;
  }
}

.h3, h3 {
  font-weight: 700;
  font-size: 25px;
  line-height: 110%;
}
@media (max-width: 991px) {
  .h3, h3 {
    font-size: 18px;
    line-height: 100%;
  }
}

.h4, h4 {
  font-weight: 700;
  font-size: 20px;
  line-height: 130%;
}
@media (max-width: 991px) {
  .h4, h4 {
    font-size: 16px;
    line-height: 130%;
  }
}

.h5, h5 {
  font-family: "Inter";
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
}
.h5 strong, p strong, li strong, h5 strong{
}
.h5 strong, p strong, h5 strong, strong{
    font-family: "Inter";
    font-weight:700 !important;
}
@media (min-width: 768px) and (max-width: 991px) {
  .h5, h5 {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
    .h5, h5 {
        font-size: 14px;
        line-height: 120%;
    }
}

ol.h5, ul.h5, ol.h5 {
  padding-left: 25px;
  list-style-type: disc;
}

.h6, h6 {
  font-weight: 700;
  font-size: 14px;
  line-height: 130%;
}
@media (max-width: 991px) {
  .h6, h6 {
    font-size: 10px;
  }
}
.d4{
    font-weight: 400;
    font-size:20px;
    line-height: 130%;
}
@media (max-width: 991px) {
  .d4{
    font-size: 16px;
  }
}
p, li, a, .p{
    font-family: "Inter";
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
}
@media (min-width: 768px) and (max-width: 991px) {
    p, li, a, .p{
        font-size: 14px;
    }
}
@media (max-width: 767px) {
    p, li, a, .p{
        font-size: 14px;
        line-height: 120%;
        font-weight: 300;
    }
}
h1{
    margin-bottom:30px;
}
h2{
    margin-bottom:20px;
}
h3, h4{
    margin-bottom:15px;
}
h5, h6, p, a, ul, ol{
    margin-bottom:10px;
}
.button--fill.h6{
    margin:0;
}
li{
    margin-bottom:5px;
}
h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child, p:last-child, li:last-child, a:last-child, ul:last-child{
    margin-bottom:0;
}
hr{
    height: 1px;
    margin:20px 0;
    background: var(--charcoal);
}

/*buttons*/
.button--fill {
  padding: 10px 20px;
  background-color: var(--mantis);
  color: #fff;
  border-radius: var(--rounding_corners);
  transition: all 0.1s ease;
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
}
.button--fill:hover {
  background-color: #FFDD33;
  color: #000;
}
.button--fill:active {
  background-color: var(--charcoal);
  color: #fff;
}
.button--fill:disabled {
  background-color: #d9d9d9;
  color: #989898;
}
@media (max-width: 991px) {
  .button--fill {
    padding: 7px 15px;
  }
}
.button--gray{
    background-color: var(--white_smoke);
    color: var(--charcoal);
}
.button--outline {
  padding: 10px 20px;
  background-color: transparent;
  color: #000;
  border-radius: var(--rounding_corners);
  transition: all 0.1s ease;
  text-decoration: none;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
}
.button--outline:hover:disabled, .button--outline:active:disabled {
  outline: solid 2px #d9d9d9;
  color: #989898;
}
.button--outline:hover {
  outline: transparent;
  background-color: var(--yellow);
  color: #000;
}
.button--outline:active {
  outline: transparent;
  background-color: var(--charcoal);
  color: #fff;
}
.button--outline:disabled {
  outline: solid 2px #d9d9d9;
  color: #989898;
}
@media (max-width: 991px) {
  .button--outline {
    padding: 7px 15px;
  }
}

.fixed-overlay {
  position: fixed;
  overflow: auto;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  display: none;
  cursor: pointer;
  z-index: 100;
}
.fixed-overlay.active {
  display: block;
}

@media (min-width: 992px) and (max-width: 1440px) {
  .not-adaptive-desktop {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .not-adaptive-tablet {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .not-adaptive-mobile {
    display: none !important;
  }
}
.header, .nav {
  overflow: visible !important;
}

/*Header*/
.header {
  padding: 14px var(--distance-fields);
  background-color: var(--white_smoke);
  display: flex;
  justify-content: space-between;
}
.header__logo{
    display: flex;
    align-self:center;
}
.header__logo a{
    max-width:132px;
    max-height:60px;
    width:100%;
    display:block;
}
.header__logo img{
    width:100%;
}
.header__menu {
  display: flex;
  justify-content: space-between;
  flex-direction:column;
}
.header__contacts {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
    margin-right: 20px;
    margin-bottom:10px;
}
.header__contacts a {
  color: var(--battleship_gray);
  text-decoration: none;
  transition: color 0.15s ease;
  margin-bottom:0;
}
.header__contacts a:hover {
  text-decoration: underline;
  color:var(--charcoal);
}
.header__social-icons {
  display: flex;
  gap: 12px;
  align-self: center;
}
.header__social-icons a {
  display: flex;
}
.header__social-icons a svg {
  fill: var(--battleship_gray);
  transition: fill 0.15s ease;
}
.header__social-icons a:hover svg {
  fill: var(--charcoal);
}
.header__btn-menu{
    display:none;
    height: 45px;
    align-items:center;
    gap:14px;
}
.nav__menu-mobile:hover{
    background-color: var(--mantis);
    color:#fff;
}
@media (max-width: 991px) {
  .header {
    padding: 10px var(--distance-fields);
  }
  .header__logo{
    display:none;   
  }
  .header__logo--mobile{
      display:flex;
  }
  .header__logo a {
    max-height:40px;
    max-width:88px;
  }
  .header__navigation {
    gap: 0;
  }
  .header__navigation div {
    padding: 10px 14.6px;
  }
  .header__btn-menu{
      display:flex;
  }
  .header__contacts{
    margin:0;
  }
  .header__menu{
      align-self:center;
  }
}
@media (max-width: 767px) {
    .header{
        gap:14px
    }
    .header__contacts{
        flex-direction:column;
        align-items: end;
        gap:4px;
    }
    .header__social-icons{
        order:-1;
    }
    .header__social-icons svg{
        width:24px;
        height:24px;
    }
}

.nav {
  z-index: 99;
}
.nav ul {
  margin: 0;
}
.nav__menu-mobile {
  display: none;
}
.nav__list {
  list-style: none;
  display: flex;
  background: var(--white_smoke);
  justify-content: right;
  gap:8px;
}
.nav__list .nav__item {
  cursor: pointer;
  display: flex
}
.nav__item{
    line-height:120%;
}
.nav__item.here:hover span{
    background:transparent;
}
.nav__list > .nav__item:hover > .nav__link,
.nav__list > .nav__item.active > .nav__link{
    background-color: var(--yellow);
    color:#000;
}
.nav__list > .nav__item.here > .nav__link {
    background-color: var(--mantis);
    color:#fff;
}
.nav__link {
    text-decoration: none;
    padding: 10px 20px;
    border-radius: var(--rounding_corners);
    color: var(--charcoal);
    font-weight: 700;
    white-space: nowrap;
    font-size:14px;
}
.nav__list > .nav__item.active.here span{
    color:#fff;
}
.nav__list > .nav__item:hover > span,
.nav__list > .nav__item:hover > a{
    color:#fff;
}
.nav__submenu > .nav__item.here span,
.nav__submenu > .nav__item.active span,
.nav__submenu > .nav__item:hover > a {
    color:#000;
}

.nav__item{
    position:relative;
    margin-bottom: 0;
}
.nav__link:hover {
  background-color: var(--yellow);
  color:#000;
}
@media(min-width:768px){
    .nav__list > .nav__item:last-child > .nav__submenu{
        right:auto;
    }
}
.nav__submenu {
  list-style: none;
  padding: 14px 15px 20px;
  flex-direction: column;
  gap: 8px;
  background: #fff;
  border-radius: 0px 0px var(--rounding_corners) var(--rounding_corners);
  position: absolute;
  display: none;
  margin-top: 41px !important;
  margin-left: -15px !important;
  background: var(--white_smoke);
}

.nav__submenu > .nav__item {
  padding: 10px 20px;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: var(--rounding_corners);
}
.nav__submenu > .nav__item:hover {
  background-color: var(--yellow);
  color:#000;
}
.nav__submenu > .nav__item > .nav__link {
  padding: 0;
  color: var(--charcoal);
  text-decoration: none;
}
.nav__submenu .nav__item.here{
  background-color: var(--mantis);
}
.nav__submenu .nav__item.here span{
  color:#fff;
}
@media (max-width:1100px){
    .nav__link{
        transition:padding .2s ease;
        padding:10px;
    }
}
@media (max-width:1256px){
    .nav__link{
        font-size:12px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
  .nav__submenu {
    margin-top: 36px !important;
  }
  .nav__list > :last-child > .nav__submenu{
      right:var(--distance-fields);
  }
}
@media (max-width: 991px) {
  .nav__menu-mobile {
    display: block;
    color: var(--charcoal);
  }
  .nav__list {
    left: 0;
    padding: 10px;
    display: none;
    flex-direction: column;
    position: absolute;
    border-radius: 0 0 var(--rounding_corners) var(--rounding_corners);
    margin-top: 10px !important;
    margin-left:calc(var(--distance-fields) - 15px) !important;
  }
  .nav__link {
    padding: 7px 15px;
    white-space: wrap;
  }
  .nav__submenu {
    margin: 0 !important;
    left: 100%;
    border-radius: 0 var(--rounding_corners) var(--rounding_corners) var(--rounding_corners);
    padding: 7px 15px;
  }
}
@media (max-width:767px){
    .nav__list{
        margin-left:calc(var(--distance-fields) - 10px) !important;
    }
}

/* фіксація header */
header{
    position: fixed;
    width: 100%;
    box-sizing: border-box;
    z-index: 30;
}
main{
    --height-header:115px;
    padding-top:var(--height-header);
}
@media (max-width: 1256px) {
    main{
        --height-header:112px;
    }
}
@media (max-width: 991px) {
    main{
        --height-header:60px;
    }
}
@media (max-width: 767px) {
    main{
        --height-header:65px;
    }
}


/*section hero*/
.hero {
  display: flex;
  background-color: var(--mantis);
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
  position: relative;
  gap: 100px;
}
.hero h1 {
  margin-right: 52px;
  color: #fff;
  width:30%;
}
.hero picture {
  display: flex;
}
.hero img{
    width: 100%;
}
.hero__wrapper{
    width: 65%;
    position: relative;
    display: inline-block;
}
.hero__wrapper.hero__wrapper--notempty {
    filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.4));
}

.hero__masked-image {
    display: block;
    mask-image: url(/assets/images/hero/hero-mask-desktop.svg);
    mask-repeat: no-repeat;
    mask-size: auto 100%;
    mask-position:right;
    -webkit-mask-image: url(/assets/images/hero/hero-mask-desktop.svg);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: auto 100%;
    -webkit-mask-position:right;
}
@media (min-width: 992px) and (max-width: 1440px) {
    .hero__wrapper {
    width: 70%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero{
      gap:75px;
  }
  .hero__wrapper {
      width: 50%;
}
.hero__masked-image {
    mask-image: url(/assets/images/hero/hero-mask-tablet.svg);
    -webkit-mask-image: url(/assets/images/hero/hero-mask-tablet.svg);
  }
}
@media (max-width: 767px) {
  .hero {
    gap: 0px;
    flex-direction: column;
  }
  .hero h1 {
    padding: 30px;
    font-size: 24px;
    margin-right: 0;
    width:100%;
    text-align:center;
  }
  .hero__wrapper {
    width: 100%;
  }
  .hero__wrapper.hero__wrapper--notempty {
    width: 100%;
    filter: drop-shadow(0px 1px 10px rgba(0, 0, 0, 0.25));
  }
  .hero__masked-image {
    mask-image: url(/assets/images/hero/hero-mask-mobile.svg);
    -webkit-mask-image: url(/assets/images/hero/hero-mask-mobile.svg);
  }
}

/*section grades*/
.grades {
  height: 540px;
  display: grid;
  grid-template-columns: 40% repeat(2, 30%);
  grid-template-rows: 40% 20% 40%;
  grid-column-gap: 8px;
  grid-gap: 8px;
}
.grades a:nth-child(1) {
  grid-area: 1/1/2/2;
}
.grades a:nth-child(2) {
  grid-area: 2/1/4/2;
}
.grades a:nth-child(3) {
  grid-area: 1/2/3/4;
}
.grades a:nth-child(4) {
  grid-area: 3/2/4/3;
}
.grades a:nth-child(5) {
  grid-area: 3/3/4/4;
}
.grades a {
  margin:0;
  color: #000;
  text-decoration: none;
  border-radius: var(--rounding_corners);
  display: flex;
  position: relative;
  flex-direction: column;
  padding: 40px;
  overflow: hidden;
  width: calc(100% - 80px);
  height: calc(100% - 80px);
}
.grades__preschool {
  background-color: var(--yellow);
  gap: 20px;
  padding: 0;
}
.grades__preschool picture {
  width: 100%;
  height: 100%;
  position: relative;
}
.grades a picture {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  display: flex;
  z-index: 9;
}
.grades a picture img {
  width: 100%;
  z-index: 8;
}
.grades a h2, .grades a h3{
    z-index:10;
}
.grades__preschool picture img {
  width: auto;
  bottom: 0;
  right: 0;
  position: absolute;
}
.grades__distance-learning picture {
  top: 0;
  bottom: auto;
}
.grades__distance-learning picture img {
  position: absolute;
  right: 0;
  width: auto;
}
.grades__preschool-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index:10;
  position: relative;
}
.grades__elementary-school {
  background-color: var(--platinum);
  justify-content: space-between;
}
.grades__middle-school {
  background-color: var(--charcoal);
  justify-content: space-between;
}
.grades__high-school {
  background-color: var(--mantis);
  justify-content: space-between;
}
.grades__high-school *, .grades__middle-school * {
  color: #fff;
}
.grades__distance-learning {
  background-color: var(--platinum);
  justify-content: space-between;
}
.grades span {
  z-index: 10;
}
@media (min-width: 992px) and (max-width: 1440px) {
  .grades__distance-learning span {
    font-size: 26.25px;
  }
}
.grades__preschool picture img {
  bottom: 0;
  right: 0;
  position: absolute;
}
@media (min-width: 768px) and (max-width: 991px) {
  .grades {
    height: 348px;
  }
  .grades a {
    padding: 30px;
    width: calc(100% - 60px);
    height: calc(100% - 60px);
  }
  .grades__high-school picture{
      display:none !important;
  }
}
@media (max-width: 767px) {
  .grades {
    height: -moz-fit-content;
    height: fit-content;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 1fr);
  }
  .grades a:nth-child(1) {
    grid-area: 1/1/2/2;
  }
  .grades a:nth-child(2) {
    grid-area: 2/1/3/2;
  }
  .grades a:nth-child(3) {
    grid-area: 3/1/4/2;
  }
  .grades a:nth-child(4) {
    grid-area: 4/1/5/2;
  }
  .grades a:nth-child(5) {
    grid-area: 5/1/6/2;
  }
  .grades a {
    padding: 20px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    gap: 20px;
    justify-content: flex-start;
  }
  .grades a picture {
    height: 100%;
    width: auto;
    bottom: 0;
    right: 0;
  }
  .grades a picture img {
    height: 100%;
    width: auto;
  }
}

/*section recruiting*/
.recruiting {
  padding: 40px var(--distance-fields);
  display: flex;
  gap: 60px;
  background-color: var(--platinum);
  border-radius: var(--rounding_corners);
  margin: var(--distance-blocks) 0;
}
.recruiting__image {
  width: 52%;
  margin:auto 0;
}
.recruiting__image img {
  border-radius: var(--rounding_corners);
}
.recruiting__information, .recruiting__texts {
  display: flex;
  flex-direction: column;
}
.recruiting__information {
  width: 48%;
  gap: 40px;
}
.recruiting ul {
  gap: 15px;
  list-style: square url("/assets/images/recruiting/check-mark.svg") inside;
  padding: 0;
  margin-left:0;
}
.recruiting__buttons {
  display: flex;
  gap: 50px;
}
@media (min-width: 992px) and (max-width: 1440px) {
  .recruiting {
    gap: 50px;
    padding: 40px var(--distance-fields);
  }
}
@media (max-width: 1180px) {
  .recruiting__buttons {
    gap: 10px;
    align-items: flex-start;
  }
  .recruiting__information {
    gap: 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .recruiting {
    padding: 40px var(--distance-fields);
    gap: 30px;
  }
  .recruiting__image, .recruiting__information {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .recruiting {
    flex-direction: column;
    padding: 20px var(--distance-fields);
    gap: 20px;
  }
  .recruiting__image, .recruiting__information {
    width: 100%;
  }
  .recruiting__image {
    background-image: none;
  }
  .recruiting__image img {
    display: block;
  }
  .recruiting__buttons {
    gap: 10px;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.accordion-button {
  display: none;
  margin-top:20px !important;
}
@media (max-width: 767px) {
  .accordion-button {
    display: block;
  }
}

/*interactive__card-1*/
.interactive__card-1 {
  background: var(--mantis);
  padding: 40px var(--distance-fields);
  border-radius: var(--rounding_corners);
  display: flex;
  flex-direction: column;
  margin: var(--distance-blocks) 0;
}
.interactive__card-1 h2 {
  color: #fff;
  padding-left: var(--distance-left-text);
  margin-bottom:var(--distance-header-and-other);
}
@media (max-width: 767px) {
  .interactive__card-1 {
    padding: 30px var(--distance-fields);
    overflow: hidden;
  }
}

.interactive__cards {
  display: flex;
  flex-direction: row;
  gap: 10px;
  perspective: 1000px;
  height: 100%;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .interactive__cards {
    gap: 8px;
    max-height: 264px;
    width: 100%;
    overflow: hidden;
  }
  .interactive__cards-accordion {
    align-items: center;
  }
}

.interactive__cards.interactive__cards-animation {
  transition: max-height 1s ease;
}

.interactive__card.interactive__cards-animation {
  transition: transform 1s ease;
}

.interactive__card {
  padding: 40px;
  transform-style: preserve-3d;
  cursor: pointer;
  position: relative;
  border-radius: var(--rounding_corners);
  align-items: stretch;
  min-height: 120px;
}
@keyframes rotateBack {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(180deg);
  }
}
@keyframes rotateFace {
  from {
    transform: rotateY(180deg);
  }
  to {
    transform: rotateY(0deg);
  }
}
.interactive__card-mask {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: none;
  border-radius: 0 0 var(--rounding_corners) var(--rounding_corners);
}
.interactive__card-1 .interactive__cards .interactive__card-mask, .security .interactive__cards .interactive__card-mask {
  fill: var(--mantis);
  box-shadow: 0px 4px 4px 0px rgb(118, 192, 85);
}
.interactive__card-2 .interactive__cards .interactive__card-mask {
  fill: #fff;
  box-shadow: 0px 4px 4px 0px rgb(255, 255, 255);
}


@media(min-width:768px){
    .interactive__card{
        transform: rotateY(0deg);
        transition: transform 1s ease;
    }
    .interactive__card.not-empty:hover{
        transform: rotateY(180deg);
    }
}

.interactive__card-face {
  left: 0;
  top: 0;
  position: absolute;
  padding: 40px;
  width: calc(100% - 80px);
  height: calc(100% - 80px);
  backface-visibility: hidden;
  border-radius: var(--rounding_corners);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  gap: 8px;
}
.interactive__card-face h4 {
  position: relative;
}
.interactive__card-face svg {
  display: none;
  stroke: var(--mantis);
  width: 26px;
  height: 26px;
}
.interactive__card-face--front {
  background: #fff;
  z-index: 2;
}
.interactive__card-face--back {
  background: var(--yellow);
  box-shadow: var(--popup-shadow);
  transform: rotateY(180deg);
  z-index: 1;
  top: 0;
  padding: 30px;
  width: calc(100% - 60px);
  height: calc(100% - 60px);
}
.interactive__card-2 .interactive__card-face--front svg {
  stroke: #fff;
}
.interactive__card-2 .interactive__card-face--back svg {
  stroke: #000;
}
/* interactive__cards--4-4 */
.interactive__cards.interactive__cards--4-4 > .interactive__card {
    width: calc(25% - 7.5px - 40px*2);
}

/* interactive__cards--4-5 */
.interactive__cards.interactive__cards--4-5 > .interactive__card:nth-child(n) {
    width: calc(25% - 7.5px - 40px*2);
}
.interactive__cards.interactive__cards--4-5 > .interactive__card:nth-child(n+6) {
    width: calc(20% - 8px - 40px*2);
}

/* interactive__cards--4-3 */
.interactive__cards.interactive__cards--4-3 > .interactive__card:nth-child(n) {
    width: calc(25% - 7.5px - 40px*2);
}
.interactive__cards.interactive__cards--4-3 > .interactive__card:nth-child(n+6) {
    width: calc(33.333% - 40px*2 - 7px);
}

/* interactive__cards--2-3 */
.interactive__cards.interactive__cards--2-3 > .interactive__card:nth-child(n) {
    width: calc(50% - 5px - 40px*2);
}
.interactive__cards.interactive__cards--2-3 > .interactive__card:nth-child(n+4) {
    width: calc(33.333% - 40px*2 - 7px);
}
/* interactive__cards--3-2 */
.interactive__cards.interactive__cards--3-2 > .interactive__card:nth-child(n) {
    width: calc(33.333% - 40px*2 - 7px);
}
.interactive__cards.interactive__cards--3-2 > .interactive__card:nth-child(n+5) {
    width: calc(50% - 5px - 40px*2);
}
@media (min-width: 768px) and (max-width: 1440px) {
    /* interactive__cards--4-4 */
    .interactive__cards.interactive__cards--4-5 > .interactive__card{
        width: calc(33.333% - 30px*2 - 7px) !important;
    }

    /* interactive__cards--4-5 */
    .interactive__cards.interactive__cards--4-4 > .interactive__card {
        width: calc(25% - 7.5px - 30px*2);
    }

    /* interactive__cards--4-3 */
    .interactive__cards.interactive__cards--4-3 > .interactive__card:nth-child(n) {
        width: calc(50% - 5px - 30px*2);
    }
    .interactive__cards.interactive__cards--4-3 > .interactive__card:nth-child(n+4) {
        width: calc(33.333% - 30px*2 - 7px);
    }
    .interactive__cards.interactive__cards--4-3 > .interactive__card:nth-child(n+7) {
        width: calc(50% - 5px - 30px*2);
    }

    /* interactive__cards--2-3 */
    .interactive__cards.interactive__cards--2-3 > .interactive__card:nth-child(n) {
        width: calc(50% - 5px - 30px*2);
    }
    .interactive__cards.interactive__cards--2-3 > .interactive__card:nth-child(n+4) {
        width: calc(33.333% - 30px*2 - 7px);
    }
    
    /* interactive__cards--3-2 */
    .interactive__cards.interactive__cards--3-2 > .interactive__card:nth-child(n) {
        width: calc(33.333% - 30px*2 - 7px);
    }
    .interactive__cards.interactive__cards--3-2 > .interactive__card:nth-child(n+5) {
        width: calc(50% - 5px - 30px*2);
    }
}
@media (max-width: 767px) {
    /* interactive__cards--4-4, interactive__cards--4-5, interactive__cards--4-3 */
    .interactive__cards.interactive__cards--4-4 > .interactive__card, .interactive__cards.interactive__cards--4-5 > .interactive__card, .interactive__cards.interactive__cards--4-3 > .interactive__card,.interactive__cards.interactive__cards--2-3 > .interactive__card,.interactive__cards.interactive__cards--3-2 > .interactive__card{
        width: 100% !important;
    }
    .interactive__card {
      min-height: auto;
    }
}
@media (min-width: 768px) and (max-width: 1440px) {
  .interactive__card, .interactive__card-face {
    padding: 30px;
  }
  .interactive__card-face {
    width: calc(100% - 60px);
    height: calc(100% - 60px);
  }
}
@media (max-width: 767px) {
  .interactive__card:hover {
    outline: none;
  }
  .interactive__card, .interactive__card-face {
    padding: 15px 20px;
  }
  .interactive__card-face {
    width: calc(100% - 40px);
    height: calc(100% - 30px);
    justify-content: space-evenly;
  }
  .interactive__card.not-empty .interactive__card-face svg {
    display: block;
  }
  .interactive__card:nth-last-child(n+6), .interactive__card:nth-child(n+5) {
    width: 100%;
  }
  .interactive__card-2 .interactive__card-face--back {
    box-shadow: none;
  }
  .interactive__card:nth-child(-n+4) {
    z-index: 3;
  }
  .interactive__card:nth-child(n+5) {
    z-index: 1;
  }
  .interactive__card-mask {
    display: block;
  }
  .interactive__card.not-empty.interactive__card_flipped {
    animation: rotateBack 0s forwards;
  }
  .interactive__card.not-empty.interactive__card_not-flipped{
    animation: rotateFace 0s forwards;
  }
.slider-1__block.interactive__card_flipped {
  animation: rotateBack 0s forwards !important;
}
.slider-1__block.interactive__card_not-flipped {
  animation: rotateFace 0s forwards !important;
}
}

/*section clubs*/
.clubs {
  display: flex;
  flex-direction: column;
}
.clubs h2 {
    padding-left: var(--distance-left-text);
    margin-bottom:var(--distance-header-and-other);
}
.clubs__blocks {
  gap: 8px;
  display: flex;
}
.clubs__blocks img, .clubs__blocks picture {
  position: absolute;
  width: 100%;
  top: 0;
  right: 0;
  z-index:1;
}
.clubs__blocks span {
  z-index: 2;
}
.clubs__block-1, .clubs__block-2, .clubs__block-3 {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 33.333%;
  height: 700px;
}
.clubs__block-1 p, .clubs__block-1 h3,
.clubs__block-2 p, .clubs__block-2 h3,
.clubs__block-3 p, .clubs__block-3 h3 {
    z-index:2;
}
.clubs__linging {
  background-color: var(--mantis);
  height: 40%;
}
.clubs__creativity {
  background-color: #DEDEDE;
  gap: 20px;
  height: 60%;
}
.clubs__creativity img {
  height: 100%;
}
.clubs__theatrical {
  background-color: #E1E1E1;
  height: 50%;
}
.clubs__intellectual {
  background-color: var(--charcoal);
  height: 25%;
}
.clubs__it, .clubs__it-tablet {
  background-color: var(--mantis);
  height: 25%;
}
.clubs__dance {
  background-color: #e1e1e1;
  height: 60%;
}
.clubs__dance img{
    left:0;
    right:auto;
}
.clubs__sport {
  background-color: var(--yellow);
  height: 40%;
}
.clubs__linging *, .clubs__intellectual *, .clubs__it *, .clubs__it-tablet * {
  color: #fff;
}
.clubs__linging, .clubs__theatrical, .clubs__intellectual, .clubs__it, .clubs__it-tablet, .clubs__dance, .clubs__sport {
  justify-content: space-between;
}
.clubs__linging, .clubs__creativity, .clubs__theatrical, .clubs__intellectual, .clubs__it, .clubs__it-tablet, .clubs__dance, .clubs__sport {
  display: flex;
  flex-direction: column;
  padding: 40px;
  position: relative;
  border-radius: var(--rounding_corners);
  overflow: hidden;
}
.clubs__it-tablet {
  display: none;
}
.clubs__blocks > div > div:hover, .grades > a:hover{
    outline: solid 2px yellow;
}
.clubs__theatrical img{
    width:auto;
}

@media (min-width: 992px) and (max-width: 1280px) {
  .clubs__creativity img {
    height: auto;
    top: auto;
    bottom: 0;
  }
}
@media (min-width: 992px) and (max-width: 1440px) {
  .clubs__intellectual span.h2 {
    font-size: 24.5px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .clubs__blocks {
    flex-direction: column;
    height: 650px;
  }
  .clubs__dance img{
    left:auto;
    right:0;
  }
  .clubs__block-1, .clubs__block-2, .clubs__block-3 {
    flex-direction: row;
    width: 100%;
    height: 33.333%;
  }
  .clubs__linging, .clubs__creativity, .clubs__theatrical, .clubs__intellectual, .clubs__it-tablet, .clubs__dance, .clubs__sport {
    height: auto;
    padding: 30px;
  }
  .clubs__linging {
    width: 40%;
  }
  .clubs__creativity {
    width: 60%;
  }
  .clubs__creativity img {
    display: none;
  }
  .clubs__theatrical, .clubs__intellectual {
    width: 50%;
  }
  .clubs__theatrical img {
    top: 0;
    height:210px;
  }
  .clubs__it {
    display: none;
  }
  .clubs__it-tablet, .clubs__dance, .clubs__sport {
    display: flex;
    width: 33.333%;
  }
  .clubs__dance img{
      width:70%;
  }
}
@media (max-width: 767px) {
  .clubs__blocks {
    flex-direction: column;
  }
  .clubs__blocks img {
    width: auto;
  }
  .clubs__block-1, .clubs__block-2, .clubs__block-3 {
    flex-direction: column;
    height: auto;
    width: auto;
  }
  .clubs__linging, .clubs__creativity, .clubs__theatrical, .clubs__intellectual, .clubs__it-tablet, .clubs__dance, .clubs__sport {
    height: auto;
  }
  .clubs__linging, .clubs__creativity, .clubs__theatrical, .clubs__intellectual, .clubs__it, .clubs__dance, .clubs__sport {
    height: auto;
    padding: 30px;
    gap: 20px;
  }
  .clubs__blocks img, .clubs__blocks picture {
    top: 0;
  }
  .clubs__theatrical img{
    height: 180px;
  }
  .clubs__creativity img {
    display: none;
  }
  .clubs__dance img{
      width:160px;
      left:auto;
      right:0;
  }
}

/*section our aspirations*/
.interactive__card-2 {
  display: flex;
  flex-direction: column;
}
.interactive__card-2__information {
  display: flex;
  padding: 0 86px;
  justify-content: space-between;
}
.interactive__card-2__block-texts {
  display: flex;
  flex-direction: column;
}
.interactive__card-2__block-texts:last-child{
  margin-bottom: var(--distance-header-and-other);
}
.interactive__card-2__block-texts:nth-child(1) {
  width: 40%;
}
.interactive__card-2__block-texts:nth-child(2) {
  gap: 0;
  width: 45%;
}
.interactive__card-2__block-texts:nth-child(1).interactive__card-2__block-texts--title{
    width:100%;
}
.interactive__card-2 .interactive__card .interactive__card-face--front {
  background-color: var(--mantis);
}
.interactive__card-2 .interactive__card .interactive__card-face--front h3{
  color: #fff;
}
.interactive__card-2 .interactive__card .interactive__card-face--back {
  background-color: var(--platinum);
  color: #000;
}
@media (min-width: 768px) and (max-width: 991px) {
  .interactive__card-2__information {
    flex-direction: column;
    gap: 20px;
    padding: 0;
  }
  .interactive__card-2__block-texts {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .interactive__card-2__information {
    flex-direction: column;
    gap: 20px;
    padding: 0;
  }
  .interactive__card-2 .interactive__cards {
    max-height: none;
  }
  .interactive__card-2__block-texts {
    width: 100% !important;
  }
}

/*Section gallery*/
.gallery {
  display: flex;
  flex-direction: column;
  position: relative;
}
.gallery__track {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 160px repeat(2, 53px) 160px;
  gap: 8px;
}
.gallery__info {
    padding-left: var(--distance-left-text);
    display: flex;
    flex-direction: column;
    align-items: start;
}
.gallery__info .button--fill{
    margin-bottom: var(--distance-header-and-other);
}
.gallery__info p:empty{
    display:none;
}
.gallery__info p:empty ~ h2{
    margin:0;
}
.gallery__info p:empty + a{
    display:none;
}
.gallery__info h2{
    margin-bottom:var(--distance-header-and-other);
}
.gallery__block {
  border-radius: var(--rounding_corners);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.gallery__block picture {
    display: none;
}
.gallery__block:nth-child(1) {
  grid-area: 1/1/5/4;
}
.gallery__block:nth-child(2) {
  grid-area: 1/4/3/7;
}
.gallery__block:nth-child(3) {
  grid-area: 1/7/3/9;
}
.gallery__block:nth-child(4) {
  grid-area: 1/9/4/13;
}
.gallery__block:nth-child(5) {
  grid-area: 3/4/5/6;
}
.gallery__block:nth-child(6) {
  grid-area: 3/6/5/9;
}
.gallery__block:nth-child(7) {
  grid-area: 4/9/5/10;
}
.gallery__block:nth-child(8) {
  grid-area: 4/10/5/13;
}
@media (min-width: 768px) and (max-width: 991px) {
  .gallery__block:nth-child(1) {
    grid-area: 1/1/5/4;
  }
  .gallery__block:nth-child(2) {
    grid-area: 1/4/3/8;
  }
  .gallery__block:nth-child(3) {
    grid-area: 1/8/3/10;
  }
  .gallery__block:nth-child(4) {
    grid-area: 1/10/4/13;
  }
  .gallery__block:nth-child(5) {
    grid-area: 3/4/5/6;
  }
  .gallery__block:nth-child(6) {
    grid-area: 3/6/5/10;
  }
  .gallery__block:nth-child(7) {
    grid-area: 4/10/5/13;
  }
  .gallery__block:nth-child(8) {
    display: none;
  }
}
@media (max-width: 767px) {
  .gallery__container {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 100%;
  }
  .gallery__list {
    width: 100%;
  }
  .gallery__track {
    display: flex;
    gap: 8px;
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
  }
  .gallery__track::-webkit-scrollbar {
    display: none;
  }
  .gallery__block {
    background-image: none !important;;
    width: 100%;
    flex-shrink: 0;
    display: flex;
    scroll-snap-align: center;
  }
  .gallery__block img, .gallery__block picture {
    width: 100%;
    border-radius: var(--rounding_corners);
  }
  .gallery__block img {
    height: auto;
  }
  .gallery__block picture {
    display: block;
  }
}
.gallery__pagination {
  position: absolute;
  bottom: 10px;
  display: none;
  gap: 5px;
  align-items: center;
  justify-content: center;
  height: auto;
  width: calc(100% - 40px);
}
@media (max-width: 767px) {
  .gallery__pagination {
    display: flex;
  }
}
.gallery .paginator-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #000;
  opacity: 0.3;
}
.gallery .paginator-dot.active {
  width: 7px;
  height: 7px;
  background-color: #000;
  opacity: 0.6;
}

@media (min-width: 768px) {
    .gallery--school-camps.gallery, .gallery--travels {
        padding: 0 var(--distance-fields) 0 var(--distance-fields) !important;
    }
}


/*Section gallery*/
.gallery--secondary-school .gallery__info h2 {
    padding-left: 0;
}

/*Section reviews*/
.review {
  padding: 50px var(--distance-fields);
  position: relative;
  background-color: var(--mantis);
  border-radius: var(--rounding_corners);
  margin: var(--distance-blocks) 0;
}
.review h2 {
  padding-left: var(--distance-left-text);
  color: #fff;
  margin-bottom:var(--distance-header-and-other);;
}
.review svg {
  stroke: #fff;
}
.review .swiper-container-wrapper{
    position:relative;
}
.review .swiper-horizontal {
    touch-action: pan-y;
}

.review .swiper-slide .col-1-2{
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin:0;
    padding:0;
    height: calc(100% - 20px);
}
.review .swiper-slide .review-cards__card{
    box-sizing:border-box;
    margin: 10px;
}
.review .swiper-pagination-bullet-active {
    background: #fff;
    width:7px;
    height:7px;
}
@media(min-width:768px) and (max-width:991px){
    .review .swiper {
        margin:0 56px;
    }
    .review .swiper-button-prev, .review .swiper-rtl .swiper-button-next {
        left: 0px;
    }
    .review .swiper-button-next, .review .swiper-rtl .swiper-button-prev {
        right: 0px;
    }
}
@media(max-width:767px){
    .review .swiper-button-next, .review .swiper-button-prev {
        display:none;
    }
}


 .swiper-container-wrapper{
    position:relative;
}
 .swiper-horizontal {
    touch-action: pan-y;
}
 .swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
    display: block;
}
 .swiper-wrapper{
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    transition-timing-function: initial;
    box-sizing: content-box;
}
 .swiper-android .swiper-slide,  .swiper-ios .swiper-slide,  .swiper-wrapper {
    transform: translate3d(0px, 0, 0);
}
 .swiper .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000;
}
 .swiper-slide{
    border-radius: 20px;
    overflow: hidden;
    height:auto;
    flex-shrink: 0;
    width: 100%;
    position: relative;
    transition-property: transform;
    display: block;
}
 .swiper-backface-hidden .swiper-slide {
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.slider--shadow .swiper-slide .slider-1__card{
    margin: 10px;
}
.slider--shadow .swiper{
    margin: -10px;
}
 .swiper-slide .slider-1__card{
    box-sizing:border-box;
}
 .swiper-horizontal>.swiper-pagination-bullets,
 .swiper-pagination-bullets.swiper-pagination-horizontal,
 .swiper-pagination-custom,
 .swiper-pagination-fraction {
    left: 0;
    width: 100%;
    bottom: -20px;
    top: auto;
}
 .swiper-pagination {
    position: absolute;
    transform: translate3d(0, 0, 0);
    z-index: 10;
    
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}

 .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
 .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px;
}
  .swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
}
 .swiper-pagination-bullet {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--platinum);
}
.required-courses .swiper-pagination-bullet, .clubs-list-slider .swiper-pagination-bullet {
    background:#fff;
}
.swiper-pagination--gray .swiper-pagination-bullet-active {
    background: rgba(0, 0, 0, 0.3);
    width:7px;
    height:7px;
}

 .swiper-button-prev,  .swiper-rtl .swiper-button-next {
    left: -56px;
    right: auto;
}
 .swiper-button-next,  .swiper-rtl .swiper-button-prev {
    right: -56px;
    left: auto;
}
 .swiper-button-next,  .swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    height:36px;
    width:36px;

    z-index: 10;
    cursor: pointer;
    display: flex;
    background:transparent;
    align-items: center;
    justify-content: center;
}

.swiper-backface-hidden .swiper-slide {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.gallery-slider__img:hover img, .gallery-slider__img:focus img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.gallery-slider__img img {
    font-family: "object-fit:cover;object-position:center";
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    -webkit-transition: -webkit-transform .25s;
    transition: -webkit-transform .25s;
    transition: transform .25s;
    transition: transform .25s, -webkit-transform .25s;
}
@media(max-width:991px){
     .swiper-button-next,  .swiper-button-prev {
        display:none;
    }
}
.what-awaits-us .swiper{
    margin:0;
}

/*section statistics*/
.statistics {
  border-radius: 30px 30px 0 0;
  padding: 36px var(--distance-fields);
  background-color: var(--mantis);
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  margin-top: var(--distance-blocks);
}
.statistics *{
  color: #fff;
}
.statistics__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 20%;
}
.statistics__text {
  font-size: 80px;
  line-height: 120%;
  font-weight: 700;
}
@media (min-width: 992px) and (max-width: 1440px) {
  .statistics {
    padding: 30px var(--distance-fields);
  }
  .statistics__blocks:nth-child(1) .statistics__block {
    flex-direction: column;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .statistics {
    padding: 30px var(--distance-fields);
    gap: 8px;
  }
  .statistics__text {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .statistics {
    padding: 30px var(--distance-fields);
    flex-direction: column;
    gap: 20px;
  }
  .statistics__block {
    width: 100%;
  }
  .statistics__text {
    font-size: 30px;
  }
}

/*section description*/
.description {
  display: flex;
  flex-direction: column;
}
.description span {
  margin-bottom: 100px;
}
.description p, .description h3, .description h2, .description h4, .description h5{
  margin-left: var(--distance-left-text);
  margin-right: var(--distance-left-text);
}
.description h2{
    margin-bottom:40px;
}
.description p strong{
  font-weight: 700;
  font-size: 25px;
  line-height: 110%;
}
.description ul {
  margin-left: calc(var(--distance-left-text) + 24px);
  margin-right: var(--distance-left-text);
}
.description li, .description p{
    font-weight: 400;
    font-size: 20px;
    line-height: 130%;
}
@media (max-width: 991px) {
    .description li, .description p{
        font-size: 16px;
        line-height: 130%;
    }
    .description p strong{
    font-size: 18px;
    line-height: 100%;
  }
}
@media (max-width: 767px) {
  .description p {
    margin-left: 0;
    margin-right: 0;
  }
  .description ul {
    margin-left: 24px;
    margin-right: 0;
  }
}

/*section curriculum*/
.curriculum {
  display: flex;
  flex-direction: column;
}
.curriculum h2 {
  padding-left: var(--distance-left-text);
  margin-bottom: var(--distance-header-and-other);
}
.curriculum__container {
  padding: 40px 86px;
  display: flex;
  flex-direction: column;
  gap: 36px;
  background-color: var(--mantis);
  border-radius: var(--rounding_corners);
}
.curriculum__container > h5 {
  text-align: center;
  color: #fff;
  margin:0;
}
.curriculum__block {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.curriculum__list {
    display: flex;
    grid-column-gap: 20px;
    grid-row-gap: 8px;
    flex-direction: column;
    flex-wrap: wrap;
    max-height: 300px;
    width: 80%;
    margin: 0 auto;
}
.curriculum__item {
  padding: 10px 30px 10px 30px;
  display: flex;
  gap: 10px;
  align-items: center;
  background-color: #fff;
  border-radius: 30px;
  box-sizing: border-box;
  width: calc(33.333% - 13px);
  margin:0;
  justify-content: space-between;
}
.curriculum__item p{
    margin:0;
}
@media (max-width: 1400px) {
    .curriculum__container {
        padding:40px 60px;
    }
    .curriculum__list {
        width: 100%;
    } 
}
@media (max-width: 1160px) {
    .curriculum__container {
        padding:40px 60px;
    }
    .curriculum__list {
        max-height:400px;
    }
    .curriculum__item {
        width:calc(50% - 10px);
    }
}
@media (min-width: 768px) and (max-width: 991px) {
  .curriculum__container {
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .curriculum__container {
    padding: 20px 24px;
    gap: 20px;
  }
  .curriculum__item span.h5-b {
    font-size: 14.4px;
  }
  .curriculum__list{
      max-height:none;
  }
  .curriculum__item {
      width:100%;
   }
}

/*section daily-routine*/
.daily-routine {
  display: flex;
  flex-direction: column;
}
.daily-routine h2 {
  padding-left: var(--distance-left-text);
  margin-bottom: var(--distance-header-and-other);
}
.daily-routine__list {
  padding: 0 86px;
}
.daily-routine__list tbody {
  display: flex;
  flex-direction: row;
  border: solid 1px;
}
.daily-routine__list tr {
  display: flex;
  flex-direction: column;
  width:50%;
}

.daily-routine__list tr :last-child {
  border-bottom: 0;
}
.daily-routine__list tr:first-child td{
      border-right: solid 1px;
}
.daily-routine__list td {
  border-bottom: solid 1px;
}
.daily-routine__item {
  display: flex;
  list-style: none;
}
.daily-routine__time {
  padding: 33.5px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 148px;
  background-color: var(--platinum);
}
.daily-routine__text {
  padding: 13.5px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 80%;
  background-color: var(--white_smoke);
}
.daily-routine__gradient-box {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
  width: 100%;
  height: 80px;
  position: absolute;
  bottom: 0;
  left: 0;
  pointer-events: none;
  display: none;
}
.daily-routine__tr--mobile{
    display:none !important;
}
@media (min-width: 992px) and (max-width: 1440px) {
  .daily-routine__list {
    padding: 0;
  }
  .daily-routine__time {
    padding: 32.5px 22px;
    display: flex;
    justify-content: center;
    width: 80px;
    background-color: #d9d9d9;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .daily-routine__list {
    padding: 0;
  }
  .daily-routine__time {
    padding: 32.5px 20px;
    display: flex;
    justify-content: center;
    width: 80px;
    background-color: #d9d9d9;
  }
}
@media (max-width: 767px) {
  .daily-routine {
    position: relative;
  }
  .daily-routine__time {
    height: auto;
    padding: 20px 11px;
    display: flex;
    justify-content: center;
    width: 80px;
    background-color: #d9d9d9;
  }
  .daily-routine__text {
    padding: 10px 20px;
    justify-content: center;
  }
  .daily-routine__list {
    padding: 0;
  }
  .daily-routine tbody {
    flex-direction: column;
    height: 400px;
    overflow-y: scroll;
  }
  .daily-routine tr {
    flex-direction:column;
  }
  .daily-routine tr td {
    border-left: 0 !important;
    border-right: 0 !important;
  }
  .daily-routine__list tr {
    width:100%;
  }
  .daily-routine__gradient-box {
    display: block;
  }
  .daily-routine tr{
    display:none;
  }
  .daily-routine__tr--mobile{
    display:block !important;
  }
}
/*section departments*/
.departments, .required-courses, .clubs-list-slider {
  display: flex;
  flex-direction: column;
  position: relative;
}
.vacancies {
    display: flex;
    flex-direction: column;
    gap: var(--distance-header-and-other);
    position: relative;
}
.vacancies__info{
    display: flex;
    justify-content: space-between;
}
.departments__info, .required-courses__info {
  display: flex;
  flex-direction: column;
  margin: 0 var(--distance-left-text);
  margin-bottom:var(--distance-header-and-other);
}
.vacancies .departments__info, .vacancies .required-courses__info, .vacancies .clubs-list-slider__info {
  justify-content: space-between;
  flex-direction: row;
}
.clubs-list-slider__info{
    margin-bottom: var(--distance-header-and-other);
}
.slider-1 {
  position: relative;
  padding: 28px;
  transform-style: preserve-3d;
  border-radius: var(--rounding_corners);
}
.slider-1 button {
  cursor: pointer;
}
.slider-1__container {
  display: flex;
  width: calc(100% - 24px);
  gap: 20px;
  overflow: hidden;
  position: relative;
  padding: 12px;
}
.departments .slider-1__block, .required-courses .slider-1__block {
  transform-style: preserve-3d;
  padding: 40px;
  height: calc(100% - 80px);
  width: calc(100% - 80px);
}
.slider-1__block.interactive__card_flipped {
  animation: rotateBack 1s forwards;
}
.slider-1__block.interactive__card_not-flipped {
  animation: rotateFace 1s forwards;
}
@keyframes rotateBack {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(180deg);
  }
}
@keyframes rotateFace {
  from {
    transform: rotateY(180deg);
  }
  to {
    transform: rotateY(0deg);
  }
}
.slider-1__card {
  border-radius: var(--rounding_corners);
  height: 460px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.departments .slider-1__card-face, .required-courses .slider-1__card-face {
  left: 0;
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: var(--rounding_corners);
  display: flex;
  align-items: center;
  text-align: center;
  flex-direction: column;
  gap: 8px;
}
.slider-1__info h3{
  color: #fff;
  margin:0;
}
.slider-1__image{
    filter: drop-shadow(0 1px 6px rgba(0, 0, 0, 0.25));
    width:100%;
}
.departments .slider-1__card-face img, .required-courses .slider-1__card-face img {
  width: 100%;
  border-radius: var(--rounding_corners) var(--rounding_corners) 0 0;
  filter: drop-shadow(0 1px 10px rgba(0, 0, 0, 0.25));
}
.departments .slider-1__card-face--front, .required-courses .slider-1__card-face--front {
  background: var(--mantis);
  z-index: 2;
  overflow: hidden;
}
.departments .slider-1__card-face--back, .required-courses .slider-1__card-face--back {
  padding-top: 30px;
  overflow: auto;
  background: var(--white_smoke);
  box-shadow: var(--popup-shadow);
  z-index: 1;
  transform: rotateY(180deg);
  width: 100%;
  height: calc(100% - 30px);
  color: #000;
}
.departments .slider-1__card-face--back .slider-1__info button, .required-courses .slider-1__card-face--back .slider-1__info button, .slider-1__info button {
  color: #000;
}
.slider-1__info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: space-between;
  height: 100%;
}
.slider-1__info button::after {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.slider-1__info button, .slider-1__info a {
  color: #fff;
}
.departments .slider-1.interactive__card_flipped, .required-courses .slider-1.interactive__card_flipped {
  animation: rotateBack 1s forwards;
}
.departments .slider-1.interactive__card_not-flipped, .required-courses .slider-1.interactive__card_not-flipped {
  animation: rotateFace 1s forwards;
}
.departments .slider-1__arrow-left, .departments .slider-1__arrow-right, .required-courses .slider-1__arrow-left, .required-courses .slider-1__arrow-right, .clubs-list-slider .slider-1__arrow-left, .clubs-list-slider .slider-1__arrow-right, .vacancies .slider-1__arrow-left, .vacancies .slider-1__arrow-right {
  position: absolute;
  top: 40%;
  background-color: transparent;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 100;
}
.departments .slider-1__arrow-left:hover svg, .departments .slider-1__arrow-right:hover svg, .required-courses .slider-1__arrow-left:hover svg, .required-courses .slider-1__arrow-right:hover svg, .clubs-list-slider .slider-1__arrow-left:hover svg, .clubs-list-slider .slider-1__arrow-right:hover svg, .vacancies .slider-1__arrow-left:hover svg, .vacancies .slider-1__arrow-right:hover svg {
  stroke: var(--yellow);
}
.departments .slider-1__arrow-left, .required-courses .slider-1__arrow-left, .clubs-list-slider .slider-1__arrow-left, .vacancies .slider-1__arrow-left {
  left: -76px;
}
.departments .slider-1__arrow-right, .required-courses .slider-1__arrow-right, .clubs-list-slider .slider-1__arrow-right, .vacancies .slider-1__arrow-right {
  right: -76px;
}
.departments .slider-1 svg, .required-courses .slider-1 svg, .clubs-list-slider .slider-1 svg, .vacancies .slider-1 svg {
  stroke: var(--mantis);
  transition: stroke 0.1s ease;
}
.departments .slider-1__gradient-box, .required-courses .slider-1__gradient-box, .clubs-list-slider .slider-1__gradient-box, .vacancies .slider-1__gradient-box {
  position: absolute;
  width: 20%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
  right: 0;
  top: 0;
  pointer-events: none;
  display: none;
}
@media (max-width: 991px) {
  .departments .slider-1, .required-courses .slider-1, .clubs-list-slider .slider-1, .vacancies .slider-1 {
    padding: 0;
  }
  .departments .slider-1__arrow-left, .departments .slider-1__arrow-right, .required-courses .slider-1__arrow-left, .required-courses .slider-1__arrow-right, .clubs-list-slider .slider-1__arrow-left, .clubs-list-slider .slider-1__arrow-right, .vacancies .slider-1__arrow-left, .vacancies .slider-1__arrow-right {
    display: none;
  }
}

@media (max-width: 767px) {
  .departments .slider-1, .required-courses .slider-1, .clubs-list-slider .slider-1, .vacancies .slider-1 {
    padding: 0px;
  }
  .departments .slider-1__container, .required-courses .slider-1__container, .clubs-list-slider .slider-1__container, .vacancies .slider-1__container {
    gap: 8px;
  }
  .slider-1__card {
    height: 400px;
  }
  .departments .slider-1__gradient-box, .required-courses .slider-1__gradient-box, .clubs-list-slider .slider-1__gradient-box, .vacancies .slider-1__gradient-box {
    display: block;
  }
}
.departments .slider-1__paginator, .required-courses .slider-1__paginator, .clubs-list-slider .slider-1__paginator, .vacancies .slider-1__paginator {
  position: absolute;
  bottom: 0;
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  height: -moz-fit-content;
  height: fit-content;
  width: calc(100% - 56px);
}
@media (max-width: 991px) {
  .departments .slider-1__paginator, .required-courses .slider-1__paginator, .clubs-list-slider .slider-1__paginator, .vacancies .slider-1__paginator {
    width: 100%;
    bottom: -16px;
  }
}
.departments .slider-1 .paginator-dot, .required-courses .slider-1 .paginator-dot, .clubs-list-slider .slider-1 .paginator-dot, .vacancies .slider-1 .paginator-dot {
  width: 5px;
  height: 5px;
  border-radius: 59%;
  background-color: #000;
  opacity: 0.3;
}
.departments .slider-1 .paginator-dot.active, .required-courses .slider-1 .paginator-dot.active, .clubs-list-slider .slider-1 .paginator-dot.active, .vacancies .slider-1 .paginator-dot.active {
  width: 7px;
  height: 7px;
  background-color: #000;
  opacity: 0.15;
}
@media (max-width: 991px) {
  .departments, .required-courses, .vacancies {
    gap: calc(var(--distance-header-and-other) - 12px);
  }
  .departments__paginator, .required-courses__paginator, .clubs-list-slider__paginator, .vacancies__paginator {
    width: 100%;
  }
}

.slider-1[data-sliderCards="3"] .slider-1__card {
  width: calc(33.33% - 15px);
}
@media (max-width: 767px) {
  .slider-1[data-sliderCards="3"] .slider-1__card {
    width: 242px;
  }
}


.clubs-list-slider h2 > a{
    color:var(--charcoal);
    text-decoration:none;
}
.clubs-list-slider h2 > a:hover{
    text-decoration:underline;
}
.slider-1__card.slider-1__card--clubs-list-slider{
    height: calc(100% - 20px);
}
.slider-1__block.slider-1__block--clubs-list-slider{
    box-sizing: border-box;
    background-color: var(--mantis);
    border-radius: var(--rounding_corners);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}
.slider-1__block.slider-1__block--clubs-list-slider img{
    width: 100%;
    mask-image: url(/assets/img/sliders/mask-image-2.svg);
    mask-repeat: no-repeat;
    mask-size: auto 100%;
    -webkit-mask-image: url(/assets/img/sliders/mask-image-2.svg);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: auto 100%;
}
.departments .slider-1__card-face img{
    mask-image: url(/assets/img/sliders/mask-image-2.svg);
    mask-repeat: no-repeat;
    mask-size: auto 100%;
    -webkit-mask-image: url(/assets/img/sliders/mask-image-2.svg);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: auto 100%;
}
.required-courses .slider-1__card-face img{
    mask-image: url(/assets/img/sliders/mask-image-1.svg);
    mask-repeat: no-repeat;
    mask-size: auto 100%;
    -webkit-mask-image: url(/assets/img/sliders/mask-image-1.svg);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: auto 100%;
}
.slider-1__info.slider__info--clubs-list-slider{
    gap: 10px;
}
.slider-1__info.slider__info--clubs-list-slider h3{
    color:#fff;
}

/*section psychological-support*/
.psychological-support {
  display: flex;
  flex-direction: column;
}
.psychological-support h2{
    padding-left: var(--distance-left-text);
    margin-bottom: var(--distance-header-and-other);
}
.psychological-support__info {
  display: flex;
  justify-content: space-between;
}
.psychological-support__images {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  width: 50%;
}
.psychological-support__image {
  border-radius: var(--rounding_corners);
  background-position: center;
  background-size: cover;
}
.psychological-support__image:nth-child(1) {
  grid-area: 1/1/3/1;
}
.psychological-support__image:nth-child(2) {
  grid-area: 1/2/1/2;
}
.psychological-support__image:nth-child(3) {
  grid-area: 2/2/2/2;
}
.psychological-support__texts {
  display: flex;
  flex-direction: column;
  width: 40%;
}
.psychological-support__more {
  display: none;
}
@media (min-width: 768px) and (max-width: 991px) {
  .psychological-support__info {
    flex-direction: column;
    gap: 30px;
  }
  .psychological-support__texts {
    width: 100%;
    order: 1;
  }
  .psychological-support__images {
    width: 100%;
    order: 2;
    height: 320px;
  }
}
@media (max-width: 767px) {
  .psychological-support__info {
    flex-direction: column;
    gap: 30px;
  }
  .psychological-support__texts{
    width: 100%;
    max-width: 700px;
    gap:0px;
  }
  .psychological-support__texts > *:nth-child(n + 2){
      visibility: hidden;
      transition: opacity 0.3s linear;
      opacity:0;
      max-height: 0;
  }
  .psychological-support__texts.active > *:nth-child(n + 2){
      opacity: 1;
      visibility: visible;
      max-height: 2000px;
  }
  .psychological-support__texts.active{
      gap:10px;
  }
  .psychological-support__more {
    order: 2;
    margin: 0 auto !important;
    display: block;
  }
  .psychological-support__images {
    width: 100%;
    order: 3;
    height: 200px;
  }
  .psychological-support__image:nth-child(1) {
    grid-area: 1/1/3/3;
    background-image: url("/assets/images/psychological-support/image-1.png");
  }
  .psychological-support__image:nth-child(n+2) {
    display: none;
  }
}

/*section waiting for you*/
.waiting-for-you {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.waiting-for-you__image {
  width: 50%;
}
.waiting-for-you__image img {
  border-radius: 30px;
  width: 100%;
}
.waiting-for-you__info {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.waiting-for-you__text {
  display: flex;
  flex-direction: column;
}
.waiting-for-you__links {
  display: flex;
  gap: 50px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .waiting-for-you {
    gap: 50px;
  }
}
@media (max-width: 767px) {
  .waiting-for-you {
    gap: 20px;
    flex-direction: column;
  }
  .waiting-for-you__info, .waiting-for-you__image {
    width: 100%;
    gap: 20px;
  }
  .waiting-for-you__links {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
}

/*section scholarship*/
.scholarship {
  padding: 64px calc(50% - 440px);
  display: flex;
  flex-direction: column;
  background-color: var(--mantis);
  border-radius: var(--rounding_corners);
  margin: var(--distance-blocks) 0;
}
.scholarship h2{
    margin-bottom: var(--distance-header-and-other);
}
.scholarship *{
  color: #fff;
}
.scholarship__text {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.scholarship__text a {
  margin:0 auto;
  color: #fff;
}
@media (min-width: 768px) and (max-width: 991px) {
  .scholarship {
    padding: 50px 52px;
  }
}
@media (max-width: 767px) {
  .scholarship {
    padding: 30px 24px;
  }
}

.scholarship h2, .university-admission h2{
    text-align: center;
}

/*scholarship-page*/
.scholarship-page{
    padding: var(--distance-blocks) var(--distance-fields);
    width:83%;
    box-sizing:border-box;
    margin: 0 auto;
}
@media (max-width: 991px) {
    .scholarship-page{
        width:100%;
    }
}

/*section mentoring*/
.mentoring {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.mentoring__info {
  width: 64%;
}
.mentoring__heading{
    display: flex;
    flex-direction: column;
}
.mentoring__heading h2{
    margin-bottom: var(--distance-header-and-other);
}
.mentoring__block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
  .mentoring__info{
    display: flex;
    flex-direction: column;
  }
  .mentoring__info > *:nth-child(n + 2){
      visibility: hidden;
      transition: opacity 0.3s linear;
      opacity:0;
      max-height: 0;
  }
  .mentoring__info.active > *:nth-child(n + 2){
      opacity: 1;
      visibility: visible;
      max-height: 2000px;
  }
.mentoring__info:not(.active) > *{
    margin-bottom: 0px;
}
@media (max-width: 767px) {
  .mentoring {
    flex-direction: column;
    gap: var(--distance-header-and-other);
  }
  .mentoring__info {
    width: 90%;
  }
}

/*section education programs*/
.education-programs {
  display: flex;
  flex-direction: column;
}
.education-programs h2 {
  padding-left: var(--distance-left-text);
  margin-bottom: var(--distance-header-and-other);
}
.education-programs__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content:center;
}
.education-programs__card {
  height: 500px;
  width: calc(50% - 10px);
  display: flex;
  border-radius: var(--rounding_corners);
  background-color: var(--white_smoke);
}
.education-programs__card.active .education-programs__info {
  padding: 36px;
  width: calc(100% - 10px);
}
.education-programs__card.active .education-programs__text {
  display: block;
  overflow-y: auto;
}
.education-programs__img.active {
  display: none;
}
@media (max-width: 767px) {
  .education-programs__card.active .education-programs__text {
    display: block;
    overflow: auto;
    margin-bottom: 15px;
  }
}
.education-programs__info {
  padding: 36px 12px 36px 36px;
  width: calc(50% - 48px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  transition: width 0.1s linear;
  gap:20px;
}
.education-programs__text {
  display: -webkit-box;
  line-clamp: 12;
  -webkit-line-clamp: 12;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: 380px;
}
.education-programs__button-more {
  color: var(--mantis);
}
.education-programs__img {
  width: 50%;
  overflow: hidden;
  text-align:end;
}
@media (max-width: 991px) {
  .education-programs__card {
    width: calc(100% - 10px);
    height: 280px;
  }
  .education-programs__text {
      line-clamp: 6;
      -webkit-line-clamp: 6;
  }
}
@media (max-width: 767px) {
  .education-programs__card {
      height:320px;
  }
  .education-programs__info {
    padding: 36px;
    width: calc(100% - 36px);
  }
  .education-programs__text {
      display: block;
      overflow-y: auto;
    }
  .education-programs__img, .education-programs__button-more {
    display: none;
  }
}

/*section vocational-guidance*/
.vocational-guidance {
  display: flex;
  flex-direction: column;
  gap: var(--distance-header-and-other);
}
.vocational-guidance__info {
  display: flex;
  flex-direction: column;
  padding: 0 var(--distance-left-text);
}
.vocational-guidance__cards {
  display: flex;
  gap: 20px;
}
.vocational-guidance__card {
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: var(--platinum);
  text-decoration: none;
  border-radius: var(--rounding_corners);
}
.vocational-guidance__card h3 {
  text-align: center;
}
@media (max-width: 1439px) {
  .vocational-guidance__cards {
    flex-wrap: wrap;
  }
  .vocational-guidance__card {
    width: calc(50% - 96px - 10px);
  }
}
@media (max-width: 767px) {
  .vocational-guidance__card {
    width: calc(100% - 96px);
  }
}

/*section university-admissio*/
.university-admission {
  padding-top: 64px !important;
  padding-bottom: 64px !important;
  display: flex;
  flex-direction: column;
  background-color: var(--mantis);
  border-radius: var(--rounding_corners);
  margin-top:var(--distance-blocks);
}
.university-admission h2{
    margin-bottom: var(--distance-header-and-other);
}
.university-admission *{
  color:#fff;
}
.university-admission a{
    color:white;
}
.university-admission__info {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) and (max-width: 991px) {
    .university-admission {
        padding: 64px 52px;
    }
}
@media (max-width: 767px) {
    .university-admission {
        padding: 64px 24px;
    }
}

/*section learning-format*/
.learning-format {
  display: flex;
  flex-direction: column;
}
.learning-format h2 {
  margin-left: var(--distance-left-text);
  margin-bottom: var(--distance-header-and-other);
}
.learning-format__cards {
  display: flex;
  gap: 20px;
}
.learning-format__card {
  padding: 40px 56px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 33.33%;
  background-color: var(--white_smoke);
  border-radius: var(--rounding_corners);
}
.learning-format__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.learning-format__info > div:not([class]) {
    display:block;
    padding: 10px 20px;
    background:#fff;
    color:var(--charcoal);
    border-radius: var(--rounding_corners);
    font-weight: 700;
    font-size: 16px;
    line-height: 130%;
}
@media (min-width: 768px) and (max-width: 991px) {
.learning-format__info span{
    font-size: 14px;
  }
}
@media (max-width: 767px) {
.learning-format__info span{
    font-size: 12px;
  }
}
.learning-format__texts, .certification-1__texts {
  padding:10px 20px;
  margin: 0 auto;
  text-align: center;
  background-color:white;
  border-radius: var(--rounding_corners);
}
.learning-format__image {
  width:100%;
  border-radius: 10px;
}
.learning-format__text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.learning-format__wrapper, .certification-1__wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
@media (max-width: 991px) {
  .learning-format__cards {
    flex-direction: column;
  }
  .learning-format__card {
    width: calc(100% - 112px);
  }
  .learning-format__texts {
    margin: 0 auto;
    max-width: 206px;
    text-align: center;
  }
  .learning-format__text h3 {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .learning-format__card {
    padding: 20px;
    width: calc(100% - 40px);
  }
}

/*section certification-1*/
.certification-1__container {
  padding: 86px 60px;
  background-color: var(--platinum);
  border-radius: var(--rounding_corners);
  display: flex;
  justify-content: space-between;
}
.certification-1__info {
  display: flex;
  flex-direction: column;
  gap: 27px;
  width: 50%;
}
.certification-1__wrapper {
  align-self:start;
}
@media (min-width: 768px) and (max-width: 991px) {
  .certification-1__container {
    padding: 40px 57px;
  }
  .certification-1__info {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .certification-1__container {
    padding: 30px;
    flex-direction: column;
    gap: 20px;
  }
  .certification-1__info {
    width: 100%;
  }
}

/*section waiting for you*/
.cta-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cta-section a {
  width: -moz-fit-content;
  width: fit-content;
}
.cta-section__image {
  width: 50%;
}
.cta-section__image img {
  width: 100%;
  border-radius: 30px;
}
.cta-section__info {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.cta-section__text {
  display: flex;
  flex-direction: column;
}
.cta-section__contacts {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cta-section__contacts a {
  color: var(--battleship_gray);
  text-decoration: none;
  transition: color 0.15s ease;
}
.cta-section__contacts a:hover {
  text-decoration: underline;
  color:var(--charcoal);;
}
.cta-section__social-icons {
  display: flex;
  gap: 12px;
  align-self: center;
}
.cta-section__social-icons a {
  display: flex;
  margin:0;
}
.cta-section__social-icons a svg {
  fill: var(--battleship_gray);
  transition: fill 0.15s ease;
}
.cta-section__social-icons a:hover svg {
  fill: var(--charcoal);
}
@media (min-width: 768px) and (max-width: 991px) {
  .cta-section {
    gap: 70px;
  }
}
@media (max-width: 767px) {
  .cta-section {
    flex-direction: column;
    gap: 20px;
  }
  .cta-section__image, .cta-section__info {
    width: 100%;
    gap: 10px;
  }
  .cta-section__text {
    gap: 10px;
  }
  .cta-section__contacts, .cta-section .button--fill {
    margin: 0 auto;
  }
  .cta-section .button--fill {
    margin-top: 10px;
  }
}

/*section location*/
.location__wrapper {
  display: flex;
  align-items: center;
}
.location {
  display: flex;
  gap:var(--distance-blocks) 0;
  flex-direction:column;
}
.location__info {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: var(--distance-header-and-other);
  margin-right:40px;
}
.location__info h2{
    margin:0;
}
.location__link-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-style: normal;
}
.location__link-item:nth-child(2){
    margin-left: 5px;
}
.location__link-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.location__link-item svg{
  fill:#B2B3B2;
}
.location__link-item a {
  text-decoration: none;
}
.location__link-item a:hover {
  text-decoration: underline;
}
.location__social-icons {
  display: flex;
  gap: 10px;
  align-self: center;
}
.location__social-icons a {
  display: flex;
}
.location__social-icons a svg {
  color: #000;
  opacity:0.3;
  fill: currentColor;
  transition: opacity .2s ease;
}
.location__social-icons a:hover svg {
  opacity:0.5;
}
.location__map {
  width: 50%;
  border-radius: var(--rounding_corners);
  overflow: hidden;
}
@media (max-width: 991px) {
  .location__wrapper {
    flex-direction: column;
  }
  .location__info, .location__map {
    width: 100%;
  }
  .location__link-list {
    gap: 10px;
  }
    .location__info{
        margin-right:0 ;
        margin-bottom:30px;
    }
}

/*section not-found 404*/
.not-found {
  height: 60vh;
  display: flex;
  justify-content: center;
  align-self: center;
}
.not-found__block {
  display: flex;
  gap: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 2;
  padding-top: 50px;
}
.not-found__block div:nth-child(1) {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
}
.not-found__block div:nth-child(1) h1 {
  color: var(--mantis);
  z-index: 3;
}
.not-found__block div.h5-b {
  display: flex;
  flex-direction: column;
}
.not-found__back-text {
  position: absolute;
  z-index: 1;
  bottom: -40px;
  color: var(--white_smoke);
  font-weight: 700;
  font-size: 200px;
  line-height: 100%;
}
@media (max-width: 767px) {
  .not-found__back-text {
    bottom: -20px;
    font-size: 120px;
  }
}

/*section team*/
.team {
  display: flex;
  flex-direction: column;
  position: relative;
}
.team-container
.team:nth-last-child(1) {
  padding-bottom: var(--distance-blocks);
}
.team h2 {
  padding-left: var(--distance-left-text);
  margin-bottom: var(--distance-header-and-other);
}
.team__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  overflow: hidden;
  max-height: 370px;
  transition-property: max-height;
  transition-timing-function: linear;
}
.team__cards.animation {
  transition-duration: 0.6s;
}
.team__card {
  display: flex;
  flex-direction: column;
  gap: 28px;
  cursor: pointer;
  width: calc(25% - 45px);
  flex: 0 1 calc(25% - 45px);
}
.team__card img{
    border-radius:50%;
    width: 100%;
}
.team__info {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.team-modal__texts {
  flex-direction: column;
  display: none;
}
.team--about-school .team__cards{
    max-height:none !important;
}
.team--about-school .button--fill{
    display:none !important;
}
@media(min-width:1440px){
  .team__text{
    max-height:500px;
    overflow-y:auto;
  }
}
.team-modal__texts .team-modal__info.info-modal__texts {
  display: flex;
}
.team button {
  margin: 40px auto 0 !important;
}
@media (min-width: 768px) and (max-width: 991px) {
  .team__card {
    width: calc(33.333% - 40px);
    flex: 0 1 calc(33.333% - 40px);
  }
}
@media (max-width: 767px) {
  .team__cards {
    gap: 30px;
  }
  .team__card {
    width: calc(50% - 15px);
    flex: 0 1 calc(50% - 15px);
  }
}

section.team:nth-last-child(2) {
  padding-bottom: var(--distance-blocks);
}

.team-modal {
  cursor: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  position: absolute;
  z-index: 101;
  overflow: hidden;
  border-radius: var(--rounding_corners);
}
.team-modal .team__card {
  width: 100%;
  flex: 0 1 100%;
}
.team-modal__container {
  padding: 65px 100px;
  background-color: #fff;
  display: flex;
  gap: 100px;
  position: relative;
  align-items: center;
  max-height:450px;
}
.modal__close {
  position: absolute;
  top: 40px;
  right: 30px;
  cursor: pointer;
}
.modal__close:hover {
  opacity: 0.8;
}
@media (max-width: 1440px) {
  .team-modal {
    height: 90vh;
    width: 80%;
  }
  .team-modal__container {
    padding: 60px;
    flex-direction: column;
    gap: 40px;
    overflow-y: scroll;
    width: calc(100% - 60px*2);
    height: calc(100% - 60px*2);
    max-height:none;
  }
  .team-modal .team__card {
    width: 60%;
  }
  .modal__close {
    top: 30px;
    right: 30px;
  }
}
@media (max-width: 767px) {
  .team-modal {
    width: 90%;
    height: 85vh;
  }
  .team-modal__container {
    padding: 30px;
    width: calc(100% - 60px);
    height: calc(100% - 60px);
  }
  .team-modal .team__card {
    width: 90%;
  }
  .modal__close {
    top: 20px;
    right: 20px;
  }
  .clubs-modal .modal__close, .form-modal .modal__close, .video-modal .modal__close{
    top: 15px !important;
    right: 5px !important;
    width: 26px;
    height: 26px;
  }
}

/*section regulation*/
.regulation {
  display: flex;
  gap: 20px;
}
.regulation__block {
  width: 66.6%;
  display: flex;
  gap: 18px;
  flex-wrap:wrap;
  margin: 0 auto;
}
.regulation__item {
  padding: 20px 30px;
  width:calc(50% - 9px);
  box-sizing:border-box;
  background-color: var(--white_smoke);
  border-radius: var(--rounding_corners);
  text-decoration: none;
  display: flex;
  align-items: center; 
}
@media (max-width: 991px) {
    .regulation__block {
        width: 66.6%;
    }
}
@media (max-width: 767px) {
  .regulation {
    flex-direction: column;
  }
  .regulation__item {
    width: 100%;
  }
}

/*section master-class*/
.master-class {
  display: flex;
  flex-direction: column;
}
.master-class .h2 {
  padding-left: var(--distance-left-text);
}
.master-class .slider-2 {
  position: relative;
  padding: 28px;
  border-radius: var(--rounding_corners);
}
.master-class .slider-2 button {
  cursor: pointer;
}
.master-class .slider-2__container {
  display: flex;
  width: calc(100% - 24px);
  gap: 20px;
  overflow: hidden;
  position: relative;
  padding: 12px;
}
.master-class .slider-2__card {
  border-radius: var(--rounding_corners);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  background-color: var(--platinum);
  height: 100%;
}
.master-class .slider-2__image {
  height: 200px;
  border-radius: var(--rounding_corners) var(--rounding_corners) 0 0;
  background-size: cover;
  background-repeat: no-repeat;
}
.master-class .slider-2__info {
  padding: 30px 40px;
  display: flex;
  gap: 15px;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.master-class .slider-2__arrow-left, .master-class .slider-2__arrow-right {
  position: absolute;
  top: 40%;
  background-color: transparent;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 100;
}
.master-class .slider-2__arrow-left:hover svg, .master-class .slider-2__arrow-right:hover svg {
  stroke: var(--yellow);
}
.master-class .slider-2__arrow-left {
  left: -46px;
}
.master-class .slider-2__arrow-right {
  right: -46px;
}
.master-class .slider-2 svg {
  stroke: var(--mantis);
  transition: stroke 0.1s ease;
}
@media (max-width: 991px) {
  .master-class .slider-2 {
    padding: 0;
  }
  .master-class .slider-2__info {
    padding: 20px;
    gap: 10px;
  }
  .master-class .slider-2__arrow-left, .master-class .slider-2__arrow-right {
    display: none;
  }
  .master-class .slider-2__image {
    height: 80px;
  }
  .container.master-class{
    margin-bottom:calc(var(--distance-blocks) + 20px);
  }
}
@media (max-width: 767px) {
  .master-class .slider-2 {
    padding: 0px;
  }
  .master-class .slider-2__card {
    width: 100%;
    height: 100%;
  }
  .master-class .slider-2__container {
    width: calc(100% - 24px);
  }
}
.master-class .slider-2__paginator {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
}
.master-class .slider-2 .paginator-dot {
  width: 5px;
  height: 5px;
  border-radius: 59%;
  background-color: #000;
  opacity: 0.3;
}
.master-class .slider-2 .paginator-dot.active {
  width: 7px;
  height: 7px;
  background-color: #000;
  opacity: 0.15;
}

/*section clubs-list*/
.clubs-list {
  display: flex;
  flex-direction: column;
  gap: var(--distance-header-and-other);
}
.clubs-list__head {
  padding-left: var(--distance-left-text);
  display: flex;
  gap: 60px;
  align-items: center;
}
.clubs-list__filters {
  display: flex;
  gap: 40px;
}
.clubs-list__filters select {
  padding: 20px 64px 20px 30px;
  border: 1px solid #000;
  border-radius: 36px;
  font-weight: bold;
  font-size: 16px;
  line-height: 120%;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  background-image: url("data:image/svg+xml;utf8,<svg width='21' height='14' viewBox='0 0 21 14' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M1 1L10.88 12L20 1' stroke='black' stroke-width='2' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat;
  background-position-x: calc(100% - 30px);
  background-position-y: 50%;
}
.clubs-list__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0;
}
.clubs-list__item {
  display: flex;
  flex-direction: column;
  width: calc(25% - 15px);
  border-radius: var(--rounding_corners);
  background-color: var(--white_smoke);
  overflow: hidden;
  cursor: pointer;
}
.clubs-list__item img{
    width:100%;
}
.clubs-list__info {
  padding: 30px;
  display: flex;
  flex-direction: column;
}
.clubs-list__modal-info {
  display: none;
}
@media (max-width:1439px){
  .clubs-list__item {
    width: calc(33.333% - 13.33px);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .clubs-list__filters select {
    padding: 14px 47px 14px 20px;
    background-image: url("data:image/svg+xml;utf8,<svg width='14' height='11' viewBox='0 0 14 11' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M1 1.5L7.24 8.5L13 1.5' stroke='black' stroke-width='2' stroke-linecap='round'/></svg>");
    background-position-x: calc(100% - 20px);
  }
}
@media (max-width: 767px) {
  .clubs-list__head {
    flex-direction: column;
    gap: 15px;
  }
  .clubs-list__filters {
    flex-wrap: wrap;
    gap: 20px;
  }
  .clubs-list__filters select {
    width: -moz-fit-content;
    width: fit-content;
    padding: 9px 47px 9px 20px;
    background-image: url("data:image/svg+xml;utf8,<svg width='14' height='11' viewBox='0 0 14 11' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M1 1.5L7.24 8.5L13 1.5' stroke='black' stroke-width='2' stroke-linecap='round'/></svg>");
    background-position-x: calc(100% - 20px);
  }
  .clubs-list__list {
    gap: 8px;
  }
  .clubs-list__item {
    width: 100%;
  }
}

/*block clubs-modal*/
.clubs-modal {
  cursor: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  position: absolute;
  z-index: 101;
  height: 95vh;
  display: flex;
  overflow: hidden;
  border-radius: var(--rounding_corners);
}
.clubs-modal__container {
  overflow-y: scroll;
  padding: 100px 120px;
  width: calc(100% - 240px);
  height: calc(100% - 200px);
  display: flex;
  flex-direction: column;
  gap: 80px;
  background-color: #fff;
}
.clubs-modal__image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 200px;
  border-radius: var(--rounding_corners);
}
.clubs-modal__info {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.clubs-modal h3, .clubs-modal h2 {
  text-align: center;
}
.clubs-modal__block {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.clubs-modal__block--header {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.clubs-modal__block ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.clubs-modal__texts {
  display: flex;
  gap: 50px;
}
.clubs-modal__text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.clubs-modal__text:nth-child(1) {
  text-align: center;
  width: 25%;
  max-width: 200px;
}
.clubs-modal__text:nth-child(2) {
  width: 75%;
}
.clubs-modal__cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.clubs-modal__card {
  padding: 20px;
  background-color: var(--white_smoke);
  border-radius: var(--rounding_corners);
  display: flex;
  align-items: center;
  width: 80%;
  gap: 30px;
}
.clubs-modal__card h5{
    width:20%;
}
.clubs-modal__schedules{
    width:80%;
    display:flex;
    flex-direction:column;
    gap:10px;
}
.clubs-modal__schedule{
    display:flex;
    gap:7px;
    justify-content:space-between;
}
.clubs-modal__schedule p{
    flex: 1 0;
}
.clubs-modal__schedule p:nth-child(1){
    text-align:left;
}
.clubs-modal__schedule p:nth-child(2){
    text-align:center;
}
.clubs-modal__schedule p:nth-child(3){
    text-align:right;
}
.clubs-modal__social {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-self: center;
  align-items: center;
}
.clubs-modal__social a.button--fill {
  margin: 0 auto;
}
.clubs-modal__contacts {
  display: flex;
  gap: 20px;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
}
.clubs-modal__contacts a {
  color: var(--battleship_gray);
  text-decoration: none;
  transition: color 0.15s ease;
}
.clubs-modal__contacts a:hover {
  color: var(--charcoal);
  text-decoration: underline;
}
.clubs-modal__social-icons {
  display: flex;
  gap: 20px;
  align-self: center;
}
.clubs-modal__social-icons a {
  display: flex;
}
.clubs-modal__social-icons a svg {
  color: #c2c2c2;
  fill: currentColor;
}
@media (min-width: 992px) and (max-width: 1440px) {
  .clubs-modal__card {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .clubs-modal__card h5 {
      width:100%;
  }
  .clubs-modal__schedules{
      width:100%;
  }
  .clubs-modal__container {
    overflow-y: scroll;
    padding: 60px;
    width: calc(100% - 120px);
    height: calc(100% - 120px);
    gap: 40px;
  }
  .clubs-modal__info {
    gap: 30px;
  }
  .clubs-modal__texts {
    gap: 30px;
  }
  .clubs-modal__text {
    width: 50% !important;
    max-width: none !important;
  }
  .clubs-modal__card {
    width: calc(100% - 40px);
    flex-direction: column;
    align-items: start;
    gap: 10px;
  }
}
@media (max-width: 767px) {
  .clubs-modal__card h5 {
      width:100%;
  }
  .clubs-modal {
    width: 95%;
    height:85vh;
  }
  .clubs-modal__container {
    overflow-y: scroll;
    padding: 30px;
    width: calc(100% - 60px);
    height: calc(100% - 60px);
    gap: 20px;
  }
  .clubs-modal__info {
    gap: 20px;
  }
  .clubs-modal__texts {
    flex-direction: column;
    gap: 20px;
  }
  .clubs-modal__text {
    width: 100% !important;
    max-width: none !important;
  }
  .clubs-modal__card {
    gap: 10px;
    width: calc(100% - 40px);
    flex-direction: column;
    align-items: start;
  }
  .clubs-modal__schedules {
    gap: 10px;
    width:100%;
  }
  .clubs-modal__schedule {
    padding: 15px 10px;
    width: calc(100% - 20px);
    flex-direction: column;
    background-color: #fff;
    border-radius: var(--rounding_corners);
    gap: 5px;
  }
  .clubs-modal__schedule p{
    text-align:left !important;
    }
  .clubs-modal__social {
    align-items: center;
  }
  .clubs-modal__contacts {
    flex-direction: column;
  }
}

/*section current-camps*/
.current-camps {
  display: flex;
  flex-direction: column;
}
.current-camps h2 {
  padding-left: var(--distance-left-text);
  margin-bottom: var(--distance-header-and-other);
}
.current-camps__cards {
  display: flex;
  flex-wrap:wrap;
  margin:0 -10px;
  flex-shrink: 0;
}
.current-camps__cards--travels .current-camps__item{
    width:33.333%;
    flex:0 0 33.333%;
}
.current-camps__cards--school-camps .current-camps__item{
    width:50%;
    flex:0 0 50%;
}
.current-camps__item {
  max-width:50%;
  padding:0 10px;
  box-sizing:border-box;
  padding:0 10px;
  margin-bottom:20px;
}
.current-camps__item:nth-last-child(-n+3){
    margin:0;
}
.current-camps__card { 
  height: 100%;
  box-sizing: border-box;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 150px;
  justify-content: space-between;
  flex-grow: 1;
  border-radius: var(--rounding_corners);
  background-position: center;
  background-size: cover;
}
.current-camps__card .button--fill{
    text-shadow: none;
}

.current-camps__info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 185px;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: var(--rounding_corners);
  -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.3);
  box-shadow: var(--popup-shadow);
}
@media (min-width: 768px) and (max-width: 991px) {
  .current-camps__cards {
    flex-wrap: wrap;
  }
  .current-camps__card {
    padding: 30px;
  }
  .current-camps__cards--travels .current-camps__item{
    width:50% !important;
    flex:0 0 50% !important;
  }
}
@media (max-width: 767px) {
  .current-camps__cards {
    flex-wrap: wrap;
  }
  .current-camps__card {
    padding: 20px;
  }
  .current-camps__item {
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width:100% !important;
    padding: 10px;
  }
}

/*section what-awaits-us*/
.what-awaits-us {
  display: flex;
  flex-direction: column;
}
.what-awaits-us .swiper-pagination, .master-class .swiper-pagination{
    bottom: -30px;   
}
.what-awaits-us h2 {
    margin-bottom: var(--distance-header-and-other);
    padding-left: var(--distance-left-text);
}
.what-awaits-us .slider-3 {
  position: relative;
  padding: 28px;
  border-radius: var(--rounding_corners);
}
.what-awaits-us .slider-3__container {
  display: flex;
  width: calc(100% - 24px);
  gap: 20px;
  overflow: hidden;
  padding: 12px;
}
.what-awaits-us .slider-3__card {
  border-radius: var(--rounding_corners);
  padding: 20px;
  height: 270px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  align-items: center;
}
.what-awaits-us .slider-3__card:nth-child(4n+1) {
  background-image: url("/assets/images/what-awaits-us/image-1.png");
}
.what-awaits-us .slider-3__card:nth-child(4n+2) {
  background-image: url("/assets/images/what-awaits-us/image-2.png");
}
.what-awaits-us .slider-3__card:nth-child(4n+3) {
  background-image: url("/assets/images/what-awaits-us/image-3.png");
}
.what-awaits-us .slider-3__card:nth-child(4n+4) {
  background-image: url("/assets/images/what-awaits-us/image-4.png");
}
.what-awaits-us .slider-3__block {
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.85);
  text-align: center;
  border-radius: var(--rounding_corners);
  width: fit-content;
}
.what-awaits-us .slider-3__arrow-left, .what-awaits-us .slider-3__arrow-right {
  position: absolute;
  top: 40%;
  background-color: transparent;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 100;
}
.what-awaits-us .slider-3__arrow-left:hover svg, .what-awaits-us .slider-3__arrow-right:hover svg {
  stroke: var(--yellow);
}
.what-awaits-us .slider-3__arrow-left {
  left: -46px;
}
.what-awaits-us .slider-3__arrow-right {
  right: -46px;
}
.what-awaits-us .slider-3 svg {
  stroke: var(--mantis);
  transition: stroke 0.1s ease;
}
@media (max-width: 991px) {
  .what-awaits-us .slider-3 {
    padding: 0;
  }
  .what-awaits-us .slider-3__card {
    height: 250px;
  }
  .what-awaits-us .slider-3__arrow-left, .what-awaits-us .slider-3__arrow-right {
    display: none;
  }
}
@media (max-width: 991px) {
  .container.what-awaits-us{
    margin-bottom:calc(var(--distance-blocks) + 20px);
  }
}
.what-awaits-us .slider-3__paginator {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
}
.what-awaits-us .slider-3 .paginator-dot {
  width: 5px;
  height: 5px;
  border-radius: 59%;
  background-color: #000;
  opacity: 0.3;
}
.what-awaits-us .slider-3 .paginator-dot.active {
  width: 7px;
  height: 7px;
  background-color: #000;
  opacity: 0.15;
}

/*security*/
.security {
  margin-bottom: 50px;
}

/*license*/
.license__container {
  padding: 42px 105px;
  background-color: var(--mantis);
  border-radius: var(--rounding_corners);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.license__container *{
    color:#fff;
}
.license__info {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.license__info p.h5 {
  width: 90%;
}
.license__links {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.license__links a {
  padding: 10px 20px;
  background-color: #fff;
  border-radius: 36px;
  color: var(--mantis);
  text-decoration: none;
  transition: background-color 0.1s ease;
  width: -moz-fit-content;
  width: fit-content;
}
.license__links a:hover {
  background-color: var(--white_smoke);
}
@media (max-width: 991px) {
  .license__container {
    padding: 42px;
    align-items: start;
  }
  .license__info {
    width: 60%;
  }
  .license__info p.h5 {
    width: 100%;
  }
  .license__links {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .license__container {
    padding: 24px;
    flex-direction: column;
    gap: 20px;
  }
  .license__info {
    width: 100%;
  }
}

/*section faq*/
.faq {
  padding: 40px var(--distance-fields);
  margin: var(--distance-blocks) 0;
  background: var(--white_smoke);
  border-radius: var(--rounding_corners);
  display: flex;
  flex-direction: column;
  gap: var(--distance-header-and-other);
}
.faq__accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq__item {
  padding: 25px 32px;
  border: solid 1px var(--mantis);
  border-radius: var(--rounding_corners);
  background-color: #fff;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (min-width: 768px) and (max-width: 991px) {
  .faq__item {
    padding: 30px 50px;
  }
}
@media (max-width: 767px) {
  .faq__item {
    padding: 30px 20px;
  }
}
.faq__trigger {
  display: flex;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
}
.faq [data-accordion-item]:has(button[aria-expanded=true]) {
  box-shadow: var(--popup-shadow);
}
.faq [data-accordion-item]:hover {
  box-shadow: var(--popup-shadow);
}
@media (min-width: 768px) and (max-width: 991px) {
  .faq [data-accordion-item]:has(button[aria-expanded=true]) {
    padding: 20px 50px;
  }
}
@media (max-width: 767px) {
  .faq [data-accordion-item]:has(button[aria-expanded=true]) {
    padding: 20px 20px;
  }
}
.faq [data-accordion-item]:has(button[aria-expanded=true]) .faq__info--hidding {
  grid-template-rows: 1fr;
  opacity: 1;
  padding-top: 20px;
}
.faq [data-accordion-item]:has(button[aria-expanded=true]) .faq__icon {
  transform: rotate(180deg);
}
.faq__info--hidding {
  width: 95%;
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  overflow: hidden;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq__info {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq__info a {
  color: var(--mantis);
  text-decoration: none;
}
.faq__info a:hover {
  text-decoration: underline;
}
.faq__icon {
  transition: transform 0.3s ease;
}
@media (max-width: 991px) {
  .faq__icon {
    bottom: 20px;
  }
}
@media (max-width: 767px) {
  .faq__icon {
    right: 20px;
  }
}

/*text-section*/
.text-section {
  display: flex;
  flex-direction: column;
}
.text-section h2 {
  padding-left: var(--distance-left-text);
}
.text-section__block {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 0 var(--distance-left-text);
}
.text-section__block *{
  /* font-weight: 400; */
  /* font-size: 20px; */
  line-height: 130%;
}

@media (max-width: 767px) {
  .text-section__block {
    margin: auto;
    gap: 8px;
  }
  .text-section__block *{
    font-size: 16px;
    line-height: 130%;
  }
}

/*travel-locations*/
.travel-locations {
  display: flex;
  flex-direction: column;
}
.travel-locations h2 {
  padding-left: var(--distance-left-text);
  margin-bottom: var(--distance-header-and-other);
}
.travel-locations__map {
  border-radius: var(--rounding_corners);
  height: 559px;
  width: 100%;
  background-image: url("/assets/images/travel-locations/map.png");
  background-size: cover;
  background-repeat: no-repeat;
}
.travel-locations .slider-4 {
  display: flex;
  gap: 30px;
  align-items: flex-end;
  position: relative;
}
.travel-locations .swiper {
    margin:0;
}
.travel-locations .slider-4__container {
  display: flex;
  width: calc(100% - 24px);
  gap: 20px;
  overflow: hidden;
  padding: 12px;
}
.travel-locations .slider-4__card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
  justify-content: space-between;
  height: 100%;
}
.travel-locations .slider-4__card > img{
    width:100%;
}
@media (max-width: 767px) {
  .travel-locations .slider-4__card {
    flex-shrink: 0;
  }
}
.travel-locations .slider-4__paginator {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
}
.travel-locations .slider-4 .paginator-dot {
  width: 5px;
  height: 5px;
  border-radius: 59%;
  background-color: #000;
  opacity: 0.3;
}
.travel-locations .slider-4 .paginator-dot.active {
  width: 7px;
  height: 7px;
  background-color: #000;
  opacity: 0.15;
}
.travel-locations__country {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

/*section footer*/
.footer__top {
  padding: 40px var(--distance-fields);
  background-color: var(--charcoal);
  display: flex;
  gap:80px;
  justify-content: center;
  align-items: center;
}
.footer__top *{
    color: #fff;
}
.footer__top svg {
  color: var(--platinum);
  fill: currentColor;
  transition: opacity .2s ease;
}
.footer__top a {
  color: #fff;
  display: flex;
  text-decoration: none;
}
.footer__email:hover, .footer__phone:hover {
  opacity: 0.8;
  text-decoration: underline;
}
.footer__top svg:hover {
  opacity: 0.8;
  text-decoration: none;
}
.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.footer *{
    margin-bottom:0;
}
.footer__contacts > div > * {
    margin-bottom:5px;
}
.footer__contacts > div > *:last-child {
    margin-bottom:0;
}
.footer__social-icons-1 {
  display: flex;
}
.footer__geolocation {
  display: flex;
  gap: 16px;
  align-items: center;
}
.footer__social-networks {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__social-icons-2 {
  display: flex;
  gap: 30px;
}
.footer__bottom {
  text-align:center;
  padding: 20px var(--distance-fields);
  display: flex;
  justify-content: center;
  gap: 60px;
  background-color: var(--white_smoke);
  color: #000;
}
.footer__privacy-policy a {
  text-decoration: none;
}
.footer__privacy-policy a:hover {
  text-decoration: underline;
}
@media (min-width: 992px) and (max-width: 1440px) {
  .footer__blocks:nth-child(1) .footer__block {
    flex-direction: column;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer__top {
    justify-content: space-between;
  }
  .footer__contacts{
      gap:20px;
  }
}
@media (max-width: 767px) {
  .footer__top {
    flex-direction: column;
    gap: 24px;
  }
  .footer__top div {
    align-items: center;
  }
  .footer__social-icons-2 {
    gap: 10px;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
    .footer__contacts{
      gap:20px;
  }
}

.privacy-policy {
  padding: 36px calc(50% - 624px);
}
.privacy-policy div > *{
    margin-bottom:10px;
}
.privacy-policy :last-child{
    margin-bottom:0;
}
@media (min-width: 768px) and (max-width: 991px) {
  .privacy-policy {
    padding: 30px 52px;
  }
}
@media (max-width: 767px) {
  .privacy-policy {
    padding: 30px 24px;
  }
}



/*section dotted-map*/
.dotted-map {
    display: flex;
    flex-direction: column;
    gap: var(--distance-header-and-other);
}
.dotted-map > h2, .dotted-map > p {
    padding-left: var(--distance-left-text);
    margin-bottom:0;
}
.dotted-map__list {
    padding: 20px 40px;
    display: flex;
    gap: 68px;
    position: relative;
    margin-top:20px;
}

.dotted-map__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 20%;
    text-align: center;
    z-index: 2;
}

.dotted-map__number {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background-color: var(--mantis);
    box-shadow: var(--popup-shadow);
    color:#fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.dotted-map__number p{
    color:#fff;
}
.dotted-map__texts{
    display:flex;
    flex-direction:column;
    gap:4px;
}
.dotted-map__texts *{
    margin-bottom:0;
}
.dotted-map__picture{
    position: absolute;
    z-index: 1;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    width: calc(100% - 40px*2 - 30px*2);
}
.dotted-map__picture{
    display: flex;
    justify-content: center;
}
.dotted-map--introduction .dotted-map__item:nth-child(2n+1) .dotted-map__number{
    order:2;
}
.dotted-map--history-of-creation .dotted-map__item:nth-child(2n+2) .dotted-map__number{
    order:2;
}
.dotted-map--history-of-creation .dotted-map__list{
    padding:0;
    gap:50px;
    width: 100%;
}
.dotted-map--history-of-creation .dotted-map__item {
    max-width:188px;
    width:100%;
}
.dotted-map--history-of-creation .dotted-map__number{
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 160px;
    height: 160px;
    border:3px solid var(--mantis);
}
@media (max-width: 1439px){
    .dotted-map__list {
        padding: 0;
        justify-content: center;
        align-self: center;
        flex-wrap: wrap;
        max-width: 664px;
    }
    .dotted-map__item{
        align-self: center;
    }
    .dotted-map__item:nth-child(2){
        order: 1;
    }
    .dotted-map__item:nth-child(3){
        order: 2;
    }
    .dotted-map__item:nth-child(4){
        order: 3;
    }
    .dotted-map__item:nth-child(5){
        order: 6;
    }
    .dotted-map__item:nth-child(6){
        order: 5;
    }
    .dotted-map__item:nth-child(7){
        order: 4;
    }
    .dotted-map__item .h5 {
        font-size: 14px;
        line-height: 120%;
    }
    
    .dotted-map--history-of-creation .dotted-map__item:nth-child(2) > .dotted-map__number, .dotted-map--history-of-creation .dotted-map__item:nth-child(4) > .dotted-map__number{
        order:1;
    }
    .dotted-map--history-of-creation .dotted-map__item:nth-child(2) > .dotted-map__texts, .dotted-map--history-of-creation .dotted-map__item:nth-child(4) > .dotted-map__texts{
        order:2;
    }
    .dotted-map--history-of-creation .dotted-map__item:nth-child(3) > .dotted-map__number{
        order:2;
    }
    .dotted-map--history-of-creation .dotted-map__item:nth-child(3) > .dotted-map__texts{
        order:1;
    }
    .dotted-map--history-of-creation .dotted-map__number{
        width:132px;
        height:132px;
    }
}
@media(max-width:991px){
    .dotted-map__list{
        margin-top:0;
    }
}
@media(max-width:767px){
    .dotted-map__list {
        flex-direction: column;
        max-width: 272px;
        gap: 0;
    }
    .dotted-map--history-of-creation .dotted-map__list{
        gap:40px;
    }
    .dotted-map__item{
        align-self: self-start;
        width: 50%;
    }
    .dotted-map__item:nth-child(2){
        order: 1;
    }
    .dotted-map__item:nth-child(3){
        order: 2;
    }
    .dotted-map__item:nth-child(4){
        order: 3;
    }
    .dotted-map__item:nth-child(5){
        order: 4;
    }
    .dotted-map__item:nth-child(6){
        order: 5;
    }
    .dotted-map__item:nth-child(7){
        order: 6;
    }
    .dotted-map__item:nth-child(2n+1){
        margin-left: auto;
    }
    .dotted-map__item:nth-child(2n+1) .dotted-map__texts{
        order: 1;
    }
    .dotted-map__picture{
        top:46%;
    }
    .dotted-map--history-of-creation .dotted-map__item:nth-child(3) > .dotted-map__number, .dotted-map--history-of-creation .dotted-map__item:nth-child(6) > .dotted-map__texts{
        order:1;
    }
    .dotted-map--history-of-creation .dotted-map__item:nth-child(3) > .dotted-map__texts, .dotted-map--history-of-creation .dotted-map__item:nth-child(6) > .dotted-map__texts{
        order:2;
    }
    .dotted-map--history-of-creation .dotted-map__picture{
        width:80%;
    }
    .dotted-map--history-of-creation .dotted-map__picture > img{
        width: 95%;
    }
}


/*section format-and-capabilities*/
.format-and-capabilities {
    display: flex;
    gap: 64px;
}
.format-and-capabilities *{
    margin-bottom:0;
}
.format-and-capabilities h2 {
    padding-left: var(--distance-left-text);
  }
.format-and-capabilities__block {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.format-and-capabilities__block:nth-child(1) {
    width: 45%;
    gap: 60px;
}
.format-and-capabilities__block:nth-child(2){
    padding: 50px;
    background-color: var(--mantis);
    border-radius: var(--rounding_corners);
    text-align: center;
    gap: 30px;
}
.format-and-capabilities__block:nth-child(2) h3{
    color: #fff;
}
.format-and-capabilities__format {
    padding: 40px 73px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: center;
    background-color: var(--platinum);
    border-radius: var(--rounding_corners);
}
.format-and-capabilities__wrapper, .cost-training__wrapper{
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    justify-content: center;
}
.format-and-capabilities__text, .cost-training__texts {
    padding: 20px 12px;
    text-align: center;
    background-color: white;
    color:var(--charcoal);
    border-radius: var(--rounding_corners);
}
@media (max-width: 991px){
    .format-and-capabilities {
        padding:var(--distance-blocks) 0 0;
        flex-direction: column;
        gap: 20px;
    }
    .format-and-capabilities__block:nth-child(1) {
        width: 100%;
    }
    .format-and-capabilities__format{
        gap:30px;
    }
    .format-and-capabilities__format .format-and-capabilities__wrapper{
        flex-direction:row;
    }
    .format-and-capabilities__format .format-and-capabilities__wrapper .format-and-capabilities__texts{
        width:40%;
    }
    .format-and-capabilities__block > .format-and-capabilities__wrapper{
        gap:8px;
    }
}
@media (max-width:768px){
    .format-and-capabilities {
        padding:var(--distance-blocks) 0 0;
    }
    .format-and-capabilities__format{
        padding:40px;
    }
    .format-and-capabilities__format .format-and-capabilities__wrapper{
        flex-direction:column;
    }
    .format-and-capabilities__format .format-and-capabilities__wrapper .format-and-capabilities__texts{
        width:calc(100% - 40px);
    }
    .format-and-capabilities__block:nth-child(1){
        padding: 0 24px;
        gap:30px;
        width:calc(100% - 24px*2);
    }
    .format-and-capabilities__block:nth-child(2) {
        padding:24px;
    }
}


/*section cost training*/
.cost-training .cost-training__wrapper{
    gap: 8px;
}
.cost-training {
    display: flex;
    flex-direction: column;
}
.cost-training h2 {
    padding-left: var(--distance-left-text);
    margin-bottom: var(--distance-header-and-other);
}
.cost-training__cards {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}
.cost-training__card {
    margin-bottom:20px;
    padding: 0px 10px;
    width: 25%;
    box-sizing:border-box;
}
.cost-training__info{
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 30px;
    height:100%;
    box-sizing:border-box;
    background-color: var(--platinum);
    border-radius: var(--rounding_corners);
}
.cost-training__info h3{
    margin:0;
}
.cost-training__cards > :last-child {
    width: 100% !important;
    margin:0;
}
.cost-training__cards > :last-child .cost-training__info{
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.cost-training__texts:empty{
    display:none;
}
@media (min-width: 768px) and (max-width: 1440px){ 
    .cost-training__card:nth-child(2n+1), .cost-training__card:nth-child(2n+2){
        width: 50%;
    }
    .cost-training__cards > :last-child {
        justify-content:start;
    }
}
@media (max-width: 767px){
    .cost-training__cards{
        gap:16px;
    }
    .cost-training__cards > :last-child {
        align-items:start;
        text-align:left;
        flex-wrap:nowrap;
        flex-direction:column;
    }
    .cost-training__cards > :last-child .cost-training__info{
        justify-content:center
    }
    .cost-training__cards > :last-child > a{
        text-align:center;   
    }
    .cost-training__card{
        gap:20px;
        width: 100% !important;
    }
}


/*scholarships-and-discounts*/
.discounts{
    display: flex;
    flex-direction: column;
}
.discounts h2{
    padding-left: var(--distance-left-text);
    margin-bottom: var(--distance-header-and-other);
}

.discounts__cards {
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    margin: 0 100px;
    gap: 60px;
}

.discounts__card {
    width: 30%;
    filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.4));
}
.discounts__card img{
    width: 100%;
}
@media (max-width: 1439px){
    .discounts__cards{
        gap: 40px;
    }
}
@media (max-width: 991px){
    .discounts__cards {
        gap: 20px;
        margin: 0 0;
    }
}
@media (max-width: 767px){
    .discounts__cards {
        flex-direction: column;
        align-items: center;
    }
    .discounts__card{
        width: 80%;
    }
}

.scholarships {
    padding: 64px calc(50% - (826px/2));
    display: flex;
    flex-direction: column;
    gap: var(--distance-header-and-other);
    background-color: var(--mantis);
    border-radius: var(--rounding_corners);
    color: white;
}
.scholarships a{
    margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 991px) {
    .scholarships {
        padding: 40px 52px;
    }
}
@media (max-width: 767px) {
    .scholarships {
        padding: 40px 24px;
    }
}


/* section certification-2 */
.certification-2 {
    margin: var(--distance-blocks) var(--distance-fields);
    padding: 60px 106px;
    background-color: var(--mantis);
    border-radius: var(--rounding_corners);
    display: flex;
    gap: 56px;
}
.certification-2 p, .certification-2 h2, .certification-2 li, .certification-2__info strong{
    color:#fff;
}
.certification-2__heading {
    width: 40%;
    display: flex;
    flex-direction: column;
}
.certification-2__heading h2{
    margin-bottom: var(--distance-header-and-other);
}
.certification-2__container{
    width:100%;
    display: flex;
    flex-direction: column;
    gap: 27px;
}
.certification-2__info > p, .certification-2__info > p{
    margin-bottom: 10px;
    
}
.certification-2__info > :last-child{
    margin-bottom: 0;
}

.certification-2__wrapper{
    display: flex;
}
.certification-2__texts {
    padding: 20px;
    background-color: white;
    border-radius: var(--rounding_corners);
    display: flex;
    align-self: flex-start;
    height: 100%;
    box-sizing: border-box;
}
.certification-2__texts p{
    color:var(--charcoal);
}
.certification-2--HMT{
    margin-top: var(--distance-blocks);
}
.certification-2--HMT .certification-2__wrapper{
    flex-direction: column;
    gap: 12px;
}
.certification-2--IELTS .certification-2__wrapper{
    gap: 20px;
}
.certification-2--IELTS .certification-2__texts{
    width: 50%;
    flex-direction: column;
}
.certification-2--IELTS .certification-2__texts > p:first-child{
    text-align: center;
}
@media (max-width: 1439px) {
    .certification-2{
        padding: 40px 57px;
        flex-direction: column;
    }
    .certification-2__heading {
        flex-direction: column;
        width: 100%;
    }
    .certification-2__heading img{
        width: 50%;
        margin: 0 auto;
    }
}
@media (max-width: 767px) {
    .certification-2{
        padding: 40px 52px;
    }
    .certification-2--IELTS .certification-2__wrapper{
        flex-direction: column;
    }
    .certification-2--IELTS .certification-2__texts{
        width: calc(100% - 20px*2);
    }
}


/* section founders */
.founders {
    display:flex;
    flex-direction:column;
    gap:80px;
}
.founders__container{
    display: flex;
    gap: 80px;
    width: 83%;
    margin: 0 auto;
    position: relative;
}
.founders__block{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.founders__block h2{
    margin:0;
}
.founders__block:nth-child(1) {
    width: 36%;
    position: relative;
}
.founders__block:nth-child(1) img {
    border-radius: 50%;
    width: 100%;
}
.founders__block:nth-child(2) {
    width: 64%;
    gap: 30px;
}
.founders__wrapper {
    width: 300%;
    max-width: 85px;
    position: absolute;
    top:75%;
    left:70%;
    z-index: 10;
}
.founders__quote {
    width:100%;
    min-height: 41px;
    border-radius: var(--rounding_corners);
    background-color: #fff;
    box-shadow: var(--popup-shadow);
    align-content: center;
    box-sizing: content-box;
    position: relative;
    cursor: pointer;
}
.founders__elipses{
    justify-content: center;
    display: flex;
    gap: 7px;
}
.founders__elipse{
    background-color: var(--mantis);
    width: 7px;
    height: 7px;
    border-radius: 50%;
    z-index: 2;
}
.founders__elipses svg{
    position: absolute;
    top: -35px;
    z-index: 1;
    left: 50%;
    transform: translateX(-50%);
    fill: var(--white_smoke);
    pointer-events: none;
}
.founders__texts {
    display: flex;
    flex-direction: column;
}
.quote__container{
    height: 100%;
    overflow: hidden;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.quote__close{
    position: absolute;
    top: 36px;
    right: 40px;
}
.quote__container svg{
    display: none;
}
.quote__container svg:nth-child(3){
    align-self: end;
}

.quote__text{
    overflow: hidden;
    max-height: 0px;
    visibility: hidden;
    transition: opacity 0.15s linear;
    opacity:0;
}
.quote__text > *{
    margin-bottom:10px;
}
.quote__text > :last-child{
    margin-bottom:0;
}
.quote__text > *{
    display: flex;
}
.quote__close{
    display: none;
    cursor: pointer;
}

.quote__svg{
    position: absolute;
    left: calc(-50px + 30%);
    top: -100px;
    fill: var(--white_smoke);
}

.founders__wrapper.active{
    max-width: 60vw;
    left:40%;
}
.founders__wrapper.active .founders__quote{
    cursor:auto;
}
.founders__wrapper.active .founders__elipses svg{
    left: 17%;
}
.founders__wrapper.active .founders__elipse{
    display: none;
}
.founders__wrapper.active .quote__container svg{
    display: block;
}
.founders__wrapper.active .quote__container{
    padding:40px;
}
.founders__wrapper.active .quote__text{
    max-height: 1000px;
    opacity: 1;
    visibility: visible;
}
.founders__wrapper.active .quote__close{
    display: block;
}
@media (max-width:1200px){
    .founders__container{
        width: 100%;
        gap: 40px;
    }
    .founders__wrapper.active{
        max-width: calc(80vw - 40px * 2);
    }
}
@media (max-width:991px){
    .founders{
        gap:60px;
    }
    .founders__wrapper {
        top:65%;
        left:65%;
    }
}
@media (max-width: 767px) {
    .founders{
        gap:30px;
    }
    .founders__container{
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    .founders__block{
        gap: 20px;
    }
    .founders__block:nth-child(1) {
        width: 75%;
    }
    .founders__block:nth-child(2) {
        width: 100%;
    }
    .founders__wrapper {
        top:75%;
        left: 80%;
    }
    .quote__close{
        position: absolute;
        top: 21px;
        right: 24px;
    }
    .founders__wrapper.active{
        left:-10%; 
        max-width: calc(95vw - 24px *2);
    }
    .founders__wrapper.active .founders__elipses svg {
        left: 80%;
    }    
    .founders__wrapper.active .quote__container{
        padding: 24px;
    }
}


/* section history-of-creation */
.history-of-creation {
    padding: var(--distance-blocks) var(--distance-fields) 0;
    display: flex;
    gap: var(--distance-header-and-other);
    flex-direction: column;
}
.history-of-creation h2{
    padding-left: var(--distance-left-text);
}
.history-of-creation__wrapper{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.history-of-creation__container {
    display: flex;
    gap: 50px;
    position: relative;
}
.history-of-creation__container img{
    width: calc(100% - 3px*2);
    z-index: 2;
    border: solid 3px var(--mantis);
    border-radius: 50%;
}

.history-of-creation__line {
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: var(--mantis);
    z-index: 1;
    top:50%;
    transform:translateY(-50%);
}

.history-of-creation__block {
    display: flex;
    width: 20%;
    text-align: center;
}


/* video-about-school */
.video-about-school p{
    margin: 0 auto;
    width: 83%;
    border-radius: var(--rounding_corners);
}


/* section location */
.school-locations {
    display: flex;
    flex-direction: column;
    gap: 80px;
}
.school-locations__container {
    display: flex;
    justify-content: space-between;
}

.school-locations__gallery {
    width: 40%;
}
.school-locations__container:nth-child(1) .school-locations__images{
    grid-template-rows: repeat(3, 1fr);
    grid-template-columns: 1fr repeat(2, 0.5fr) 1fr;
}
.school-locations__container:nth-child(2) .school-locations__images{
    grid-template-rows: repeat(2, 1fr);
    grid-template-columns: 1fr repeat(2, 0.5fr) 1fr;
}
.school-locations__container:nth-child(3) .school-locations__images{
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
}
.school-locations__images{
    display: grid;
    gap: 10px;
    height: 100%;
    width: 100%;
}
.school-locations__container:nth-child(1) .school-locations__images div:nth-child(1) { grid-area: 1 / 1 / 2 / 5; }
.school-locations__container:nth-child(1) .school-locations__images div:nth-child(2) { grid-area: 2 / 1 / 3 / 3; }
.school-locations__container:nth-child(1) .school-locations__images div:nth-child(3) { grid-area: 2 / 3 / 3 / 5; }
.school-locations__container:nth-child(1) .school-locations__images div:nth-child(4) { grid-area: 3 / 1 / 4 / 2; }
.school-locations__container:nth-child(1) .school-locations__images div:nth-child(5) { grid-area: 3 / 2 / 4 / 5; }

.school-locations__container:nth-child(2) .school-locations__images div:nth-child(1) { grid-area: 1 / 1 / 2 / 5; }
.school-locations__container:nth-child(2) .school-locations__images div:nth-child(2) { grid-area: 2 / 1 / 3 / 3; }
.school-locations__container:nth-child(2) .school-locations__images div:nth-child(3) { grid-area: 2 / 3 / 3 / 5; }

.school-locations__container:nth-child(3) .school-locations__images div:nth-child(1) { grid-area: 1 / 1 / 2 / 4; }
.school-locations__container:nth-child(3) .school-locations__images div:nth-child(2) { grid-area: 2 / 1 / 3 / 2; }
.school-locations__container:nth-child(3) .school-locations__images div:nth-child(3) { grid-area: 2 / 2 / 3 / 3; }
.school-locations__container:nth-child(3) .school-locations__images div:nth-child(4) { grid-area: 2 / 3 / 3 / 4; }

.school-locations__images div {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(/assets/images/school-locations/image.png);
    border-radius: var(--rounding_corners);
}

.school-locations__info {
    width: 50%;
    display: flex;
    flex-direction: column;
}
.school-locations__info > :first-child{
    margin-bottom: 30px;
}
.school-locations__container:nth-child(3) .school-locations__info{
    padding: 55px 0;
}
.school-locations__texts {
    display: flex;
    flex-direction: column;
}
@media (max-width: 991px) {
    .school-locations__container{
        flex-direction: column;
        gap: 40px;
    }
    .school-locations__gallery, .school-locations__info{
        width: 100%;
    }
    .school-locations__container:nth-child(1) .school-locations__gallery, .school-locations__container:nth-child(3) .school-locations__gallery{
        order: 2;
    }
    .school-locations__container:nth-child(3) .school-locations__info{
        padding: 0;
    }
    .school-locations__container:nth-child(1) .school-locations__images{
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(4, 175px);
    }
    .school-locations__container:nth-child(2) .school-locations__images{
        grid-template-columns: 1fr repeat(2, 0.5fr) 1fr;
        grid-template-rows: repeat(2, 175px);
    }
    .school-locations__container:nth-child(3) .school-locations__images{
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 175px);
    }
        
    .school-locations__container:nth-child(1) .school-locations__images div:nth-child(1) { grid-area: 1 / 1 / 3 / 6; }
    .school-locations__container:nth-child(1) .school-locations__images div:nth-child(2) { grid-area: 3 / 1 / 4 / 3; }
    .school-locations__container:nth-child(1) .school-locations__images div:nth-child(3) { grid-area: 3 / 3 / 4 / 5; }
    .school-locations__container:nth-child(1) .school-locations__images div:nth-child(4) { grid-area: 4 / 1 / 5 / 2; }
    .school-locations__container:nth-child(1) .school-locations__images div:nth-child(5) { grid-area: 4 / 2 / 5 / 5; }

    .school-locations__container:nth-child(3) .school-locations__images div:nth-child(1) { grid-area: 1 / 1 / 2 / 4; }
    .school-locations__container:nth-child(3) .school-locations__images div:nth-child(2) { grid-area: 2 / 1 / 3 / 2; }
    .school-locations__container:nth-child(3) .school-locations__images div:nth-child(3) { grid-area: 2 / 2 / 3 / 3; }
    .school-locations__container:nth-child(3) .school-locations__images div:nth-child(4) { grid-area: 2 / 3 / 3 / 4; }
}
@media (max-width: 767px) {
    .school-locations{
        gap: 30px;
    }
    .school-locations__container:nth-child(3) .school-locations__images{
        grid-template-columns: 1fr repeat(2, 0.5fr) 1fr;
        grid-template-rows: repeat(2, 175px);
    }
    .school-locations__container:nth-child(3) .school-locations__images div:nth-child(1) { grid-area: 1 / 1 / 2 / 5; }
    .school-locations__container:nth-child(3) .school-locations__images div:nth-child(2) { grid-area: 2 / 1 / 3 / 3; }
    .school-locations__container:nth-child(3) .school-locations__images div:nth-child(3) { grid-area: 2 / 3 / 3 / 5; }
    .school-locations__container:nth-child(3) .school-locations__images div:nth-child(4) { display: none;}

}


/* vacancy */
.vacancy {
    display: flex;
    flex-direction: column;
}
.vacancy__cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vacancy__card {
    width: 83%;
    background-color: var(--white_smoke);
    border-radius: var(--rounding_corners);
    display: flex;
    flex-direction: column;
    gap: 40px;
    overflow: hidden;
    margin: 0 auto;
}

.vacancy__image {
    position: absolute;
    width: 470px;
    height: 470px;
    border-radius: 50%;
    box-shadow: var(--popup-shadow);
    right: 100%;
    top: 0;
    transform: translateY(-25%);
    transition: transform 0.4s ease;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.vacancy__info {
    padding: 50px 70px;
    width: 55%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-left: auto;
    position: relative;
}

.vacancy__block {
    overflow: hidden;
    transition: max-height 1s ease, margin 1s ease;
    max-height: 0px;
    height: 100%;
    margin: 0;
}
.vacancy__content{
    display: flex;
    flex-direction: column;
    gap: 40px;
}


.vacancy__text {
}
.vacancy__text p{
    margin-bottom: 10px;
}
.vacancy__text :last-child{
    margin-bottom: 0;
}
.vacancy__text-cards {
    display: flex;
    gap: 30px;
}

.vacancy__text-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 50%;
}

.vacancy__wrapper {
    padding: 20px;
    background-color: white;
    border-radius: var(--rounding_corners);
    color: #000;
}

.vacancy__card.active .vacancy__image {
    transform: translateY(40px);
}
.vacancy__card.active .vacancy__block{
    max-height: 2000px;
    margin: 20px 0;
}
@media(max-width:1200px){
    .vacancy__image {
        width: 320px;
        height: 320px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .vacancy__info{
        padding: 50px 20px;
        gap: 10px;
    }
    .vacancy__content{
        gap: 30px;
    }
    .vacancy__text-cards{
        flex-direction: column;
        gap: 30px;
    }
    .vacancy__text-card{
        width: 100%;
    }
    
    .vacancy__card.active .vacancy__block{
        margin: 10px 0;
    }
}
@media (max-width: 767px) {
    .vacancy__card{
        width: 100%;
    }
    .vacancy__image {
        width: 187px;
        height: 187px;
        left: 50%;
        top: 0;
        transform: translate(-50%, -92%) !important;
        right: auto;
    }
    .vacancy__info{
        padding: 24px 20px;
        gap: 10px;
        width: calc(100% - 20px*2);
        margin-top: 100px;
    }
    .vacancy__content{
        gap: 20px;
    }
    .vacancy__text-cards{
        flex-direction: column;
        gap: 30px;
    }
    .vacancy__text-card{
        width: 100%;
    }
    .vacancy__more{
        margin: 0 auto;
    }
    .vacancy__card.active .vacancy__block{
        max-height: 2000px;
        margin: 10px 0;
    }
}


.form-modal{
    cursor: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    z-index: 101;
    overflow: hidden;
    border-radius: var(--rounding_corners);
    width: 40%;
    height: 95vh;
    max-width: 707px;
}

.form-modal form{
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px;
    padding-right:60px;
    width:100%;
    height:100%;
    box-sizing: border-box;
    background-color: white;
    border-radius: var(--rounding_corners);
    overflow-y: scroll;
}
.form-modal form h3{
    margin:0;
    color:var(--mantis);
    text-align:center;
}
.form-modal form h3:empty{
    display:none;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}
.form-group input{
    height:40px;
}
.form-group textarea{
    resize:vertical;
}
input[type="text"], input[type="tel"], textarea {
    width: 100%;
    padding: 10px;
    border: 2px solid var(--platinum);
    border-radius: var(--rounding_corners);
    box-sizing: border-box;
    outline: 0;
}
input[type="text"]:focus, input[type="tel"]:focus, textarea:focus{
    border: 2px solid var(--mantis);
}

textarea {
    height: 100px;
    max-width: 100%;
}
.stars {
    display: flex;
    flex-direction: row-reverse;
    width: fit-content;
    gap: 5px;
}
.stars input {
    display: none;
}
.stars label {
    color: #ccc;
    cursor: pointer;
    transition: color .1s ease;
    font-size: 36px;
    line-height: 36px;
    width: 32px;
}
.stars input:checked ~ label{
    color:var(--mantis)
}
.stars label:hover,
.stars label:hover ~ label {
    color: var(--yellow) !important;
}

.checkbox-group {
    display: flex;
    align-items: start;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    user-select: none;
}

.checkbox-container input {
    display: none;
}

.custom-checkbox {
    max-width: 22px;
    width: 100%;
    height: 22px;
    border: 1px solid var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .1s ease;
}

.custom-checkbox::after {
    content: "";
    width: 14px;
    height: 14px;
    background-color: var(--mantis);
    display: none;
    transition: all .1s ease;
}

.checkbox-container input:checked + .custom-checkbox::after {
    display: block;
}
.checkbox-container input:checked + .custom-checkbox{
    border: 1px solid var(--mantis);
}

.error input {
    border-color: red;
}
.error .custom-checkbox {
    border-color: red;
}

.error-message {
    color: red;
    font-size: 14px;
    display: none;
    text-align: right;
    position: absolute;
    bottom: -26px;
    right: 0;
}
.form-modal form .button--fill{
    margin: 0 auto !important;
}
input[type="text"]:focus + .error-message,
input[type="tel"]:focus + .error-message{
    display: none !important;
}
input[type="text"]:valid + .error-message,
input[type="tel"]:valid + .error-message{
    display: none !important;
}
input[type="text"]:valid,
input[type="tel"]:valid{
    border-color: var(--platinum) !important;
}
@media(max-width:1439px){
    .form-modal{
        width: 55%;
    }
}
@media(max-width:991px){
    .form-modal{
        width: 70%;
    }
    .form-modal .modal__close{
        right: 0px;
        top: 20px;
    }
}
@media(max-width:767px){
    .form-modal{
        width: 90%;
        height:85vh;
    }
    .form-modal form{
        padding: 36px;
    }
    .error-message{
        bottom: -18px;
    }
    .form-group:has(.error-message) {
        margin-bottom:4px;
    }
}
@media(max-width:400px){
    .error-message{
        font-size:calc(14px * 0.7);
    }
}


.embed-responsive{
    position:relative;
    display:block;
    width:100%;
    padding:0;
    overflow:hidden
}
.embed-responsive::before{
    content:'';
    display:block;
    padding-top:56.25%
}
.embed-responsive img,.embed-responsive iframe,.embed-responsive video{
    position:absolute;
    top:0;
    bottom:0;
    left:0;
    width:100%;
    height:100%;
    border:0
}
.embed-responsive--21-9::before{
    padding-top:42.85714%
}
.embed-responsive--4-3::before{
    padding-top:75%
}
.embed-responsive--3-2::before{
    padding-top:66.66667%
}
.embed-responsive--1-1::before{
    padding-top:100%
}




.interactive__cards-accordion-list {
    background: var(--mantis);
    padding: 40px var(--distance-fields);
    border-radius: var(--rounding_corners);
    display: flex;
    flex-direction: column;
    margin: var(--distance-blocks) 0;
}
.interactive__cards-accordion-list h2{
    padding-left: var(--distance-left-text);
    margin-bottom: var(--distance-header-and-other);
}
.interactive__cards-accordion-list *{
    color:#fff;
}
.interactive__cards2 {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.interactive__card2 {
    width: calc(25% - 6px);
    cursor: pointer;
    display: flex;
}
.interactive__card2:nth-child(n+5){
    width: calc(20% - 6.5px);
}
@media (min-width: 768px) and (max-width: 1440px) {
    /* interactive__cards--4-5 */
    .interactive__card2 {
        width: calc(33.333% - 5.4px) !important;
    }
}
@media (max-width: 768px) {
    /* interactive__cards--4-5 */
    .interactive__card2 {
        width: 100% !important;
    }
}
.interactive__card2 *{
    color:var(--charcoal);
}
.interactive__card2 svg{
    display: none;
}
.interactive__card2.active .interactive__card2-face--back{
    display: block;
}
.interactive__card2.active .interactive__card2-face--front{
    display: none;
}
.interactive__card2.hidden {
    display: none;
}
.interactive__card2:nth-child(-n+4).active{
    width: 100% !important;
}
.interactive__card2:nth-child(n+5).active{
    width: 100% !important;
}

.interactive__card2-face {
    border-radius: var(--rounding_corners);
    pointer-events: none;
    display: flex;
    width: 100%;
    flex-direction: column;
}
.interactive__card2-face h3{
    margin: 0;
    font-size:18px;
}
.interactive__card2-face--front {
    padding: 40px;
    background-color: #fff;
    text-align: center;
    justify-content: center;
}

.interactive__card2-face--back {
    padding: 36px 20px;
    background-color: var(--yellow);
    display: none;
    box-shadow: var(--popup-shadow);
}
@media (max-width: 1440px) {
    .interactive__card2-face--front {
        padding: 30px;
    }
    .interactive__card2-face--back {
        padding: 26px 20px;
    }
}
@media (max-width: 768px) {
    .interactive__card2.hidden {
        display: flex;
    }
    .interactive__card2 svg{
        display: block;
        stroke: var(--mantis);
        width: 26px;
        height: 26px;
        margin: 8px auto 0;
    }
}

.stars-review {
    --percent: calc(var(--rating) / 5 * 100%);
    display: inline-block;
    font-size: 34px;
    line-height: 1;
}
.stars-review::before {
    content: '★★★★★';
    background: -webkit-gradient(linear, left top, right top, from(var(--yellow)), to(var(--battleship_gray)));
    background: linear-gradient(90deg, var(--yellow) var(--percent), var(--battleship_gray) var(--percent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.visually-hidden {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}

.container{
    padding: 0 var(--distance-fields);
    margin: var(--distance-blocks) 0;
}
.review-rating__wrapper {
    padding: 40px;
    background-color: var(--mantis);
    text-align: center;
    border-radius: var(--rounding_corners);
}
.review-rating__wrapper > *{
    margin-bottom: 20px;
}
.review-rating__wrapper > :last-child{
    margin: 0;
}
.review-rating__average{
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}
.review-rating__average > p{
    margin-left: 20px;
}
.review-rating__wrapper h2, .review-rating__wrapper h3, .review-rating__wrapper p{
    color:#fff;
}

@media (max-width: 991px) {
    .review-rating__wrapper{
        padding: 20px;
    }
    .review-rating__wrapper > *{
        margin-bottom: 12px;
    }
}

.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.col-1-2{
    list-style: none;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.review-cards__card{
    padding: 40px;
    border-radius: var(--rounding_corners);
    background-color: #fff;
    box-shadow: var(--popup-shadow);
    height: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.review-card__top{
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;

    margin-bottom: 20px;
}

.review-card__bottom{
    max-height:350px;
    overflow-y:auto;
}
.review-card__avatar{
    -webkit-box-flex: 0;
    -ms-flex: 0 0;
    flex: 0 0;
    -ms-flex-preferred-size: 70px;
    flex-basis: 70px;
    margin: 0 10px 0 0;
    width: 70px;
    border-radius: 50%;
}
.review-card__name-rating{
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
}
.review-card__name-rating h3{
    margin-bottom: 10px;
}
.review-card__video{
    width: 100%;
    max-width:270px;
    background-color: #f3f3f3;
    border-radius: var(--rounding_corners);
    margin: 0 auto;
    cursor: pointer;
    position:relative;
    overflow: hidden;

    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}
@media(max-width:991px){
    .review-card__video{
        max-width:330px;
    }
}
@media(max-width:767px){
    .review-card__video{
        max-width:320px;
    }
}
.review-card__video:empty{
    display: none;
}
.review-card__video.has-content:hover svg{
    transform: scale(1.08);
}
.review-card__video.has-content svg{
    width: 38px;
    height: 38px;
    transition: all 0.1s ease;
    z-index: 3;
}

.numbered-pagination {
    margin-top: 80px;
}
.numbered-pagination__wrapper{
    
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.numbered-pagination__list{
    position: relative;
}
.numbered-pagination__list ul{
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;

    margin: 0 -8px;
    list-style: none;
}

.numbered-pagination__list .page_link, .numbered-pagination__list .ellipse, .page_link span {
    margin: 0 8px !important;
    width: 44px;
    height: 44px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50%;
    list-style: none;
    cursor: pointer;

    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}
.page_link a{
    text-decoration:none;
    margin:0 !important;
}
.numbered-pagination .page-item span{
    transition: all 0.1s ease;
}
.numbered-pagination--white .page_link span{
    color:var(--charcoal);
}
.numbered-pagination--green .page_link span{
    color:#fff;
}

.numbered-pagination--white .page_link.here{
    border: 3px solid var(--mantis);
    background-color: #fff;
}
.numbered-pagination--green .page_link.here{
    border: 3px solid #fff;
    background-color: #fff;
}
.numbered-pagination--white .page_link.here span{
    color:var(--mantis);
}
.numbered-pagination--green .page_link.here span{
    color:#fff;
}
.numbered-pagination--white .page_link:hover span{
    color:var(--mantis);
}
.numbered-pagination--green .page_link:hover span{
    color:var(--mantis);
}

.numbered-pagination .previous_link svg,
.numbered-pagination .next_link svg {
    fill: none;
    transition: color .15s ease;
}
.numbered-pagination--white .previous_link svg,
.numbered-pagination--white .next_link svg {
    color:var(--charcoal);
}
.numbered-pagination--green .previous_link svg,
.numbered-pagination--green .next_link svg {
    color:#fff;
}
.numbered-pagination--white .previous_link:hover svg,
.numbered-pagination--white .next_link:hover svg {
    color:var(--mantis);
}
.numbered-pagination--green .previous_link:hover svg,
.numbered-pagination--green .next_link:hover svg {
    color:#fff;
}
.numbered-pagination--white .previous_link.disabled:hover svg,
.numbered-pagination--white .next_link.disabled:hover svg {
    color:var(--charcoal);
    cursor:auto;
}
.numbered-pagination--green .previous_link.disabled:hover svg,
.numbered-pagination--green .next_link.disabled:hover svg {
    color:#fff;
    cursor:auto;
}
.page_link.here a{
    cursor:auto;
}

.previous_link,
.next_link{
    margin:auto 0 !important;
}
.previous_link{
    margin-right:8px !important;
}
.next_link{
    margin-left:8px !important;
}
.previous_link a,
.next_link a{
    display:block;
    height:36px;
}

.previous_link svg{
    transform: rotate(90deg);
}
.next_link svg{
    transform: rotate(-90deg);
}
@media(max-width:991px){
    .col-1-2{
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .review-cards__card{
        padding: 30px;
    }
    .review-card__top{
        margin-bottom:12px;
    }
    .numbered-pagination {
        margin-top: 60px;
    }
}
@media(max-width:767px){
    .numbered-pagination {
        margin-top: 30px;
    }
    .review-card__top {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
    }
    .review-card__avatar, .review-card__name-rating{
        margin-bottom:12px;
    }
    .review-card__video{
        margin:0 auto;
    }
    .review-card__name-rating{
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
    }

}
.video-modal {
  cursor: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 540px;
  position: absolute;
  z-index: 101;
  height: 95vh;
  display: flex;
  overflow: hidden;
  border-radius: var(--rounding_corners);
}
.video-modal__container {
  overflow-y: none;
  padding: 70px 90px;
  width:100%;
  height:100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 80px;
  background-color: #fff;
}
@media (max-width: 767px) {
  .video-modal {
    width: 90%;
    height: 85vh;
  }
  .video-modal__container {
    padding: 30px;
  }
}
@media (max-width: 460px) {
    .video-modal {
        height: 60vh;
     }
}
.location-info__wrapper{
    border-radius: var(--rounding_corners);
    overflow:hidden;
    height:400px;
    
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}
.location-info__block{
    width:50%;
}
.location-info__block--left{
    position:relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.location-info__text{
    padding:20px;
    background-color:#fff;
    border-radius: var(--rounding_corners);
    position:absolute;
    top:40px;
    left:40px;
    width:50%;
}
.location-info__text *{
    margin-bottom:10px;
}
.location-info__text :last-child{
    margin-bottom:0;
}
.location-info__image{
    position:relative;
}
.location-info__image picture{
    position:absolute;
    overflow:hidden;
    width:100%;
}
.location-info__image{
    width:100%;
}
@media(max-width:991px){
    .location-info__wrapper{
        height:360px;
    }
    .location-info__block{
        width:100%;
    }
}
@media(max-width:767px){
    .location-info__wrapper{
        height:auto;
        
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
    }
    .location-info__block{
        height:270px;
        width:100%;
    }
    .location-info__text{
        top:20px;
        left:20px;
        width:calc(70% - 40px);
        box-sizing: border-box;
    }
}
@media(max-width:450px){
    .location-info__text{
        width:calc(100% - 40px);
    }
}

.cost-of-travel__wrapper{
    border-radius: var(--rounding_corners);
    padding: 40px 106px;
    background-color: var(--white_smoke);
    
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}
.cost-of-travel__block{
    width:50%;
}
.cost-of-travel__block--left{
    margin-right:20px;
    
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.cost-of-travel__block--right :first-child{
    margin-bottom:20px;
}
.cost-of-travel__block--right ul {
  list-style: square url("/assets/images/recruiting/check-mark.svg") inside;
  padding: 0;
  margin:0;
}
.cost-of-travel__block--right li{
    margin-bottom:15px;
}
.cost-of-travel__block--right li:last-child{
    margin-bottom:0;
}
@media(max-width:991px){
    .cost-of-travel__wrapper{
        padding:40px 56px;
    }
}
@media(max-width:767px){
    .cost-of-travel__block{
        width:100%;
    }
    .cost-of-travel__block--left{
        margin-right:0;
        margin-bottom:20px;
    }
    .cost-of-travel__wrapper{
        padding:30px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column;
    }
}




.news-cards__card{
    border-radius: 10px;
    background-color: var(--white_smoke);
    height: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    overflow:hidden;
    position:relative;
}
.news-cards__top img{
    width:100%;
}
.news-cards__bottom{
    padding:20px;
    text-align:center;
}
.news-cards__bottom :first-child{
    margin-bottom:8px;
}
.col-1-2-3-4{
    list-style: none;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 40px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.col-1-2-3-4:nth-last-child(-n+4){
    margin-bottom:0;
}
.swiper-wrapper .col-1-2-3-4{
    margin-bottom:0 !important;
}
.swiper-slide .col-1-2-3-4{
    height: 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 0px;
    padding-right: 0px;
    margin-bottom: 0px;
}
@media(max-width:991px){
    .col-1-2-3-4{
        -ms-flex: 0 0 33.333%;
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }
}
@media(max-width:767px){
    .col-1-2-3-4{
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}
.news-cards__link::after {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.news-cards__link{
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 0px;
    width: 0px;
    margin: -1px;
    padding: 0;
    border: 0;
    display: block;
}
.swiper-news{
    margin:0;
}
.slider--green{
    background-color:var(--mantis);
    padding-top:40px;
    padding-bottom:40px;
    border-radius: var(--rounding_corners);
}
.slider--green .swiper-button-next,
.slider--green .swiper-button-prev{
    color:#fff;
}
.slider--green h2{
    color:#fff;
}
.slider--green .swiper-pagination-bullet-active {
    background: #fff;
    width:7px;
    height:7px;
}

.slider--white .swiper-button-next,
.slider--white .swiper-button-prev{
    color:var(--mantis);
}
.slider--white h2{
    color:var(--charcoal);
}

.slider--gray{
    background-color:var(--platinum);
    padding-top:40px;
    padding-bottom:40px;
    border-radius: var(--rounding_corners);
}
.slider--gray .swiper-button-next,
.slider--gray .swiper-button-prev{
    color:var(--mantis);
}
.slider--gray h2{
    color:var(--charcoal);
}
.slider--green > h2,
.slider--gray > h2,
.slider--white > h2{
    margin-bottom:var(--distance-header-and-other);
    padding-left: var(--distance-left-text);
}


.news-page__wrapper{
    padding:0 106px;
    
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}
.news-heading__block{
    width:50%;
}
.news-heading__block--left{
    margin-right:40px;
}
.news-heading__block--left picture,.news-heading__block--left img{
    width:100%;
    border-radius: var(--rounding_corners);
}
.news-heading__block--right, .news-article__wrapper{
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
}
.news-article__wrapper img{
    border-radius: var(--rounding_corners);
}
@media(max-width:991px){
    .news-page__wrapper{
        padding:0 57px;
    }
}
@media(max-width:767px){
    .news-page__wrapper{
        padding:0;
    }
    .news-heading__wrapper{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        flex-direction: column; 
    }
    .news-heading__block{
        width:100%;
    }
    .news-heading__block--left{
        margin-right:0px;
        margin-bottom:20px;
    }
    .news-article__wrapper img{
        width:100%;
    }
}