/* =================================== */
/* =================================== */
/* =================================== */
/* Danylo Oliinyk - https://iamdev.lol/ */
/* =====April 2026 For Statoplan =====*/
/* =================================== */
/* =================================== */
/* =================================== */
/* 01. Header Section */
/* 02. Hero Section */
/* 03. About Section */
/* 04. We Section */
/* 05. Problem Section */
/* 06. Solution Section */
/* 07. Program Section */
/* 08. Team Section */
/* 09. Doubts Section */
/* 10. Feedback Section */
/* 11. Info Section */
/* 12. Openday Section */
/* 13. Warr Section */
/* 14. Register Section */
/* 15. Options Section */
/* 16. Footer Section */
/* 17. Payment Block */
/* 18. Animations Block */
/* =================================== */
/* =================================== */
/* =================================== */






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

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

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

.header__wrap-col2{
  display: flex;

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

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

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

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

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

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

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

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

.acc-btn{
    color: #FFF;
    font-variant-numeric: lining-nums tabular-nums;
    display: flex;
    height: 40px;
    padding: 5px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 14px */
    text-decoration: none;
    border-radius: 12px;
    background: #1C0357;
}

.color__btn{
  display: flex;
  height: 40px;
  padding: 5px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  background: #101010;
  color: #FFF;
  font-variant-numeric: lining-nums tabular-nums;
  text-decoration: none;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 14px */
}

/* Иконка бургера */
.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: 91%;
        background-color: rgba(255, 255, 255, 0.962);
        position: absolute;
        border-radius: 16px;
        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: #7FBC82; /* цвет подчеркивания */
    transition: width 0.3s ease;
}

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

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

.btn-hedear-group{
  display: flex;
  align-items: center;
  gap: 20px;
}
/* 01. Header Section End */

/* 02. Hero Section Start */
.hero{
  padding-top: 85px;
  padding-bottom: 75px;
}

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

.hero__pic img{
  width: 534px;
  height: 643px;
}

.hero__col-left{
  display: flex;
  padding: 20px 50px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 40px;
  background: #FFF;
}

.hero__col-left-text{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
}

.hero__col-left-btn-wrap{
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero__col-left-subdescr{
  color: #101010;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 165%; /* 24.75px */
}

.hero-btn{
  display: flex;  
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  border: 1px solid #101010;
  background-color: #FFF;
}

.hero__col-title{
  color: #101010;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 165%; /* 23.1px */
}

.hero__col-ico{
  display: flex;
  padding: 7.5px;
  justify-content: center;
  align-items: center;
  gap: 7.5px;
  border-radius: 15px;
  background: #101010;
}

.hero__col-left-title{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

h1, h2{
  color: #101010;
  font-family: var(--_font-accent);
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%; /* 56.25px */
}

.hero__col-left-title-sub-ico{
  width: 84px;
  height: 61px;
  border-radius: 1000px;
  background: #E6E6FF;

  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__col-left-title-sub{
  display: flex;
  gap: 5px;
}

.hero__col-left-descr{
  color: #000;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.20);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 165%; /* 33px */
}

.hero__col-left-promo{
  display: flex;
  padding: 20px 30px;
  align-items: center;
  gap: 20px;
  border-radius: 1000px;
  background: #101010;
}

.hero__col-left-promo-ico{
  display: flex;
  padding: 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
  background: #FFF;
}

.hero__col-left-promo-text{
  color: #FFF;
  font-variant-numeric: lining-nums tabular-nums;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 145%;
}

.hero__col-right-text{
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: absolute;
  bottom: 10px;
}

.hero__col-right-item{
  min-height: 75px;
  display: flex;
  padding: 27px 25px 27px 26px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 35px;
  background: linear-gradient(0deg, #1C0357 0%, #1C0357 100%), url(<path-to-image>) lightgray 50% / cover no-repeat;
}

.hero__col-right-item-title{
  color: #F6F6F6;
  font-family: var(--font-accent);
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%; /* 31.25px */
}

.hero__col-right-item-subtitle{
  color: #F6F6F6;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 145%; /* 26.1px */
}

.hero__col-right-item-hell{
  display: flex;
  padding: 27px 25px 27px 26px;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 10px;
  border-radius: 35px;
  background: #E6E6FF;
}

.hero__col-right-item-title-hell{
  color: #000;
  font-family: var(--font-accent);
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%; /* 31.25px */
}

.hero__col-right-item-subtitle-hell{
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 145%; /* 26.1px */
}

.hero__col-right-fix{
  position: absolute;
  right: -20px;
  top: -40px;
  display: flex;
  padding: 24px;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 10px;
  border-radius: 35px 35px 0 35px;
  border: 2px solid rgba(0, 0, 0, 0.10);
  background: linear-gradient(0deg, #101011 0%, #101011 100%), url(<path-to-image>) lightgray 50% / cover no-repeat;
}

.hero__col-right-fix-title{
  color: #FFF;
  font-family: var(--font-accent);
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%; /* 31.25px */
}

.hero__col-right-fix-subtitle{
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 145%; /* 26.1px */
}

.hero__col-left{
  position: relative;
}

.hero__col-left-ico {
    top: 40px;
    position: absolute;
    right: 40px;
}

@media (max-width: 1024px) {
 .hero__wrap{
  flex-direction: column;
 } 
 .hero__col-right svg{
  display: none;
 }
 .hero__col-right-fix, .hero__col-right-text{
  position: inherit;
 }
 .hero__col-right-fix{
  margin-top: 10px;
 }
 .hero{
  padding-top: 20px;
 }
 .btn-hedear-group{
  flex-direction: column;
 }
 .hero__col-left-btn-wrap{
  flex-direction: column;
  width: 100%;
 }
 .hero__pic{
  display: none;
 }
}

@media (max-width: 768px) {
   .hero__wrap{
  flex-direction: column;
 } 
 .hero__col-right svg{
  display: none;
 }
 .hero__col-right-fix, .hero__col-right-text{
  position: inherit;
 }
 .hero__col-right-fix{
  margin-top: 10px;
 }
 .hero{
  padding-top: 20px;
 }
 .hero__col-left{
  padding: 60px 20px;
 }
 h1, h2{
  font-size: 35px;
 }
 .hero__col-left-ico{
  top: 20px;
  right: 20px;
 }
 .hero__col-left-descr{
  font-size: 16px;
 }
 .hero__col-left-promo{
  border-radius: 35px;
 }
 .hero__col-right-item{
  min-height: auto;
 }
}
/* 02. Hero Section End */

/* 03. About Section Start */
.about__wrap{
  display: flex;
  padding: 100px 120px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
  border-radius: 40px;
  background: #101010;
}

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

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

.about__title{
  color: #FFF;
  font-family: var(--font-accent);
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%; /* 43.75px */
  text-transform: uppercase;
}

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

.about__main-cards{
  display: flex;
  align-items: center;
  gap: 24px;
  align-self: stretch;
}

.about__main-card{
  height: 245px;
  display: flex;
  width: 286px;
  padding: 60px 40px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 30px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
}

.about__main-card-ico{
  width: 78px;
  height: 78px;
  border-radius: 20px;
  background: #E6E6FF;

  display: flex;
  justify-content: center;
  align-items: center;
}

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

.about__main-card-title{
  color: #E6E6FF;
  font-size: 25px;
  font-style: normal;
  font-weight: 800;
  line-height: 125%; /* 31.25px */
}

.about__main-card-subtitle{
  color: #FFF;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 165%;
}

.about__main-card-subtitle span{
  color: #FFF;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 165%; /* 24.75px */
}

.container-wide{
  margin-left: 28px;
  margin-right: 28px;
}

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

.about__wrap{
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border-radius: 40px;
    background: #000;
}

.about__wrap > *{
    position: relative;
    z-index: 2;
}

.about__wrap::before{
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: url("../img/about_bg.avif") center center / cover no-repeat;
    border-radius: inherit;
    opacity: 0.1;
}

.about__wrap::after{
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
    pointer-events: none;
    background:
        linear-gradient(90deg, #000 0%, rgba(0,0,0,0.82) 10%, rgba(0,0,0,0) 24%),
        linear-gradient(270deg, #000 0%, rgba(0,0,0,0.82) 10%, rgba(0,0,0,0) 24%),
        linear-gradient(180deg, #000 0%, rgba(0,0,0,0.55) 12%, rgba(0,0,0,0) 28%),
        linear-gradient(0deg, #000 0%, rgba(0,0,0,0.45) 10%, rgba(0,0,0,0) 24%);
}

.acc-white{
  display: flex;
  width: 300px;
  height: 60px;
  padding: 5px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  background: #FFF;
  text-decoration: none;
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 14px */
}

.about__btn-group{
  align-items: center;
  width: auto;
  display: flex;
}

@media (max-width: 1024px) {
  .about__main-cards{
    flex-direction: column;
  }
  .about__wrap{
    padding: 40px 40px;
    gap: 0;
  }
  .about__main-card{
    width: auto;
    height: auto;
  }
  .about{
    padding-top: 0;
  }
  .hero__col-right-fix{
    border-radius: 35px;
  }
}

@media (max-width: 768px) {
  .about__main-cards{
    flex-direction: column;
  }
  .about__wrap{
    padding: 40px 40px;
    gap: 30px;
  }
  .about__main-card{
    width: auto;
  }
  .about{
    padding-top: 0;
  }
  .container-wide{
    margin: 0;
  }
  .about__main-wrap{
    gap: 20px;
  }
  .about__wrap{
    padding: 40px 20px;
  }
  .hero__col-right-fix{
    border-radius: 35px;
  }
  .about__subtitle{
    font-size: 18px;
  }
}
/* 03. About Section End */

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

.we__wrap{
  display: flex;
  justify-content: center;
  gap: 22px;
  align-items: center;
  flex-shrink: 0;
}

.we__col-left{
  display: flex;
  height: 436px;
  width: 557px;
  padding: 50px;
  flex-direction: column;
  align-items: flex-start;
  gap: 50px;
  flex-shrink: 0;
  border-radius: 40px;
  background: #FFF;
}

.we__col-left-list{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  align-self: stretch;
}

.we__col-left-item{
  display: flex;
  align-items: flex-start;
  gap: 30px;
  align-self: stretch;
}

.we__col-left-item-ico{
  width: 30px;
  height: 30px;
  aspect-ratio: 1/1;
  background: #E6E6FF;
  border-radius: 9999px;
}

.we__col-left-item-title{
  color: #000;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.20);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 165%; /* 26.4px */
}

.we__col-left-item-title span{
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 165%;
}

.we__col-right{
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 564px;
}

.we__col-right-up-wrap{
  display: flex;
  gap: 24px;
}

.we__col-item{
  display: flex;
  width: 219px;
  height: 219px;
  padding: 30px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 35.588px;
  border-radius: 40px;
  background: #121212;
  backdrop-filter: blur(2.5px);
}

.we__col-item-title{
  color: #E6E6FF;
  text-align: center;
  font-family: var(--font-accent);
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: 115%; /* 69px */
}

.we__col-item-subtitle{
  color: #FFF;
  text-align: center;
  font-family: var(--font-accent);
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 115%; /* 34.5px */
}

.we__col-item-hell{
  display: flex;
  width: 219px;
  height: 219px;
  padding: 30px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 35.588px;
  border-radius: 40px;
  background: #E6E6FF;
  backdrop-filter: blur(2.5px);
}

.we__col-item-title-hell{
  color: #000;
  font-size: 60px;
  font-family: var(--font-accent);
  font-style: normal;
  font-weight: 400;
  line-height: 115%; /* 69px */
}

.we__col-item-subtitle-hell{
  color: #000;
  text-align: center;
  font-family: var(--font-accent);
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 115%; /* 34.5px */
}

.we__col-right-bottom{
  display: flex;
  height: 172px;
  padding: 30px 50px;
  align-items: center;
  gap: 35.588px;
  border-radius: 40px;
  background: #1C0357;
  backdrop-filter: blur(2.5px);
}

.we__col-right-bottom-left{
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.we__col-right-bottom-left-title{
  color: #E6E6FF;
  font-family: var(--font-accent);
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: 115%; /* 69px */
}

.we__col-right-bottom-left-subtitle{
  color: #FFF;
  font-family: var(--font-accent);
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 115%; /* 34.5px */
}

.we__col-right-bottom-right{
  width: 273px;
  height: 296px;
  aspect-ratio: 83/90;
  background: url(../img/chemod.svg) rgba(211, 211, 211, 0) 50% / cover no-repeat;
}

.we__main-wrap, .problem__wrap-main{
  display: flex;
  flex-direction: column;
  gap: 50px;
}

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

.problem__head{
  display: flex;
  gap: 26px;
  align-items: center;
}

.problem__title{
  color: #000;
  font-family: var(--font-accent);
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%; /* 43.75px */
  text-transform: uppercase;
}

@media (max-width: 1024px) {
.we__wrap{
  flex-direction: column;
}
.we__col-left{
  width: auto;
  height: auto;
}
.we__col-right{
  width: 100%;
}
.we__col-right-up-wrap{
  width: 100%;
  flex-direction: column;
}
.we__col-item, .we__col-item-hell{
  width: auto;
}
.we__col-right-bottom-left, .we__col-item-hell, .we__col-item{
  gap: 10px;
}
}

@media (max-width: 768px) {
  .we__col-item, .we__col-item-hell, .we__col-right-bottom{
    height: auto;
  }
  .we__col-right-bottom-right{
    display: none;
  }
  .we__col-right-bottom{
    justify-content: center;
  }
  .we__col-left{
    align-items: center;
    padding: 40px 20px;
  }
  .we{
    padding-top: 0;
  }
  .we__col-right-up-wrap, .we__col-right{
    gap: 10px;
  }
}
/* 04. We Section End */

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

.problem__wrap{
  flex-direction: row;
  gap: 250px;
  display: flex;
  justify-content: center;
}

.problem__col-left{
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 827px;
}

.problem__col-item{
  display: flex;
  width: 560px;
  padding: 40px;
  align-items: center;
  gap: 50px;
  border-radius: 40px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: #FBFBFB;
}

.problem__col-left-i{
  display: flex;
  gap: 30px;
}

.problem__col-left-ico{
  width: 52px;
  height: 52px;
  background: #E6E6FF;
  border-radius: 9999px;
  color: #000;
  text-align: center;
  justify-content: center;
  display: flex;
  align-items: center;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 165%; /* 41.25px */
}

.problem__col-left-nema{
  color: #000;
  font-size: 25px;
  font-style: normal;
  font-weight: 800;
  line-height: 165%; /* 41.25px */
}

.problem__col-content{
  color: #000;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 165%; /* 24.75px */
  width: 267px;
}

.problem__col-item-acc{
  border-radius: 40px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: #E6E6FF;
  width: 100%;
  flex-direction: column;
  align-items: start;
  gap: 20px;
}

.problem__col-left-ico-acc{
  background: #1C0357;
  color: #FBFBFB;
}

.problem__col-left-nema-acc{
  color: #000;
  font-size: 35px;
  font-style: normal;
  font-weight: 800;
  line-height: 165%; /* 57.75px */
}

.problem__col-content-acc{
  width: 747px;
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 165%; /* 33px */
}
.problem__wrap{
  position: relative;
}

.problem__col-right-item{
  position: absolute;
  top: -20px;
  right: 55px;
}

.problem__col-right-item img{
  width: 534px;
  height: 736px;
  padding-top: 20px;
}

@media (max-width: 1024px) {
  .problem__col-right-item{
    display: none;
  }
  .problem__col-left{
    width: 100%;
  }
  .problem__wrap{
    gap: 0;
    justify-content: none;
  }
  .problem__col-item{
    width: auto;
  }
  .problem__col-left-nema-acc{
    color: #000;
    font-size: 25px;
    font-style: normal;
    font-weight: 800;
    line-height: 165%;
  }
  .problem__col-content-acc{
    color: #000;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 165%;
  }

  .problem__col-content{
    width: auto;
  }
}

@media (max-width: 768px) {
  .problem__col-item{
    flex-direction: column;
    gap: 20px;
  }
  .problem__col-content-acc{
    width: fit-content;
  }
  .problem__col-item{
    align-items: start;
  }
}
/* 05. Problem Section End */

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

.soltion__wrap{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 38px;
  position: relative;
}

.soltion__left{
  display: flex;
  width: 520px;
  height: 650px;
  padding: 20px;
  align-items: flex-start;
  gap: 20px;
  border-radius: 40px;
  background: url(../img/solutions.avif ) lightgray 50% / cover no-repeat;
}

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

.soltion__right-header{
  display: flex;
  gap: 12px;
  align-items: center;
}

.soltion__right-header-title{
  color: #000;
  font-family: var(--font-accent);
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%; /* 43.75px */
  text-transform: uppercase;
}

.soltion__right-subtitle{
  width: 459px;
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 165%; /* 33px */
  padding-left: 24px;
}

.soltion__right-undertitle{
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 165%; /* 26.4px */
  width: 459px;
  padding-left: 24px;
}

.soltion__right-promo{
  margin-left: 24px;
  width: 478px;
  padding: 40px;
  flex-direction: column;
  justify-content: flex-end;

  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: #E6E6FF;
  backdrop-filter: blur(5px);

  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 165%;
}

.soltion__right-btn-group{
  margin-left: 24px;
}

.soltion__right-promo span{
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 165%; /* 33px */
}

@media (max-width: 1024px) {
.soltion__wrap{
  flex-direction: column;
}
.soltion__left{
  width: 100%;
}
.solution{padding-top: 0;}
.soltion__right-subtitle, .soltion__right-undertitle{width: auto;}
.soltion__right-promo, .soltion__right-btn-group{margin-left: 0;}
.soltion__right-subtitle, .soltion__right-undertitle{padding-left: 0;}
}

@media (max-width: 768px) {
  .soltion__left{
    display: none;
  }
  .soltion__right{
    width: 100%;
  }
  .soltion__right-promo{
    width: auto;
  }
  .soltion__right{
    align-items: center;
  }
  .problem__col-left{
    gap: 10px;
  }
  .problem{
    padding-top: 0;
  }
}
/* 06. Solution Section End */

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

.schedule__wrap{
  display: flex;
  padding: 80px;
  flex-direction: column;
  align-items: flex-start;
  gap: 70px;
  border-radius: 60px;
  border: 1px solid var(--Border, rgba(0, 0, 0, 0.04));
  background: var(--White, #FFF);
}

.schedule__heder{
  display: flex;
  gap: 26px;
}

.schedule__heder-title{
  color: #101010;
  font-family: var(--_font-accent);
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%; /* 43.75px */
  text-transform: uppercase;
}

.schedule__wrap-cards{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  align-self: stretch;
}

.schedule__card{
  display: flex;
  width: 322.667px;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
  border-radius: 24px;
  border: 1px solid var(--Border, rgba(0, 0, 0, 0.04));
  background: #E6E6FF;
}

.schedule__card-last{
  justify-content: flex-end;
}

.schedule__card-bottom{
  display: flex;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
}

.schedule__card-bottom-ico{
  color: var(--White, #FFF);
  font-size: 16.93px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  border-radius: 7.524px;
  background: #1C0357;
  display: flex;
  width: 37.599px;
  height: 37.645px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.schedule__card-bottom-title{
  color: var(--Gray-600, #535353);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media (max-width: 1024px) {
  .schedule__wrap-cards{
    flex-direction: column;
  }
  .schedule{
    padding-top: 0;
  }
  .schedule__card{
    align-self: anchor-center;
    width: auto;
  }
}

@media (max-width: 768px) {
  .schedule__wrap-cards{
    flex-direction: column;
  }
  .schedule{
    padding-top: 0;
  }
  .schedule__card{
    align-self: anchor-center;
    width: auto;
  }
  .schedule__wrap{
    padding: 40px 20px;
    gap: 20px;
  }
  .schedule__heder-title{
    font-size: 25px;
  }
  .schedule__card-last{
    align-self: stretch;
  }
}
/* 06.1 Schedule Section End */

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

.program__wrap {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border-radius: 40px;
    background: #000;
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding: 100px 120px;
}

.program__wrap::before{
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: url("../img/about_bg.avif") center center / cover no-repeat;
    border-radius: inherit;
    opacity: 0.1;
}

.program__wrap::after{
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
    pointer-events: none;
    background:
        linear-gradient(90deg, #000 0%, rgba(0,0,0,0.82) 10%, rgba(0,0,0,0) 24%),
        linear-gradient(270deg, #000 0%, rgba(0,0,0,0.82) 10%, rgba(0,0,0,0) 24%),
        linear-gradient(180deg, #000 0%, rgba(0,0,0,0.55) 12%, rgba(0,0,0,0) 28%),
        linear-gradient(0deg, #000 0%, rgba(0,0,0,0.45) 10%, rgba(0,0,0,0) 24%);
}

.program__header{
  display: flex;
  gap: 28px;
  align-items: center;
  z-index: 5;
}

.program__header-title{
  color: #FFF;
  font-family: var(--font-accent);
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%; /* 43.75px */
  text-transform: uppercase;
}

.program__acc-wrap{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  z-index: 5;
}

.program__item{
  display: flex;
  text-decoration: none;
  width: 1140.5px;
  padding: 40px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 30px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
}

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

.program__item-head-left{
  display: flex;
  /* width: 659px; */
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.program__item-uptitle{
  display: flex;
  padding: 12px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 1000px;
  border: 1px solid rgba(255, 255, 255, 0.20);

  color: #E6E6FF;
  font-size: 15px;
  font-style: normal;
  font-weight: 800;
  line-height: 125%; /* 18.75px */
  text-transform: uppercase;
}

.program__item-name{
  color: #E6E6FF;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%; /* 31.25px */
}

.program__item-head-ico{
  color: #E6E6FF;
  font-size: 50px;
  font-style: normal;
  font-weight: 300;
  line-height: 125%; /* 62.5px */
}

.program__item-content{
  display: none;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.program__item-content-active{
  display: flex;
}

.program__item-content-col{
  flex: 1 0 0;
  display: flex;
  /* width: 350px; */
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex-shrink: 0;
}

.program__item-content-col-title{
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 165%; /* 26.4px */
}

.program__item-content-col-subtitle{
  color: rgba(255, 255, 255, 0.70);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 165%; /* 24.75px */
}

.program__btn-group{
  display: flex;
  align-self: center;
  z-index: 5;
}

@media (max-width: 1024px) {
  .container-wide-ultra{
    margin: 0 !important;
  }
  .program__item {
    width: auto;
    align-self: stretch;
  }
  .program__wrap{
    padding: 60px 40px;
  }
}

@media (max-width: 768px) {
  .program__wrap{
    padding: 40px 20px;
  }
  .program__item-content-active{
    flex-direction: column;
  }
  .program__item-name{
    font-size: 20px;
  }
  .program__header-title{
    font-size: 25px;
  }
  .program{
    padding-top: 0;
  }
}
/* 07. Program Section End */

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

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

.team__head{
  display: flex;
  gap: 26px;  
  align-items: center;
}

.team__head-title{
  color: #000;
  font-family: var(--font-accent);
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%; /* 43.75px */
  text-transform: uppercase;
}

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

.team__item{
  display: flex;
  width: 366px;
  padding: 15px;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: #FFF;
}

.team__item-ico{
  height: 336px;
  align-self: stretch;
  border-radius: 30px;
  background: url(<path-to-image>) #000 50% / cover no-repeat;
}

.team__item-ico-1{
  background-image: url(../img/team/pracht.webp), url(../img/team/bg.webp);
  background-position: center;
}

.team__item-ico-2{
  background-image: url(../img/team/apazidi.webp), url(../img/team/bg.webp);
  background-position: center;
}

.team__item-ico-3{
  background-image: url(../img/team/linnik.webp), url(../img/team/bg.webp);
  background-position: 20px -40px;
}

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

.team__item-title{
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px; /* 125% */
  letter-spacing: -0.6px;
}

.team__item-subtitle{
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.75px; /* 162.5% */
}

.team__item-btn{
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  display: flex;
  padding: 10px;
  gap: 10px;
  align-self: stretch;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.01) 0%, rgba(255, 255, 255, 0.06) 100%);
}

.team__item-btn-left{
  display: flex;
  width: 78px;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.team__item-btn-title{
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 142.857% */
}

.team__item-btn-subtitle{
  color: #535353;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 133.333% */
}

@media (max-width: 1024px) {
  .team__item-wrap{
    flex-direction: row;
  }
}

@media (max-width: 768px) {
  .team__item-wrap{
    flex-direction: column;
  }
  .team__item{
    width: auto;
  }
  .team{
    padding-top: 0;
  }
}
/* 08. Team Section End */

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

.doubts__wrap{
  display: flex;
  align-items: start;
  gap: 94px;
  justify-content: center;
}

.doubts__header{
  display: flex;
  gap: 26px;
  align-items: center;
}

.doubts__header-title{
  color: #000;
  font-family: var(--font-accent);
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%; /* 43.75px */
  text-transform: uppercase;
}

.doubts__cards{
  display: flex;
  align-items: center;
  gap: 26px;
  flex-direction: column;
  justify-content: center;
}

.doubts__card{
  display: flex;
  width: 485px;
  padding: 50px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  border-radius: 40px;
  background: #E6E6FF;
}

.doubts__card-wrap{
  gap: 20px;
  display: flex;
  justify-content: space-between;
  align-items: start;
  align-self: stretch;
  flex-direction: column-reverse;
}

.doubts__card-title{
  color: #000;
  font-size: 25px;
  font-style: normal;
  font-weight: 800;
  line-height: 145%; /* 36.25px */
}

.doubts__card-descr{
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 165%; /* 26.4px */
}

.doubts__card-acc{
  border-radius: 40px;
  background: #1C0357;
}

.doubts__card-title-acc, .doubts__card-descr-acc{
  color: #FFF;
}

.wide-button{
  width: 300px;
}

.doubts__card-wh{
  border-radius: 40px;
  background: #FFF;
}

@media (max-width: 1024px) {
  .doubts__wrap{
    flex-direction: column;
    gap: 30px;
  }
  .doubts__cards{
    flex-direction: column;
    gap: 10px;
  }
  .doubts__card{
    width: auto;
    align-self: stretch;
  }
  .wide-button{
    width: auto;
  }
}

@media (max-width: 768px) {
  .doubts{
    padding-top: 0;
  }
  .doubts__card-descr, .doubts__card-descr-acc{
    width: auto;
  }
}
/* 09. Doubts Section End */

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

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

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

.feedback__head{
  display: flex;
  gap: 26px;
  align-items: center;
}

.feedback__head-title{
  color: #000;
  font-family: var(--font-accent);
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%; /* 43.75px */
  text-transform: uppercase;
}

.feedback__header-subtitle{
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 165%; /* 33px */
}

.feedback__header-down-wrap{
  display: flex;
  justify-content: space-between;
  align-self: stretch;
  width: auto;
  align-items: center;
}

.feedback__header-down-title{
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 165%; /* 33px */
}

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

.feedback__btn-blue{
  width: 60px;
  height: 60px;
  border-radius: 60px;
  border: 2px solid #1C0357;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.feedback__btn-black{
  width: 60px;
  height: 60px;
  border-radius: 60px;
  border: 2px solid #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.feedback__content{
  display: flex;
  justify-content: center;
  gap: 24px;
}

.feedback__item{
  display: flex;
  width: 364px;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  border-radius: 40px;
  background: #FFF;
}

.feedback__item-head{
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 32px;
  align-self: stretch;
  flex-direction: column;
}

.feedback__item-head-small-text{
  color: #0F1125;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 165%; /* 24.75px */
}

.feedback__item-head-link{
  color: #1C0357;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  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;
}

.feedback__item-div{
  width: 316px;
  height: 1px;
  background: #E9EFF5;
}

.feedback__item-bottom-text{
  color: #0F1125;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  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;
}

/* feedback slider add-ons */
.feedback{
  overflow: hidden;
}

.feedback__content{
  position: relative;
  width: 100%;
  overflow: hidden;
  display: block;
}

.feedback__track{
  display: flex;
  gap: 24px;
  transition: transform 0.35s ease;
  will-change: transform;
}

.feedback__item{
  flex: 0 0 calc((100% - 48px) / 3);
  width: auto;
  min-width: 0;
}

.feedback__item-div{
  width: 100%;
}

.feedback__btn{
  transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.feedback__btn:hover{
  transform: translateY(-2px);
}

.feedback__btn.is-disabled{
  opacity: 0.35;
  pointer-events: none;
  transform: none;
}

.feedback__item-head-link,
.feedback__item-bottom-text{
  display: inline-block;
}

.feedback__item-head-link.is-disabled,
.feedback__item-bottom-text.is-disabled{
  opacity: 0.45;
  pointer-events: none;
  text-decoration: none;
}

.feedback__empty{
  width: 100%;
  padding: 32px;
  border-radius: 24px;
  background: #FFF;
  color: #0F1125;
  font-size: 16px;
  line-height: 160%;
}

@media (max-width: 1024px){
  .feedback__content{
    overflow: hidden;
  }

  .feedback__item{
    flex: 0 0 100%;
  }

  .feedback__header-down-wrap{
    gap: 20px;
    flex-direction: column;
    align-items: flex-start;
  }
    .feedback{
    padding-top: 0;
  }
}

.feedback__track{
  align-items: stretch;
}

.feedback__item{
  height: 440px;
  display: flex;
  flex-direction: column;
}

.feedback__item-head{
  flex: 1 1 auto;
  min-height: 0;
}

.feedback__item-head-small-text{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
  overflow: hidden;
}

.feedback__item-bottom{
  margin-top: auto;
  width: 100%;
}

.feedback__item-bottom-text{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

@media (max-width: 1024px){
  .feedback__item{
    height: 500px;
  }

  .feedback__item-head-small-text{
    -webkit-line-clamp: 8;
  }
}

@media (max-width: 768px){
  .feedback__item{
    height: 460px;
    padding: 20px;
    border-radius: 28px;
  }

  .feedback__item-head-small-text{
    font-size: 14px;
    -webkit-line-clamp: 7;
  }

  .feedback__item-bottom-text{
    font-size: 18px;
  }
  .feedback__header-subtitle{
    font-size: 16px;
  }
  .feedback__header-down-title{
    font-size: 16px;
  }
}

.feedback__item{
  box-sizing: border-box;
}

.feedback__track{
  width: 100%;
}

.feedback__content{
  width: 100%;
  overflow: hidden;
}

@media (max-width: 1024px){
  .feedback__item{
    flex: 0 0 100%;
    max-width: 100%;
  }
  .feedback__wrap{
    gap: 30px;
  }
  .feedback__header-down-wrap{
    gap: 40px;
    align-items: end;
  }
  .feedback__item-head-small-text{
    font-size: 18px;
  }
}
/* 10. Feedback Section End */

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

.info__wrap{
  display: flex;
  padding: 80px 120px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
  border-radius: 40px;
  background: #FFF;
}

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

.info__main-header{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
  max-width: 1140px;
}

.info__main-header-up{
  display: flex;
  gap: 28px;
  align-items: center;
}

.info__main-header-up-title{
  color: #000;
  font-family: var(--font-accent);
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%; /* 43.75px */
  text-transform: uppercase;
}

.info__main-header-subtitle{
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 165%; /* 33px */
  padding-left: 40px;
}

.info__main-header-descr{
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 165%; /* 33px */
  padding-left: 40px;
}

.info__main-content{
  display: flex;
  align-items: center;
  gap: 24px;
  align-self: stretch;
  padding-left: 40px;
}

.info__main-content-left{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
}
.info__main-content-left-row{
  display: flex;
  align-items: center;
  gap: 24px;
  align-self: stretch;
}

.info__main-content-left-row-item{
  display: flex;
  height: 300px;
  width: 320px;
  padding: 40px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  border-radius: 30px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: #E6E6FF;
  backdrop-filter: blur(5px);
}

.info__main-content-left-row-item-content{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
}

.info__main-content-left-row-item-title{
  color: #1C0357;
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: 125%; /* 25px */
}

.info__main-content-left-row-item-subtitle{
  color: rgba(0, 0, 0, 0.70);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 165%; /* 24.75px */
}

.info__main-content-right{
  display: flex;
  width: 360px;
  gap: 125px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.info__main-content-right-item{
  display: flex;
  width: 275px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.info__main-content-right-item-title{
  color: #000;
  font-family: var(--font-accent);
  font-size: 70px;
  font-style: normal;
  font-weight: 400;
  line-height: 115%; /* 80.5px */
}

.info__main-content-right-item-subtitle{
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 165%; /* 33px */
}

.info__main-content-left-row-item-ico{
  width: 78px;
  height: 78px;
  border-radius: 20px;
  background: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 1024px){
  .info__wrap{
    padding: 60px 40px;
  }
  .info__main-content{
    gap: 30px;
    padding: 0;
    flex-direction: column;
  }
  .info__main-header{
    max-width: none;
    width: auto;
  }
  .info__main-content-right{
    display: none;
  }
  .info__main-header-subtitle, .info__main-header-descr{
    padding: 0;
  }
}

@media (max-width: 768px){
  .info__main-content-left-row{
    flex-direction: column;
  }
  .info__main-header-up-title{
    font-size: 25px;
  }
  .info__main-header-subtitle{
    font-size: 18px;
  }
  .info{
    padding-top: 0;
  }
  .info__main-content-left-row-item{
    width: auto;
    height: auto;
  }
}
/* 11. Info Section End */

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

.openday__wrap{
  display: flex;
  padding: 80px 120px;
  justify-content: space-between;
  align-items: center;
  border-radius: 60px;
  border: 1px solid var(--Border, rgba(0, 0, 0, 0.04));
  background: #1C0357;

  gap: 120px;
}

.openday__col-left{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  flex: 1 0 0;
}

.openday__col-left-header{
  display: flex;
  gap: 26px;
  align-items: center;
}

.openday__col-left-title{
  color: #FFF;
  font-family: var(--font-accent);
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%; /* 43.75px */
  text-transform: uppercase;
}

.openday__col-left-content{
  color: #FFF;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 165%; /* 24.75px */
}

.openday__col-left-info{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
}

.openday__col-left-info-left{
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 165%; /* 33px */
  text-transform: uppercase;
}

.openday__col-left-info-right{
  display: flex;
  width: 220px;
  height: 200px;
  padding: 30px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
  border-radius: 40px;
  background: #E6E6FF;
  backdrop-filter: blur(2.5px);
}

.openday__col-right{
  flex: 1 0 0;
}

.openday__col-left-info-right p{
  color: #000;
  text-align: center;
  font-family: var(--font-accent);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 115%; /* 23px */
}

.openday__col-left-info-right span{
  color: #000;
  text-align: center;
  font-family: var(--font-accent);
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 115%; /* 46px */
}

@media (max-width: 1024px){
  .openday__wrap{
    flex-direction: column;
    padding: 80px 40px;
  }
  .openday__col-left-info{
    width: 100%;
  }
  .openday__wrap{
    gap: 25px;
  }
  .openday__col-right{
    width: 100%;
  }
}

@media (max-width: 768px){
  .openday__wrap{
    padding: 40px 20px;
  }
  .openday__col-left-info{
    flex-direction: column-reverse;
  }
  .openday__col-left-info-right{
    width: auto;
    align-self: stretch;
    height: auto;
  }
  .openday__col-left-info-left{
    font-size: 30px;
  }
  .openday__col-right{
    padding-left: 20px;
  }
  .openday{
    padding-top: 0;
  }
}
/* 12. Openday Section End */

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

.warr__wrap{
  position: relative;
  display: flex;
  gap: 24px;
}

.warr__col-left{
  display: flex;
  width: 558px;
  padding: 156px 64px;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 20px;
  border-radius: 40px;
  background: #FFF;
}

.warr__col-title{
  color: #000;
  font-family: var(--font-accent);
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%; /* 43.75px */
  text-transform: uppercase;
}

.warr__col-subtitle{
  color: #000;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 165%; /* 24.75px */
}

.warr__col-promo{
  display: flex;
  padding: 20px 30px;
  align-items: center;
  gap: 20px;
  border-radius: 1000px;
  background: #101010;
}

.warr__col-promo-ico{
  display: flex;
  padding: 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
  background: #FFF;
}

.warr__col-promo-title{
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 145%; /* 20.3px */
}

.warr__col-right{
  display: flex;
  width: 555px;
  height: 650px;
  padding: 20px;
  align-items: flex-start;
  gap: 20px;
  border-radius: 40px;
  background: url(../img/warr.avif) lightgray 50% / cover no-repeat;
}

@media (max-width: 1024px){
  .warr__col-left{
    padding-top: 100px;
  }
}

@media (max-width: 768px){
  .warr__wrap{
    flex-direction: column;
  }
  .warr__col-right{
    display: none;
  }
  .warr__col-left{
    width: auto;
    padding: 40px 20px;
  }
  .warr__col-title{
    font-size: 25px;
  }
  .warr__col-promo{
    border-radius: 20px;
  }
  .warr{
    padding-top: 0;
  }
}
/* 13. Warr Section End */

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

.register__wrap{
  display: flex;
  gap: 24px;
  justify-content: center;
}

.register__info-col{
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 366px;
}

.register__info-col-header{
  display: flex;
  align-items: center;
  gap: 26px;
}

.register__info-col-title{
  color: #000;
  font-family: var(--font-accent);
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%; /* 43.75px */
  text-transform: uppercase;
}

.register__info-col-subtitle{
  color: #000;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 165%; /* 24.75px */
}

.register__info-col-descr{
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 165%; /* 33px */
}

.register__options-col{
  display: flex;
  gap: 24px;
}

.register__option-btn{
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
}

.register__option{
  display: flex;
  flex-direction: column;
  width: 364px;
  /* height: 817px; */
  padding: 30px;
  align-items: flex-start;
  gap: 24px;
  border-radius: 24px;
  border: 1px solid #E0F6F7;
  background: #FFF;
}

.register__option-headr{
  display: flex;
  align-items: center;
  gap: 24px;
  align-self: stretch;
}

.register__option-headr-title{
  color: #1C0357;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px; /* 64% */
  text-transform: uppercase;
}

.register__option-content{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
  height: 270px;
}

.register__option-content-title{
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 171.429% */
}

.register__option-content-text{
  color: var(--Gray-600, #535353);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 171.429% */
}

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

.register__option-descr-title{
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 171.429% */
}

.register__option-descr-subtitle{
  color: var(--Gray-600, #535353);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 171.429% */
}

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

.register__option-prise-del{
  color: var(--dark-blue, #001F3D);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
  text-decoration-line: line-through;
}

.register__option-prise-actual{
  font-family: var(--font-accent);
  font-size: 35px;
  font-style: normal;
  font-weight: 500;
  line-height: 145%; /* 50.75px */
  background: linear-gradient(246deg, #1C0357 1.51%, #1C0357 29.94%, #1C0357 67.84%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.register__option-prise-timer{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
}

.register__option-prise-timer p{
  color: var(--Gray-600, #535353);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 171.429% */
}

.register__option-prise-timer span{
  color: var(--Gray-600, #535353);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 171.429% */
}

@media (max-width: 1024px){
.register__wrap {
  flex-direction: column;
}
.register__info-col{
  width: auto;
}
}

@media (max-width: 768px){
  .register__option{
    width: auto;
  }
  .register__option-content{
    height: auto;
  }
  .register__options-col{
    flex-direction: column;
  }
  .register__info-col-title{
    font-size: 25px;
  }
  .register{
    padding-top: 0;
  }
}
/* 14. Register Section End */

/* 15. Options Section Start */
.options{
  padding-top: 75px;
  padding-bottom: 75px;
}

.options__wrap{
  display: flex;
  gap: 16px;
  flex-direction: column;
}

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

.options__header-text{
  display: flex;
  gap: 26px;
}

.options__header-title{
  color: #000;
  font-family: var(--font-accent);
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%; /* 43.75px */
  text-transform: uppercase;
}

.options__header-subtitle{
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 165%; /* 33px */
}

.options__cards-wrap{
  display: flex;
  gap: 26px;
  justify-content: center;
}

.options__left-card{
  display: flex;
  width: 350px;
  height: 620px;
  padding: 50px;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 40px;
  background: #E6E6FF;
}

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

.options__left-card-up{
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-self: stretch;
}

.options__left-card-title{
  color: #000;
  font-size: 25px;
  font-style: normal;
  font-weight: 800;
  line-height: 145%; /* 36.25px */
}

.options__left-card-descr{
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 165%; /* 26.4px */
}

.options__left-card-item{
  display: flex;
  align-items: center;
  gap: 20px;
  align-self: stretch;
}

.options__left-card-item-title{
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 165%; /* 23.1px */
}

.options__left-card-btn-group{
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}

.options__left-card-btn-group button{
  width: 100%;
  font-size: 12px;
}

.btn-black{
  border-radius: 12px;
  background: #101010;
  color: #FFF;
}

.options__right-card{
  display: flex;
  width: 561px;
  height: 620px;
  padding: 50px;
  flex-direction: column;
  justify-content: space-between;

  border-radius: 40px;
  background: #1C0357;
}

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

.options__right-card-title{
  color: #FFF;
  font-size: 25px;
  font-style: normal;
  font-weight: 800;
  line-height: 145%; /* 36.25px */
}

.options__right-card-descr{
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 165%; /* 26.4px */
}

.options__right-card-item{
  display: flex;
  align-items: center;
  gap: 20px;
  align-self: stretch;
}

.options__right-card-item-title{
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 165%; /* 23.1px */
}

.btn-white{
  border-radius: 12px;
  background: #FFF;
  color: #101010;
}

.options__right-card-btn-group{
  display: flex;
  justify-content: center;
}

@media (max-width: 1024px){
.options__cards-wrap{
  flex-direction: column;
}
.options__left-card{
  width: auto;
}
.options__right-card{
  width: auto;
}
}

@media (max-width: 768px){
  .options__left-card-btn-group{
    flex-direction: column;
  }
  .options__right-card{
    height: 0;
  }
  .options__header-title{
    font-size: 25px;
  }
  .options__header-subtitle{
    font-size: 18px;
  }
  .options__left-card{
    padding: 40px 20px;
  }
  .options__right-card{
    height: 800px;
    gap: 18px;
  }
  .options__right-card{
    padding: 40px 20px;
  }
  .options{
    padding-top: 0;
  }
}
/* 15. Options Section End */

/* 16. Footer Section Start */
.footer__wrap{
  gap: 50px;
  display: flex;
  padding: 40px 40px 0 40px;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  border-radius: 24px;
  background: #0D0D0D;
}

.footer__header-wrap{
  display: flex;
  align-items: flex-start;
  gap: 80px;
  align-self: stretch;
  justify-content: space-between;
}

.footer__col{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  width: 180px;
}

.footer__col-main{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  align-self: stretch;
  width: 230px;
}

.footer__col-main-title{
  color: var(--white, #FFF);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px; /* 155.556% */
}

.footer__col-main-btns{
  display: flex;
  align-items: center;
  gap: 12px;
  align-self: stretch;
}

.footer__btn{
  display: flex;
  padding: 12px;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: #151617;
}

.footer__col-title{
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 25.5px; /* 150% */
  background: #1C0357;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer__col-content{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer__col-content-link{
  color: var(--white, #FFF);
  text-decoration: none;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}

.footer__col-acc{
  display: flex;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: #151617;
}

.footer__col-acc-title{
  color: var(--white, #FFF);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px; /* 133.333% */
}

.footer__col-acc-btn{
  display: flex;
  padding: 16px 48.2px 16px 48.21px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  align-self: stretch;
  border-radius: 10px;
  border: 1px solid #1C0357;
  background: #0D0D0D;
  text-decoration: none;
}

.footer__col-acc-btn span{
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
  background: #1C0357;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
}

.footer__footer{
  display: flex;
  padding: 24px 0;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
  border-top: 1px solid #535353;
}

.footer__footer p{
  color: var(--white, #FFF);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 142.857% */
}

.footer__footer-btn{
  color: var(--white, #FFF);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 142.857% */
}

@media (max-width: 1024px) {
  .footer__header-wrap{
    flex-wrap: wrap;
  }
}

/* mobile */
@media (max-width: 768px) {
  .footer__header-wrap, .footer__footer{
    flex-direction: column;
  }
/*   .footer__wrap{
        padding: 40px 0px 0 0px;
  } */
  .footer__col-main, .footer__col, .footer__col-acc{
    width: auto;
  }
  .footer__header-wrap{
    gap: 40px;
  }
}
/* 16. Footer Section End */

/* NEW PAYMENT BLOCK */
.paypack-title { text-align: center; margin-bottom: 18px; }

.paypack-buttons{
  display:flex;
  gap:16px;
  justify-content:center;
  flex-wrap:wrap;
}

/* ===== MODAL ===== */
.paymodal{
  position:fixed;
  inset:0;
  z-index:9999;
  display:none;
}
.paymodal.is-open{ display:block; }

.paymodal__overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.55);
}

.paymodal__dialog{
  position:relative;
  width:min(1100px, calc(100% - 32px));
  margin:6vh auto 0;
  background:#fff;
  border-radius:24px;
  padding:40px;
  box-shadow:0 30px 80px rgba(0,0,0,.25);
}

.paymodal__close{
  position:absolute;
  top:16px;
  right:18px;
  border:0;
  background:transparent;
  font-size:28px;
  cursor:pointer;
  line-height:1;
  z-index: 9999;
}

.paymodal__head{
  color: var(--Gray-900, #0D0D0D);
font-family: var(--_font-accent);
font-size: 24px;
font-style: normal;
font-weight: 500;
line-height: 145%; /* 34.8px */
letter-spacing: -1px;
}

.paymodal__grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:22px;
  align-items:start;
}

.paymodal__form{ display:grid; gap:14px; }

.paymodal__input,
.paymodal__textarea{
  width:100%;
  border:1px solid rgba(2,46,55,.10);
  border-radius:14px;
  padding:16px 16px;
  font-size:16px;
  outline:none;
  background:#fff;
}
.paymodal__textarea{ min-height:160px; resize:vertical; }

.paymodal__side{
  border-radius: 24px;
  border: 1px solid var(--Border, rgba(0, 0, 0, 0.04));
  background: var(--White, #FFF);
  padding:20px;
  background:#fff;
  margin-top: 18px;
}

.paymodal__label{
  color: #0D0D0D;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px; /* 177.778% */
}
/* .paymodal__label--mt{ margin-top:30px; } */

.paymodal__seg{
  display:flex;
  gap:10px;
  padding: 6px;
  border:1px solid rgba(2,46,55,.12);
  border-radius: 14px;
  border: 1px solid #EAECF0;
  background: #F9FAFB;
    width:max-content;
}
.paymodal__seg-btn{
  border:0;
  background:transparent;
  padding: 10px 16px;
  border-radius:10px;
  cursor:pointer;
  font-size:14px;

  color: var(--Gray-600, #535353);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 175% */
}
.paymodal__seg-btn.is-active{
  background: #1C0357;
  color: var(--White, #FFF);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px; /* 175% */
}

.paymodal__radrow{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  align-items:center;
}
.paymodal__radio{
  display:flex;
  align-items:center;
  gap:8px;
  color: var(--Gray-600, #535353);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px; /* 200% */
}
/* .paymodal__radio input{ transform:translateY(1px); } */

.paymodal__anchor{ display:none; } /* якоря для внешки */

.payment-block{ display:none; margin-top:30px; }
.payment-block.active{ display:block; }

.paymodal__small{
  color: var(--Gray-600, #535353);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
.paymodal__priceRow{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}
.paymodal__priceMain{
  color: var(--Gray-900, #0D0D0D);
  font-family: var(--_font-accent);
  font-size: 31px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -1px;
}
.paymodal__priceOld{
  color: var(--Gray-600, #535353);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px; /* 150% */
  text-decoration-line: line-through;
}
.paymodal__priceOld del{ opacity:.85; }

.paymodal__timer{
  margin-top:10px;
  display:flex;
  gap:10px;
  align-items:center;
  font-size:13px;
  color:rgba(2,46,55,.65);
}
.paymodal__timerBox{
  border:1px solid rgba(2,46,55,.10);
  border-radius:12px;
  padding:6px 10px;
  background:#fff;
}

.paymodal__step{ display:none; }
.paymodal__step.is-active{ display:block; }

.paymodal__thx{ display:grid; gap:12px; color:rgba(2,46,55,.75); }
.paymodal__tg{
  display:flex;
  gap:14px;
  align-items:stretch;
  flex-wrap:wrap;
  margin-top:6px;
  width: 100%;
  justify-content: space-between;
}

.paymodal__thx p{
  color: #0D0D0D;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px; /* 177.778% */
}

.paymodal__thx-b{
  color: var(--Gray-900, #0D0D0D);
  font-family: var(--_font-accent);
  font-size: 22px !important;
  font-style: normal;
  font-weight: 600 !important;
  line-height: 145%; /* 26.1px */
  letter-spacing: -1px;
}
.paymodal__tgText{ flex:1; min-width:260px; }
.paymodal__tgBtn{
  flex:0 0 340px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  text-align:center;
  padding:14px 16px;
  border-radius:14px;
  background:#2ea7df;
  color: #FFF;
  font-family: var(--_font-accent);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 165%; /* 33px */
  letter-spacing: -1px;
  text-decoration:none;
}

.paymodal__tgText p strong{
  font-weight: bold;
  font-size: 22px;
}

@media (max-width: 900px){
  .paymodal__grid{ grid-template-columns:1fr; }
  .paymodal__dialog{ margin:3vh auto 0; padding:20px; }
}

.no-scroll{ overflow:hidden; }


.no-scroll { overflow: hidden !important; }

.paymodal { position: fixed; inset: 0; display: none; z-index: 9999; }
.paymodal.is-open { display: block; }

.paymodal__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.55); }

.paymodal__dialog{
  position: relative;
  width: min(1200px, calc(100% - 40px));
  margin: 40px auto;
  background: #fff;
  border-radius: 24px;
  padding: 32px;
}

.paymodal__close{
  position: absolute; top: 18px; right: 18px;
  width: 44px; height: 44px;
  border: 0; background: transparent;
  font-size: 28px; line-height: 1; cursor: pointer;
}

.paymodal__step{ display:none; }
.paymodal__step.is-active{ display:block; }

.paymodal__grid{
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 24px;
  align-items: start;
}

.paymodal__side{ display:flex; flex-direction:column; gap: 16px; }
.paymodal__input, .paymodal__textarea{
  width: 100%;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  padding: 18px 18px;
  font: inherit;
}

.paymodal__textarea{ min-height: 190px; resize: vertical; }

.paymodal__paybox{
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  padding: 18px;
}

.paymodal__seg{ display:flex; gap: 10px; padding: 8px; border-radius: 16px; border:1px solid rgba(0,0,0,.06); }
.paymodal__segbtn{
  flex: 1;
  border: 0;
  border-radius: 14px;
  padding: 12px 14px;
  background: transparent;
  cursor: pointer;
}
.paymodal__segbtn.is-active{
  background: #003D3D;
  color: #fff;
}

.paymodal__radios{ display:flex; gap: 18px; flex-wrap: wrap; margin-top: 12px; }
.paymodal__radio{ display:flex; gap: 10px; align-items:center; }

.payment-block{ display:none; margin-top: 0px; }
.payment-block.active{ display:block; }


.paymodal__priceOld{ opacity: .55; margin-top: 4px; }

.paymodal__timer{
  display:flex; align-items:center; gap: 10px;
  margin-top: 14px;
}
.paymodal__timer .countdown > div,
.paymodal__timer .countdown-full > div{
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 12px;
  padding: 8px 10px;
}

.paymodal__submit{
  margin-top: 16px;
  width: 280px;
  height: 56px;
  justify-self: center;
  border: 0;
  border-radius: 14px;
  background: #003D3D;
  color: #fff;
  cursor: pointer;
}

@media (max-width: 1024px){
  .paymodal__grid{ grid-template-columns: 1fr; }
}


.paymodal.is-submitting { pointer-events: none; }
.paymodal.is-submitting .paymodal__dialog { pointer-events: auto; }

.paymodal.is-submitting::after{
  content:"";
  position:fixed; inset:0;
  background:rgba(0,0,0,.25);
  z-index:9998;
}

.paymodal.is-submitting::before{
  content:"Обработка…";
  position:fixed;
  left:50%; top:50%;
  transform:translate(-50%,-50%);
  z-index:9999;

  padding:12px 16px;
  border-radius:12px;
  background:#fff;
  color:#111;
  font-weight:600;
  box-shadow:0 10px 30px rgba(0,0,0,.18);
}
/* step2 поверх, step1 остаётся живым */
.paymodal.is-step2-soft .paymodal__step--2{
  display: block !important;
}

.paymodal.is-step2-soft .paymodal__step--1{
  opacity: 0;
  pointer-events: none;
}

/* если у step2 нет позиционирования — подстрахуем */
.paymodal .paymodal__step--2{
  display: none;
}
.paymodal.is-step2-soft .paymodal__step--2{
  position: absolute;
  inset: 0;
  z-index: 5;
}

/* step2 поверх, step1 живой (не display:none) */
/* .paymodal.is-step2-soft { position: relative; } */

.paymodal .paymodal__step--2 { display: none; }
.paymodal.is-step2-soft .paymodal__step--2{
  display: block !important;
  position: absolute;
  inset: 0;
  z-index: 5;
}

/* step1 не прячем, только делаем "невидимым" */
.paymodal.is-step2-soft .paymodal__step--1{
  opacity: 0;
  pointer-events: none;
}
/* FIX STEP2: remove any "soft overlay" behavior */
.paymodal.is-step2-soft .paymodal__step--2{
  position: static !important;
  inset: auto !important;
  height: auto !important;
  z-index: auto !important;
}

/* базовая логика шагов */
.paymodal__step{ display:none; }
.paymodal__step.is-active{ display:block; }
.paymodal__step--2{ display:none; }

/* step2 overlay */
.paymodal.is-step2-soft .paymodal__step--2{
  display:block !important;
  position:static !important;  /* ключ */
  inset:auto !important;       /* чтобы не пыталось растянуть */
  z-index:auto !important;
}


/* КЛЮЧЕВОЕ: держим высоту диалога через шаг 1 (он остаётся в потоке) */
.paymodal.is-step2-soft .paymodal__step--1{
  display:block !important;     /* <- не даём схлопнуться */
  visibility:hidden;            /* <- визуально скрыли */
  pointer-events:none;
}

@media (max-width: 1024px) {
  .paymodal__grid > :nth-child(1) { order: 2; }
  .paymodal__grid > :nth-child(2) { order: 1; }
}

@media (max-width: 767px) {
  .paymodal__grid > :nth-child(1) { order: 2; }
  .paymodal__grid > :nth-child(2) { order: 1; }
}

/* === STEP2: реально оверлей и по центру === */


/* step1 оставляем в потоке, но прячем */
.paymodal.is-step2-soft .paymodal__step--1{
  display: block !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* step2 поверх и центрируем */
.paymodal.is-step2-soft .paymodal__step--2.is-active{
  display: flex !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 10 !important;

  justify-content: center;
  align-items: start;

  padding: 32px;
  box-sizing: border-box;

  flex-direction: column;
}

/* чтобы контент не растягивался на весь белый лист */
.paymodal.is-step2-soft .paymodal__thx{
  width: min(720px, 100%);
}

/* FIX: step2 NOT absolute */
.paymodal.is-step2-soft .paymodal__step--2{
  display:block !important;
  position:static !important;
}
.paymodal.is-step2-soft .paymodal__step--1{
  opacity:0;
  pointer-events:none;
}


.col-blue{
  background: #1C0357;
  color: #FFF;
}

.col-black{
  background: #101010;
  color:#FFF;
}

.block-variant-1-active, .block-variant-2-active, .block-variant-3-active {
    gap: 23px;
    flex-direction: column;
    display: FLEX;
}

.star{
  position: absolute;
  z-index: -1;
}

.star-1 {
  bottom: -50px;
  left: -10px;
}

.star-2 {
    top: -140px;
    right: 20px;
}

.star-3 {
    z-index: -1;
    top: -40px;
    left: -50px;
}
@media (max-width: 768px){
  .distance-xxs{
    padding-top: 0;
  }
  .star{
    display: none;
  }
}

/* ===== payModalBasic / desktop scroll fix ===== */
.paymodal {
  overflow-y: auto;
  padding: 20px;
  box-sizing: border-box;
}

.paymodal__dialog {
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

/* чтобы крестик не уезжал при скролле контента */
.paymodal__close {
  position: sticky;
  top: 0;
  margin-left: auto;
  z-index: 20;
  display: flex;
  justify-content: center;
  align-items: center;
}


@media (max-width: 767px) {
  .paymodal {
    padding: 12px;
  }

  .paymodal__dialog {
    max-height: calc(100vh - 24px);
  }
}

@media (max-width: 767px) {
    .paymodal__scrollhint {
        width: 320px;
        position: relative;
    }
}
/* NEW PAYMENT BLOCK */


/* =========================
   PAYMODAL HARD FIX
   ДОБАВИТЬ В САМЫЙ КОНЕЦ CSS
========================= */

#payModalBasic.paymodal,
#payModalTrainer.paymodal,
#payModalb2b.paymodal{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  padding: 0;
  overflow: hidden;
}

#payModalBasic.paymodal.is-open,
#payModalTrainer.paymodal.is-open,
#payModalb2b.paymodal.is-open{
  display: block;
}

#payModalBasic .paymodal__overlay,
#payModalTrainer .paymodal__overlay,
#payModalb2b .paymodal__overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.58);
}

#payModalBasic .paymodal__dialog,
#payModalTrainer .paymodal__dialog,
#payModalb2b .paymodal__dialog{
  position: relative;
  z-index: 2;
  width: min(1100px, calc(100% - 32px));
  max-height: min(88vh, calc(100dvh - 32px));
  margin: 16px auto;
  padding: 32px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(0,0,0,.25);

  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

#payModalBasic .paymodal__close,
#payModalTrainer .paymodal__close,
#payModalb2b .paymodal__close{
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 20;
}

#payModalBasic .paymodal__head,
#payModalTrainer .paymodal__head,
#payModalb2b .paymodal__head{
  padding-right: 44px;
  margin-bottom: 18px;
}

#payModalBasic .paymodal__grid,
#payModalTrainer .paymodal__grid,
#payModalb2b .paymodal__grid{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 24px;
  align-items: start;
}

#payModalBasic .paymodal__form,
#payModalBasic .btn-2026,
#payModalBasic #form_242368_1,
#payModalTrainer .paymodal__form,
#payModalTrainer .btn-2026,
#payModalTrainer #form_242368_1,
#payModalb2b .paymodal__form,
#payModalb2b .btn-2026,
#payModalb2b #form_242368_1{
  min-width: 0;
}

#payModalBasic .paymodal__side,
#payModalTrainer .paymodal__side,
#payModalb2b .paymodal__side{
  margin-top: 0;
  min-width: 0;
  position: sticky;
  top: 0;
  align-self: start;
}

#payModalBasic .paymodal__seg,
#payModalTrainer .paymodal__seg,
#payModalb2b .paymodal__seg{
  width: auto;
  max-width: 100%;
}

#payModalBasic .paymodal__seg-btn,
#payModalTrainer .paymodal__seg-btn,
#payModalb2b .paymodal__seg-btn{
  flex: 1 1 0;
  min-width: 0;
}

#payModalBasic .paymodal__radrow,
#payModalTrainer .paymodal__radrow,
#payModalb2b .paymodal__radrow{
  gap: 10px 14px;
}

#payModalBasic .paymodal__label--mt,
#payModalTrainer .paymodal__label--mt,
#payModalb2b .paymodal__label--mt{
  font-size: 15px;
  line-height: 1.55;
}

#payModalBasic .payment-block,
#payModalTrainer .payment-block,
#payModalb2b .payment-block{
  margin-top: 20px;
}

#payModalBasic .paymodal__priceMain,
#payModalTrainer .paymodal__priceMain,
#payModalb2b .paymodal__priceMain{
  word-break: break-word;
}

#payModalBasic iframe[src*="formdesigner"],
#payModalTrainer iframe[src*="formdesigner"],
#payModalb2b iframe[src*="formdesigner"]{
  display: block;
  width: 100% !important;
  max-width: 100%;
  border: 0;
}

/* step 2 — нормальный поток, без absolute/fixed каши */
#payModalBasic .paymodal__step,
#payModalTrainer .paymodal__step,
#payModalb2b .paymodal__step{
  display: none;
}

#payModalBasic .paymodal__step.is-active,
#payModalTrainer .paymodal__step.is-active,
#payModalb2b .paymodal__step.is-active{
  display: block;
}

#payModalBasic .paymodal__step--2,
#payModalTrainer .paymodal__step--2,
#payModalb2b .paymodal__step--2{
  position: static !important;
  inset: auto !important;
  height: auto !important;
  overflow: visible !important;
}

#payModalBasic.is-step2-soft .paymodal__step--1,
#payModalTrainer.is-step2-soft .paymodal__step--1,
#payModalb2b.is-step2-soft .paymodal__step--1{
  display: none !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: none !important;
}

#payModalBasic.is-step2-soft .paymodal__step--2.is-active,
#payModalTrainer.is-step2-soft .paymodal__step--2.is-active,
#payModalb2b.is-step2-soft .paymodal__step--2.is-active{
  display: block !important;
}

/* ---------- TABLET ---------- */
@media (max-width: 1024px){
  #payModalBasic .paymodal__dialog,
  #payModalTrainer .paymodal__dialog,
  #payModalb2b .paymodal__dialog{
    width: calc(100% - 24px);
    max-height: calc(100dvh - 24px);
    margin: 12px auto;
    padding: 24px;
    border-radius: 22px;
  }

  #payModalBasic .paymodal__grid,
  #payModalTrainer .paymodal__grid,
  #payModalb2b .paymodal__grid{
    grid-template-columns: 1fr;
  }

  #payModalBasic .paymodal__grid > :nth-child(1),
  #payModalTrainer .paymodal__grid > :nth-child(1),
  #payModalb2b .paymodal__grid > :nth-child(1){
    order: 2;
  }

  #payModalBasic .paymodal__grid > :nth-child(2),
  #payModalTrainer .paymodal__grid > :nth-child(2),
  #payModalb2b .paymodal__grid > :nth-child(2){
    order: 1;
  }

  #payModalBasic .paymodal__side,
  #payModalTrainer .paymodal__side,
  #payModalb2b .paymodal__side{
    position: static;
    top: auto;
  }
}

/* ---------- MOBILE ---------- */
@media (max-width: 767px){
  #payModalBasic.paymodal,
  #payModalTrainer.paymodal,
  #payModalb2b.paymodal{
    padding: 0;
  }

  #payModalBasic .paymodal__dialog,
  #payModalTrainer .paymodal__dialog,
  #payModalb2b .paymodal__dialog{
    width: auto;
    height: 90dvh;
    max-height: 100dvh;
    margin: 0;
    border-radius: 0;
    padding: 48px 16px 22px;
    box-shadow: none;
  }

  #payModalBasic .paymodal__close,
  #payModalTrainer .paymodal__close,
  #payModalb2b .paymodal__close{
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    font-size: 24px;
  }

  #payModalBasic .paymodal__head,
  #payModalTrainer .paymodal__head,
  #payModalb2b .paymodal__head{
    padding-right: 38px;
    margin-bottom: 14px;
    font-size: 22px;
    line-height: 1.35;
    letter-spacing: -.5px;
  }

  #payModalBasic .paymodal__grid,
  #payModalTrainer .paymodal__grid,
  #payModalb2b .paymodal__grid{
    gap: 16px;
  }

  #payModalBasic .paymodal__side,
  #payModalTrainer .paymodal__side,
  #payModalb2b .paymodal__side{
    padding: 16px;
    border-radius: 18px;
  }

  #payModalBasic .paymodal__label,
  #payModalTrainer .paymodal__label,
  #payModalb2b .paymodal__label{
    font-size: 16px;
    line-height: 1.45;
  }

  #payModalBasic .paymodal__seg,
  #payModalTrainer .paymodal__seg,
  #payModalb2b .paymodal__seg{
    padding: 4px;
    border-radius: 12px;
  }

  #payModalBasic .paymodal__seg-btn,
  #payModalTrainer .paymodal__seg-btn,
  #payModalb2b .paymodal__seg-btn{
    padding: 10px 12px;
    font-size: 14px;
    line-height: 1.2;
  }

  #payModalBasic .paymodal__radrow,
  #payModalTrainer .paymodal__radrow,
  #payModalb2b .paymodal__radrow{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
    align-items: start;
  }

  #payModalBasic .paymodal__radio,
  #payModalTrainer .paymodal__radio,
  #payModalb2b .paymodal__radio{
    font-size: 14px;
    line-height: 1.35;
    align-items: center;
  }

  #payModalBasic .paymodal__small,
  #payModalTrainer .paymodal__small,
  #payModalb2b .paymodal__small{
    font-size: 14px;
    line-height: 1.4;
  }

  #payModalBasic .paymodal__priceMain,
  #payModalTrainer .paymodal__priceMain,
  #payModalb2b .paymodal__priceMain{
    font-size: 28px;
    line-height: 1.1;
    letter-spacing: -.5px;
  }

  #payModalBasic .paymodal__thx p,
  #payModalTrainer .paymodal__thx p,
  #payModalb2b .paymodal__thx p{
    font-size: 16px;
    line-height: 1.55;
  }

  #payModalBasic .paymodal__thx-b,
  #payModalTrainer .paymodal__thx-b,
  #payModalb2b .paymodal__thx-b{
    font-size: 20px !important;
    line-height: 1.35 !important;
    letter-spacing: -.5px;
  }

  #payModalBasic .paymodal__tg,
  #payModalTrainer .paymodal__tg,
  #payModalb2b .paymodal__tg{
    gap: 12px;
  }

  #payModalBasic .paymodal__tgText,
  #payModalTrainer .paymodal__tgText,
  #payModalb2b .paymodal__tgText{
    min-width: 0;
  }

  #payModalBasic .paymodal__tgBtn,
  #payModalTrainer .paymodal__tgBtn,
  #payModalb2b .paymodal__tgBtn{
    flex: 1 1 auto;
    width: 100%;
    min-height: 64px;
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 18px;
    line-height: 1.3;
  }

  #payModalBasic .paymodal__tgBtn-title,
  #payModalTrainer .paymodal__tgBtn-title,
  #payModalb2b .paymodal__tgBtn-title{
    text-align: left;
  }

  #payModalBasic .paymodal__tgBtn-ico svg,
  #payModalTrainer .paymodal__tgBtn-ico svg,
  #payModalb2b .paymodal__tgBtn-ico svg{
    width: 44px;
    height: 44px;
  }
}

/* formdesigner safety */
@media (max-width: 767px){
  #payModalBasic #form_242368_1,
  #payModalBasic #form_242368_1 > div,
  #payModalBasic #form_242368_1 iframe,
  #payModalTrainer #form_242368_1,
  #payModalTrainer #form_242368_1 > div,
  #payModalTrainer #form_242368_1 iframe,
  #payModalb2b #form_242368_1,
  #payModalb2b #form_242368_1 > div,
  #payModalb2b #form_242368_1 iframe{
    max-width: 100% !important;
  }
}

.countdown{
  display: none !important;
}


@media (max-width: 390px){
  .info__main-content-left-row-item{
    width: auto;
  }
/*   .acc-btn{
    padding: 5px;
  } */
  .options__right-card {
        height: 900px;
        gap: 18px;
  }
}

/* 19. Animations Start */
.section-with-stars{
  position: relative;
}

.section-with-stars > *:not(.star){
  position: relative;
  z-index: 1;
}

.star{
  position: absolute;
  z-index: 0;
  pointer-events: none;
  transform-origin: center;
  animation: starSpinPulse 12s linear infinite;
  will-change: transform, opacity;
}

.star svg{
  display: block;
  overflow: visible;
}

.star svg path{
  fill: none;
  stroke: #1C0357;
  stroke-width: 1.5;
  animation: starLineCycle 12s ease-in-out infinite;
  will-change: stroke-dashoffset, opacity;
}

.star-1{
  bottom: -50px;
  left: -10px;
}

.star-2{
  top: -140px;
  right: 20px;
}

.star-3{
  top: -40px;
  left: -50px;
}

.star-1,
.star-1 svg path{
  animation-delay: 0s;
}

.star-2,
.star-2 svg path{
  animation-delay: -2s;
}

.star-3,
.star-3 svg path{
  animation-delay: -4s;
}

@keyframes starSpinPulse{
  0%{
    transform: rotate(0deg) scale(1);
    opacity: 0.78;
  }
  25%{
    transform: rotate(90deg) scale(1.025);
    opacity: 0.92;
  }
  50%{
    transform: rotate(180deg) scale(1.04);
    opacity: 1;
  }
  75%{
    transform: rotate(270deg) scale(1.025);
    opacity: 0.9;
  }
  100%{
    transform: rotate(360deg) scale(1);
    opacity: 0.78;
  }
}

@keyframes starLineCycle{
  0%{
    stroke-dashoffset: var(--path-length);
    opacity: 0.55;
  }
  16.666%{
    stroke-dashoffset: 0;
    opacity: 1;
  }
  50%{
    stroke-dashoffset: 0;
    opacity: 1;
  }
  66.666%{
    stroke-dashoffset: var(--path-length);
    opacity: 0.65;
  }
  83.333%{
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100%{
    stroke-dashoffset: 0;
    opacity: 0.9;
  }
}


.vector{
  position: absolute;
  z-index: 5;
}

.vector-1{
  bottom: 0px;
  right: 0px;
}

.vector-2{
    bottom: -20px;
    left: 90px;
}

.vector-3 {
    bottom: 70px;
    right: 90px;
}

.vector-4 {
    bottom: -70px;
    left: -100px;
}

.we__main-wrap, .problem__wrap-main, .feedback__wrap{
  position: relative;
}

.corr-btn{
  font-size: 14px !important;
  font-style: normal !important;
  font-weight: 600 !important;
  line-height: 100% !important;
  height: 40px !important;
  padding: 5px 20px !important;
  width: 100%;
}

.corr-btn-type{
  padding: 5px 10px !important;
  height: 50px !important;
}

.corr-btn-type-2{
  width: 190px !important;
  padding: 5px 10px !important;
}

.h-btn{
  width: 200px;
}

@media (max-width: 1024px) {
  .acc-white{
    width: 300px;
    height: 50px;
  }
  .corr-btn{
    width: auto;
  }
  .team__item{
  flex-direction: column;
}
.team__item-ico{
  width: 336px;
  height: 336px;
}
.team__item-subtitle{
  padding-top: 14px;
}
.ch-btn{
  width: 240px;
}
.xh-btn{
  width: 100%;
}
}

@media (max-width: 390px){
.hero__col-left-btn-wrap{
  flex-direction: column;
  width: 100%;
}
.hero__pic{
  display: none;
}
.star{
  display: none;
}
.corr-btn{
  width: auto;
  text-align: center;
}
.acc-white{
  height: 50px;
  width: auto;
}
.team__item{
  flex-direction: column;
}
.team__item-ico{
  width: 336px;
  height: 336px;
}
.team__item-subtitle{
  padding-top: 14px;
}
.corr-btn-type{
  width: 100%;
}
.h-btn{
          width: 240px;
}
}
/* 19. Animations End */







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