/* =================================== */
/* =================================== */
/* =================================== */
/* Danylo Oliinyk - https://iamdev.lol/ */
/* =====November 2025 For Statoplan =====*/
/* =================================== */
/* =================================== */
/* =================================== */
/* 01. Header Section */
/* 02. Hero Section */
/* 03. Info Section */
/* 04. Promo Section */
/* 05. About Section */
/* 06. Schedule Section */
/* 07. Speaker Section */
/* 08. Benefits Section */
/* 09. Adds Section */
/* 10. Register Section */
/* 11. FAQ Section */
/* 12. Footer Section */
/* 13. Thanks Page Section */
/* 14. Pop-up 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;
    gap: 50px;
    justify-content: space-between;
    align-items: center;
}

.header__link{
    color: #001F3D;
    font-size: 22px;
    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); /* легкая тень для отделения от контента */
}

/* Иконка бургера */
.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: #001F3D;
    transition: color 0.3s ease;
}

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

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

.acc-btn{
    background: #550CA8;
    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: var(--Color-3, #FFF);
}


.btn{
  display: flex;
  padding: 15px 20px;
  justify-content: center;
  align-items: center;
  border-radius: 10.91px;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  text-decoration: none;

  transition: transform 200ms ease, box-shadow 200ms ease;
  will-change: transform;
}

.btn:hover{
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.btn:active{
  transform: scale(0.99);
}

@media (prefers-reduced-motion: reduce){
  .btn{ transition: none; }
}
/* 01. Header Section End */

/* 02. Hero Section Start*/
.hero{
  position: relative;
  isolation: isolate;          /* чтобы тень не проваливалась */
  background: url(/img/bg-main.avif) center/cover no-repeat;
}


/* .hero::before{
  content: "";
  position: absolute;
  inset: -8px;    
  background: inherit;
  background-clip: padding-box;
  filter: blur(1px);
  z-index: 0;
} */

.hero > *{
  position: relative;
  z-index: 1;                  /* контент поверх эффекта */
}


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

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

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

.hero__uptitle-wrap p{
    color: #001F3D;
    font-family: var(--font-accent);
    font-size: 35px;
    font-style: normal;
    font-weight: 500;
    line-height: 37.04px; /* 105.83% */
    letter-spacing: -0.926px;
}

.hero__title-wrap{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
}

h1{
    color: #550CA8;
    font-family: var(--font-accent);
    font-size: 80px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%; /* 100px */
    text-transform: uppercase;
}

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

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

.hero__item{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.hero__item-text{
    color: #001E3D;
    text-align: center;
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: 17.406px; /* 69.625% */
}

.hero__form{
    display: flex;
    height: 500px;
    width: 496px;
    padding: 40px 30px;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;

    border-radius: 20px;
    background:  #FFF;
}

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

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

.hero__promo-rel-wrap{
    position: relative;
}

.hero__promo{
    margin-top: 160px;
    padding: 60px 40px;
    border-radius: 20px;
    border: 1px solid rgba(85, 12, 168, 0.20);
    background: rgba(85, 12, 168, 0.05);
}

.hero__promo-content{
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
}

.hero__promo-uptitle{
    text-align: start;
    color: #001F3D;
    font-family: var(--font-accent);
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%; /* 50px */
}

.hero__promo-uptitle span{
    color: #550CA8;
}

.hero__promo-subtitle{
    text-align: end;
    color: #001F3D;
    font-size: 25px;
    font-style: normal;
    font-weight: 500;
    line-height: 145%; /* 36.25px */
}

.hero__promo-ico{
    position: absolute;
    right: 50px;
    top: -100px;
}

.hero.bg-section{
  --fade: 1020px;
  background:
    linear-gradient(to bottom,
      rgba(255,255,255,0) calc(100% - var(--fade)),
      #fff 100%),
    url(../img/bg-main.avif) center/cover no-repeat;
}


/* Планшеты */
@media (min-width: 768px) and (max-width: 1024px){
  .hero__wrap{
    flex-direction: column;
    gap: 40px ;
  }
  .hero__promo-uptitle{
    font-size: 35px;
  }
  .hero__promo-ico{
    top: -110px;
  }
  h1{
    font-size: 70px;
  }
  .hero__uptitle-wrap p{
    font-size: 25px;
  }
}


/* Мобилки */
@media (max-width: 768px){
  .hero__wrap{
    flex-direction: column;
    gap: 40px ;
  }
  .hero__promo-uptitle{
    font-size: 25px;
  }
  .hero__promo-ico{
    top: -110px;
  }
  h1{
    font-size: 40px;
  }
  h2{
    font-size: 24px;
    line-height: normal;
  }
  .hero__uptitle-wrap p{
    font-size: 18px;
  }
  .hero__form{
    width: 100%;
    padding: 40px 20px;
  }
  .hero__item-text{
    font-size: 16px;
  }
  .hero__promo-subtitle{
    font-size: 18px;
  }
  .hero__promo-content{
    gap: 40px;
  }
}
/* 02. Hero Section End*/


/* 03. Info Section Start */
.info__content-wrap{
    display: flex;
    flex-direction: column;
    gap: 50px;
}

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

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

.info__content-title{
    color: #001F3D;
    font-family: var(--font-accent);
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: 145%; 
}

.info__content-subtitle{
    color: #001F3D;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 145%;
}

.info__content-promo{
    color: #001F3D;
    font-size: 21.855px;
    font-style: normal;
    font-weight: 500;
    line-height: 32.069px; /* 146.736% */
    letter-spacing: -0.802px;
    border-radius: 12.987px;
    border: 0.866px solid rgba(85, 12, 168, 0.20);
    background: rgba(85, 12, 168, 0.05);
    padding: 30px;
}

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

.info__content-wrap-col-2-pic{
    background: url(../img/info-pic.avif);
    background-position: center center;
    background-size: contain;
    width: 492px;
    height: 493px;
}

.info__content{
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.info__content-wrap-col-1{
    display: flex;
    width: 738px;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
}

.info__btn-group{
    display: flex;
    justify-content: center;
    width: 100%;
}

@media (max-width: 768px){
  .info__content-wrap-col-2-pic{
    display: none;
  }
  .info__title{
    font-size: 35px;
  }
    .info__content-promo{
    font-size: 18px;
    line-height: normal;
  }
  .btn{
    width: 100%;
  }
  .info__content-title{
    font-size: 18px;
  }
}

@media (min-width: 768px) and (max-width: 1024px){
  .info__content-wrap-col-2-pic{
    display: none;
    line-height: normal;
  }
  .info__content-title{
    font-size: 18px;
  }

}
/* 03. Info Section End */

/* 04. Promo Section Start */
.promo__main{
  display: flex;
  flex-direction: column;
  gap: 50px;
}

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

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

.promo__title span{
  color: #001F3D;
}

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

.promo__cadrs-wrap{
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.promo__card{
  flex: 1 0 0;
  display: flex;
  padding: 40px;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  border-radius: 20px;
  border: 1px solid rgba(85, 12, 168, 0.20);
  background: var(--Color-3, #FFF);
}

.card-pink{
  border: 1px solid rgba(85, 12, 168, 0.20);
  background: rgba(85, 12, 168, 0.05);
  box-shadow: 40px 40px 100px 0 rgba(141, 33, 203, 0.03);
}

.promo__card-ico{
  height: 350px;
  align-self: stretch;
  border-radius: 10px;
  background: url(<path-to-image>) lightgray 50% / cover no-repeat;
}

.promo__card-ico-1{
  background: url(../img/giphy-1.gif);
  background-repeat: no-repeat;
  background-size: cover;
}

.promo__card-ico-2{
  background: url(../img/giphy-2.gif);
  background-repeat: no-repeat;
  background-size: cover;
}

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

.promo__card-title{
  color: #001F3D;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 145%; /* 36.25px */
  text-transform: uppercase;
}

.promo__card-descr{
  color: #001F3D;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
}

.promo__card-descr span{
  font-weight: 700;
}

@media (max-width: 768px){
  .promo__cadrs-wrap{
      flex-direction: column;
  }
  .promo__title{
    font-size: 35px;
  }
  .promo__card{
    padding: 40px 20px;
  }
  .promo__subtitle{
    font-size: 18px;
  }
}

@media (min-width: 768px) and (max-width: 1024px){
  .promo__cadrs-wrap{
    flex-direction: column;
  }
}
/* 04. Promo Section End */


/* 05. About Section Start */
.about__wrap{
  display: flex;
  justify-content: space-between;

  padding: 60px 40px;
  border-radius: 20px;
  background: #FFF;
  gap: 40px;
}

.about__col-1{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.about__title span{
  color: #550CA8;
}

.about__subtitle{
  color: #001F3D;
  font-family: var(--font-accent);
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%; /* 37.5px */
}

.about__btn-group{
  display: flex;
  gap: 20px;
  align-items: center;
}

.about__btn-group p{
  color: #001F3D;
  text-align: center;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 80% */
}

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

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

.about__ico{
  width: 403px;
  height: 370px;
  flex-shrink: 0;
  aspect-ratio: 403/370;
  background: url(../img/man_about.png);
  background-size: contain;
}

.about-btn{
  color: #FFF;
  text-align: center;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}

.gray-btn{
  border-radius: 10.91px;
  background: var(--Color-2, #001F3D);
  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;
}

@media (max-width: 768px){
  .about__wrap{
    flex-direction: column-reverse;
  }
  .about__subtitle{
    font-size: 18px;
  }
  .about-btn{
    font-size: 18px;
    width: 100%;
  }
  .about__title{
    font-size: 30px;
  }
  .about__btn-group{
    flex-direction: column;
  }
  .about__btn-group p{
    display: none;
  }
  .about__descr{
    font-size: 12px;
  }
}

@media (min-width: 768px) and (max-width: 1024px){
  .about__wrap{
    flex-direction: column-reverse;
  }
  .about__subtitle{
    font-size: 25px;
  }
  .about-btn{
    font-size: 18px;
    width: 100%;
  }
}
/* 05. About Section End */



/* 06. Schedule Section Start */
.schedule__main{
  display: flex;
  flex-direction: column;
  gap: 50px;
}

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

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

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

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

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

.schedule__cal{
  display: flex;
  /* justify-content: space-between; */
}

.schedule__cal-col-1{
  display: flex;
  flex-direction: column;
}

.schedule__cal-btn{
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 447px;
  height: 305px;
  padding: 30px 40px;
  align-items: start;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 0 0 0 14px;
  border: 1px solid rgba(85, 12, 168, 0.20);
  background: #FFF;
  text-decoration: none;
}

.cal-btn-active{
  border-radius: 14px 0 0 0;
  border: 1px solid rgba(85, 12, 168, 0.20);
  background: linear-gradient(0deg, rgba(85, 12, 168, 0.05) 0%, rgba(85, 12, 168, 0.05) 100%), #FFF;
}

.schedule__cal-btn-title{
  color: #5C16AC;
  font-size: 23.527px;
  font-style: normal;
  font-weight: 500;
  line-height: 41.697px; /* 177.233% */
  letter-spacing: -1.042px;
}

.schedule__cal-btn-subtitle{
  color: #5C16AC;
  font-family: var(--font-accent);
  font-size: 35px;
  font-style: normal;
  font-weight: 500;
  line-height: 41.697px; /* 119.134% */
  letter-spacing: -1.042px;
}

.schedule__cal-day{
  display: none;
  padding: 30px 40px;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;

  border-radius: 0 14px 14px 0;
  border: 1px solid rgba(85, 12, 168, 0.20);
  background: #FFF;
}

.cal-day-active{
  display: flex;
}

.schedule__cal-item{
  display: flex;
  justify-content: space-between;
  width: 100%;
}



.schedule__cal-item-text{
  display: flex;
  flex-direction: column;
}

.schedule__cal-item-time{
  margin-bottom: 10px;
  color: #560EA9;
  font-family: var(--font-accent);
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  line-height: 41.697px; /* 166.788% */
  letter-spacing: -1.042px;
}

.schedule__cal-item-speaker, .schedule__cal-item-theme{
  color: #001F3D;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
}

.schedule__cal-item-speaker span, .schedule__cal-item-theme span{
  font-weight: 700;
}

.schedule__cal-item-icons{
  display: flex;
  gap: 10px;
}

.schedule__cal-item-ico{
  width: 120px;
  height: 120px;
  aspect-ratio: 1/1;
  border-radius: 1000px;
  background: url(<path-to-image>) rgb(0, 0, 0) 50% / cover no-repeat;
}

.cal-item-ico-1{
    background-image: url(../img/team/savochka.webp);
    background-repeat: no-repeat, no-repeat;
    background-position-x: -40px;
    background-position-y: -40px;
    background-size: 190%;
}

.cal-item-ico-2 {
    background-image: url(../img/team/smirnov.avif);
    background-repeat: no-repeat, no-repeat;
    background-position-x: -0px;
    background-position-y: 10px;
    background-size: 100%;
} 

.cal-item-ico-3{
    background-image: url(../img/team/koreysha.webp);
    background-repeat: no-repeat, no-repeat;
    background-position-x: 10px;
    background-position-y: 10px;
    background-size: 80%;
}

.cal-item-ico-4{
  background-image: url(../img/team/orlov.webp);
  background-repeat: no-repeat, no-repeat;
  background-position-x: -20px;
  background-position-y: -20px;
  background-size: 130%;
}

.cal-item-ico-5{
  background-image: url(../img/team/korchinsky.webp);
  background-repeat: no-repeat, no-repeat;
  background-position-x: -15px;
  background-position-y: -20px;
  background-size: 130%;
}

.cal-item-ico-7{
  background-image: url(../img/team/antonov.avif);
  background-repeat: no-repeat, no-repeat;
  background-position-x: 0px;
  background-position-y: 10px;
  background-size: 100%;
}

/* Контейнер двух колонок: высоты синхронизируются */
.schedule__cal{
  display: flex;
  align-items: stretch;          /* важно */
}

/* Левая колонка фиксированной ширины, растягивается по высоте родителя */
.schedule__cal-col-1{
  display: flex;
  flex-direction: column;
  flex: 0 0 447px;               /* ширина свитча */
}

/* Правая колонка тянет общую высоту */
.schedule__cal-col-2{
  flex: 1 1 auto;
}

/* Контент дня занимает всю доступную высоту */
.schedule__cal-day{
  display: none;
  flex: 1 1 auto;                /* критично */
  padding: 30px 40px;
  flex-direction: column;
  gap: 40px;
  border-radius: 0 14px 14px 0;
  border: 1px solid rgba(85,12,168,.20);
  background: #FFF;
}
.cal-day-active{ display:flex; }

/* Кнопки: убираем фикс-высоту и растягиваем пополам */
.schedule__cal-btn{
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: auto;                  /* было 305px */
  min-height: 0;
  flex: 1 1 0;                   /* равные доли по высоте */
  padding: 30px 40px;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid rgba(85,12,168,.20);
  background: #FFF;
  text-decoration: none;
}

.cal-btn-active{
  border-radius: 14px 0 0 0;
  border: 1px solid rgba(85, 12, 168, 0.20);
  background: linear-gradient(0deg, rgba(85, 12, 168, 0.05) 0%, rgba(85, 12, 168, 0.05) 100%), #FFF;
}

.schedule__cal-btn-1{
  border-radius: 14px 0 0 0;
}

.schedule__cal-btn-2{
  border-radius: 0 0 0 14px;
}

@media (max-width: 768px){
  .schedule__cal{
    flex-direction: column;
    gap: 50px;
  }
  .schedule__cal-btn{
    width: auto;
  }
  .schedule__cal-btn-1{
    border-radius: 14px 14px 0 0;
  }
  .schedule__cal-btn-2 {
    border-radius: 0 0 14px 14px;
  }
  .schedule__cal-day{
    border-radius: 14px;
  }
  .schedule__header-wrap{
    flex-direction: column;
    gap: 10px;
  }
  .schedule__header-col-2 p{
    text-align: start;
    font-size: 18px;
  }
  /* .schedule__cal-item-icons{
    flex-direction: column;
  } */
  .schedule__header-title{
    font-size: 35px;
  }
  .schedule__header-subtitle{
    font-size: 18px;
  }
  .schedule__cal-day .schedule__cal-item:nth-child(3 of .schedule__cal-item){
    flex-direction: column;
    gap: 30px;
  }
  .schedule__cal-item-icons{
    flex-wrap: wrap;
  }
}

@media (min-width: 768px) and (max-width: 1024px){
  .schedule__cal{
    flex-direction: column;
    gap: 50px;
  }
  .schedule__cal-btn{
    width: auto;
  }
  .schedule__cal-btn-1{
    border-radius: 14px 14px 0 0;
  }
  .schedule__cal-btn-2 {
    border-radius: 0 0 14px 14px;
  }
  .schedule__cal-day{
    border-radius: 14px;
  }
}
/* 06. Schedule Section End */


/* 07. Speaker Section Start */
.speaker__main-wrap{
  display: flex;
  flex-direction: column;
  gap: 55px;
}

.speaker__header{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

.speaker__nav-link{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  border-radius: 60px;
  border: 2px solid #042140;
  aspect-ratio: 1/1;
}

.speaker__wrap{
  display: flex;
  align-items: center;
  gap: 50px;
  justify-content: center;
}

.speaker__item{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  flex: 1 0 0;
  max-width: 400px;
}

.speaker__item-ico{
  width: 400px;
  height: 400px;
  border-radius: 20px;
  background: url(<path-to-image>) rgb(0, 0, 0) 50% / cover no-repeat;
}

.speaker__item-ico-1{
    background-image: url(../img/team/pankratov.webp);
    background-repeat: no-repeat, no-repeat;
    background-position-x: -90px;
    background-position-y: -110px;
    background-size: 170%;
}

.speaker__item-ico-2{
    background-image: url(../img/team/orlov.webp);
    background-repeat: no-repeat, no-repeat;
    background-position-x: -40px;
    background-position-y: -70px;
    background-size: 120%;
}

.speaker__item-ico-3{
    background-image: url(../img/team/korchinsky.webp);
    background-repeat: no-repeat, no-repeat;
    background-position-x: -40px;
    background-position-y: -70px;
    background-size: 120%;
}

.speaker__item-ico-4{
    background-image: url(../img/team/savochka.webp);
    background-repeat: no-repeat, no-repeat;
    background-position-x: -90px;
    background-position-y: -120px;
    background-size: 160%;
}

.speaker__item-ico-5 {
    background-image: url(../img/team/smirnov.avif);
    background-repeat: no-repeat, no-repeat;
    background-position-x: -30px;
    background-position-y: -10px;
    background-size: 100%;
}

.speaker__item-ico-6{
    background-image: url(../img/team/koreysha.webp);
    background-repeat: no-repeat, no-repeat;
    background-position-x: 60px;
    background-position-y: 20px;
    background-size: 70%;
}

.speaker__item-ico-7{
    background-image: url(../img/team/antonov.avif);
    background-repeat: no-repeat, no-repeat;
    background-position-x: 0px;
    background-position-y: 20px;
    background-size: 100%;
}

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

.speaker__item-text{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  align-self: stretch;
  text-align: center;
}
.speaker__item-name{
  color: #001F3D;
  text-align: center;
  font-family: var(--font-accent);
  font-size: 35px;
  font-style: normal;
  font-weight: 500;
  line-height: 41.697px; 
  letter-spacing: -1.042px;
}

.speaker__item-descr{
  color: #001F3D;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
}

.speaker__item-link{
  text-decoration: none;
  display: flex;
  height: 36px;
  padding: 12px 30px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  border-radius: 10.91px;
  border: 1px solid #001F3D;
  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;
}

.speaker__item-link .ico{
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
}

.speaker__item-link p{
  color: #0A2745;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; 
}

.speaker__wrap{
  justify-content: flex-start;
  overflow: hidden;
  will-change: transform;
}

.speaker__item{ flex: 0 0 400px; }

.speaker__nav-link{
  display:flex;justify-content:center;align-items:center;
  width:60px;height:60px;border-radius:60px;aspect-ratio:1/1;
  transition:transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease, color 180ms ease, border-color 180ms ease;
  will-change: transform;
}

.speaker__nav-link svg path{ stroke: currentColor !important; }


.speaker__nav-wrap .speaker__nav-link:first-child{
  color:#042140;border:2px solid currentColor;
}
.speaker__nav-wrap .speaker__nav-link:last-child{
  color:#550CA8;border:2px solid currentColor;
}

.speaker__nav-link:not(.is-disabled):hover{
  transform: scale(1.06);
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
}


.speaker__nav-link:not(.is-disabled):active{
  transform: scale(0.96);
  box-shadow: 0 2px 10px rgba(0,0,0,.10);
}

.speaker__nav-link:focus-visible{
  outline: 3px solid rgba(85,12,168,.25);
  outline-offset: 2px;
}

.speaker__nav-link.is-disabled,
.speaker__nav-link[aria-disabled="true"]{
  opacity: .35;
  pointer-events: none;
  cursor: default;
  transform: none;
  box-shadow: none;
}


@media (prefers-reduced-motion: reduce){
  .speaker__nav-link{ transition: none; }
  .speaker__nav-link:not(.is-disabled):hover,
  .speaker__nav-link:not(.is-disabled):active{ transform:none; }
}

@media (max-width: 768px){
 .speaker__header{
  flex-direction: column;
  gap: 20px;
 }
 .speaker__title{
  font-size: 35px;
 }
 .speaker__header{
  align-items: start;
 }
 .speaker__nav-wrap{
  gap: 15px;
 }
 .speaker__item-name{
  font-size: 30px;
 }
 .speaker__item-descr{
  font-size: 16px;
 }
 .speaker__item-ico-1{
    background-position-x: -70px;
    background-position-y: -90px;
 }
 .speaker__item-ico-3{
  background-position-x: -25px;
 }
 .speaker__item-ico-4{
    background-position-x: -75px;
    background-position-y: -100px;
 }
}

@media (max-width: 768px){
  .speaker__header{ flex-direction: column; gap: 16px; align-items: flex-start; }

  .speaker__wrap{
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 16px;
  }
  .speaker__wrap::-webkit-scrollbar{ display:none; }

  .speaker__item{
    flex: 0 0 calc(86vw - 32px);
    max-width: none;
    scroll-snap-align: start;
  }

  .speaker__item-ico{
    width: 100%;
    height: calc(86vw - 32px);
    max-height: 360px;
  }

  .speaker__title{ font-size: 32px; }

}
/* 07. Speaker Section End */


/* 08. Benefits Section Start */
.benefits__wrap{
  display: flex;
  flex-direction: column;
  gap: 50px;
}

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

.benefits__title span{
  color: #550CA8;
}

.benefits__cards-wrap{
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.benefits__card{
  flex: 1 0 0;
  display: flex;
  /* width: 447px;
  height: 405px; */
  padding: 40px;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  flex-shrink: 0;
  border-radius: 20px;
  border: 1px solid rgba(85, 12, 168, 0.20);
  background: var(--Color-3, #FFF);
}

.benefits__card-ico{
  display: flex;
  width: 119px;
  height: 119px;
  padding: 28px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 20px;
  background: #550CA8;
}

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

.benefits__card-title{
  color: #001F3D;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 145%;
  text-transform: uppercase;
}

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

@media (max-width: 768px){
  .benefits__title{
    font-size: 35px;
  }
  .benefits__cards-wrap{
    flex-direction: column;
    gap: 20px;
  }
}

@media (min-width: 768px) and (max-width: 1024px){
  .benefits__cards-wrap{
    flex-direction: column;
    gap: 20px;
  }
  .benefits__card{
    flex-direction: row;
  }
}
/* 08. Benefits Section End */

/* 09. Adds Section Start */
.adds__wrap{
  display: flex;
  justify-content: space-between;
}

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

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

.adds__title{
  color: #001F3D;
  font-family: var(--font-accent);
  font-size: 50px;
  font-style: normal;
  font-weight: 500;
  line-height: 125%; /* 62.5px */
}

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

.adds__promo{
  display: flex;
  padding: 30px;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  align-self: stretch;
  border-radius: 12.987px;
  border: 0.866px solid rgba(85, 12, 168, 0.20);
  background: rgba(85, 12, 168, 0.05);
}

.adds__promo-text{
  color: #001F3D;
  font-size: 21.855px;
  font-style: normal;
  font-weight: 500;
  line-height: 32.069px; /* 146.736% */
  letter-spacing: -0.802px;
}

.adds__btn-group{
  display: flex;
  width: 50%;
  justify-items: stretch;
}

.adds__col-2{
  display: flex;
  justify-content: end;
  align-items: center;
}

.adds__col-2-pic{
  background: url(../img/adds.avif);
  background-repeat: no-repeat;
  background-size: cover;
  width: 629px;
  height: 600px;
  flex-shrink: 0;
}

@media (max-width: 768px){
  .adds__wrap{
    flex-direction: column;
  }
  .adds__col-2-pic{
    display: none;
  }
  .adds__promo-text{
    font-size: 18px;
    line-height: normal;
  }
  .adds__btn-group{
    width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 1024px){
  .adds__wrap{
    flex-direction: column;
  }
  .adds__col-2-picP{
    display: none;
  }
}
/* 09. Adds Section End */

/* 10. Register Section Start */
.register.bg-section{
  --fade: 300px;
  background:
    linear-gradient(to bottom, #fff 0, rgba(255,255,255,0) var(--fade)),
    url(../img/bg-main.avif) center/cover no-repeat;
}

.register__wrap{
  display: flex;
  align-items: center;
  /* gap: 90px; */
  justify-content: space-between;
}

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

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

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

.register__uptitle-text{
  color: #001F3D;
  font-family: var(--font-accent);
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 37.04px; /* 148.162% */
  letter-spacing: -0.926px;
}

.register__title{
  color: #550CA8;
  font-family: var(--font-accent);
  font-size: 75px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%; /* 93.75px */
  text-transform: uppercase;
}

.register__subtitle{
  color: #001F3D;
  font-family: var(--font-accent);
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 125%; /* 50px */
}

.register__descr{
  color: #001F3D;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: 145%; /* 43.5px */
}

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

.register__promo{
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.register__promo-title{
  color: #001F3D;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 145%; /* 43.5px */
}

.register__promo-cards{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.register__promo-card {
    align-self: stretch;
    display: flex;
    width: 215px;
    padding: 30px;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    border-radius: 10.91px;
    background: rgba(85, 12, 168, 0.05);
}

.register__promo-card-text{
  color: #001F3D;
  font-family: var(--font-accent);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 125%; /* 31.25px */
  letter-spacing: -0.926px;
}

@media (max-width: 768px){
  .register__wrap{
    flex-direction: column;
    gap: 40px;
  }
  .register__promo-cards {
    width: auto;
    gap: 10px;
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .register__promo-cards{
    flex-direction: column;
  }
  .register__promo-title{
    text-align: center;
  }
  .register__title{
    font-size: 35px;
    line-height: normal;
  }
  .register__subtitle, .register__descr{
    font-size: 18px;
    line-height: normal;
  }
  .register__uptitle{
    flex-direction: column;
    align-items: start;
  }
  .register__col-1{
    gap: 20px;
  }
  .register__promo-card{
    width: auto;
  }
}

@media (min-width: 768px) and (max-width: 1024px){
  .register__wrap{
    flex-direction: column;
    gap: 40px;
  }
  .register__promo-cards {
    width: 100%;
    gap: 10px;
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .register__promo-cards{
    flex-direction: column;
  }
  .register__promo-title{
    text-align: center;
  }
}
/* 10. Register Section End */

/* 11. FAQ Section Start */
.faq__wrap{
  display: flex;
  flex-direction: column;
  padding: 30px 40px;
  border-radius: 14px;
  background: #FFF;
  gap: 40px;
}

.faq__acc-wrap{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  align-self: stretch;
}

.faq__acc{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
  text-decoration: none;
}

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

.faq__acc-content{
  display: none;
}

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

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

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

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

.faq__div{
  display: flex;
  justify-content: center;
}
/* запас под контент, подгоните под проект */
.faq__acc-wrap{ --faq-max: clamp(160px, 24vw, 360px); }

.faq__acc-content{
  overflow: hidden;
  max-height: 0;
  transition: max-height 300ms ease, opacity 300ms ease, padding 300ms ease;
  opacity: 0;
  padding-top: 0;
}
.faq__acc-content.acc-content-active{
  max-height: var(--faq-max);
  opacity: 1;
  padding-top: 20px;
}


@media (max-width: 768px){
 .faq__div{
  width: 100%;
 }
}

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

}
/* 11. FAQ 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: #550CA8;
  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. 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: #550CA8;
  font-family: var(--font-accent);
  font-size: 66px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%; /* 72.6px */
  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{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.thanks__contact-wrap p{
  padding-top: 30px;
   color: #001F3D;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 165%; /* 26.4px */
}

.thanks__contact-wrap p a{
  color: #001F3D;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 165%;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.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: #001F3D;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; /* 92.308% */
}

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

.points__title{
  color: #001F3D;
  font-family: var(--font-accent);
  font-size: 50px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%; /* 55px */
  letter-spacing: -1px;
}

.points__wrap{
  display: inline-flex;
  align-items: center;
  gap: 70px;
  justify-content: space-between;
}

.points__item{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

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

@media (min-width:768px) and (max-width:1024px){
    .thanks__wrap{
        flex-direction: column;
    }
    .points__wrap{
      flex-direction: column;
    }
    .points__item-div{
      display: none;
    }
    .points__title{
      text-align: center;
    }
}

@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: 20px;
    }
    .thx__header-title{
        display: none;
    }
    .btn-menu{
      width: auto;
    }
    .points__wrap{
      flex-direction: column;
      align-items: start;
    }
    .points__item-div{
      display: none;
    }
    .points__item-num{
      font-size: 50px;
    }
    .points__title{
      font-size: 35px;
    }
    main{
      margin-top: 10px;
    }
}

/* растягиваем колонки по высоте секции */
.register__wrap{ align-items: stretch; }

/* оставляем центрирование внутри правой колонки */
.register__col-2{ display:flex; justify-content:center; }

/* даем форме занять центр по вертикали */
.hero__form{ margin-block:auto; }  /* эквивалент top/bottom auto */

/* 13. Thanks Section End*/

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


.hero__promo-rel-wrap { 
  position: relative;       
  transform: none !important;
  will-change: auto;
}


.hero__promo-ico{
  position: absolute;
  right: 50px;
  top: -100px;
}


/* 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(95, 59, 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__title{
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.2;
  margin: 0 40px 20px 0;
  font-weight: 700;
  color:#0f1b2d;
}

/* слот под форму */
.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: #550CA8;
  font-weight: 600;
}

.hero__form-container{
  width: 100%;
}
/* 14. Pop-Up Section End*/


/* =================================== */
/* =================================== */
/* =================================== */
/* Danylo Oliinyk - https://iamdev.lol/ */
/* =====November 2025 For Statoplan =====*/
/* =================================== */
/* =================================== */
/* =================================== */