/* 00. Danylo Oliinyk - https://iamdev.lol/  */
/* =================================== */
/* =================================== */
/* =================================== */
/* 01. Root Rules */
/* 02. Header Section */
/* 03. Hero Section */
/* 04. Whom Section */
/* 05. Partners Section */
/* 06. Why Section */
/* 07. Program Section */
/* 08. Form Section */
/* 09. Coaches Section */
/* 10. Register Section */
/* 11. Footer Section */
/* 12. Thanks Section */
/* 13. Animations */
/* =================================== */
/* =================================== */
/* =================================== */
/* New Landing Styles 22.07.2025 */

/* 14. Metrics Section */
/* 15. Why-next Section */
/* 16. Target Section */
/* 17. Project Section */
/* 18. Next-Step Section */
/* 19. Accord Section */








/* 01. Root Rules */
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;600;700&family=Outfit:wght@400;600;700&display=swap');

:root {
  --accent-font: 'Outfit', sans-serif;
}

body {
  font-family: 'Nunito Sans', sans-serif;
}

h1, a, p, li{
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}



.container {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 767px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.bg-main{
  background: #FAEFE2;
}

.bg-white{
  background: #FFFFFF;
}

.bg-green{
  background: #0F5648;
}

.bg-orange{
  background: #F06517;
}

.bg-black{
  background: #0F0F0F;
}

.distance-footer{
  padding-top: 120px;
  padding-bottom: 0px;
}

.distance-xxs{
  padding-top: 120px;
  padding-bottom: 40px;
}

.distance-xs{
  padding-top: 40px;
  padding-bottom: 100px;
}

.distance-small{
  padding-top: 120px;
  padding-bottom: 80px;
}

.distance-standart{
  padding-top: 120px;
  padding-bottom: 120px;
}
/* 01. Root Rules */

/* 02. Header Section */
header{
    /* height: 120px; */
    padding: 30px 40px;
}
.header__wrap{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    display: flex;
    padding: 10px 0px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.00);
    backdrop-filter: blur(3px);
    align-items: center;
}

.header__links{
    display: flex;
    flex-direction: row;
    gap: 45px;
    align-items: center;
}

.header__link {
  text-decoration: none;
  color: #0F0F0F;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  position: relative;
  transition: color 0.2s ease;
}

.header__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px; 
  width: 100%;
  height: 1px;
  background-color: #0F0F0F;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.header__link:hover::after {
  transform: scaleX(1);
}

.link-accent {
  border-radius: 100px;
  background: #0F5648;
  display: flex;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease;
  position: relative;
  z-index: 1; 
}


.link-accent::after {
  display: none !important;
}

.link-accent:hover {
  transform: scale(1.05);
}


/* Бургер-иконка */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.burger span {
  width: 24px;
  height: 2px;
  background: #0F0F0F;
  transition: all 0.3s ease;
}



/* Мобильное меню */
@media (max-width: 1024px) {
  .burger {
    display: flex;
  }

  .header__links {
    position: absolute;
    top: 100px;
    right: 0;
    flex-direction: column;
    background: #FFF;
    gap: 24px;
    padding: 24px 32px;
    border-radius: 16px;
    margin-right: 10px;
    transform: translateY(-200%);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .header__links.open {
    transform: translateY(0);
  }
}

/* 02. Header Section End */

/* 03. Hero Section Start */
.hero{
  padding-top: 135px;
}

.hero__wrap{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.hero__col1, .hero__col2{
  flex: 1;
}

.hero__col1-wrap{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
}

.hero__col1-promo{
  display: flex;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  border-radius: 54px;
  border: 1px solid #0F5648;
  color: #0F5648;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
}

.hero__col1-title{
  color: #0F0F0F;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px; /* 133.333% */
  text-transform: uppercase;
}

h1{
  color: #0F0F0F;
  font-family: var(--accent-font);
  font-size: 100px;
  font-style: normal;
  font-weight: 500;
  line-height: 100px; /* 100% */
}

.hero__col1-subtitle{
  color: #0F0F0F;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px; /* 133.333% */
  padding-top: 12px;
}

.hero__btn {
  margin-top: 60px;
  display: inline-block;
  padding: 16px 48px;
  background: #F15A0A; /* оранжевый */
  border-radius: 1000px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease;

  /* авто ширина — под текст */
  width: auto;
  max-width: 100%;
  white-space: nowrap;
}
.hero__btn:hover {
  transform: scale(1.03);
}

.hero__col2{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero__col2-row-1{
  display: flex;
  gap: 10px;
}

.row-1-item-1{
  display: flex;
  width: 300px;
  height: 160px;
  padding: 10px;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  border-radius: 100px;
  border: 1px solid #0F0F0F;
}

/* .row-1-item-1-gif {
  display: flex;
  height: 140px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex: 1 0 0;
  background-image: url('/img/gif/1-1.gif');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 100px;
} */


.row-1-item-2{
  width: 160px;
  height: 160px;
  border-radius: 100px;
  border: 1px solid #0F0F0F;
  display: flex;
  padding: 10px;
  justify-content: center;
  align-items: center;
}

.row-1-item-2-pic{
  display: flex;
  width: 140px;
  height: 140px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex-shrink: 0;
  border-radius: 100px;

  background-image: url('../img/hero/1-2.webp');
  background-repeat: no-repeat;
  background-size: cover;       /* или contain */
  background-position: center;
}

.hero__col2-row-2{
  display: flex;
  width: 668px;
  padding: 10px;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  border: 1px solid #0F0F0F;
}

.row-2-item-1{
  width: 140px;
  height: 140px;
  aspect-ratio: 206/141;
  border-radius: 100px;
  display: flex;
  /* justify-content: flex-end; */
  align-items: center;
  /* flex: 1 0 0; */
  align-self: stretch;
  background-image: url('../img/hero/2-1.webp');
  background-repeat: no-repeat;
  background-size: cover;       /* или contain */
  background-position: center;
}

/* .row-2-item-2{
  display: flex;
  height: 140px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex: 1 0 0;
  border-radius: 100px;
  background-image: url('/img/gif/2-2.gif');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  image-rendering: -webkit-optimize-contrast;
} */

.hero__col2-row-3{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  align-self: stretch;
}

.row-3-item-1{
  display: flex;
  width: 160px;
  height: 160px;
  padding: 36px 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 100px 0px 100px 100px;
  background: #0F5648;
  text-align: center;
  color: #F5F5F5;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 56px; /* 140% */
}

.row-3-item-1 span{
  color: #F5F5F5;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 114.286% */
}

.row-3-wrap{
  width: 378px;
  height: 160px;
  border-radius: 100px;
  border: 1px solid #0F0F0F;
  display: flex;
  padding: 10px;
  /* justify-content: flex-end; */
  align-items: center;
  gap: 10px;
}

/* .row-3-item-2{
  width: 216px;
  height: 140px;
  aspect-ratio: 216/139;
  border-radius: 100px;
  background-image: url('/img/gif/3-1.gif');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
} */

.row-3-item-3{      
  width: 140px;
  height: 140px;
  background-image: url('../img/hero/3-3.webp');
  background-repeat: no-repeat;
  background-size: cover;       /* или contain */
  background-position: center;
  border-radius: 100px;
}


.row-1-item-1-gif,
.row-2-item-2,
.row-3-item-2 {
  position: relative;
  overflow: hidden;
  border-radius: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.row-1-item-1-gif {
  height: 140px;
  flex: 1 0 0;
}

.row-2-item-2 {
  height: 140px;
  flex: 1 0 0;
}

.row-3-item-2 {
  width: 216px;
  height: 140px;
  aspect-ratio: 216 / 139;
}

.row-1-item-1-gif video,
.row-2-item-2 video,
.row-3-item-2 video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}



@media (max-width: 1024px) {
  .hero__wrap{
    flex-direction: column;
  }
  header {
    padding: 30px 0px;
  }
  .hero__col1-title, .hero__col1-subtitle{
    font-size: 24px;
    line-height: normal
  }
  h1{
    font-size: 64px;
    line-height: normal;
  }
  .hero__col2{
    display: none;
  }
}
/* 03. Hero Section End */


/* Whom Section Start */
.whom__wrap{
  display: flex;
  width: 1360px;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.whom__wrap-items{
  margin-top: 80px;
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
}

.whom__item{
  flex: 1;
  display: flex;
  padding: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex: 1 0 0;
}

.whom__uptitle{
  color: #0F5648;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
}

.whom__title{
  color: #0F0F0F;
  text-align: center;
  font-size: 50px;
  font-style: normal;
  font-weight: 600;
  line-height: 64px; /* 128% */
}

.whom__subtite{
  color: #0F0F0F;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
}

.whom__item-ico{
  border-radius: 24px;
  background: #0F5648;
  display: flex;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  color: #F5F5F5;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
}

.whom__item-title{
  color: #0F5648;
  font-size: 72px;
  font-style: normal;
  font-weight: 400;
  line-height: 72px; /* 100% */
  margin-top: 32px;
}

.whom__item-subtitle{
  margin-top: 16px;
  color: #0F0F0F;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
}

@media (max-width: 1024px) {
  .whom__wrap{
    width: 100%;
  }
  .whom__wrap-items{
    flex-direction: column;
  }
  .whom__item{
    gap: 12px;
  }
  .whom__item-title{
    margin-top: 10px;
  }
  .whom__item-subtitle{
    margin-top: 0;
  }
  .whom__item{
    padding: 20px;
  }
}
/* Whom Section End */


/* Partners Section Start */
.partners__up-wrap{
  display: flex;
  width: 1360px;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.partners__uptitle{
  color: #F06517;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
  text-transform: uppercase;
}

.partners__title{
  color: #F5F5F5;
  text-align: center;
  font-size: 50px;
  font-style: normal;
  font-weight: 600;
  line-height: 64px; /* 128% */
}

.partners__col-wrap{
  margin-top: 80px;
  display: flex;
  width: 1360px;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}

.partners__col-1, .partners__col-2{
  flex: 1;
}

.partners__col-2{
  display: flex;
  padding: 0px 40px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  color: #F5F5F5;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
}

.partners__col-2-text-col{
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  gap: 40px;
  align-self: stretch;
}

.partners__col-2-text-col ol{
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0  ;
}

.partners__col-2-text-col li{
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 16px;
}

.partners__col-2-text-col span{
  color: #F06517;
}

.partners__col-2-text-col-p{
  color: #F5F5F5;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 52px; /* 130% */
}

.partners__li-ico{
  display: flex;
  width: 24px;
  height: 24px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 24px;
  background: #0F5648;
}

.partners__col-2-btn {
  border-radius: 100px;
  background: #F06517;
  display: flex;
  padding: 20px 40px;
  justify-content: center;
  align-items: center;
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  text-decoration: none;
  cursor: pointer;

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.partners__col-2-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(240, 101, 23, 0.3);
}

.partners__col-1 {
  display: flex;
  padding-top: 80px;
  flex-direction: column;
  align-items: center;
  flex: 1 0 0;
  align-self: stretch;

  background-image: url('../img/s1-new.webp'); /* замени путь */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 750px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 1024px) {
  .partners__col-wrap{
    flex-direction: column-reverse;
    width: 100%;
  }
  .partners__up-wrap{
    width: 100%;
  }
  .partners__col-1{
    padding-top: 180px;
  }
}
/* Partners Section End */


/* Why Section Start */

.why__title-wrap{
  display: flex;
  /* width: 1360px; */
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.why__title{
  color: #F5F5F5;
  text-align: center;
  font-size: 50px;
  font-style: normal;
  font-weight: 600;
  line-height: 64px; /* 128% */
}

.why__subtitle{
  color: #F06517;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
  text-transform: uppercase;
}

.why__wrap{
  display: flex;
  padding-top: 80px;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex: 1 0 0;
}

.why__wrap-item{
  display: flex;
  width: 666px;
  padding: 20px;
  align-items: flex-start;
  gap: 20px;
  border-radius: 40px;
  border: 1px solid #F5F5F5;
}

.item-xs{
  width: 410px !important;
}

.why__wrap-item-ico{
  border-radius: 64px;
  background: rgba(137, 137, 137, 0.20);
  display: flex;
  width: 80px;
  height: 80px;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

em{
  color: #F5F5F5;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 171.429% */
}

.why__wrap-item-text{
  color: #F5F5F5;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

.why__wrap-item-text p{
  font-weight: 700;
}

ul {
  list-style-type: disc; /* можно ещё: circle, square */
  padding-left: 1.5em;   /* чтобы маркеры не налезали на текст */
}


@media (max-width: 1024px) {
 
}
/* Why Section End */


/* Program Section Start */
.program__title-wrap{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.program__title{
  color: #F5F5F5;
  text-align: center;
  font-size: 50px;
  font-style: normal;
  font-weight: 600;
  line-height: 64px; /* 128% */
}

.program__subtitle{
  color: #F06517;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
  text-transform: uppercase;
  margin-bottom: 60px;
}

.program__items-wrap{
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 20px;
  flex: 1 0 0;
  flex-wrap: wrap;
}

.program__item{
  display: flex;
  padding: 8px 40px 8px 8px;
  align-items: center;
  gap: 20px;
  border-radius: 300px;
  border: 1px solid #F5F5F5;
  flex: 1;
}

.program__item-ico{
  display: flex;
  width: 80px;
  height: 80px;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  border-radius: 64px;
  background: rgba(137, 137, 137, 0.20);
  color: #F5F5F5;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 171.429% */
}

.program__item-text{
  color: #F5F5F5;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
}

@media (max-width: 1024px) {
.program__item-text {
    color: #F5F5F5;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height:normal;
  }

  .program__item-ico{
    border-radius: 20px;
  }
  .program__item{
    border-radius: 22px;
  }
}
/* Program Section End*/


/* Form Section Start*/
.form__wrap{
  display: flex;
  align-items: center;
  gap: 20px;
}

.form__col-1, .form__col-2{
  flex: 1;
}

.form__col-1{
  display: flex;
  width: 670px;
  padding: 0px 40px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
}

.form__col-text{
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.form__col-title{
  color: #0F0F0F;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
  text-transform: uppercase;
}

.form__col-subtitle{
  color: #0F0F0F;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

.form__col-subtitle span{
  color: #F06517;
}

.form__btn {
  border-radius: 100px;
  background: #F06517;
  display: flex;
  padding: 20px 40px;
  justify-content: center;
  align-items: center;
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  text-decoration: none;
  cursor: pointer;

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.form__btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(240, 101, 23, 0.3);
}

.form__col-2{
  background-image: url('../img/s8-img.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 670px;
  height: 449px;
  border-radius: 12px;
}

@media (max-width: 1024px) {
  .form__wrap{
    flex-direction: column;
  }
  .form__col-1{
    width: 100%;
    padding: 0;
  }
  .form__col-2{
    display: none;
  }
}
/* Form Section End */


/* Coaches Section Start*/
.coaches__wrap{
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.coaches__title{
  color: #0F0F0F;
  text-align: center;
  font-size: 50px;
  font-style: normal;
  font-weight: 600;
  line-height: 64px; /* 128% */
}

.coaches__item-wrap{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex: 1 0 0;
}

.coaches__item{
  flex: 1;
  border-radius: 300px;
  border: 1px solid #0F0F0F;
  display: flex;
  padding: 20px 40px 20px 20px;
  align-items: center;
  gap: 20px;
  flex: 1 0 0;
}

.coaches__item-pic{
  width: 250px;
  height: 250px;
  border-radius: 300px;
}

.coaches__item-col2{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  flex: 1 0 0;
  align-self: stretch;
}

.coaches__item-name{
  color: #0F0F0F;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px; /* 128.571% */
}

.coaches__item-title{
  color: #0F5648;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
}

.coaches__item-text{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  flex: 1 0 0;
  align-self: stretch;
}

.coaches__item-subtitle{
  color: #0F0F0F;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
}

.slava {
    background-image: url(../img/slava-pic.webp);
    background-size: 200%;
    background-repeat: no-repeat;
    background-position: -90px -70px;
}

.sasha {
    background-image: url(../img/sasha-pic.webp);
    background-size: 130%;
    background-repeat: no-repeat;
    background-position: -45px -40px;
}

@media (max-width: 1024px) {
 .coaches__item-wrap{
  flex-direction: column;
 }
 
 .coaches__item{
  flex-direction: column;
  padding: 20px;
  border-radius: 30px;
 }
 
 .coaches__item-name{
  text-align: center;
 }

 .coaches__item-col2 {
    align-items: center;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex: 1 0 0;
    align-self: stretch;
}

.coaches__item-pic {
    width: 300px;
    height: 300px;
}

.slava {
    background-image: url(../img/slava-pic.webp);
    background-size: 200%;
    background-repeat: no-repeat;
    background-position: -110px -70px;
}

.sasha {
    background-image: url(../img/sasha-pic.webp);
    background-size: 130%;
    background-repeat: no-repeat;
    background-position: -60px -40px;
}
}
/* Coaches Section End */

/* Register Section Start */
.register {
  position: relative;
  min-height: 529px; 
  z-index: 0;
  overflow: hidden; 
}

.register::before,
.register::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  z-index: -1;
}

.register::before {
  top: 0;
  height: 402px; /* белая часть */
  background: #ffffff;
}

.register::after {
  top: 402px;
  bottom: 0;
  background: #0F0F0F; /* черная часть */
}

.register__wrap{
  border-radius: 24px;
  background: #0F5648;
  display: flex;
  width: 1360px;
  max-width: 1360px;
  padding: 96px 80px;
  align-items: center;
  gap: 40px;
  /* height: 592px; */
  justify-content: space-between;
}

.register__col-1, .register__col-2{
  flex: 1;
}

.register__col-1{
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* align-items: flex-start; */
  gap: 40px;
  flex: 1 0 0;
}

.register__col-text{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  align-self: stretch;
}

.register__col-title{
  color: #F5F5F5;
  font-size: 72px;
  font-style: normal;
  font-weight: 400;
  line-height: 80px; /* 111.111% */
}

.register__col-subtitle{
  color: #F5F5F5;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px; /* 128.571% */
}

.register__col-2{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex: 1 0 0;
}

.register__col-2-item{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
  align-self: stretch;
}

.register__col-2-item-text{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.register__col-2-item-text-title{
  color: #F5F5F5;
  text-align: right;
  font-size: 50px;
  font-style: normal;
  font-weight: 600;
  line-height: 64px; /* 128% */
}

.register__col-2-item-text-subtitle{
  color: #F06517;
  text-align: right;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
}

.register__col-2-item-ico{
  display: flex;
  width: 80px;
  padding: 24px 0px;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  background: rgba(245, 245, 245, 0.10);
}

@media (max-width: 1024px) {
  .register__wrap{
    flex-direction: column-reverse;
    width: 100%;
    height: auto;
    padding: 20px;
    align-items: normal;
  }
  .register__col-2{
    gap: 20px;
  }
  .register__col-title{
    font-size: 50px;
    line-height: normal;
  }
  .register__col-text{
    text-align: center;
    gap: 12px;
  }
  .register__col-subtitle{
    font-size: 18px;
    line-height: normal;
  }
  .register__col-2-item{
    flex-direction: row-reverse;
    justify-content: space-between !important;
    gap: 100px;
  }
}
/* Register Section End */

/* 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: 1360px;
  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: #F06517;
  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: 1360px;
  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; /* 155.556% */
  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: 44px;
    line-height: normal;
  }
  .footer__main-bottom{
    width: 100%;
    flex-direction: column;
    gap: 20px;
  }
}
/* Footer Section End */



/* Thanks Section Start */
.thanks-btn {
  align-content: center;
  text-decoration: none;
  cursor: pointer;
  color: #0F0F0F;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;

  display: flex;
  padding: 12px 20px;
  justify-content: center;
  align-items: center;

  border-radius: 100px;
  border: 1px solid #0F0F0F;

  transition: transform 0.2s ease;
}

.thanks-btn:hover {
  transform: scale(1.05);
}




.register-thx {
  position: relative;
  min-height: 529px; 
  z-index: 0;
  overflow: hidden; 
}

.register-thx::before,
.register-thx::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  z-index: -1;
}

.register-thx::before {
  top: 0;
  height: 402px; /* белая часть */
  background: #FAEFE2;
}

.register-thx::after {
  top: 402px;
  bottom: 0;
  background: #0F0F0F; /* черная часть */
}
/* Thanks Section End */



/* Animation Section Start */
@media (max-width: 768px) {
  .animate-in-up {
    opacity: 1; /* Элемент сразу видим */
    transform: translateY(0); /* Убираем сдвиг */
    transition: none; /* Отключаем любые анимации */
  }
  .coaches__slide-descr{
  font-size: 14px;
}
}

/* Вся полоса */
::-webkit-scrollbar {
  width: 10px; /* ширина вертикального скролла */
  height: 10px; /* высота горизонтального скролла */
}

/* Фон трека (дорожки) */
::-webkit-scrollbar-track {
  background: #f0f0f0; /* светлый фон */
}

/* Ползунок */
::-webkit-scrollbar-thumb {
  background-color: #F15A0A; /* цвет самого ползунка */
  border-radius: 6px; /* закругление */
  border: 2px solid transparent; /* необязательная обводка */
}

/* При наведении */
::-webkit-scrollbar-thumb:hover {
  background-color: #F15A0A;
}

/* Animation Section End */


/* Metrics Section Start */
.metrics__content{
  display: flex;
  width: 1440px;
  max-width: 1440px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.metrics__title-wrap{
  display: flex;
  width: 1360px;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.metrics__uptitle{
  color: #F06517;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
  text-transform: uppercase;
}

.metrics__title{
  color: #0F0F0F;
  text-align: center;
  font-size: 50px;
  font-style: normal;
  font-weight: 600;
  line-height: 64px; /* 128% */
}

.metrics__wrap{
  display: flex;
  width: 1360px;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  margin-top: 80px;
}

.metrics__col-1, .metrics__col-2{
  flex: 1;
}

.metrics__col-1-content{
  display: flex;
  /* width: 670px; */
  padding: 0px 40px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  /* gap: 60px; */
}

.metrics__col-1-text{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  align-self: stretch;
}

.metrics__col-1-title{
  color: #0F0F0F;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
}

.metrics__col-1-item-wrap{
  display: flex;
  /* width: 590px; */
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 20px;
}

.metrics__col-1-item{
  display: flex;
  /* width: 590px; */
  align-items: flex-start;
  gap: 16px;
}

.metrics__col-1-item-ico{
  display: flex;
  width: 24px;
  height: 24px;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
  background: #0F5648;
  aspect-ratio: 1 / 1;
}

.metrics__col-1-item-title{
  color: #0F0F0F;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

.metrics__col-1-item-title span{
  font-weight: 700;
}


.metrics__col-2{
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1 0 0;
  align-self: stretch;
  border-radius: 12px;
  border: 1px solid #0F0F0F;  
}

.metrics__col-2-img{
  background-image: url('../img/yearlysales.webp');
  background-size: cover;        /* подгоняет по размеру */
  background-position: center;   /* центрирует */
  background-repeat: no-repeat;  /* не повторять */
  height: 564px;
  width: 670px; 
}

@media (max-width: 1024px) {
  .metrics__wrap{
    width: 100%;
    flex-direction: column;
  }
  .metrics__title-wrap, .metrics__content{
    width: 100%;
  }
  .metrics__col-2-img {
    height: 300px;
    width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
      .metrics__col-2-img {
        height: 764px;
        width: 100%;
    }
}


/* Features Animated Brands Start */
/* ------------------------------------------------*/
.animated-block-placeholder {
  display: block;
  width: 100%;
  overflow: hiddem;
}
.animated-block-placeholder img {
  display: block;
  width: 100%;
  height: auto;
}
@media only screen and (min-width: 576px) {
  .animated-block-placeholder {
    display: none;
  }
}

.animated-block,
.animated-block-invisible,
.animated-block-headline {
  display: none;
}
@media only screen and (min-width: 576px) {
  .animated-block,
  .animated-block-invisible,
  .animated-block-headline {
    display: block;
  }
}

.animated-block {
  position: absolute;
  top: 9rem;
  left: 50%;
  right: auto;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 808px;
  height: 400px;
  margin: 0 auto;
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  .animated-block {
    top: 14rem;
    width: 1147px;
    height: 565px;
  }
}

.animated-block-invisible {
  position: absolute;
  top: 9rem;
  left: 50%;
  right: auto;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 808px;
  height: 400px;
  margin: 0 auto;
  z-index: 2;
}
@media only screen and (min-width: 768px) {
  .animated-block-invisible {
    top: 14rem;
    width: 1147px;
    height: 565px;
  }
}

.animated-block-invisible__single {
  position: relative;
  width: 60px;
  height: 60px;
  -moz-border-radius: 1.4rem;
       border-radius: 1.4rem;
  background-color: transparent;
  overflow: hidden;
}
.animated-block-invisible__single img {
  display: block;
  width: 100%;
  height: auto;
}
@media only screen and (min-width: 768px) {
  .animated-block-invisible__single {
    width: 80px;
    height: 80px;
    -moz-border-radius: 1.4rem;
         border-radius: 1.4rem;
  }
}



.animated-block__mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -moz-radial-gradient(center, ellipse, rgba(251, 247, 243, 0) 0%, rgba(251, 247, 243, 0) 35%, #fff 100%);
  background: radial-gradient(ellipse at center, rgba(251, 247, 243, 0) 0%, rgba(251, 247, 243, 0) 35%, #fff 100%);
}

.animated-block-headline {
  position: absolute;
  width: 100%;
  top: 60%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: center;
  z-index: 3;
}

.animated-block__row {
  position: relative;
  margin-bottom: 0.8rem;
}
.animated-block__row:last-of-type {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .animated-block__row {
    margin-bottom: 1.7rem;
  }
}

.animated-block__left,
.animated-block__right {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.8rem;
}
@media only screen and (min-width: 768px) {
  .animated-block__left,
  .animated-block__right {
    gap: 1.7rem;
  }
}

.animated-block__single {
  position: relative;
  width: 60px;
  height: 60px;
  -moz-border-radius: 1.4rem;
       border-radius: 20px;
  background-color: #0F0F0F14;
  border: 1px solid #0F0F0F14;
}
@media only screen and (min-width: 768px) {
  .animated-block__single {
    width: 80px;
    height: 80px;
    -moz-border-radius: 2rem;
         border-radius: 2rem;
  }
}

/* ------------------------------------------------*/
/* Features Animated Brands End */
/* Sections Inner Start */
/* ------------------------------------------------*/
.inner {
  position: relative;
  width: 100%;
}
.inner.has-element {
  padding-top: 200px;
}
.inner.has-bg {
  background-repeat: no-repeat;
  background-position: center 170px;
  -moz-background-size: contain;
       background-size: contain;
  background-image: url(../img/backgrounds/section-bg.svg);
}
.inner.has-animated-block {
  height: auto;
  padding-bottom: 120px;
  margin-bottom: 120px;
  overflow: hidden;
}
.inner.distance-small {
  padding-top: 2.4rem;
}
.inner.paddind-default {
  padding-top: 9rem;
}
.inner.paddind-pre-grid {
  padding-top: 7.6rem;
}
@media only screen and (min-width: 576px) {
  .inner.has-animated-block {
    height: 580px;
  }
}
@media only screen and (min-width: 768px) {
  .inner.has-element {
    padding-top: 233px;
  }
  .inner.has-bg {
    background-position: center 100px;
  }
/*   .inner.has-animated-block {
    height: 845px;
    padding: 14rem 0;
  } */
  .inner.paddind-default {
    padding-top: 14rem;
  }
  .inner.paddind-pre-grid {
    padding-top: 11.6rem;
  }
}

.inner__spacer {
  width: 100%;
  height: 9rem;
  height: 14rem;
}
.arc-section {
  position: relative;
  padding: 4.2rem 0 0 0;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .arc-section {
    padding: 9.3rem 0 0 0;
  }
}

.arc-section__inner {
  position: relative;
  padding: 8rem 0 0 0;
}

.arc-container {
  display: block;
  width: 100%;
  max-width: 1152px !important;
  min-height: 1rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2.4rem;
  padding-right: 2.4rem;
  position: relative;
}
.arc-container::before, .arc-container::after {
  content: " ";
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 1/1/2/2;
  display: table;
}

.platform-arc-wrapper {
  z-index: 1;
  pointer-events: none;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin-bottom: -2rem;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.platform-arc-apps {
  --arc--count: 7;
  --arc--size: -moz-calc(var(--arc--width) / var(--arc--count));
  --arc--size: calc(var(--arc--width) / var(--arc--count));
  --arc--height: 16.5rem;
  --arc--width: 40rem;
  -webkit-perspective: 2000px;
     -moz-perspective: 2000px;
          perspective: 2000px;
  width: var(--arc--width);
  height: var(--arc--height);
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
     -moz-box-orient: horizontal;
     -moz-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
     -moz-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-transform: perspective(2000px);
     -moz-transform: perspective(2000px);
          transform: perspective(2000px);
}
@media only screen and (min-width: 768px) {
  .platform-arc-apps {
    --arc--height: 25.5rem;
    --arc--width: 70.5rem;
  }
}

.arc-app:nth-child(1),
.arc-app:nth-child(7) {
  margin: 0;
  top: 0%;
  opacity: 0;
  z-index: 4;
}
@media only screen and (min-width: 576px) {
  .arc-app:nth-child(1),
  .arc-app:nth-child(7) {
    opacity: 1;
  }
}

.arc-app:nth-child(2),
.arc-app:nth-child(6) {
  margin: 0 0;
  top: -moz-calc(var(--arc--size) / 2 - 62%);
  top: calc(var(--arc--size) / 2 - 62%);
  z-index: 3;
}

.arc-app:nth-child(3),
.arc-app:nth-child(5) {
  margin: 0 3%;
  top: -moz-calc(var(--arc--size) / 2 - 90%);
  top: calc(var(--arc--size) / 2 - 90%);
  z-index: 2;
}

.arc-app:nth-child(4) {
  margin: 0 3%;
  top: -moz-calc(var(--arc--size) / 2 - 100%);
  top: calc(var(--arc--size) / 2 - 100%);
  z-index: 1;
}

.arc-app {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-flex: 0;
     -moz-box-flex: 0;
      -ms-flex: none;
          flex: none;
  -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
  aspect-ratio: 1;
  -moz-border-radius: var(--_radius-s);
       border-radius: var(--_radius-s);
  background-color: var(--white);
  pointer-events: auto;
  color: #5D7677;
  -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 61, 61, 0.04), 0px 1px 1px -0.5px rgba(0, 31, 31, 0.08), 0px 3px 3px -1.5px rgba(0, 61, 61, 0.04), 0px 6px 6px -3px rgba(0, 61, 61, 0.04), 0px 12px 12px -6px rgba(0, 61, 61, 0.04);
     -moz-box-shadow: 0px 0px 0px 1px rgba(0, 61, 61, 0.04), 0px 1px 1px -0.5px rgba(0, 31, 31, 0.08), 0px 3px 3px -1.5px rgba(0, 61, 61, 0.04), 0px 6px 6px -3px rgba(0, 61, 61, 0.04), 0px 12px 12px -6px rgba(0, 61, 61, 0.04);
          box-shadow: 0px 0px 0px 1px rgba(0, 61, 61, 0.04), 0px 1px 1px -0.5px rgba(0, 31, 31, 0.08), 0px 3px 3px -1.5px rgba(0, 61, 61, 0.04), 0px 6px 6px -3px rgba(0, 61, 61, 0.04), 0px 12px 12px -6px rgba(0, 61, 61, 0.04);
  -webkit-transition-property: -webkit-box-shadow, -webkit-transform;
  transition-property: -webkit-box-shadow, -webkit-transform;
  -moz-transition-property: box-shadow, transform, -moz-box-shadow, -moz-transform;
  transition-property: box-shadow, transform;
  transition-property: box-shadow, transform, -webkit-box-shadow, -moz-box-shadow, -webkit-transform, -moz-transform;
  -webkit-transition-duration: 0.3s, 0.4s;
     -moz-transition-duration: 0.3s, 0.4s;
          transition-duration: 0.3s, 0.4s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1), cubic-bezier(0.175, 0.885, 0.392, 1.662);
     -moz-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1), cubic-bezier(0.175, 0.885, 0.392, 1.662);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1), cubic-bezier(0.175, 0.885, 0.392, 1.662);
  width: 6rem;
}
.arc-app .arc-icon {
  -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: 3.4rem;
  height: 3.4rem;
}
.arc-app .arc-icon svg {
  width: 100%;
  height: auto;
  fill: var(--t-clr-2-dark);
}
.arc-app .arc-caption {
  position: absolute;
  top: -3.9rem;
  left: 50%;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(0.6rem);
     -moz-transform: translateX(-50%) translateY(0.6rem);
      -ms-transform: translateX(-50%) translateY(0.6rem);
          transform: translateX(-50%) translateY(0.6rem);
  opacity: 0;
  height: 3rem;
  line-height: 3rem;
  padding: 0 1.2rem;
  -moz-border-radius: var(--_radius-m);
       border-radius: var(--_radius-m);
  color: var(--t-bright);
  font-size: 1.2rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  font-weight: var(--font-weight-bold);
  white-space: nowrap;
  background-color: var(--white);
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s var(--_animbezier);
  transition: opacity 0.3s, -webkit-transform 0.3s var(--_animbezier);
  -moz-transition: opacity 0.3s, transform 0.3s var(--_animbezier), -moz-transform 0.3s var(--_animbezier);
  transition: opacity 0.3s, transform 0.3s var(--_animbezier);
  transition: opacity 0.3s, transform 0.3s var(--_animbezier), -webkit-transform 0.3s var(--_animbezier), -moz-transform 0.3s var(--_animbezier);
}
.arc-app:hover {
  background: var(--bg-gradient-solid-accent);
}
.arc-app:hover .arc-icon svg {
  fill: var(--white);
}
.arc-app:hover .arc-icon svg .icon {
  fill: var(--white);
}
.arc-app:hover .arc-caption {
  opacity: 1;
  -webkit-transform: translateX(-50%) translateY(0);
     -moz-transform: translateX(-50%) translateY(0);
      -ms-transform: translateX(-50%) translateY(0);
          transform: translateX(-50%) translateY(0);
}
@media only screen and (min-width: 768px) {
  .arc-app {
    -moz-border-radius: var(--_radius-m);
         border-radius: var(--_radius-m);
    width: 8.2rem;
  }
  .arc-app .arc-icon {
    width: 4.4rem;
    height: 4.4rem;
  }
}

.platform-arc {
  pointer-events: none;
  -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
     -moz-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 120%;
  height: 230%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  inset: auto auto -25%;
  -webkit-transform: translateY(50%);
     -moz-transform: translateY(50%);
      -ms-transform: translateY(50%);
          transform: translateY(50%);
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(#000), color-stop(50%, rgba(0, 0, 0, 0)));
  -webkit-mask-image: linear-gradient(#000, rgba(0, 0, 0, 0) 50%);
  mask-image: -webkit-gradient(linear, left top, left bottom, from(#000), color-stop(50%, rgba(0, 0, 0, 0)));
  mask-image: linear-gradient(#000, rgba(0, 0, 0, 0) 50%);
}
@media only screen and (min-width: 768px) {
  .platform-arc {
    width: 150%;
    height: 370%;
  }
}

.platform-arc-ring {
  --pulse--duration: 18s;
  --pulse--easing: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1.5px solid var(--arc-border);
  background-color: var(--arc-ring);
  -moz-border-radius: 50%;
       border-radius: 50%;
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: 0%;
}
.platform-arc-ring.is-xl {
  -webkit-transform: scale(1);
     -moz-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-animation: pulse var(--pulse--duration) var(--pulse--easing) infinite -16s;
     -moz-animation: pulse var(--pulse--duration) var(--pulse--easing) infinite -16s;
          animation: pulse var(--pulse--duration) var(--pulse--easing) infinite -16s;
}
.platform-arc-ring.is-l {
  -webkit-transform: scale(0.8);
     -moz-transform: scale(0.8);
      -ms-transform: scale(0.8);
          transform: scale(0.8);
  -webkit-animation: pulse var(--pulse--duration) var(--pulse--easing) infinite -12s;
     -moz-animation: pulse var(--pulse--duration) var(--pulse--easing) infinite -12s;
          animation: pulse var(--pulse--duration) var(--pulse--easing) infinite -12s;
}
.platform-arc-ring.is-m {
  -webkit-transform: scale(0.6);
     -moz-transform: scale(0.6);
      -ms-transform: scale(0.6);
          transform: scale(0.6);
  -webkit-animation: pulse var(--pulse--duration) var(--pulse--easing) infinite -8s;
     -moz-animation: pulse var(--pulse--duration) var(--pulse--easing) infinite -8s;
          animation: pulse var(--pulse--duration) var(--pulse--easing) infinite -8s;
}
.platform-arc-ring.is-s {
  -webkit-transform: scale(0.4);
     -moz-transform: scale(0.4);
      -ms-transform: scale(0.4);
          transform: scale(0.4);
  -webkit-animation: pulse var(--pulse--duration) var(--pulse--easing) infinite -4s;
     -moz-animation: pulse var(--pulse--duration) var(--pulse--easing) infinite -4s;
          animation: pulse var(--pulse--duration) var(--pulse--easing) infinite -4s;
}
.platform-arc-ring.is-xs {
  -webkit-transform: scale(0.2);
     -moz-transform: scale(0.2);
      -ms-transform: scale(0.2);
          transform: scale(0.2);
  -webkit-animation: pulse var(--pulse--duration) var(--pulse--easing) infinite 0s;
     -moz-animation: pulse var(--pulse--duration) var(--pulse--easing) infinite 0s;
          animation: pulse var(--pulse--duration) var(--pulse--easing) infinite 0s;
}
.platform-arc-ring.is-mask {
  background-color: rgba(0, 31, 31, 0);
  background-image: -moz-radial-gradient(circle closest-side, #f6f4f1, rgba(246, 244, 242, 0));
  background-image: radial-gradient(circle closest-side, #f6f4f1, rgba(246, 244, 242, 0));
  border-style: none;
  -webkit-transform: scale(0.5);
     -moz-transform: scale(0.5);
      -ms-transform: scale(0.5);
          transform: scale(0.5);
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
}

@-moz-keyframes pulse {
  0% {
    -moz-transform: scale(0);
         transform: scale(0);
    opacity: 1;
  }
  100% {
    -moz-transform: scale(1);
         transform: scale(1);
    opacity: 0;
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(0);
       -moz-transform: scale(0);
            transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
       -moz-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
}
.inner__element {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 200px;
  z-index: 10;
}
@media only screen and (min-width: 768px) {
  .inner__element {
    height: 233px;
  }
}

.element__line {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 1px;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(169, 235, 169, 0)), to(rgb(169, 235, 169)));
  background: -moz-linear-gradient(top, rgba(169, 235, 169, 0) 0%, rgb(169, 235, 169) 100%);
  background: linear-gradient(180deg, rgba(169, 235, 169, 0) 0%, rgb(169, 235, 169) 100%);
}

.element__dot {
  aspect-ratio: 1;
  background-color: var(--accent-additional);
  -moz-border-radius: 50%;
       border-radius: 50%;
  width: 0.6rem;
  -webkit-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: absolute;
  inset: auto auto 0%;
  -webkit-transform: translateY(50%);
     -moz-transform: translateY(50%);
      -ms-transform: translateY(50%);
          transform: translateY(50%);
}
.element__dot::before, .element__dot::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  -moz-border-radius: inherit;
       border-radius: inherit;
  background-color: var(--accent-additional);
  opacity: 0;
  z-index: -3;
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}
.element__dot::before {
  -webkit-animation: circles 4s ease-out infinite running;
     -moz-animation: circles 4s ease-out infinite running;
          animation: circles 4s ease-out infinite running;
  opacity: 0.36;
  scale: 1;
}
.element__dot::after {
  -webkit-animation: circles 4s 2s ease-out infinite running;
     -moz-animation: circles 4s 2s ease-out infinite running;
          animation: circles 4s 2s ease-out infinite running;
  opacity: 0.36;
  scale: 1;
}

@-webkit-keyframes circles {
  100% {
    -webkit-transform: scale(5.6);
            transform: scale(5.6);
    opacity: 0;
  }
}

@-moz-keyframes circles {
  100% {
    -moz-transform: scale(5.6);
         transform: scale(5.6);
    opacity: 0;
  }
}

@keyframes circles {
  100% {
    -webkit-transform: scale(5.6);
       -moz-transform: scale(5.6);
            transform: scale(5.6);
    opacity: 0;
  }
}

/* ====== ЯВНО УСТАНАВЛИВАЕМ ВЫСОТУ СЕКЦИИ ====== */
.inner.has-animated-block {
  position: relative;
  min-height: 880px; /* подгони при необходимости */
  z-index: 1;
}

/* ====== ОБЕРТКА, КОТОРАЯ ДАЁТ ВЫСОТУ ВСЕМ ABS-ELEMENTAM ====== */
.animated-block-wrapper {
  position: relative;
  width: 100%;
  max-width: 1147px;
  height: 845px;
  margin: 0 auto;
}

.animated-block-wrapper {
  height: 880px; /* или auto, если внутренняя высота достаточна */
}

.animated-block {
  height: 100%;
}

.animated-block__mask {
  height: 620px;
}

.animated-block-headline h3{
  color: #0F0F0F;
  text-align: center;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px; /* 128.571% */
}

.animated-block-headline p{
  color: #0F0F0F;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
}
/* ------------------------------------------------*/
/* Sections Inner End */

/* Metrics Section End */

/* why-next Section Start */
.why-next__wrap {
  display: flex;
  width: 1360px;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.why-next__wrap-items {
  margin-top: 40px;
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  
}

.why-next__item {
  flex: 1;
  display: flex;
  padding: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex: 1 0 0;
}

.why-next__uptitle {
  color: #0F5648;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
}

.why-next__title {
  color: #0F0F0F;
  text-align: center;
  font-size: 50px;
  font-style: normal;
  font-weight: 600;
  line-height: 64px; /* 128% */
}

.why-next__subtite {
  color: #0F0F0F;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
}

.why-next__item-ico {
  border-radius: 24px;
  background: #0F5648;
  display: flex;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  color: #F5F5F5;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
}

.why-next__item-title {
  color: #0F5648;
  font-size: 72px;
  font-style: normal;
  font-weight: 400;
  line-height: 72px; /* 100% */
  margin-top: 32px;
}

.why-next__item-subtitle {
  margin-top: 16px;
  color: #0F0F0F;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
}

.why-next__promo{
  margin: 0 auto;
  display: flex;
  width: 1184px;
  padding: 12px 12px 12px 44px;
  align-items: center;
  border-radius: 84px;
  background: #0F5648;
  justify-content: space-between;
  margin-top: 40px;
}

.why-next__promo p{
  color: #F5F5F5;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
  text-transform: uppercase;
}

.why-next__promo-btn {
  display: flex;
  padding: 20px 40px;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  background: #F06517;
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  text-decoration: none;
  cursor: pointer;

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.why-next__promo-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(240, 101, 23, 0.3);
}


.why-next__content-wrap{
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 1024px) {
  .why-next__wrap {
    width: 100%;
  }
  .why-next__wrap-items {
    flex-direction: column;
  }
  .why-next__item {
    gap: 12px;
  }
  .why-next__item-title {
    margin-top: 10px;
  }
  .why-next__item-subtitle {
    margin-top: 0;
  }
  .why-next__item {
    padding: 20px;
  }
  .why-next__promo{
    text-align: center;
    width: 100%;
    flex-direction: column;
    padding: 20px;
    border-radius: 15px; 
  }
  .why-next__promo p{
    font-size: 14px;
    line-height: normal;
  }
  .why-next__promo-btn{
      margin-top: 20px;
  }
}
/* why-next Section End */

/* target Section Start */
.target__wrap {
  display: flex;
  width: 1360px;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.target__wrap-items {
  margin-top: 40px;
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  
}

.target__item {
  display: flex;
  padding: 40px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  flex: 1 0 0;
  align-self: stretch;
  border-radius: 40px;
  background: #0F0F0F;
}

.target__uptitle {
  color: #0F5648;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
}

.target__title {
  color: #0F0F0F;
  text-align: center;
  font-size: 50px;
  font-style: normal;
  font-weight: 600;
  line-height: 64px; /* 128% */
}

.target__subtite {
  color: #0F0F0F;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
}

.target__item-ico {
  border-radius: 24px;
  background: #0F5648;
  display: flex;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  color: #F5F5F5;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
}

.target__item-title {
  color: #F06517;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 155.556% */
}

.target__item-subtitle {
  margin-top: 16px;
  color: #FFFFFF;
  text-align: start;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
}

.target__promo{
  margin: 0 auto;
  display: flex;
  width: 1184px;
  padding: 12px 12px 12px 44px;
  align-items: center;
  border-radius: 84px;
  background: #0F5648;
  justify-content: space-between;
  margin-top: 40px;
}

.target__promo p{
  color: #F5F5F5;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
  text-transform: uppercase;
}

.target__promo-btn {
  display: flex;
  padding: 20px 40px;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  background: #F06517;
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  text-decoration: none;
  cursor: pointer;

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.target__promo-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(240, 101, 23, 0.3);
}


.target__content-wrap{
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 1024px) {
  .target__wrap {
    width: 100%;
  }
  .target__wrap-items {
    flex-direction: column;
  }
  .target__item {
    gap: 12px;
  }
  .target__item-title {
    margin-top: 10px;
  }
  .target__item-subtitle {
    margin-top: 0;
  }
  .target__item {
    padding: 20px;
  }
  .target__promo{
    text-align: center;
    width: 100%;
    flex-direction: column;
    padding: 20px;
    border-radius: 15px; 
  }
  .target__promo p{
    font-size: 14px;
    line-height: normal;
  }
  .target__promo-btn{
      margin-top: 20px;
  }
}
/* target Section End */



/* Project Section Start */
.project__title-wrap{
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  text-align: center;
}

.project__title{
  color: #0F0F0F;
  text-align: center;
  font-size: 50px;
  font-style: normal;
  font-weight: 600;
  line-height: 64px; /* 128% */
}

.project__subtitle{
  color: #0F0F0F;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
}

.project__items-wrap{
  margin: auto;
  margin-top: 90px;
  display: flex;
  padding: 40px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
  border-radius: 40px;
  border: 1px solid #0F0F0F;
}

.any-item{
  margin-top: 20px;
  width: 1134.58px;
}

.project__item-head{
  display: flex;
  /* align-items: center; */
  gap: 20px;
  align-self: stretch;
}

.project__item-head-ico{
  display: flex;
  width: 80px;
  height: 80px;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
  border-radius: 64px;
  background: rgba(137, 137, 137, 0.20);
}

.project__item-head-title{
  color: #0F0F0F;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px; /* 128.571% */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
  flex: 1 0 0;
}

.project__item-table-head-wrap-wrap{
  display: flex;
  align-items: center;
  gap: 12px;
  align-self: stretch;
  flex: 5;
  display: flex;
}

.project__item-table-head-wrap-title, .project__item-table-head-wrap-wrap p{
  color: #0F0F0F;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px; /* 157.143% */
}

.project__item-table-head-wrap-title{
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: start;
  text-align: center;
  min-width: 255px
}

.project__item-table-head-wrap-wrap p{
  width: 136.25px;
  flex: 1;
  text-align: center;
  margin: 0;
}

.project__item-table-head-wrap{
  display: flex;
  align-items: stretch;
  gap: 12px;
  border-radius: 8px;
  background: rgba(231, 231, 231, 0.40);
  padding: 8px 20px;
}

.project__wrap{
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project__item-table-stat{
  display: flex;
  align-items: center;
  gap: 12px;
  align-self: stretch;
  padding: 4px 20px;
  padding-right: 0;
}

.project__item-table-stat-items{
  display: flex;
  align-items: center;
  gap: 12px;
  align-self: stretch;
}

.project__item-table-stat-wrap{
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 8px;
}

.project__item-table-stat-title{
  color: #0F0F0F;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
  min-width: 255px;
}

.project__item-table-stat-items p{
  display: flex;
  height: 44px;
  padding: 1px 8px;
  justify-content: center;
  align-items: center;
  flex: 1 0 0;
  min-width: 136.25px;
}

.full-fund{
  display: flex;
  width: 152px;
  height: 460px;
  padding: 1px 8px;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  background: rgba(30, 70, 173, 0.16);

  color: #1E46AD;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px; /* 157.143% */
  margin-top: 4px;
}

.yearly-fund{
  border-radius: 6px;
  background: rgba(240, 101, 23, 0.16);
  color: #F06517;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px; /* 157.143% */
}

.yearly-fund-all{
  border-radius: 6px;
  background: rgba(21, 142, 116, 0.16);
  color: #158E74;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px; /* 157.143% */
}

.project__item-head-title li{
  color: #0F0F0F;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
}

.project__item-head-title ul{
  padding-left: 0.8em;
}

.table__wrap{
  padding: 8px;
  border-radius: 16px;
  border: 1px solid #E7E7E7;
  margin-top: 20px;
}

@media (max-width: 1024px) {
  .desktop-item{
    display: none;
  }
  .any-item{
    width: 100%;
  }
  .project__item-head-title li{
    font-size: 16px;
    line-height: normal;
  }
  .project__item-head-title ul{
    padding-left: 0;
  }
  .project__item-head-title{
    font-size: 24px;
  }
}


.mobile-item{
  padding: 20px;
  border-radius: 24px !important;
}



.mob-title{
  font-size: 20px;
  line-height: normal;
}

.mob-ico{
  display: flex;
  width: 60px;
  height: 60px;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
  border-radius: 64px;
  background: rgba(137, 137, 137, 0.20);
}

.project__item-select {
  margin: 20px 0;
}

.project__item-select select {
  width: 100%;
  display: flex;
  padding: 20px;
  align-items: center;
  gap: 20px;
  align-self: stretch;
  border-radius: 40px;
  border: 1px solid #1E1E1E;
}

.project__item-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.project__item-card {
  border-radius: 6px;
  background: rgba(231, 231, 231, 0.40);
  display: flex;
  padding: 20px 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1 0 0;
  text-align: center;
}

.project__item-card.full {
  flex: 1 1 100%;
}

.project__item-card-val {
  color: #212B36;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 155.556% */
}

.project__item-card-label {
  color: #0F0F0F;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 150% */
}

.project__item-card.orange {
  border-radius: 6px;
  background: rgba(240, 101, 23, 0.16);
}

.project__item-card.green {
  background: #e6f7f0;
  color: #007f5f;
}

.project__item-card.blue {
  background: #e6edff;
  color: #2a47aa;
}

.mt-cards {
  margin-top: 12px;
}

.card-val-orange{
  color: #F06517;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 155.556% */
}

.card-val-green{
  color: #158E74;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 155.556% */
}

.card-val-blue{
  color: #1E46AD;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 155.556% */
}


.project__item-select select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%230F0F0F' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
              no-repeat right 1.5rem center;
  background-size: 20px;
  padding-right: 3rem;
}


.mobile-item {
  display: none;
}

@media (max-width: 1024px) {
  .mobile-item {
    display: block;
    padding: 20px;
    border-radius: 24px !important;
  }
  .project__items-wrap {
    margin: 0;
    margin-top: 20px;
    border-radius: 24px;
  }
}
/* Project Section End */



/* Next-Step Section Start */
.next-step__wrap{
  display: flex;
  align-items: center;
  gap: 20px;
}

.next-step__col-1{
  display: flex;
  padding: 0 40px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
}

.next-step__col-1-wrap{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  gap: 24px;
}

.next-step__col-1-title{
  color: #0F0F0F;
  text-align: center;
  font-size: 50px;
  font-style: normal;
  font-weight: 600;
  line-height: 64px; /* 128% */
}

.next__step-item p{
  color: #0F0F0F;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
  text-transform: uppercase;
}

.next__step-item ul{
  list-style-type: none;
}

.next__step-item li{
  color: #0F0F0F;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

.next__step-item li b{
  font-weight: 700;
}

.next-step__col-2-img {
  background-image: url('../img/sec-end-pic.webp');
  background-size: cover;    
  background-position: center;  
  background-repeat: no-repeat;
  width: 670px;
  height: 509px;
}

@media (max-width: 1024px) {
  .next-step__wrap{
    flex-direction: column;
  }
  .next-step__col-1{
    padding: 0;
  }
  .next-step__col-2-img{
    display: none;
  }
}
/* Next-Step Section End */


/* Accord Section Start */
.accord-faq-wrap{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  align-self: stretch;
}

.accord__title{
  color: #0F0F0F;
  text-align: center;
  font-size: 50px;
  font-style: normal;
  font-weight: 600;
  line-height: 64px; /* 128% */
}

.accord__wrap{
  display: flex;
  width: 1096px;
  flex-direction: column;
  align-items: center;
}

.accord-item{
  display: flex;
  flex-direction: column;
  padding: 40px 0;
  align-items: start;
  gap: 20px;
  align-self: stretch;
  border-bottom: 1px solid #0F0F0F;
  width: 100%;
  text-decoration: none;
}

.accord-item-title {
  display: flex;
  align-items: center;            /* выравниваем по центру по вертикали */
  justify-content: space-between; /* ← это главное! */
  width: 100%;                    /* растягиваем */
  gap: 8px;
}

.accord-item-content{
  display: none;
}

.accord-item-title-text{
  color: #0F0F0F;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px; /* 128.571% */
}
.accord-active-content{
  display: block;
  color: #0F0F0F;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
}

@media (max-width: 1024px) {
  .accord__wrap{
    width: 100%;
  }
}
/* Accord Section End */


header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(127, 113, 113, 0);
}

@media (max-width: 1024px) {
  .why__wrap{
    flex-direction: column;
  }
  .why__wrap-item{
    width: 100%;
  }
  .item-xs{
    width: 100% !important;
  }
  .hero__btn{
    white-space: normal !important;
  }
  .btn-mob-full{
    width: 100% !important;
  }
  .metrics__col-1-content{
    padding: 0;
  }
  .animated-block-wrapper{
    height: auto !important;
    min-height: auto !important;
    padding-bottom: 0px;
    margin-bottom: 0px;
    padding-top: 120px;
  }
  .partners__col-2{
    padding: 0;
  }
  .partners__col-2-btn{
    width: 100%;
  }
  .why-next__promo-btn{
    width: 100%;
  }
}

.coaches__head-btn-left.disabled,
.coaches__head-btn-right.disabled {
    opacity: 0.3;
    pointer-events: none;
    border-color: #ccc;
    background-color: #f5f5f5;
    cursor: default;
}
