/* =================================== */
/* =================================== */
/* =================================== */
/* Danylo Oliinyk - https://iamdev.lol/ */
/* =====Januar 2026 For Statoplan =====*/
/* =================================== */
/* =================================== */
/* =================================== */
/* 01. Header Section */
/* 02. Hero Section */
/* 03. About Section */
/* 04. Blobs Section */
/* 05. Topics Section */
/* 06. Speaker Section */
/* 07. Register Section */
/* 08. Thanks Section */
/* 09. Footer Section */
/* 10. Pop-up 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{
    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: 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%; /* при наведении линия растягивается */
}
/* 01. Header Section End */

/* 02. Hero Section Start */
.hero{
    padding-top: 145px;
    padding-bottom: 100px;
    position: relative !important;
}

.hero__main-wrap{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 82px;
}

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

.hero__main-up-title-wrap{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    align-self: stretch;
}

.hero__main-up-up-title{
    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%; /* 19.8px */
    letter-spacing: 5px;
    text-transform: uppercase;
}

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

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

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

.hero__main-card-row{
    display: flex;
    justify-content: stretch;
    gap: 25px;
}

.hero__main-card{
    display: flex;
    padding: 30px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    align-self: stretch;
    gap: 10px;
    min-height: 140px;
    flex: 1 0 0;
}

.hero__main-card-title-wrap{
    display: flex;
    flex-direction: column;
    align-self: stretch;
}

.hero__main-card-ico{
    display: flex;
    align-self: flex-end;
}

.hero__main-card-title{
    display: flex;
    align-self: flex-start;

    color: var(--dark-blue, #001F3D);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; /* 150% */
}

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

.card-subtitle-big{
  font-size: 25px;
}

.c1-card{
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: rgba(213, 221, 253, 0.50);
    box-shadow: 0 4px 100px 0 rgba(0, 0, 0, 0.03);
}

.c2-card{
    border-radius: 20px;
    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);
}

.c3-card{
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: rgba(205, 252, 244, 0.50);
    box-shadow: 0 4px 100px 0 rgba(0, 0, 0, 0.03);
}

.c4-card{
    border-radius: 20px;
    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);
}

.c5-card{
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: rgba(253, 213, 214, 0.50);
    box-shadow: 0 4px 100px 0 rgba(0, 0, 0, 0.03);
}

.c6-card{
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: var(--white, #FFF);
  box-shadow: 0 4px 100px 0 rgba(0, 0, 0, 0.03);
}

.hero__main-stats-row{
    display: flex;
    width: 1114px;
    justify-content: space-between;
    align-items: flex-start;
}

.hero__main-stats-item{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    flex-shrink: 0;
    width: 230px;
}

.hero__main-stats-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;
}

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

.hero__main-stats-descr span{
   font-weight: 700; 
}

.hero__main-stats-div{
    width: 2px;
    height: 165px;
    flex-shrink: 0;
    border-radius: 200px;
    background: #ADBEFF;
}
/* 02. Hero Section End */

/* 03. About Section Start */
.about{
  padding-top: 100px;
  padding-bottom: 150px;
}

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

.about__header{
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about__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;
}

.about__content{
  display: flex;
  align-items: center;
  gap: 54px;
  align-self: stretch;
}

.about__content-left{
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about__content-item-1{
  width: 360px;
  height: 617px;
  border-radius: 20px;
  background: url('../img/about-2.avif') lightgray 50% / cover no-repeat;
}

.about__content-item-2{
  width: 360px;
  height: 340px;
  border-radius: 20px;
  background: url('../img/about-1.avif') lightgray 50% / cover no-repeat;
}

.about__content-right{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

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

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

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

.about__content-row{
  display: flex;
  gap: 20px;
}

.about__content-item{
  display: flex;
  height: 273.22px;
  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);
}

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

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

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

.about__pretitle{
  width: max-content !important;
}

@media (max-width: 1024px) {
  .about__title{
    font-size: 35px;
    line-height: normal;
  }
  .about__content-left{
    display: none;
  }
}

@media (max-width: 767px) {
.about__title{
    font-size: 35px;
    line-height: normal;
  }
  .about__content-left{
    display: none;
  }
  .about__content-descr{
    font-size: 16px;
    line-height: normal;
  }
  .about__content-title{
    font-size: 18px;
    line-height: normal;
  }
  .about__content-row{
    flex-direction: column;
  }
  .about__content-item{
    height: auto;
  }
  .about {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
/* 03. About Section End */

/* 04. Blobs Section Start */
.rolling,
.plashka {
  position: absolute;
  z-index: -1; 
}

.rolling{
  position: absolute;          
  width: 228px;
  height: 228px;
  right: -80px;
  top: -70px;
  z-index: -1;
  aspect-ratio: 1/1;
  
  background: url("../img/rolling.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); }
}


.plashka {
    left: 10px;
    top: 150px;
    background: #CDFCF4;
    width: 738px;
    height: 40px;
}

.blob-orange, .blob-blue, .blob-lunic, .blob-blue-2, .blob-green{
  position: absolute;
  z-index: -2;
}

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

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

.blob-blue-2{
    width: 628px;
    height: 761px;
    border-radius: 761px;
    background: rgba(205, 252, 244, 0.50);
    filter: blur(200px);
    right: -100px;
    bottom: 900px;
}

.blob-lunic{
  border-radius: 761px;
  background: rgb(213 221 253);
  filter: blur(200px);
  width: 628px;
  height: 761px;
  left: 00px;
  top: 2200px;
}

.blob-green{
  width: 628px;
  height: 761px;
  border-radius: 761px;
  background: rgba(214, 252, 205, 0.50);
  filter: blur(200px);
  left: -100px;
  bottom: 700px;
}

.plashka-2{
  width: 644px;
  height: 40px;
  background: #FED;
  right: 200px;
  top: 69px;
}

.plashka-3{
  width: 402px;
  height: 40px;
  background: #D5DDFD;
  top: 90px;
}

.plashka-4{
  width: 514px;
  height: 40px;
  background: #D6FCCD;
  left: 150px;
  top: 80px;
}

.plashka-5{
  width: 536px;
  height: 40px;
  background: #FDD5D6;
  top: 120px;
}

.plashka-6{
  top: 140px;
}

.rolling-2{
  left: -80px !important;
  bottom: -100px !important;
  top: auto;
}

@media (max-width: 1024px) {
    .container-main{
        width: auto;
    }
    .hero{
        padding-top: 40px;
    }
    .rolling{
        height: 500px;
        width: 500px;
        right: -400px;
        top: 0px;
    }
    .plashka{
        width: 630px;
        top: 190px;
        left: 10px;
    }
    h1{
        font-size: 54px;
    }
    .hero__main-card-title-wrap{
        gap: 8px;
    }
    .hero__main-stats-row{
        width: 100%;
        flex-direction: column;
        align-self: start;
        gap: 20px;
    }
    .hero__main-stats-div{
        height: 2px;
        width: 100%;
    }
    .hero__main-stats-item{
        flex-direction: row;
        width: 100%;
        justify-content: start;
        align-items: center;
    }
    .rolling-2{
      display: none;
    }
    .plashka-3 {
        top: 80px;
    }
    .plashka-4{
      top: 70px;
      left: 40px;
    }
    .plashka-5{
      height: 60px;
      width: 530px;
      top: 130px;
      left: 10px;
    }
}

@media (max-width: 767px) {
    .container-main{
        width: auto;
    }
    .hero{
        padding-top: 20px;
        padding-bottom: 50px;
    }
    .rolling {
        height: 298px;
        width: 298px;
        right: -200px;
        top: 150px;
    }
    .plashka {
        height: 70px;
        width: 237px;
        top: 135px;
        left: 8px;
    }
    h1{
        font-size: 35px;
    }
    h2{
        font-size: 18px;
        line-height: normal;
        max-width: 310px;
    }
    .hero__main-card-title-wrap{
        gap: 8px;
    }
    .hero__main-stats-row{
        width: 100%;
        flex-direction: column;
        align-self: start;
        gap: 20px;
    }
    .hero__main-stats-div{
        height: 2px;
        width: 100%;
    }
    .hero__main-stats-item{
        flex-direction: row;
        width: 100%;
        justify-content: start;
        align-items: center;
    }
    .hero__main-up-up-title{
        font-size: 10px;
        line-height: normal;
    }
    .hero__main-card-row{
        flex-direction: column;
        gap: 15px;
    }
    .hero__main-card-wrap{
        gap: 15px;
    }
    .rolling-2 {
        display: block;
        top: 10px;
        right: -220px !important;
        left: auto !important;
    }
    .plashka-2 {
        height: 70px;
        width: 237px;
        top: 195px;
        left: 8px;
    }
    .plashka-3 {
        top: 60px;
    }
    .plashka-4{
      top: 125px;
      left: 30px;
    }
    .plashka-5{
      height: 60px;
      width: 250px;
      top: 70px;
      left: 10px;
    }
}

@media (max-width: 767px) {
    .rolling-3 {
        height: 298px;
        width: 298px;
        right: -200px;
        top: -160px;
    }
}
/* 04. Blobs Section End */

/* 05. Topics Section Start */
.topics{
  padding-top: 55px;
  padding-bottom: 100px;
}

.topics__wrap{
  display: inline-flex;
  align-items: flex-start;
  gap: 20px;
}

.topics__col-left{
  display: flex;
  width: 547px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.topics__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;
}

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

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

.topics__col-right{
  display: flex;
  width: 547px;
  flex-direction: column;
  align-items: flex-start;
  gap: 50px;
}

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

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

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

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

.topics__col-item-ico{
  width: 152px;
  height: 152px;
  aspect-ratio: 1/1;
  background: url(<path-to-image>) lightgray 50% / cover no-repeat;
}

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

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

.item-ico-3{
  background: url('../img/pic-4.avif') rgba(211, 211, 211, 0) 50% / cover no-repeat;
}

.item-ico-4{
  background: url('../img/pic-3.avif') rgba(211, 211, 211, 0) 50% / cover no-repeat;
}

.topics .topics__wrap{
  display: flex !important;
  align-items: flex-start;
  gap: 20px;
  overflow: visible !important;
}

.topics .topics__col-left{
  position: sticky !important;
  top: 110px;
  align-self: flex-start;
}

.topics__wrap {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.topics__col-left {
  position: sticky;
  top: 110px;
  align-self: flex-start;
}

@media (max-width: 1024px) {
  .topics__col-right{
    width: auto;
    gap: 10px;
  }
  .topics__col-left{
    width: auto;
  }
  .topics .topics__wrap{
    flex-direction: column;
  }
  .topics__title{
    font-size: 35px;
    line-height: normal;
  }
  .topics__subtitle{
    font-size: 18px;
    line-height: normal;
  }
}

@media (max-width: 767px) {
  .topics__col-right{
    width: auto;
    gap: 10px;
  }
  .topics__col-left{
    width: auto;
    gap: 10px;
  }
  .topics .topics__wrap{
    flex-direction: column;
  }
  .topics__title{
    font-size: 35px;
    line-height: normal;
  }
  .topics__subtitle{
    font-size: 18px;
    line-height: normal;
  }
  .topics__col-item-ico{
    display: none;
  }
}
/* 05. Topics Section End */

/* 06. Speaker Section Start */
.speaker{
  padding-top: 100px;
  padding-bottom: 100px;
}

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

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

.speaker__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;
}

.speaker__wrap{
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-self: center;
}

.speaker__row{
  display: flex;
  gap: 20px;
}

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

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

.speaker__item-ico-1{
  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: -0px, 0px;
    background-position-y: -85px, 00px;
    background-size: 120%;
}

.speaker__item-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: -60px, 00px;
  background-size: 120%;
}

.speaker__item-ico-3{
  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%;
}

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

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

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

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

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



@media (max-width: 767.98px) {
.speaker__item{
    width: auto;
  }
  .speaker__row{
    flex-wrap: wrap;
  }
  .speaker__main-wrap{
    gap: 20px;
  }
  .speaker__row, .speaker__wrap{
    gap: 10px;
  }
  .topics, .speaker{
    padding-top: 55px;
    padding-bottom: 55px;
  }
}

@media (min-width: 768px) and (max-width: 1023.98px) {
  .speaker__item{
    width: 300px;
  }
  .speaker__row{
    flex-wrap: wrap;
    justify-content: center;
  }
}
/* 06. Speaker Section End */

/* 07. Register Section Start */
.reg{
  padding-top: 100px;
  padding-bottom: 100px;
}

.reg__wrap-main{
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
}

.reg__wrap{
  display: flex;
  align-items: center;
  gap: 51px;
}

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

.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%; /* 66px */
  text-transform: uppercase;
}

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

.reg__wrap-forn-container{
  display: flex;
  width: 547px;
  /* height: 220px; */
  padding: 40px;
  flex-direction: column;
  gap: 20px;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: var(--white, #FFF);
}

/* Mobile: 0–767px */
@media (max-width: 767.98px) {
   .reg__wrap{
    flex-direction: column;
    gap: 24px;
  }
  .reg__wrap-right{
    width: 100%;
  }
  .reg__wrap-forn-container{
    width: auto;
    padding: 40px 15px; 
  }
  .reg__wrap-left{
    gap: 20px;
  }
  .reg__wrap-title{
    font-size: 35px;
    line-height: normal;
  }
  .reg__wrap-subtitle{
    font-size: 18px;
    line-height: normal;
  }
    .reg__wrap-main{
    gap: 15px;
  }
}

/* Tablet: 768–1023px */
@media (min-width: 768px) and (max-width: 1024px) {
  .reg__wrap{
    flex-direction: column;
  }
  .reg__wrap-right, .reg__wrap{
    width: 100%;
  }
  .reg__wrap-forn-container{
    width: auto;
  }
}

/* 07. Register Section End */

/* 08. 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;
}

.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;
  }
}
/* 08. Thanks Section End*/


/* 09. 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;
  }
}
/* 09. Footer Section End */

/* 10. 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: 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; }
}

.hero__form-alt-btn{
  text-align: center;
}
/* 10. Pop-up Section End */

/* =================================== */
/* =================================== */


/* =================================== */
/* Danylo Oliinyk - https://iamdev.lol/ */
/* =====Januar 2026 For Statoplan =====*/
/* =================================== */
/* =================================== */
/* =================================== */