/* =================================== */
/* =================================== */
/* =================================== */
/* Danylo Oliinyk - https://iamdev.lol/ */
/* =====October 2025 For Statoplan =====*/
/* =================================== */
/* =================================== */
/* =================================== */
/* 01. Header Section */
/* 02. Hero Section */
/* 03. About Section */
/* 04. ForWhom Section */
/* 05. Topics Section */
/* 06. Program Section */
/* 06. Program Section */
/* 07. Speaker Section */
/* 08. Sponsor Section */
/* 09. Video Section */
/* 10. News Section */
/* 11. Register Section */
/* 12. Footer Section */
/* 13. Pop-up Section */
/* 14. General Media Styles */
/* =================================== */
/* =================================== */
/* =================================== */

/* 15. Thanks Section */





/* 01. Header Section Start */
.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{
    display: flex;
    width: 672px;
    justify-content: space-between;
    align-items: center;
}

.header__link{
    color: #0D0D0D;
    font-size: 14px;
    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: #fff; /* чтобы не было прозрачности, если хедер перекрывает контент */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* легкая тень для отделения от контента */
}

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


/* Иконка бургера */
.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%; /* при наведении линия растягивается */
}
/* 01. Header Section End */

/* 02. Hero Section Start */
.hero__wrap{
    border-radius: 24px;
    background: url("../img/bg/promo-bg.avif") center center;
    padding-top: 75px;
    padding-bottom: 75px;
}

.hero__content{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.hero__up-wrap{
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero__item{
    display: flex;
    align-items: center;
    gap: 13.206px;
}

.hero__item-text{
    color: #FFF;
    font-family: var(--font-accent);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 26.412px; /* 146.736% */
    letter-spacing: -0.66px;
}

.hero__text{
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-self: stretch;
}

h1, .hero_h1 p{
    color: #FFF;
    text-align: center;
    font-family: var(--font-accent);
    font-size: 70px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%; /* 77px */
}

.hero__subtitle{
    color: #FFF;
    text-align: center;
    font-size: 25px;
    font-style: normal;
    font-weight: 500;
    line-height: 165%; /* 41.25px */
}

.hero__btn-group{
    display: flex;
    align-items: center;
    gap: 30px;
}

.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;
    text-align: center;
   
    text-decoration: none;
}

.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: #215FCB !important;
    color: #E5F3FF !important;
}

@media (min-width:768px) and (max-width:1024px){
    h1, .hero_h1 p{
        font-size: 44px;
        line-height: normal;
    }
}

@media (max-width:767px){
    .hero__btn-group{
        flex-direction: column;
    }
    h1, .hero_h1 p{
        font-size: 24px;
        line-height: normal;
    }
    .hero__up-wrap{
        flex-direction: column;
    }
    .hero__div{
        display: none;
    }
    .hero__subtitle{
        font-size: 14px;
    }
    .hero__up-wrap{
        gap: 10px;
    }
    .hero__content{
        gap: 30px;
    }
}
/* 02. Hero Section End */


/* 03. About Section Start */
.about{
    position: relative;
}

.blob-1{
    top: 70px;
    right: 270px;
    position: absolute;
    width: 502px;
    height: 502px;
    border-radius: 502px;
    opacity: 0.6;
    background: #215FCB;
    filter: blur(250px);
    z-index: -1;
}

.about__main{
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.about__wrap{
    display: flex;
    justify-content: space-between;
    padding: 0 64px;
}

.about__col-1{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    width: 666px;
}

.about__title{
    color: #000;
    font-family: var(--font-accent);
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%; /* 62.5px */
}

.about__subtitle{
    color: #001F3D;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 165%; /* 36.3px */
}

.about__promo{
    display: flex;
    padding: 20px;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
    border-radius: 14px;
    background: #E9F3F9;
}

.about__promo-text{
    color: #001F3D;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 165%;
}

.about__promo-text span{
    font-weight: 700;
}

.about__hands{
  width: 434px;
  aspect-ratio: 1/1;
  background: url("../img/hands.avif") center/contain no-repeat;
}

.about__promo_bottom{
    display: flex;
    padding: 50px 60px;
    justify-content: center;
    align-items: center;
    gap: 55px;
    border-radius: 24px;
    border: 2px solid #215FCB;
}

.about__promo-item{
    display: flex;
    align-items: center;
    gap: 15px;
}

.about__promo-num{
    color: #215FCB;
    font-family: var(--font-accent);
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 53.618px; /* 107.236% */
}

.about__promo-title{
    color: #001F3D;
    font-family: var(--font-accent);
    font-size: 30.862px;
    font-style: normal;
    font-weight: 400;
    line-height: 53.618px; /* 173.737% */
}

@media (min-width:768px) and (max-width:1024px){
    .about__wrap{
        flex-direction: column;
    }
    .about__col-2{
        display: none;
    }
    .about__promo_bottom{
        flex-direction: column;
    }
}

@media (max-width:767px){
    .about__col-2{
        display: none;
    }
    .about__wrap{
        padding: 0;
    }
    .about__title{
        font-size: 44px;
    }
    .about__promo_bottom{
        flex-direction: column;
        padding: 40px 20px;
    }
    .about__promo-num{
        font-size: 44px;
    }
    .about__promo-title{
        font-size: 18px;
        line-height: normal;
    }
}
/* 03. About Section End */


/* 04. ForWhom Section Start */
.forwhom{
    padding-top: 0;
}

.forwhom__container{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.forwhom__promo{
    display: flex;
    padding: 40px;
    align-self: stretch;
    border-radius: 24px;
    background: #215fcb;
}

.forwhom__title{
    color: #FFF;
    font-family: var(--font-accent);
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%; /* 62.5px */
}

.forwhom__wrap{
    display: flex;
    gap: 10px;
}

.forwhom__item{
    display: flex;
    width: 334px;
    padding: 54px 47px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 31px;

    border-radius: 24px;
    background: #E9F3F9;
}

.forwhom__item-ico{
    display: flex;
    width: 108px;
    height: 108px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    background: #215FCB;
}

.forwhom__item-title{
    color: #001F3D;
    text-align: center;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 145%; /* 31.9px */
}

@media (min-width:768px) and (max-width:1024px){
    .forwhom__wrap{
        flex-wrap: wrap;
    }
    .forwhom__item{
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        padding: 25px;
    }
}

@media (max-width:767px){
    .forwhom__wrap{
        flex-wrap: wrap;
    }
    .forwhom__item{
        padding: 20px;
        width: 100%;
        gap: 20px;
    }
    .forwhom__title{
        font-size: 44px;
    }
}
/* 04. ForWhom Section End */

/* 05. Topics Section Start */
.topics__content-wrap{
    padding: 50px 40px;
    border-radius: 24px;
    background: var(--Color-3, #FFF);
}

.topics__content-wrap{
    display: flex;
    justify-content: space-between;
}

.topics__title{
    color: #000;
    font-family: var(--font-accent);
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%; /* 62.5px */
}

.topics__content{
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.topics__item{
    display: flex;
    gap: 30px;
    padding: 20px;
    border-radius: 14px;
    background: #F5F5F7;
    align-items: center;
}

.topics__item-num{
    color: #215FCB;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%; /* 50px */
}

.topics__item-title{
    color: #001F3D;
    font-size: 23px;
    font-style: normal;
    font-weight: 500;
    line-height: 125%; /* 28.75px */
}

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

.topics__content-wrap{
  display:flex;
  gap:40px;
}

.topics__col-1{
  flex:0 0 45%;       
  display: flex;
  flex-direction: column;
  justify-content: space-between;    
}

.topics__title{
  position: sticky;
  top: 24px;           
}

.topics__col-2{
  flex:1 1 auto;
}

.topics__col-1-btn-group{
    display: flex;
    gap: 30px;
}

@media (max-width:767px){
  .topics__content-wrap{ flex-direction:column; }
  .topics__title{ position:static; }
}

@media (min-width:768px) and (max-width:1024px){
    .topics__content-wrap{ flex-direction:column; }
    .topics__title{
        font-size: 44px;
    }
    .topics__content-wrap{
        padding: 40px 20px;
    }
    .topics__content{
        gap: 20px;
    }

    .topics__col-1{
        gap: 30px;
    }
}

@media (max-width:767px){
    .topics__title{
        font-size: 40px;
        padding-top: 0;
    }
    .topics__content-wrap{
        padding: 40px 20px;
    }
    .topics__content{
        gap: 20px;
    }
        .topics__item-title{
        font-size: 18px;
    }
    .topics__col-1-btn-group{
        display: none;
    }
}

/* 05. Topics Section End */



/* 06. Program Section Start */
.program{
    position: relative;
}

.blob-2{
    top: 70px;
    left: 0px;
    position: absolute;
    width: 502px;
    height: 502px;
    border-radius: 502px;
    opacity: 0.4;
    background: #215FCB;
    filter: blur(250px);
    z-index: -1;
}

.program__wrap{
    display: flex;
    flex-direction: column;
    gap: 44px;
}

.program__promo{
    display: flex;
    justify-content: space-between;
}

.program__promo-text{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.program__promo-title{
    color: #000;
    font-family: var(--font-accent);
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%; /* 62.5px */
}

.program__promo-subtitle{
    color: #001F3D;
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: 165%; /* 41.25px */
}

.program__promo-date{
    color: #001F3D;
    text-align: right;
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: 165%; /* 41.25px */
}

.program__acc-wrap{
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.program__acc{
    display: flex;
    padding: 30px 40px;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
    border-radius: 14px;
    background: #F5F5F7;
    text-decoration: none;
    justify-content: space-between;
}

.program__acc-col-left{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.program__acc-day{
    color: #001F3D;
    font-size: 23.527px;
    font-style: normal;
    font-weight: 500;
    line-height: 41.697px; /* 177.233% */
    letter-spacing: -1.042px;
}

.program__acc-name{
    color: #001F3D;
    font-family: var(--font-accent);
    font-size: 35px;
    font-style: normal;
    font-weight: 400;
    line-height: 41.697px; /* 119.134% */
    letter-spacing: -1.042px;
}

.program__acc-text{
    color: #001F3D;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 145%; /* 26.1px */
    display: none;
}

/* .acc-text-active{
    display: block;
} */

.program__btn-wrap{
    display: flex;
    gap: 30px;
    justify-content: center;
}

.black-btn{
    background: #001F3D;
    color: #E5F3FF;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; /* 133.333% */
}

@media (max-width:767px){
    .program__promo{
        flex-direction: column;
        gap: 10px;
    }
    .program__promo-date{
        text-align: start;
    }
    .program__promo-title{
        font-size: 44px;
    }
    .program__btn-wrap{
        flex-direction: column;
        gap: 10px;
    }
}
/* 06. Program Section End */

/* 07. Speaker Section Start */
.speaker{
    padding-top: 0;
}
.speaker__content{
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.speaker__title-wrap{
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    align-items: center;
}

.speaker__title{
    color: #000;
    font-family: var(--font-accent);
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%; /* 62.5px */
}

.speaker__nav-menu{
    display: flex;
    gap: 30px;
}

.speaker__slider{
    display: flex;
    gap: 30px;
}

.speaker__item{
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.speaker__ico{
    width: 368px;
    height: 400px;
    flex-shrink: 0;
    border-radius: 20px;
    background: url(<path-to-image>) lightgray 50% / cover no-repeat;
}

.speaker__ico-0{
  background-image: url('https://stratoplan-school.com/conference/img/team/coach-0.webp');
  background-position: 0px -50px;
  background-size: cover;
  background-repeat: no-repeat;
}

.speaker__ico-1{
  background-image: url('https://blackbird-school.com/img/slava-pic.webp');
  background-position: 0px -50px;
  background-size: cover;
  background-repeat: no-repeat;
}

.speaker__ico-2{
  background-image: url('https://blackbird-school.com/img/sasha-pic.webp');
  background-position: 0px -50px;
  background-size: cover;
  background-repeat: no-repeat;
}

.speaker__text{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.speaker__name{
    color: #001F3D;
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: 145%; /* 36.25px */
}

.speaker__descr{
    color: #001F3D;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 145%; /* 26.1px */
}

.speaker__btn-wrap{
    display: flex;
    gap: 10px;
    justify-content: center;
}

.speaker{ padding-top:0; }
.speaker__content{ display:flex; flex-direction:column; gap:50px; overflow:hidden; }
.speaker__title-wrap{ display:flex; justify-content:space-between; padding:0 40px; align-items:center; }
.speaker__title{ color:#000; font-family:var(--font-accent); font-size:50px; font-weight:700; line-height:125%; }

.speaker__nav-menu{ display:flex; gap:16px; align-items:center; }
.speaker__nav-menu a{ display:inline-flex; opacity:1; transition:opacity .2s ease; }
.speaker__nav-menu a.is-disabled{ opacity:.4; pointer-events:none; }

.speaker__slider{ overflow:hidden; padding:0 40px; }
.speaker__track{ display:flex; gap:30px; will-change:transform; transition:transform .4s ease; }

.speaker__item{ width: 368px;; display:flex; flex-direction:column; gap:30px; }
.speaker__ico{ width:100%; height:400px; border-radius:20px;}
.speaker__text{ display:flex; flex-direction:column; gap:10px; }
.speaker__name{ color:#001F3D; font-size:25px; font-weight:400; line-height:145%; }
.speaker__descr{ color:#001F3D; font-size:18px; font-weight:400; line-height:145%; }

.speaker__btn-wrap{ display:flex; gap:10px; justify-content:center; }

@media (max-width:1024px){
  .speaker__item{ flex-basis:calc((100% - 30px)/2); }
}
@media (max-width:640px){
  .speaker__slider{ padding:0 20px; }
  .speaker__item{ flex-basis:100%; }
}

@media (min-width:768px) and (max-width:1024px){
    .speaker__title-wrap, .speaker__slider{
        padding: 0;
    }
}

@media (max-width:767px){
    .speaker__title-wrap, .speaker__slider{
        padding: 0;
    }
    .speaker__title-wrap{
        flex-direction: column;
        align-items: start;
        gap: 30px;
    }
    .speaker__ico{
        max-width: 360px;
    }
}
/* 07. Speaker Section End */

/* 08. Sponsor Section Start */
.sponsor{
    padding-top: 0;
    position: relative;
}

.blob-3{
    top: 30px;
    right: 100px;
    position: absolute;
    width: 502px;
    height: 502px;
    border-radius: 502px;
    opacity: 0.6;
    background: #215FCB;
    filter: blur(250px);
    z-index: -1;
}

.sponsor__promo-wrap{
  position: relative;
}

.sponsor__promo{
    display: flex;
    padding: 60px 40px;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;

    border-radius: 24px;
    background: #215FCB;
}

.sponsor__promo p{
    color: #FFF;
    font-family: var(--font-accent);
    font-size: 50px;
    font-style: normal;
    font-weight: 500;
    line-height: 125%;
}

.sponsor__promo p span{
    font-weight: 700;
}

.sponsor__pic{
    background: url("../img/dollar.avif") center/contain no-repeat;
    width: 334px;
    height: 206px;
    position: absolute;
    right: 0px;
    bottom: 150px;
}

.sponsor__medium-wrap{
    display: flex;
    justify-content: space-between;
    gap: 85px;
}

.sponsor__medium-left-col-img{
    margin-top: 85px;
    background: url("../img/people.avif") center center;
    width: 613px;
    height: 700px;
    border-radius: 24px;
    background-size: cover;
}

.sponsor__medium-right-col{
    display: flex;
    flex-direction: column;
}

.sponsor__medium-wrap-content{
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start
}

.sponsor__medium-svg{
    display: flex;
    justify-content: end;
}

.sponsor__medium-svg svg{
    padding-right: 75px;
}

.sponsor__medium-title{
    color: #000;
    font-family: var(--font-accent);
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%; /* 50px */
}

.sponsor__medium-descr{
    color: #001F3D;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 165%; /* 36.3px */
}

.sponsor__medium-promo{
    display: flex;
    padding: 20px;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
    border-radius: 14px;
    background: #E9F3F9;
}

.sponsor__medium-promo-text{
    color: #001F3D;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 165%; /* 33px */
}

.sponsor__medium-subtitle{
    color: #001F3D;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 165%; /* 36.3px */
}

.sponsor__down-wrap{
    margin-top: 88px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sponsor__down-title{
    color: #000;
    font-family: var(--font-accent);
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%; /* 50px */
}

.sponsor__down-subtitle{
    color: #001F3D;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 165%; /* 36.3px */
}

.sponsor__down-subtitle span{
    font-weight: 700;
}

.sponsor__down-cars-wrap{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sponsor__down-card-row{
    display: flex;
    gap: 30px;
}

.sponsor__down-card{
    display: flex;
    padding: 20px;
    justify-content: start;
    align-items: flex-start;
    gap: 10px;
    border-radius: 14px;
    background: #E9F3F9;
    flex: 1 0 0;
}

.sponsor__down-card-text{
    color: #001F3D;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 165%; /* 29.7px */
}

.sponsor__down-descr{
    color: #001F3D;
    font-size: 35px;
    font-style: normal;
    font-weight: 400;
    line-height: 165%;
}

.sponsor__down-descr span{
    color: #215FCB;
    font-weight: 700;
}

.sponsor__btn-group{
    display: flex;
    justify-content: center;
    margin-top: 36px;
}

@media (min-width:768px) and (max-width:1024px){
    .sponsor__medium-left-col{
        display: none;
    }
    .sponsor__pic{
        right: -50px;
        bottom: 280px;
    }
}

@media (max-width:767px){
    .sponsor__medium-left-col{
        display: none;
    }
    .sponsor__promo p{
        font-size: 20px;
    }
    .about__subtitle{
        font-size: 18px;
    }
    .sponsor__medium-svg svg{
        width: 229px;
        height: 117px;
    }
    .sponsor__down-card-row{
        flex-direction: column;
    }
    .sponsor__medium-descr, .sponsor__medium-promo-text, .sponsor__medium-subtitle, .sponsor__down-subtitle{
        font-size: 18px;
    }
    .sponsor__down-descr{
        font-size: 22px;
    }
    .sponsor__btn-group{
        display: block;
    }
    .sponsor__pic{
        display: none;
    }
}
/* 08. Sponsor Section End */

/* 09. Video Section Start*/
.video{ padding-top:0; position: relative; }

.blob-4{
    top: 0px;
    left: 0px;
    position: absolute;
    width: 502px;
    height: 502px;
    border-radius: 502px;
    opacity: 0.3;
    background: #215FCB;
    filter: blur(250px);
    z-index: -1;
}

.blob-5{
    top: 200px;
    left: 0px;
    position: absolute;
    width: 502px;
    height: 502px;
    border-radius: 502px;
    opacity: 0.3;
    background: #215FCB;
    filter: blur(250px);
    z-index: -1;
}

.blob-6{
    bottom: 0px;
    right: 0px;
    position: absolute;
    width: 502px;
    height: 502px;
    border-radius: 502px;
    opacity: 0.3;
    background: #215FCB;
    filter: blur(250px);
    z-index: -1;
}
.video__content{ display:flex; flex-direction:column; gap:50px; overflow:hidden; }

.video__title-wrap{ display:flex; justify-content:space-between; padding:0 40px; align-items:center; }
.video__title{ color:#000; font-family:var(--font-accent); font-size:50px; font-weight:700; line-height:125%; }

.video__nav-menu{ display:flex; gap:16px; align-items:center; }
.video__nav-menu a{ display:inline-flex; transition:opacity .2s ease; }
.video__nav-menu a.is-disabled{ opacity:.4; pointer-events:none; }

.video__slider{ overflow:hidden; padding:0 40px; }
.video__track{ display:flex; gap:30px; will-change:transform; transition:transform .4s ease; }

.video__item{
  flex:0 0 calc((100% - 30px)/2);  /* 2 карточки в кадре */
  display:flex; flex-direction:column; gap:30px;
}

/* превью и кастомный play */
.video__player{
  position:relative;
  width:100%; height:380px; border-radius:20px;
  background:#e9eef6 50%/cover no-repeat; /* постер подставится из JS */
  overflow:hidden; cursor:pointer;
}
.video__play{
  position:absolute; left:50%; top:50%;
  transform:translate(-50%,-50%);
  width:84px; height:84px; border-radius:50%;
  background:#fff; border:none; box-shadow:0 10px 30px rgba(0,0,0,.2);
  cursor:pointer;
}
.video__play::before{
  content:""; position:absolute; left:50%; top:50%;
  transform:translate(-40%,-50%);
  width:0; height:0;
  border-left:22px solid #215FCB;
  border-top:14px solid transparent;
  border-bottom:14px solid transparent;
}

/* подписи */
.video__text{ display:flex; flex-direction:column; gap:10px; }
.video__name{ color:#001F3D; font-size:25px; font-weight:400; line-height:145%; }
.video__descr{ color:#001F3D; font-size:18px; font-weight:400; line-height:145%; }

.video__btn-wrap{ display:flex; gap:10px; justify-content:center; }

/* tablet остаётся 2; mobile = 1 в кадре */
@media (max-width:640px){
  .video__slider{ padding:0 20px; }
  .video__item{ flex-basis:100%; }
}
@media (min-width:768px) and (max-width:1024px){
  .video__title-wrap, .video__slider{ padding:0; }
}
@media (max-width:767px){
  .video__title-wrap, .video__slider{ padding:0; }
  .video__title-wrap{ flex-direction:column; align-items:start; gap:30px; }
}

@media (min-width:768px) and (max-width:1024px){
    .video__player{
        height: 300px;
    }
}

@media (max-width:767px){
    .video__player{
        height: 210px;
    }
    .video__title{
        font-size: 44px;
    }
}
/* 09. Video Section End*/

/* 10. News Section Start*/
.news{
    display: none;
}

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

.news__title{
    color: #000;
    font-family: var(--font-accent);
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%; /* 62.5px */
}

.news__wrap{
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.news__row{
    display: flex;
    justify-content: space-between;
    gap: 12.5px;
}

.news__item{
    flex: 1 0 0;
    display: flex;
    padding: 15px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    border-radius: 24px;
    border: 2px solid #E9F3F9;
    background: #FFF;
    text-decoration: none;
}

.news__item-pic{
    height: 250px;
    align-self: stretch;
    border-radius: 14px;
    background: lightgray;
}

.news__item-content{
    display: flex;
    padding: 20px 10px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    align-self: stretch;
}

.news__item-date{
    color: #215FCB;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 145%; /* 17.4px */
}

.news__item-name{
    color: #001F3D;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 135%; /* 27px */
}

.news__item-descr{
    color: #001F3D;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 165%; /* 24.75px */
}

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

.news__item{ transition: box-shadow .2s; }

.news__item:hover{ box-shadow: 0 10px 30px rgba(33,95,203,.35);  border-color: #215FCB; }

.news__item-pic-1{
    background: url('../img/news/1.avif') center center;
    background-size: 100%;
}

.news__item-pic-2{
    background: url('../img/news/2.avif') center center;
    background-size: 100%;
}

.news__item-pic-3{
    background: url('../img/news/3.avif') center center;
    background-size: 100%;
}

.news__item-pic-4{
    background: url('../img/news/4.avif') center center;
    background-size: 100%;
}

.news__item-pic-5{
    background: url('../img/news/5.avif') center center;
    background-size: 100%;
}

.news__item-pic-6{
    background: url('../img/news/6.avif') center center;
    background-size: 100%;
}

@media (min-width:768px) and (max-width:1024px){
    .news__row{
        flex-direction: column;
    }
}

@media (max-width:767px){
    .news__row{
        flex-direction: column;
    }
}

#news .news__wrap .news__row{ display:none; }
#news .news__wrap .news__row:first-child{ display:flex; }
#news .news__wrap .news__row.active{ display:flex; }
/* 10. News Section End*/

/* 11. Register Section Start*/
.register__wrap{
    display: flex;
    justify-content: space-between;
    padding: 60px 46px;
    background: url('../img/bg/bg-reg.avif') center center;
    background-size: cover;
    border-radius: 24px;
}

.register__col-1{
    display: flex;
    flex-direction: column;
    gap: 50px;
    justify-content: space-between;
}

.register__text{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.register__title{
    color: #FFF;
    font-family: var(--font-accent);
    font-size: 70px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%; /* 77px */
}

.register__subtitle{
    color: #FFF;
    font-size: 25px;
    font-style: normal;
    font-weight: 500;
    line-height: 165%; /* 41.25px */
}

.register__btn-group{
    display: flex;
    align-items: center;
    gap: 30px;
}

.register__form{
    display: inline-flex;
    padding: 40px 30px;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    border-radius: 20px;
    background: #FFF;
    width: 400px;
}

.register__form-container{
    width: 100%;
}

.register__form-title{
    color: #001F3D;
    text-align: center;
    font-family: var(--font-accent);
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 145%; /* 43.5px */
    letter-spacing: -1px;
}

@media (min-width:768px) and (max-width:1024px){
    .register__wrap{
        flex-direction: column;
        background-size: cover;
        gap: 30px;
    }
    .register__col-2{
        display: flex;
        justify-content: center;
    }
    .register__form{
        width: 100%;
    }
}

@media (max-width:767px){
     .register__wrap{
        flex-direction: column;
        background-size: cover;
        gap: 30px;
        padding: 40px 16px;
    }
    .register__col-2{
        display: flex;
        justify-content: center;
    }
    .register__form{
        width: 100%;
    }
    .register__btn-group{
        flex-direction: column;
        width: 100%;
        align-items: stretch;
    }
    .register__title{
        font-size: 40px;
        line-height: normal;
    }
    .register__subtitle{
        font-size: 18px;
        line-height: normal;
    }
}
/* 11. Register Section End*/



/* 12. 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: #3A6EDD;
  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;
  }
}
/* 12. Footer Section End */

/* 13. 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:#ffffff;
  z-index: 10;
}

body.no-scroll{ overflow: hidden; }

.modal__title{
    color: #ffffff;
    font-family: var(--font-accent);
    font-size: 50px;
    font-weight: 700;
    line-height: 125%;
    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; }
}
/* 13. Pop-up Section End */

/* 14. General Media Styles Section Start */
/* Tablets Final CSS Styles */
@media (min-width:768px) and (max-width:1024px){

    
}
/* Mobile Final CSS Styles */
@media (max-width:767px){
    .blob-1, .blob-2, .blob-3, .blob-4{
        width: 300px;
    }
    .modal__title{
        font-size: 18px;
        line-height: normal;
    }
    .modal__dialog p{
        font-size: 14px;
    }
    .blob-5{
        width: 100px;
    }
    .blob-6{
        display: none;
    }
}


  .modal{ align-items: center; }
  .modal__dialog{
    width: 100%;
    max-height: 90dvh;
    border-radius: 16px;
    padding: 20px;
    overflow: auto;
  }


html, body { max-width:100%; overflow-x:hidden; }

/* контейнер секции */
.topics { overflow: visible; }

/* обёртка двух колонок */
.topics__content-wrap { overflow: visible; }

/* левая колонка (зелёная зона) */
.topics__left{
  align-self: flex-start;   /* не растягивать по высоте правой колонки */
  height: max-content;      /* чтобы sticky считал собственную высоту */
}

/* сам заголовок */
.topics__title{
  position: sticky;
  top: 96px;                /* под высоту шапки сайта */
  z-index: 2;
  background: #fff;         /* чтобы не просвечивал */
}
/* 14. General Media Section Styles 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: flex;
    justify-content: space-between;
    gap: 100px;
}

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

.thanks__text-wrap{
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.thanks__uptitle{
    color: #535353;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 120% */
}

.thanks__title{
    color: #001F3D;
    font-family: var(--font-accent);
    font-size: 64px;
    font-style: normal;
    font-weight: 400;
    line-height: 110%; /* 70.4px */
    letter-spacing: -1px;
}

.thanks__subtitle{
    display: flex;
    padding: 20px;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    border: 1px solid #A9BFEB;
    background: #FFF;
    align-self: flex-start;
}

.thanks__subtitle-text{
    color: var(--Color-2, #001F3D);
    font-family: var(--font-accent);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 26.412px; /* 146.736% */
    letter-spacing: -0.66px;
}

.thanks__contact-wrap{
    justify-content: space-between;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.thanks__contact-wrap p{
    color: #001F3D;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 165%; /* 33px */
}

.link-thx{
    display: flex;
    align-items: center;
    gap: 20px;

    border-radius: 20px;
    border: 1px solid #E6E9ED;
    background: #26A4E3;
    text-decoration: none;

    padding: 20px;
    width: fit-content;
}

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

.link-thx-title{
    color: #FFF;
    font-family: var(--font-accent);
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 34.8px; /* 145% */
    letter-spacing: -1px;
}

.thanks__col-2{
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.thanks__col-2 p{
    color: var(--Color-2, #001F3D);
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; /* 92.308% */
}

@media (min-width:768px) and (max-width:1024px){
    .thanks__wrap{
        flex-direction: column;
    }
}

@media (max-width:767px){
    .thanks__wrap{
        flex-direction: column;
    }
    .thanks__title{
        font-size: 44px;
    }
    .thx__header-wrap {
    gap: 15px;
    flex-direction: column;
    padding: 20px 00px;
    display: flex;
    justify-content: space-between;
    }
    .thanks{
        padding-top: 120px;
    }
    .thx__header-title{
        display: none;
    }
    .thanks__contact-wrap{
        gap: 20px;
    }
}
/* 15. Thanks Section End*/


.program__acc-col-right{
    display: none;
}

/* 14. Pop-Up Section Start*/
/* ===== Modal ===== */
.modal{ position:fixed; inset:0; z-index:9999; display:none; }
.modal.is-open{ display:block; }

/* фон: фиолетовый тинт + блюр содержимого под ним */
.modal__backdrop{
  position:absolute; inset:0; border:0; padding:0; margin:0;
  background: rgba(59, 89, 196, 0.22);          /* акцентный фиолетовый */
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: default;
}

/* карточка */
.modal__dialog{
  position:relative;
  max-width: 720px;
  width: calc(100% - 40px);
  margin: 5vh auto;
  background:#fff;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0,0,0,.25);
  padding: 40px 28px;
}

/* слот под форму */
.modal__content{
  min-height: 200px;
}

/* крестик */
.modal__close{
  position:absolute; top:14px; right:14px;
  display:inline-flex; align-items:center; justify-content:center;
  width:40px; height:40px; border-radius:12px; border:none; background:#f6f6fb;
  font-size:22px; line-height:1; color:#222; cursor:pointer;
}
.modal__close:hover{ background:#edeefe; }

/* адаптивы */
@media (max-width: 768px){
  .modal__dialog{ margin: 7vh auto; padding: 28px 20px; border-radius:20px; }
  .modal__close{ width:36px; height:36px; border-radius:10px; top:10px; right:10px; }
}
@media (max-width: 420px){
  .modal__dialog{ margin: 0 auto; top: 6vh; transform: translateY(0); }
}

/* блокируем скролл страницы при открытом модале */
html.modal-lock, body.modal-lock{ overflow:hidden; }
.hero__form-alt-btn{
  text-align: center;
}

.hero__form-alt-btn a{
  color: #215FCB !important;
  font-weight: 600;
}

.hero__form-container{
  width: 100%;
}
/* 14. Pop-Up Section End*/
/* =================================== */
/* =================================== */
/* =================================== */
/* Danylo Oliinyk - https://iamdev.lol/ */
/* =====October 2025 For Statoplan =====*/
/* =================================== */
/* =================================== */
/* =================================== */


title-wrap{
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 50px;
}

.sponsor__promo span a{
    color: #FFF;
    text-decoration: underline;
}

.link-thx-dev{
    width: auto;
    text-align: center;
    justify-content: center;
}

.acc-btn-2 {
    font-weight: 800;
    background: #215FCB !important;
    color: #E5F3FF !important;
    padding: 25px 50px;
    font-size: 25px;
}

.header__wrap-logos{
    display: flex;
    gap: 20px;
    align-content: center;
    align-items: center;
}

.header__wrap-logos img{
    height: 64px;
}

.dev-c{
    width: 100%;
    height: 100%;
}

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

.free__wrap{
    display: flex;
    padding: 8rem;
    border-radius: 6rem;
    gap: 8rem;    
    border: 1px solid rgba(0,0,0,0.12);
    background: #FFF;
}

.free__col-1-pic {
    height: 500px;
    width: 360px;
    background: url(https://stratoplan-school.com/team/img/headline/800x1200_hdl01.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 25px;
}


.free__title{
    font-size: 2.2rem;
    font-family: var(--font-accent);
    color: #000;
    
}

.free__title span{
    font-weight: 600;
    color: #26A4E3;
}

.free__col-2{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    
}

.btn-btn{
    color: #FFF;
    font-family: var(--font-accent);
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 34.8px;
    letter-spacing: -1px;
}


@media (max-width:1024px){
.link-thx-dev{
    width: auto;
}
.thanks__col-2 p{
    padding-bottom: 40px;
}
.distance-section-1{
    padding-top: 0px;
    padding-bottom: 50px;
}
.acc-btn-3{
    display: none;
}
.header__wrap-logos{
    justify-content: space-between;
}
.acc-btn-4{
    width: 100%;
}
.free__col-1-pic{
    display: none;
}
.free__wrap {
    display: flex;
    padding: 4rem 2rem;
    border-radius: 2rem;
    gap: 0;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #FFF;
}
.free__col-2{
    gap: 20px;
}
.btn-btn {
    display: flex;
    justify-content: center;
    width: auto;
}

.free__title {
    font-size: 1.2rem;
}
.thanks__uptitle {
    padding-top: 30px;
    color: #535353;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
}


@media (max-width:767px){
.link-thx-dev{
    width: auto;
}
.thanks__col-2 p{
    padding-bottom: 40px;
}
.distance-section-1{
    padding-top: 0px;
    padding-bottom: 50px;
}
.acc-btn-3{
    display: none;
}
.header__wrap-logos{
    justify-content: space-between;
}
.acc-btn-4{
    width: 100%;
}
.free__col-1-pic{
    display: none;
}
.free__wrap {
    display: flex;
    padding: 4rem 2rem;
    border-radius: 2rem;
    gap: 0;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #FFF;
}
.free__col-2{
    gap: 20px;
}
.btn-btn {
    display: flex;
    justify-content: center;
    width: auto;
}

.free__title {
    font-size: 1.2rem;
}
}


