/* =================================== */
/* =================================== */
/* =================================== */
/* Danylo Oliinyk - https://iamdev.lol/ */
/* =====Januar 2026 For Statoplan =====*/
/* =================================== */
/* =================================== */
/* =================================== */
/* 01. Header Section */
/* 02. Hero Section */
/* 03. Stratoplan Section */
/* 04. Problem Section */
/* 05. About Section */
/* 06. Choice Section */
/* 07. Change Section */
/* 08. Schedule Section */
/* 09. Team Section */
/* 10. Feedback Section */
/* 11. Warry Section */
/* 12. FAQ Section */
/* 13. Register Section */
/* 14. Footer Section */
/* 15. THX Section */
/* 16. Pop-up Section */
/* 17. Contact Section */
/* 18. Openday Section */
/* 19. Blob Section */
/* =================================== */
/* =================================== */
/* =================================== */







/* 01. Header Section Start */
.hero{
    position: relative;
}

.header__wrap{
    display: flex;
    padding: 20px 0px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}

/* .header__wrap-col1, .header__wrap-col2{
    flex: 1;
} */

.header__wrap-col2{
  display: flex;

  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}

.header__wrap-col1-ul {
    gap: 50px;
    display: flex;
    width: auto;
    justify-content: space-between;
    align-items: center;
}

.header__link{
    color: #0D0D0D;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    cursor: pointer;
    text-decoration: none;
}

header {
    position: fixed;   /* закрепляет элемент */
    top: 0;            /* привязка к верхней границе окна */
    left: 0;
    width: 100%;       /* растягиваем на всю ширину окна */
    z-index: 1000;     /* поверх всех остальных элементов */
    background-color: #ffffff00; /* чтобы не было прозрачности, если хедер перекрывает контент */
    /* box-shadow: 0 2px 5px rgba(0,0,0,0.1); */ /* легкая тень для отделения от контента */
    padding-top: 20px;
}

body {
    padding-top: 80px; /* высота вашего хедера */
}

.btn{
    display: flex;
    padding: 15px 20px;
    justify-content: center;
    align-items: center;

    border-radius: 10.91px;
    background: #FFF;
    box-shadow: 0 10px 16px -10px rgba(255, 255, 255, 0.06) inset, 0 8px 8px 0 rgba(0, 7, 31, 0.06), 0 4px 4px 0 rgba(0, 7, 31, 0.06), 0 2px 2px 0 rgba(0, 7, 31, 0.06), 0 0 1px 0 rgba(0, 7, 31, 0.32), 0 -2px 1px 0 rgba(0, 7, 31, 0.24) inset, 0 1px 1px 0 rgba(205, 231, 250, 0.08) inset;
    
    color: #001F3D;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; /* 160% */
}

.btn:hover{
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
.btn:active{
  transform: scale(0.98);
}
@media (prefers-reduced-motion: reduce){
  .btn{ transition: none; }
}

.acc-btn{
    background: #111827 !important;
    color: #E5F3FF !important;
    text-decoration: none !important;
}

/* Иконка бургера */
.burger-icon {
    display: none; 
    flex-direction: column;
    justify-content: space-between;
    height: 20px;
    width: 30px;
    cursor: pointer;
}

.burger-line {
    background-color: #000;
    height: 4px;
    width: 100%;
    border-radius: 2px;
}

@media (max-width: 1024px) {
    .burger-icon {
        display: flex; 
    }

    .header__wrap-col1-ul {
        display: none; 
        flex-direction: column;
        gap: 16px;
        width: 95%;
        background-color: white;
        position: absolute;
        top: 60px;
        left: 0;
        padding: 16px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    }

    .header__link {
        font-size: 18px;
        text-align: center;
    }

    .header__wrap-col1-ul.active {
        display: flex; 
    }
}

.header__link {
    position: relative;
    text-decoration: none; 
    color: #0D0D0D;
    transition: color 0.3s ease;
}

.header__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px; /* отступ линии от текста */
    width: 0;
    height: 2px; /* толщина линии */
    background-color: #3A6EDD; /* цвет подчеркивания */
    transition: width 0.3s ease;
}

.header__link:hover::after {
    width: 100%; /* при наведении линия растягивается */
}

.header__wrap {
    display: flex;
    padding: 12px 24px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    border-radius: 16px;
    background: #f9f9fb40;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.278);
    pointer-events: auto;
}
/* 01. Header Section End */

/* 02. Hero Section Start */
.plaschka-1 {
    z-index: -1;
    width: 1220px;
    height: 40px;
    background: #FED;
    position: absolute;
    top: 140px;
    left: 0;
}

.rolling-1 {
    position: absolute;
    width: 300px;
    height: 300px;
    right: -160px;
    top: -250px;
    z-index: -1;
    aspect-ratio: 1 / 1;
    background: url(../img/land/pic2.avif) center / contain no-repeat;
    transform-origin: 50% 50%;
    animation: rollingSpin 18s linear infinite;
    will-change: transform;
}

.rolling-5 {
    position: absolute;
    width: 300px;
    height: 300px;
    right: -160px;
    top: -250px;
    z-index: -1;
    aspect-ratio: 1 / 1;
    background: url(../img/land/pic2.avif) center / contain no-repeat;
    transform-origin: 50% 50%;
    animation: rollingSpin 18s linear infinite;
    will-change: transform;
}


@keyframes rollingSpin{
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.hero__wrap{
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.hero__text-wrap{
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  align-self: stretch;
}

.promo-text{
  width: max-content;
  display: flex;
  padding: 5px 15px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
  border: 1px solid #000;
  color: var(--dark-blue, #001F3D);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 165%; /* 19.8px */
  letter-spacing: 5px;
  text-transform: uppercase;
}

h2{
  color: var(--dark-blue, #001F3D);
  text-align: center;
  font-family: var(--font-accent);
  font-size: 58px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 66px */
  text-transform: uppercase;
}

.hero__cards-wrap{
  display: flex;
  align-items: center;
  gap: 25px;
}

.hero__card{
  display: flex;
  padding: 30px;
  align-items: center;
  gap: 20px;
  border-radius: 20px;
  flex: 1 0 0;
}

.hero__card-text{
  color: var(--dark-blue, #001F3D);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 165%; /* 29.7px */
}

.hero__btn-group{
  display: flex;
  justify-content: center;
}

.hero__img{
  border-radius: 40px;
  background: url(../img/land/pic1.avif) lightgray 50% / cover no-repeat;
  height: 438px;
}

.hero{
  padding-top: 180px;
  padding-bottom: 75px;
}

/* tablets (<= 1024px) */
@media (max-width: 1024px) {
  .hero__cards-wrap{
    flex-direction: column;
  }
  h2{
    font-size: 44px;
  }
  .hero__card{
    align-self: stretch;
  }
  .hero{
    padding-top: 75px;
  }
  .container {
    width: calc(100% - 64px);
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
  }
  .plaschka-1{
    width: 100%;
    top: 110px;
  }
}

/* mobile (<= 768px) */
@media (max-width: 768px) {
  .hero__card{
    align-self: stretch;
  }
  .hero{
    padding-top: 15px;
  }
  h2{
    font-size: 30px;
  }
  .promo-text{
    font-size: 11px;
  }
  .plaschka-1{
    width: 100%;
    top: 90px;
  }
  .hero__cards-wrap{
    gap: 10px;
  }
  .rolling-1{
    display: none;
  }
}
/* 02. Hero Section End */

/* 03. Stratoplan Section Start */
.stratoplan{
  padding-top: 75px;
  padding-bottom: 75px;
}

.stratoplan__wrap{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 50px;
}

.stratoplan__text-wrap{
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.stratoplan__title{
  color: var(--dark-blue, #001F3D);
  font-family: var(--font-accent);
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 55px */
  text-transform: uppercase;
}

.stratoplan__cards-wrap{
  display: flex;
  height: 250px;
  align-items: center;
  gap: 25px;
  align-self: stretch;
  aspect-ratio: 223/50;
}

.stratoplan__card{
  display: flex;
  flex: 1 0 0;
  height: 190px;
  padding: 30px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: var(--white, #FFF);
}

.stratoplan__card-text{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 5px;
  align-self: stretch;
}

.stratoplan__card-title{
  color: var(--dark-blue, #001F3D);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 145%; /* 29px */
}

.stratoplan__card-subtitle{
  color: var(--dark-blue, #001F3D);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 165%; /* 24.75px */
}

.plaschka-2 {
    z-index: -1;
    width: 700px;
    height: 40px;
    background: #D5DDFD;
    position: absolute;
    top: 85px;
    left: -20px;
}

/* tablets (<= 1024px) */
@media (max-width: 1024px) {
  .stratoplan__cards-wrap{
    flex-direction: column;
    height: auto;
    gap: 10px;
  }

  .stratoplan__card{
    align-self: stretch;
  }
  .plaschka-2 {
    z-index: -1;
    width: 700px;
    height: 40px;
    background: #D5DDFD;
    position: absolute;
    top: 130px;
    left: -20px;
  }
}

/* mobile (<= 768px) */
@media (max-width: 768px) {
  .stratoplan__title{
    font-size: 35px;
  }
  .plaschka-2 {
    z-index: -1;
    width: 300px;
    height: 40px;
    background: #D5DDFD;
    position: absolute;
    top: 150px;
    left: -20px;
  }
  .stratoplan{
    padding-top: 0;
  }
  .stratoplan__card{
    width: auto;
  }
}

/* 03. Stratoplan Section End */

/* 04. Problem Section Start */
.problem{
  padding-top: 75px;
  padding-bottom: 75px;
}

.problem__wrap{
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.plaschka-3 {
    z-index: -1;
    width: 673px;
    height: 40px;
    background: #CDFCF4;
    position: absolute;
    top: 130px;
    left: 150px;
  }

.problem__title{
  color: var(--dark-blue, #001F3D);
  font-family: var(--font-accent);
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 55px */
  text-transform: uppercase;
}

.problem__subtitle{
  color: var(--dark-blue, #001F3D);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 165%; /* 29.7px */
}

.problem__descr{
  color: var(--dark-blue, #001F3D);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 165%; /* 24.75px */
}

.problem__descr span{
  font-weight: 700;
}

.problem__col-wrap{
  display: flex;
  align-items: flex-start;
  gap: 25px;
}

.problem__col-1{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.problem__item{
  display: flex;
  padding: 30px;
  align-items: center;
  gap: 30px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: var(--white, #FFF);
  width: 484px;
}

.problem__item-num{
  color: var(--dark-blue, #001F3D);
  font-family: var(--font-accent);
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 55px */
  text-transform: uppercase;
}

.problem__item-text{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 5px;
}

.problem__item-title{
  color: var(--dark-blue, #001F3D);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 145%; /* 29px */
}

.problem__item-subtitle{
  color: var(--dark-blue, #001F3D);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 165%; /* 24.75px */
}

.problem__col-2{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
}

.problem__col-wrap-small{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding-left: 30px;
  padding-right: 30px;
}

.problem__col-ico{
  width: 58px;
  height: 86px;
  aspect-ratio: 29/43;
  background: url(../img/land/question.avif) rgba(211, 211, 211, 0) -14px 0px / 148.276% 100% no-repeat;
}

.problem__col-title{
  color: var(--dark-blue, #001F3D);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 165%; /* 33px */
}

.problem__col-subtitle{
  color: var(--dark-blue, #001F3D);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 165%; /* 29.7px */
}

.problem__btn-group{
  display: flex;
  padding-top: 10px;
}

.bg-green {
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: rgba(214, 252, 205, 0.50);
    box-shadow: 0 4px 100px 0 rgba(0, 0, 0, 0.03);
}

@media (max-width: 768px) {
  .problem__col-wrap{
    flex-direction: column;
  }
  .problem__item{
    width: auto;
    align-self: stretch;
  }
  .problem__col-wrap-small{
    padding-top: 50px;
    align-items: center;
  }
  .problem__col-title, .problem__col-subtitle{
    text-align: center;
  }
  .problem__btn-group {
        width: 100%;
        /* align-items: center; */
        text-align: center;
        flex-direction: column;
        justify-content: center;
  }
      .plaschka-3 {
        z-index: -1;
        width: 300px;
        height: 40px;
        background: #CDFCF4;
        position: absolute;
        top: 100px;
        left: 50px;
    }
  .problem__title{
    font-size: 35px;
  }
}
/* 04. Problem Section End */

/* 05. About Section Start */
.about{
  padding-top: 75px;
  padding-bottom: 75px;
}

.about__curved-card{
  height: 700px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 27.76%, rgba(0, 0, 0, 0) 88.82%), url(../img/land/about.avif) rgba(211, 211, 211, 0) 50% / cover no-repeat;
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  padding: 68px;
  justify-content: end;  
}

.curved-card{
  display: flex;
  flex-direction: column;
  gap: 20px;  
}

.about__curved-title{
  color: var(--white, #FFF);
  font-family: var(--font-accent);
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 55px */
  text-transform: uppercase;
}

.about__curved-subtitle{
  color: var(--white, #FFF);
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 165%; /* 41.25px */
}

.promo-text-white{
  border-radius: 20px;
  border: 1px solid #FFF;
  color: var(--white, #FFF);
}

.about__content{
  display: flex;
  gap: 100px;
}

.about__col-1{
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  top: 46px;
  width: 519px;
}

.about__col-title{
  color: var(--dark-blue, #001F3D);
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 165%; /* 41.25px */
}

.about__col-2{
  display: flex;
  width: 522px;
  flex-direction: column;
  align-items: flex-start;
  gap: 50px;
  position: relative;
  top: -170px;
}

.about__col-item{
  display: flex;
  gap: 18px;
  justify-content: space-between;
  align-items: center;
}

.about__col-item-text{
  width: 460px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  flex-shrink: 0;
}

.about__col-item-title{
  color: var(--dark-blue, #001F3D);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 165%; /* 33px */
}

.about__col-item-subtitle{
  color: var(--dark-blue, #001F3D);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 165%; /* 24.75px */
}

@media (min-width: 768px) and (max-width: 1024px) {
  .about__curved-card{
    background: linear-gradient(180deg, rgb(0 0 0 / 55%) 27.76%, rgb(0 0 0 / 84%) 88.82%), url(../img/land/pic3.avif) rgba(211, 211, 211, 0) 50% / cover no-repeat !important;
    padding: 40px;
    height: 400px;
  }
  .about__curved-title{
    font-size: 40px;
  }
  .about__curved-title{
  text-shadow:
    0 2px 12px rgba(0,0,0,.45),
    0 0 2px rgba(0,0,0,.25);
  }
  .about__col-2, .about__col-1{
    position: inherit;
  }
  .about__curved-card{
    justify-content: center;
  }
  .about__curved-subtitle{
    font-size: 18px;
    line-height: normal;
  }
  .about__curved-card{ position:relative; overflow:hidden; }

  .about__curved-card::before{
  content:"";
  position:absolute; inset:0;
  background: url("../img/land/pic3.avif") 50%/cover no-repeat;
  filter: blur(6px);
  transform: scale(1.05);
  z-index:-1;
  }
  .about__content{
    padding-top: 25px;
    flex-direction: column;
  }
  .about__col-item-text{
    width: 100%;
  }
  .about__col-title{
    font-size: 18px;
    line-height: normal;
  }
}


@media (max-width: 769px) {
 .about__curved-card{
    background: linear-gradient(180deg, rgb(0 0 0 / 55%) 27.76%, rgb(0 0 0 / 84%) 88.82%), url(../img/land/pic3.avif) rgba(211, 211, 211, 0) 50% / cover no-repeat !important;
    padding: 40px 20px;
    height: 350px;
  }
  .about__curved-title{
    font-size: 25px;
  }
  .about__curved-title{
  text-shadow:
    0 2px 12px rgba(0,0,0,.45),
    0 0 2px rgba(0,0,0,.25);
  }
  .about__col-2, .about__col-1{
    position: inherit;
  }
  .about__curved-card{
    justify-content: center;
  }
  .about__curved-subtitle{
    font-size: 18px;
    line-height: normal;
  }
  .about__curved-card{ position:relative; overflow:hidden; }

  .about__curved-card::before{
  content:"";
  position:absolute; inset:0;
  background: url("../img/land/pic3.avif") 50%/cover no-repeat;
  filter: blur(6px);
  transform: scale(1.05);
  z-index:-1;
  }
  .about__content{
    padding-top: 25px;
    flex-direction: column;
  }
  .about__col-item-text{
    width: 280px;
  }
  .about__col-title{
    font-size: 16px;
    line-height: normal;
  }
  .about__col-2, .about__col-1{
    width: 100%;
  }
  .about__col-2{
    gap: 20px;
  }
  .about__content{
    gap: 35px;
  }
  .about{
    padding-top: 0;
  }
}
/* 05. About Section End */

/* 06. Choice Section Start */
.choice{
  padding-top: 75px;
  padding-bottom: 75px;
}

.choice__wrap{
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.choice__header{
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.choice__title{
  color: var(--dark-blue, #001F3D);
  font-family: var(--font-accent);
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 55px */
  text-transform: uppercase;
}

.choice__subtitle{
  color: var(--dark-blue, #001F3D);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 165%; /* 29.7px */
}

.choice__cards-wrap{
  display: flex;
  align-items: center;
  gap: 25px;
  align-self: stretch;
}

.choice__card{
  display: flex;
  padding: 40px 30px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  border-radius: 20px;
}

.choice__card:hover{
  border: 1px solid rgba(0, 0, 0, 0.499);
}

.choice__text{
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}

.choice__title-co{
  color: var(--dark-blue, #001F3D);
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 80% */
}

.choice__card-item{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  align-self: stretch;
}

.choice__card-item-title{
  color: var(--dark-blue, #001F3D);
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 165%; /* 24.75px */
}

.choice__card-item-subtitle{
  color: var(--dark-blue, #001F3D);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 165%; /* 24.75px */
}

.bg-yellow{
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: rgba(255, 238, 221, 0.50);
  box-shadow: 0 4px 100px 0 rgba(0, 0, 0, 0.03);
}
.choice__card-coach{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  align-self: stretch;
}

.choice__card-coach-text{
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}

.choice__card-coach-name{
  color: var(--dark-blue, #001F3D);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 165%; /* 24.75px */
}

.choice__card-coach-ico{
  width: 70px;
  height: 70px;
  aspect-ratio: 1/1;
  border-radius: 1000px;
  background: url(<path-to-image>) lightgray 50% / cover no-repeat;
}

.choice__card-coach-ico-1{
  background-image: url(https://stratoplan-school.com/archive/career/img/team/04_couch-single.webp), url(https://stratoplan-school.com/archive/foundation/img/bg/coach_bg.webp);
  background-repeat: no-repeat, no-repeat;
  background-position-x: center;
  background-position-y: 0px, 00px;
  background-size: 100%;
}

.choice__card-coach-ico-2 {
  background-image: url(https://stratoplan-school.com/archive/foundation/img/coaches/coach-4.webp), url(https://stratoplan-school.com/archive/foundation/img/bg/coach_bg.webp);
  background-repeat: no-repeat, no-repeat;
  background-position-x: center;
  background-position-y: -10px, 00px;
  background-size: 100%;
}

.choice__card-coach-ico-3{
  background-image: url(https://stratoplan-school.com/archive/foundation/img/coaches/coach-3.webp), url(https://stratoplan-school.com/archive/foundation/img/bg/coach_bg.webp);
  background-repeat: no-repeat, no-repeat;
  background-position-x: -5px, 0px;
  background-position-y: -10px, 00px;
  background-size: 120%;
}

.choice__btn{
  display: flex;
  /* height: 60px; */
  padding: 15px 20px;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  border-radius: 10.91px;
  border: 1px solid #001F3D;
  background: #FFF;
  text-decoration: none !important;

  color: #001F3D;
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 160% */
}


.choice__link{
  color: var(--dark-blue, #001F3D);
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 165%; /* 19.8px */
  text-decoration: none;
  display: flex;
  align-self: center;
}

.choice__link:hover{
  text-decoration: underline;
}

.rolling-2{
  right: -250px;
}

.plaschka-4{
  width: 673px;
  height: 40px;
  background: #FED;
  position: absolute;
  z-index: -1;
  top: 130px;
  left: 0;
  left: 135px;
}

/* кнопка-тогглер в шапке карточки */
.choice__toggle{
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0);
  background: rgba(255, 255, 255, 0);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.choice__toggle::before{
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(0,0,0,.55);
  border-bottom: 2px solid rgba(0,0,0,.55);
  transform: rotate(45deg);
  transition: transform .2s ease;
}

/* контейнер скрываемого контента */
.choice__acc{
  overflow: hidden;
  max-height: none;
  transition: max-height .25s ease;
}

/* только <=1024 делаем сворачивание */
@media (max-width: 1024px){
  .choice__cards-wrap{
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .choice__card{
    width: auto;
  }

  .choice__acc.is-collapsed{
    max-height: 0;
  }

  .choice__card.is-open .choice__toggle::before{
    transform: rotate(225deg);
  }
  .choice__title{
    font-size: 35px;
  }
  .choice__ico{
    display: none;
  }
  .choice{
    padding-top: 0;
  }
  .plaschka-4 {
    width: 273px;
    height: 40px;
    background: #FED;
    position: absolute;
    z-index: -1;
    top: 180px;
    left: 0;
    left: 0px;
  }
}
@media (max-width: 1024px) {
    .header__wrap-col1-ul {
        margin-top: 10px;
        border-radius: 16px;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(18px);
    }
}
/* 06. Choice Section End */


/* 07. Changes Section Start */
.changes{
  padding-top: 75px;
  padding-bottom: 75px;
}

.changes__wrap{
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.changes__header{
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.changes__title{
  color: var(--dark-blue, #001F3D);
  font-family: var(--font-accent);
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 55px */
  text-transform: uppercase;
}

.changes__subtitle{
  color: var(--dark-blue, #001F3D);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 165%; /* 29.7px */
}

.changes__cards{
  display: flex;
  gap: 25px;
}

.changes__card{
  display: flex;
  flex: 1 0 0;
  padding: 40px;
  flex-direction: column;
  align-items: flex-start;
  gap: 50px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: var(--white, #FFF);
}

.changes__card-text{
  display: flex;
  padding: 15px 20px;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-shrink: 0;
  align-self: stretch;
  border-radius: 10.91px;
}

.changes__card-title{
  color: var(--dark-blue, #001F3D);
  text-align: center;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 96% */
  text-transform: uppercase;
}

.changes__card-ico{
  width: 75px;
  height: 75px;
  aspect-ratio: 1/1;
  
}

.changes__card-ico-1{
  background: url(../img/land/no.avif) rgba(211, 211, 211, 0) 50% / cover no-repeat;
}

.changes__card-ico-2{
  background: url(../img/land/yes.avif) rgba(211, 211, 211, 0) 50% / cover no-repeat;
}

.changes__card-item{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  align-self: stretch;
}

.changes__card-item-title{
  color: var(--dark-blue, #001F3D);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 165%; /* 33px */
}

.changes__card-item-subtitle{
  color: var(--dark-blue, #001F3D);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 165%; /* 24.75px */
}

.changes__btn-group{
  display: flex;
  justify-content: center;
}

.plaschka-5{
  width: 588px;
  height: 40px;
  background: #D5DDFD;
  position: absolute;
  z-index: -1;
  top: 130px;
  left: 185px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .plaschka-5 {
    width: 488px;
    height: 40px;
    background: #D5DDFD;
    position: absolute;
    z-index: -1;
    top: 130px;
    left: 95px;
  }
  .changes__cards{
    flex-direction: column;
  }
  .changes__card{
    gap: 25px;
  }
}

@media (max-width: 767px){
      .plaschka-5 {
        width: 288px;
        height: 40px;
        background: #D5DDFD;
        position: absolute;
        z-index: -1;
        top: 100px;
        left: 15px;
    }
  .changes__cards{
    flex-direction: column;
  }
  .changes__card{
    gap: 25px;
    padding: 40px 20px;
  }
  .changes__card-title{
    font-size: 18px;
  }
  .changes__card-item-title{
    font-size: 18px;
    line-height: normal;
  }
  .changes__title{
    font-size: 35px;
  }
  .changes{
    padding-top: 0;
  }
  
}
/* 07. Changes Section End */

/* 08. Schedule Section Start */
.schedule{
  padding-top: 75px;
  padding-bottom: 75px; 
}

.schedule__wrap{
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.schedule__header{
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  position: relative;
}

.schedule__title{
  color: var(--dark-blue, #001F3D);
  font-family: var(--font-accent);
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 55px */
  text-transform: uppercase;
}

.schedule__subtitle{
  color: var(--dark-blue, #001F3D);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 165%; /* 29.7px */
}

.schedule__caledar-wrap{
  display: flex;
  /* width: 1113px;
  height: 455.125px; */
  align-items: center;
  gap: 25px;
}

.schedule__caledar-btns{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
}

.schedule__caledar-btn{
  display: flex;
  padding: 20px 30px;
  justify-content: center;
  align-items: center;
  gap: 20px;
  border-radius: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  text-decoration: none;
  border-radius: 15px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: #FFF;
  height: 105px;
  width: 257px;
}

.schedule__caledar-btn:hover{
  border: 1px solid rgba(0, 0, 0, 0.473);
}

.schedule__caledar-btn-title{
  color: var(--dark-blue, #001F3D);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 120% */
}

.schedule__caledar{
  display: none;
  padding: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: var(--white, #FFF);
  width: 712px;
}

.schedule__caledar-active{
  display: flex;
}

.schedule__caledar-cal-wrap{
  display: flex;
  align-items: center;
  gap: 26px;
}

.cal-wrap{
  display: flex;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  border-radius: 32px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: rgba(0, 0, 0, 0.02);
}

.schedule__caledar-cal-sub-title{
  color: var(--dark-blue, #001F3D);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 165%; /* 24.75px */
}

.bg-lilac {
    background: rgba(213, 221, 253, 0.50);
    box-shadow: 0 4px 100px 0 rgba(0, 0, 0, 0.03);
}

.bg-blue{
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: rgba(205, 252, 244, 0.50);
}

.bg-yellow{
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: rgba(255, 238, 221, 0.50);
}

.plaschka-6 {
    width: 437px;
    height: 40px;
    background: #CDFCF4;
    position: absolute;
    z-index: -1;
    top: 80px;
    left: -20px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .schedule__caledar-wrap{
    flex-direction: column;
  }
  .schedule__caledar-btns{
    width: 100%;
  }
  .schedule__caledar-btn, .schedule__caledar{
    width: auto;
  }
}

@media (max-width: 767px){
  .schedule__caledar-wrap{
    flex-direction: column;
  }
  .schedule__caledar-btns{
    width: 100%;
  }
  .schedule__caledar-btn, .schedule__caledar{
    width: auto;
  }
  .schedule__caledar-cal-wrap{
    flex-direction: column;
    gap: 15px;
  }
  .schedule__title{
    font-size: 35px;
  }
  .schedule__caledar-btn{
    height: 60px;
  }
  .schedule__caledar{
    padding: 15px;
  }
  .schedule{
    padding-top: 0;
  }
  .plaschka-6 {
    width: 237px;
    height: 40px;
    background: #CDFCF4;
    position: absolute;
    z-index: -1;
    top: 60px;
    left: -20px;
  }
}
/* 08. Schedule Section End */

/* 09. team Section Start */
.team{
  padding-top: 75px;
  padding-bottom: 75px;
}

.team__wrap{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 50px;
}

.team__header{
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.team__title{
  color: var(--dark-blue, #001F3D);
  font-family: var(--font-accent);
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 55px */
  text-transform: uppercase;
}

.team__speaker-wrap{
  display: flex;
  gap: 20px;
}

.team__speaker{
  display: flex;
  width: 318px;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: var(--white, #FFF);
}

.team__speaker-ico{
  height: 318px;
  align-self: stretch;
  aspect-ratio: 1/1;
  border-radius: 20px;
  background: url(<path-to-image>) lightgray 50% / cover no-repeat;
}

.team__speaker-ico-1{
    background-image: url(https://stratoplan-school.com/archive/career/img/team/04_couch-single.webp), url(https://stratoplan-school.com/archive/foundation/img/bg/coach_bg.webp);
    background-repeat: no-repeat, no-repeat;
    background-position-x: center;
    background-position-y: 0px, 00px;
    background-size: 100%;
}

.team__speaker-ico-2{
    background-image: url(https://stratoplan-school.com/archive/foundation/img/coaches/coach-4.webp), url(https://stratoplan-school.com/archive/foundation/img/bg/coach_bg.webp);
    background-repeat: no-repeat, no-repeat;
    background-position-x: center;
    background-position-y: -45px, 00px;
    background-size: 100%;
}

.team__speaker-ico-3{
    background-image: url(https://stratoplan-school.com/archive/foundation/img/coaches/coach-3.webp), url(https://stratoplan-school.com/archive/foundation/img/bg/coach_bg.webp);
    background-repeat: no-repeat, no-repeat;
    background-position-x: -5px, 0px;
    background-position-y: -65px, 00px;
    background-size: 120%;
}

.team__speaker-text{
  display: flex;
  padding: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 5px;
  align-self: stretch;
}

.team__speaker-title{
  color: var(--dark-blue, #001F3D);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 145%; /* 29px */
  text-transform: uppercase;
}

.team__speaker-subtitle{
  color: var(--dark-blue, #001F3D);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 165%; /* 24.75px */
}

.plaschka-7 {
    width: 360px;
    height: 40px;
    background: #D6FCCD;
    position: absolute;
    z-index: -1;
    top: 80px;
    left: -20px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .team__speaker-wrap{
    flex-direction: column;
    width: 100%;
    align-items: center;
  }
  .plaschka-7{
    top: 150px;
  }
}

@media (max-width: 767px){
  .team__speaker-wrap{
  flex-direction: column;
  width: 100%;
  align-items: center;
  }
  .team__title{
    font-size: 35px;
  }
  .plaschka-7{
    top: 150px;
  }
}
/* 09. team Section End */

/* 10. Feedback Section Start */
.feedback{
  padding-top: 74px;
  padding-bottom: 75px;
  display: none;
}

.feedback__wrap{
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.feedback__header{
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.feedback__title{
  color: var(--dark-blue, #001F3D);
  font-family: var(--font-accent);
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 55px */
  text-transform: uppercase;
}

.feedback__slider{
  display: flex;
  gap: 20px;
  width: 100%;
}

.feedback__slider-content{
  display: inline-flex;
  align-items: center;
  gap: 20px;
}

.feedback__slide{
  width: 261.622px;
  height: 376.912px;
  border-radius: 17.737px;
  background: url(<path-to-image>) lightgray 50% / cover no-repeat;
}


.feedback__slider {
  align-items: center;
}

.feedback__slider-content{
  flex: 1 1 auto;
  overflow: hidden;             
  display: flex;                 
  align-items: center;
  gap: 20px;
}

.feedback__slider-content-track{
  display: flex;
  align-items: center;
  gap: 20px;
  will-change: transform;
  transition: transform .35s ease;
}


.feedback__slider-content{
  width: calc(100% - 80px);     
}

.plaschka-8{
    width: 927px;
    height: 40px;
    background: #FDD5D6;
    position: absolute;
    z-index: -1;
    top: 80px;
    left: -20px;

}


@media (max-width: 1024px){
  .feedback__slide{
    width: 261.622px;            
  }
  .feedback__slider-content{
    width: 100%;               
  }
}


@media (max-width: 640px){
  .feedback__slider{
    gap: 12px;
  }
  .feedback__slider-content{
    width: 100%;
  }

  .feedback__slide{
    width: 80vw;
    max-width: 320px;
    height: 376.912px;
  }

  .feedback__slider-btn-left svg,
  .feedback__slider-btn-right svg{
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 640px){
  .feedback__slider{
    position: relative;
    gap: 0;                 /* стрелки больше не в потоке */
    width: 100%;
  }

  /* стрелки поверх */
  .feedback__slider-btn-left,
  .feedback__slider-btn-right{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
  }

  .feedback__slider-btn-left{ left: 8px; }
  .feedback__slider-btn-right{ right: 8px; }

  /* viewport на всю ширину + место под стрелки */
  .feedback__slider-content{
    width: 100%;
    overflow: hidden;
    padding: 0 64px;        /* место под кнопки */
    box-sizing: border-box;
  }

  /* карточка адекватного размера в viewport */
  .feedback__slide{
    width: calc(100vw - 128px - 40px); /* 2*padding + небольшой запас */
    max-width: 360px;
    min-width: 240px;
    height: 360px;          /* можно поджать, чтобы не было “простыни” */
  }

  /* уменьшаем иконки кнопок */
  .feedback__slider-btn-left svg,
  .feedback__slider-btn-right svg{
    width: 44px;
    height: 44px;
  }
}


@media (min-width: 768px) and (max-width: 1024px) {
  .plaschka-8 {
    width: 527px;
    height: 40px;
    background: #FDD5D6;
    position: absolute;
    z-index: -1;
    top: 195px;
    left: -20px;
}
}

@media (max-width: 767px){
  .feedback__title{
    font-size: 35px;
  }
  .plaschka-8 {
        width: 327px;
        height: 40px;
        background: #FDD5D6;
        position: absolute;
        z-index: -1;
        top: 190px;
        left: -20px;
  }
}
/* 10. Feedback Section End */

/* 11. Warry Section Start */
.warry{
  padding-top: 75px;
  padding-bottom: 75px;
}

.warry__wrap{
  display: flex;
  padding: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: rgba(205, 252, 244, 0.50);
}

.warry__header{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.warry__title{
  color: var(--dark-blue, #001F3D);
  font-family: var(--font-accent);
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 55px */
  text-transform: uppercase;
}

.warry__content{
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}

.warry__content-col-1{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  width: 732px;
}

.warry__content-col-1-text{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.warry__content-col-1-title{
  color: var(--dark-blue, #001F3D);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 165%; /* 33px */
}

.warry__content-col-1-subtitle{
  color: var(--dark-blue, #001F3D);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 165%;
}

.warry__content-btn-group{
  display: flex;
}

.warry__content-col-2{
  width: 270px;
  height: 297px;
  border-radius: 32px;
  background: url(../img/land/cert.avif) rgba(211, 211, 211, 0) -45px -21.165px / 133.333% 121.362% no-repeat; 
}

@media (min-width: 768px) and (max-width: 1024px) {
  .warry__content-col-2{
    display: none;
  }
  .warry__wrap{
    flex-direction: column;
  }
}

@media (max-width: 767px){
  .warry__content-col-2{
    display: none;
  }
  .warry__title{
    font-size: 25px;
  }
  .warry__wrap{
    flex-direction: column;
  }
}
/* 11. Warry Section End */

/* 12. FAQ Section Start */
.faq{
  padding-top: 75px;
  padding-bottom: 75px;
}

.faq__wrap{
  display: flex;
  align-self: stretch;
  gap: 50px;
}

.faq__header{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.faq__title{
  color: var(--dark-blue, #001F3D);
  font-family: var(--font-accent);
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 55px */
  text-transform: uppercase;
}

.faq__wrap-accordeon{
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 50px;
}

.faq__item{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 5px;
  flex: 1 0 0;
  text-decoration: none;
  width: 100%;
}

.faq__item-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}

.faq__item-title{
  color: var(--dark-blue, #001F3D);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 145%; /* 29px */
}

.faq__item-content{
  color: var(--dark-blue, #001F3D);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 165%; /* 24.75px */
  display: none;
}

.faq__item-content-active{
  display: block;
}

@media (min-width: 768px) and (max-width: 1024px) {

}

@media (max-width: 767px){
  .faq__wrap{
    flex-direction: column;
  }
  .faq__title{
    font-size: 35px;
  }
  .faq{
    padding-top: 0;
  }
}
/* 12. FAQ Section End */

/* 13. REG Section Start */
.register{
  padding-top: 75px;
  padding-bottom: 75px;
}

.register__wrap{
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.register__header{
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.register__title{
  color: var(--dark-blue, #001F3D);
  font-family:var(--font-accent);
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 55px */
  text-transform: uppercase;
}

.register__cards-wrap{
  display: flex;
  align-items: flex-start;
  gap: 25px;
}

.register__card{
  display: flex;
  padding: 40px 30px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: var(--white, #FFF);
  flex: 1 0 0;
  height: 470px;
}

.register__card-descr-wrap{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  align-self: stretch;
}

.register__card-descr-text{
  display: flex;
  padding: 15px 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  border-radius: 10.91px;
}

.register__card-descr-uptitle{
  color: var(--dark-blue, #001F3D);
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 145%; /* 17.4px */
  letter-spacing: 5px;
  text-transform: uppercase;
}

.register__card-descr-title{
  color: var(--dark-blue, #001F3D);
  text-align: center;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 145%; /* 31.9px */
  text-transform: uppercase;
}

.register__card-descr{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
}

.register__card-descr-named{
  color: var(--dark-blue, #001F3D);
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 165%; /* 24.75px */
}

.register__card-descr-text-2{
  color: var(--dark-blue, #001F3D);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 165%; /* 24.75px */
}

.register__card-btn-group{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  align-self: stretch;
}

.register__card-btn-price{
  color: #DF1316;
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 145%; /* 58px */
  text-transform: uppercase;
}

.btn-width{
  width: 100%;
}

.plaschka-9{
  width: 760px;
  height: 40px;
  background: #D5DDFD;
  position: absolute;
  top: 80px;
  left: -20px;
  z-index: -1;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .register__cards-wrap{
    flex-direction: column;
  }
  .register__card {
    align-self: stretch;
    width: auto;
  }
  .plaschka-9{
    width: 390px;
    top: 140px;
  }
}

@media (max-width: 767px){
  .register__cards-wrap{
    flex-direction: column;
  }
  .register__card {
    align-self: stretch;
    width: auto;
  }
  .plaschka-9{
    width: 320px;
    top: 145px;
  }
  .register__title{
    font-size: 35px;
  }
}
/* 13. REG Section End */

/* 14. Footer Section Start */
.footer__main-wrap{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 48px;
}

.footer__title{
  color: #F5F5F5;
  text-align: center;
  font-size: 50px;
  font-style: normal;
  font-weight: 600;
  line-height: 64px; /* 128% */
}

.footer__main-content-wrap{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
}

.footer__main-content-wrap-top{
  display: flex;
  width: 100%;
  padding: 40px 0px;
  justify-content: space-between;
  align-items: center;
}

.footer__links-wrap{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.footer-link-btn {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-link-btn:hover {
  transform: scale(1.1);
}

.footer__main-content-wrap-bottom{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
}

.footer__main-content-col1{
  display: flex;
  width: 695px;
  align-items: flex-start;
  gap: 60px;
}

.footer__main-content-col1, .footer__main-content-col2{
  flex: 1;
}

.footer__main-content-col1-item{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__main-content-title{
  padding-bottom: 2px;
  color: #D5DDFD;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
  text-transform: uppercase;
}

.footer__main-content-subtitle{
  color: #F5F5F5;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
}

.foot-lnk{
  text-decoration: none;
  cursor: pointer;
}

.footer__main-content-col2{
  display: flex;
  justify-content: end;
  align-items: flex-end;
  align-self: stretch;
  
}

.footer__main-content-col2 p{
  width: 50%;
  color: #F5F5F5;
  text-align: right;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
}

.footer__main-bottom{
  border-top: 1px solid #898989;
  display: flex;
  width: 100%;
  padding-top: 50px;
  justify-content: space-between;
  align-items: center;
}

.footer__main-bottom a {
  color: #F5F5F5;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; 
  text-decoration: none;
  cursor: pointer;
  transition: text-decoration 0.3s ease; 
}

.footer__main-bottom a:hover {
  text-decoration: underline; 
}

.footer__main-bottom p{
  color: #F5F5F5;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
}

@media (max-width: 1024px) {
  .footer__main-content-wrap-bottom{
    flex-direction: column;
  }
  .footer__main-content-col1{
    width: 100%;
    flex-direction: column;
  }
  .footer__main-content-col2 p{
    margin-top: 60px;
    width: 100%;
    text-align: left;
  }
  .footer__main-content-col2{
    justify-content: start;
  }
  .footer__title{
    font-size: 31px;
    line-height: normal;
    text-align: start;
  }
  .footer__main-bottom{
    width: 100%;
    flex-direction: column;
    gap: 20px;
    text-align: start;
  }
  .footer__main-content-wrap-top{
    flex-direction: column;
    Gap: 20px;
    align-items: start;
  }
}
/* 14. Footer Section End */

/* 15. Thanks Section Start*/
.thx__header{
    background: var(--Color-3, #FFF);
    box-shadow: 0 4px 30px 0 rgba(0, 0, 0, 0.05);
}

.thx__header-wrap{
    padding: 20px 0px;
    display: flex;
    justify-content: space-between;
}

.thanks__wrap{
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
  width: 100%;
}

.thanks__header{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
}

.thanks__footer{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
}

.thanks__footer-title{
  color: var(--dark-blue, #001F3D);
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 165%; /* 33px */
}

.thanks__footer-wrap{
  display: flex;
  gap: 24px;
  width: 100%;
}

@media (min-width:768px) and (max-width:1024px){
  .reg__wrap-title{
    font-size: 44px;
  }
  .reg__wrap-subtitle{
    font-size: 20px;
    line-height: normal;
    max-width: 450px;
  }
}

@media (max-width:767px){
    .thx__header-wrap {
    gap: 15px;
    flex-direction: column;
    padding: 20px 00px;
    display: flex;
    justify-content: space-between;
    }
    .thx__header-title{
        display: none;
    }
  .reg__wrap-title{
    font-size: 25px;
  }
  .reg__wrap-subtitle{
    font-size: 18px;
    line-height: normal;
  }
  .thanks__footer-wrap{
    flex-direction: column;
  }
  .rolling-4{
    display: none;
  }
  .plashka-6{
    top: 30px;
  }
  .thanks{
    padding-top: 20px;
  }
}
/* 15. Thanks Section End*/

/* 16. Pop-up Section Start */
.modal{
  position: fixed; inset: 0;
  display: none; align-items: center; justify-content: center;
  background: rgba(33,95,203,.18);
  backdrop-filter: blur(6px);
  z-index: 1000;
}
.modal.is-open{ display: flex; }

.modal__dialog {
  position: relative;
  max-width: 720px;
  width: calc(100% - 40px);
  border: 2px solid #fff;             /* белая рамка */
  border-radius: 24px;
  padding: 60px 40px;
  box-shadow: 0 30px 80px rgba(0,0,0,.25);
  overflow: hidden;                    /* чтобы блюр не “резался” по краям */
  background: #FFF;                    /* фон перенесём в ::before */
}


.modal__dialog p{
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    color: #215FCB;
    padding-bottom: 20px;
}

.modal__close{
  position: absolute; right: 35px; top: 35px;
  width: 36px; height: 36px; border-radius: 50%;
  border: none; background: transparent; font-size: 48px; line-height: 1;
  cursor: pointer; color:#000000;
  z-index: 10;
}

body.no-scroll{ overflow: hidden; }

.modal__title{
    color: #000000;
    font-family: var(--font-accent);
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
    padding: 20px;
    /* background: url(../img/bg/bg-reg.avif) center center; */
    background-size: cover;
    border-radius: 24px;
    margin-bottom: 10px;
}

@media (max-width: 640px){
  .modal__dialog{ padding: 32px 20px; }
}

.hero__form-alt-btn{
  text-align: center;
}

.choice__card a{
  height: auto;
  text-decoration: none;
}
/* 16. Pop-up Section End */

/* 17. Contact Section Start */


.contact__col-wrap-form{
  border-radius: 24px;
  background: rgba(213, 221, 253, 0.50);
  box-shadow: 0 4px 100px 0 rgba(0, 0, 0, 0.03);;
  padding: 12px;
}

.contact{
  padding-top: 75px;
  padding-bottom: 75px;
}

.contact__wrap{
  display: flex;
  /* width: 1152px; */
  align-items: center;
  gap: 40px;
}

.contact__col-1{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 12px;
    flex-shrink: 0;
}

.contact__col-1, .contact__col-2{
  flex: 1 0 0;
}

.contact__title{
    color: var(--dark-blue, #001F3D);
    font-family: var(--font-accent);
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
    text-transform: uppercase;
}

.contact__subtitle{
  color: var(--Gray-600, #535353);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
}

.about__pretitle{
    display: flex;
    padding: 5px 15px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    border-radius: 20px;
    border: 1px solid #000;
    color: var(--dark-blue, #001F3D);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 165%;
    letter-spacing: 5px;
    text-transform: uppercase;
  }
  
  .reg__wrap-title{
    color: var(--dark-blue, #001F3D);
    font-family: var(--font-accent);
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
    text-transform: uppercase;
  }

  .thanks__main-wrap{
    display: flex;
    justify-content: space-between;
    align-self: stretch;
    width: 100%;
  }

  .thanks-col{
    flex: 1 0 0;
  }

  .thanks-col{
    color: var(--dark-blue, #001F3D);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 165%; /* 33px */
  }

.thanks-col-form{
  display: flex;
  padding: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: var(--white, #FFF);
}

@media (max-width: 767px){
  .contact__wrap{
    flex-direction: column;
  }
  .contact__title{
    font-size: 35px;
    line-height: normal;
  }
  .thanks__main-wrap{
    flex-direction: column;
    gap: 25px;
  }
  .reg__wrap-title{
    font-size: 35px;
  }
}
/* 17. Contact Section End */

/* 18. Openday Section Start */
/* .openday{
  padding-top: 75px;
  padding-bottom: 75px;
} */

.openday__wrap{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 80px;
  padding: 80px;
  border-radius: 20px;
}

.openday__col{
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.openday__title{
  color: var(--dark-blue, #001F3D);
  font-family: var(--font-accent);
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  text-transform: uppercase;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .openday__content-col-2{
    display: none;
  }
  .openday__wrap{
    flex-direction: column;
  }
}

@media (max-width: 767px){
  .openday__content-col-2{
    display: none;
  }
  .openday__title{
    font-size: 25px;
  }
  .openday__wrap{
    padding: 40px 20px;
    flex-direction: column;
    gap: 25px;
  }
  .openday, .warry{
    padding-top: 0;
  }
}
/* 18. Openday Section End */

/* 19. Blob Section Start */
.blob{
  position: absolute;
  z-index: -1;
}

.blob-1{
  width: 628px;
  height: 761px;
  border-radius: 761px;
  background: #CDFCF4;
  filter: blur(200px);
  top: 200px;
  left: -50px;
}

.blob-2{
  width: 784px;
  height: 761px;
  border-radius: 784px;
  background: rgba(213, 221, 253, 0.50);
  filter: blur(150px);
  top: 700px;
  right: -40px;
}

.blob-3{
  width: 628px;
  height: 761px;
  border-radius: 761px;
  background: #FED;
  filter: blur(200px);
  top: 2000px;
  left: -40px;
}

.blob-4{
  width: 628px;
  height: 761px;
  border-radius: 761px;
  background: rgba(205, 252, 244, 0.50);
  filter: blur(200px);
  top: 3500px;
  right: -40px;
}

.blob-5{
  width: 628px;
  height: 761px;
  border-radius: 761px;
  background: rgba(214, 252, 205, 0.50);
  filter: blur(200px);
  top: 5300px;
  left: -40px;
}

.blob-6{
  width: 628px;
  height: 761px;
  border-radius: 761px;
  background: rgba(253, 213, 214, 0.50);
  filter: blur(200px);
  top: 6800px;
  right: -40px;
}

.blob-7{
  width: 628px;
  height: 761px;
  border-radius: 761px;
  background: rgba(213, 221, 253, 0.50);
  filter: blur(200px);
  top: 8000px;
  left: -40px;
}

.blob-8{
  width: 628px;
  height: 761px;
  border-radius: 761px;
  background: rgba(214, 252, 205, 0.50);
  filter: blur(200px);
  top: 10000px;
  right: -40px;
}
/* 19. Blob Section End */


.btn-hedear-group{
  display: flex;
  gap: 20px;
}

.openday__col-wrap{
  display: flex;
  flex-direction: column;
  gap: 24px;
}
/* =================================== */
/* =================================== */
/* =================================== */
/* Danylo Oliinyk - https://iamdev.lol/ */
/* =====Januar 2026 For Statoplan =====*/
/* =================================== */
/* =================================== */
/* =================================== */