.header {
  position: fixed;
  width: 100%;
  z-index: 99;
  border-bottom: 1px solid #e7e7e7;
  background: #fff;
}
.header__inner {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-text-dark);
}
.header__logo {
  margin-right: auto;
}
.header__nav {
  display: flex;
}
.header__menu {
  display: none;
}
.header__link {
  padding: 10px 16px;
  transition: all 0.3s ease;
}
.header__link:hover {
  background: rgba(0, 236, 151, 0.15);
}
.header__btn {
  border-radius: 4px;
  border: 1px solid var(--color-text-dark);
  background: #fff;
  display: flex;
  align-items: center;
  padding: 9px 12px;
  margin-left: auto;
}
.hero {
  padding-top: 200px;
  background: url(../images/Elan_Syvor_Trading_background.jpg) no-repeat center top / cover;
}
.hero__inner {
  display: flex;
  align-items: center;
  gap: 126px;
}
.hero__content {
  max-width: 588px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  color: var(--color-text-dark);
}
.hero__subtitle {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px; /* 130% */
  letter-spacing: -0.4px;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hero__stat span {
  color: var(--color-primary);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px; /* 108.333% */
  letter-spacing: -0.48px;
}

.calc {
  background: var(--color-primary);
  color: var(--color-text-dark);
}
.calc__btn {
  margin: 32px auto 0;
  color: #fff;
}
.warum {
  background-color: var(--color-text-dark);
}
.warum__title {
}
.warum__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}
.warum__item {
  width: calc(32% - 16px);
  border-radius: 4px;
  border-top: 1px solid #2a2a2d;
  background: #1d1d20;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.warum__icon {
  margin-bottom: 8px;
}

.liveProfit {
  background-color: #f2f1ea;
  color: #161615;
}
.steps {
}
.main__section {
}
.steps__title {
}
.steps__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.steps__item {
  display: flex;
  align-items: center;
  gap: 24px;
  transition: opacity 0.2s ease-in-out;
}
.steps__item.active {
  opacity: 1; /* При активації елемента, робимо його видимим */
}
.step__img {
  border-radius: 4px;
  border-top: 1px solid #2a2a2d;
  background: #1d1d20;
  padding: 32px;
}
.steps__item-content {
}
.steps__item-title {
  color: var(--color-primary);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  letter-spacing: -0.32px;
}
.steps__item-description {
  color: #fff;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -1.28px;
  max-width: 384px;
}
.main__text {
}
.steps__button-container {
}
.step__btn {
  margin: 32px auto 0;
  border-radius: 4px;
  border: 2px solid var(--color-primary);
  background: var(--color-primary);
  color: var(--color-text-dark);
}
.step__btn::after {
  background-image: url("../images/icon_3black.svg");
}
.bg__wrp {
}
.review {
  overflow: hidden;
  background: var(--color-primary);
}
.review__top {
  color: #161615;
}
.review__title {
}
.review__swiper {
  max-width: 996px !important;
  overflow: visible !important;
}
.review__item {
  border-radius: 4px;
  background: #161615;
  padding: 60px;
}
.review__text {
  line-height: 24px; /* 150% */
  margin: 16px 0 48px;
}
.review__user {
  display: flex;
  align-items: center;
  gap: 16px;
}
.review__user img {
  border-radius: 50%;
}
.review__data {
}
.review__name {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.96px;
}
.reviwew__info {
  line-height: 24px;
}
.swiper-pagination {
  top: 105% !important;
}
.swiper-pagination-bullet {
  background-color: #161615 !important;
}
.swiper-pagination-bullet-active {
  scale: 1.75 !important;
}
.faq {
}
.faq__heroTitle {
}
.faq__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.faq__item {
  border-radius: 4px;
  border-top: 1px solid #2a2a2d;
  background: #1d1d20;
  width: 100%;
  padding: 32px;
  cursor: pointer;
}
.faq__text {
}
.faq__name {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -1.28px;
  position: relative;
}
.faq__name::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 32px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url("../images/icon_5.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s ease-in-out;
}
.faq__item.active .faq__name::after {
  transform: translateY(-50%) rotate(180deg);
}
.faq__answer {
  display: none;
  margin-top: 16px;
}
.register {
  padding-top: 120px;
}
.register .hero__inner {
  align-items: flex-start;
}
.register__title {
  text-align: left;
  color: #000;
  font-size: 60px;
  font-weight: 700;
  line-height: 60px; /* 100% */
  letter-spacing: -2.4px;
  margin: 0;
}
.register__subtitle {
  text-align: left;
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px; /* 130% */
  letter-spacing: -0.4px;
  margin: 0;
}
.register__img {
  position: absolute;
  bottom: -100px;
}
.footer {
  border-top: 1px solid #2a2a2d;
  padding-block: 48px;
}
.footer__inner {
}
.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.footer__linkWrp {
  display: flex;
  gap: 24px;
}
.footer__link {
  color: #fff;
  text-align: right;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  letter-spacing: -0.32px;
}
.footer__disclaimer {
}
@media (width<1200px) {
  .header__btn {
    margin-left: 20px !important;
  }
  .hero__inner {
    flex-direction: column;
    gap: 24px;
  }
  .register {
    padding-bottom: 200px;
  }
  .register__img {
    bottom: -200px;
    width: 400px;
    left: 50%;
    transform: translateX(-50%);
  }
  .register .hero__inner {
    align-items: center;
  }
}
@media (width<1000px) {
  .header__nav {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 20px;
    transition: all 0.3s ease-in-out;
  }
  .header__nav.open {
    top: 0;
  }
  .header__link {
    position: relative;
    padding: 16px 32px;
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    text-align: left;
  }
  .header__link::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-image: url("../images/icon_1black.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s ease-in-out;
  }
  .header__btn {
    width: 100%;
    max-width: 400px;
    margin: 0 auto !important;
    justify-content: center;
  }
  .header__menu {
    display: block;
  }
  .header__inner {
    padding-block: 14px;
  }
  .warum__item {
    width: calc(50% - 16px);
  }
  .review__swiper {
    max-width: calc(100% - 20px) !important;
  }
  .faq__name {
    font-size: 24px;
    letter-spacing: -0.96px;
    padding-right: 20px;
  }
  .faq__name::after {
    right: 0px;
  }
}

@media (width<700px) {
  .hero {
    padding-top: 100px;
  }
  .hero__content {
    gap: 16px;
  }
  .hero__stats {
    display: flex;
    justify-content: space-between;
  }
  .hero__stat span {
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px; /* 130% */
    letter-spacing: -0.4px;
  }
  .warum__item {
    width: 100%;
    padding: 16px;
  }

  .steps__inner,
  .steps__item {
    flex-direction: column;
    gap: 16px;
  }
  .step__img {
    padding: 24px;
  }
  .review__item {
    padding: 16px;
  }
  .review__text {
    margin-bottom: 16px;
  }
  .review__user img {
    width: 60px;
  }

  .faq__item {
    padding: 16px;
  }

  .register {
    padding-top: 32px;
  }
  .register__title {
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: 50px; /* 104.167% */
    letter-spacing: -1.92px;
  }
  .footer {
    padding: 32px 0;
  }
  .footer__top {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
  }
  .footer__top img {
    margin: 0 auto;
  }
}
@media screen and (max-width: 425px) {
  .footer__linkWrp {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}
