body {
  background-image: url('../img/bg.png');
  background-size: 100%;
  background-position-y: top;
  background-position-x: center;
  background-repeat: no-repeat;
}

header {
  position: relative;
}

main {
  background-image: url('../img/bg_hero.svg');
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position-y: 4rem;
  background-position-x: center;
}

.hero {
  padding-bottom: 2.25rem;
}

@media(max-width: 991px) {
  .hero.hero--title {
    padding-bottom: .25rem;
  }
}

.hero__content {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

@media(max-width: 991px) {
  .hero__content {
    flex-wrap: wrap;
  }
}

.hero.hero--title .hero__content {
  text-align: center;
  justify-content: center;
}

.hero__block {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  max-width: 515px;
  gap: 1rem;
}

.tor_block {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  margin: 10px 0;
  overflow-wrap: anywhere;
}

.hero.hero--title .hero__block {
  max-width: 100%;
}

.hero__block h1, .tor__block .tor_text {
  color: var(--white);
  font-size: 60px;
  font-style: normal;
  font-weight: 800;
  line-height: 65px;
  word-break: break-word;
}

@media(max-width: 991px) {
  .hero__block h1 {
    font-size: 2.5rem;
    line-height: 120%;
  }
}

.hero__block h1 span, .tor_block .tor_text span {
  color: var(--color-primary);
  background: var(--gradient-secondary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__block p, .tor__block p {
  color: var(--white);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px;
}

.delays {
  --delays-root-gap: 1rem;
  --delays-root-padding: 8px;
  --delays-root-height: 60px;
  --delays-root-count: 3;
  --delays-root-active: 1;
  --delays-root-radius: 65px;
  --delays-root-track-radius: 40px;
  --delays-root-button-width: 220px;

  position: relative;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: var(--delays-root-button-width);
  justify-content: center;
  align-items: center;
  gap: var(--delays-root-gap);
  border-radius: var(--delays-root-radius);
  border: 1px solid var(--border-primary);
  background: var(--bg-secondary);
  padding: var(--delays-root-padding);
  height: var(--delays-root-height);
  width: 100%;
  box-sizing: border-box;
}

.delays::before {
  content: "";
  position: absolute;
  top: var(--delays-root-padding);
  bottom: var(--delays-root-padding);
  left: 50%;
  width: var(--delays-root-button-width);
  background: var(--color-primary);
  border-radius: var(--delays-root-track-radius);
  transform: translateX(calc((var(--delays-root-active) - 1) * (var(--delays-root-button-width) + var(--delays-root-gap)) - ((var(--delays-root-count) * var(--delays-root-button-width) + (var(--delays-root-count) - 1) * var(--delays-root-gap)) / 2)));
  transition: transform 0.25s ease, width 0.25s ease;
  z-index: 0;
}

.delay {
  position: relative;
  z-index: 1;
  appearance: none;
  border: none;
  background: transparent;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  border-radius: var(--delays-root-track-radius);
  cursor: pointer;
  user-select: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: calc(var(--delays-root-height) - 2 * var(--delays-root-padding));
  width: var(--delays-root-button-width);
  padding: 0 12px;
  transition: color 0.2s ease, opacity 0.2s ease;
  outline: none;
}

.delay:hover {
  opacity: 0.9;
}

.delay.active {
  color: var(--text-primary);
}

@media (max-width: 991px) {
  .delays {
    --delays-root-radius: 32px;
    grid-auto-flow: row;
    grid-auto-rows: calc(var(--delays-root-height) - 2 * var(--delays-root-padding));
    grid-auto-columns: unset;
    justify-content: stretch;
    align-content: start;
    height: auto;
  }

  .delays::before {
    left: var(--delays-root-padding);
    right: var(--delays-root-padding);
    top: 50%;
    width: calc(100% - 2 * var(--delays-root-padding));
    height: calc(var(--delays-root-height) - 2 * var(--delays-root-padding));
    transform: translateY(calc((var(--delays-root-active) - 1) * ((var(--delays-root-height) - 2 * var(--delays-root-padding)) + var(--delays-root-gap)) - ((var(--delays-root-count) * (var(--delays-root-height) - 2 * var(--delays-root-padding)) + (var(--delays-root-count) - 1) * var(--delays-root-gap)) / 2)));
  }

  .delay {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .delays::before {
    transition: none;
  }

  .delay {
    transition: none;
  }
}

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

.exchange__window {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

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

.exchange__details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-primary);
  border-radius: 40px;
  padding: 35px 30px;
}

.exchange__details-header {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.25rem;
  text-align: center;
}

.exchange__details-header h2 {
  color: var(--text-primary);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.exchange__details-header p {
  color: var(--text-secondary);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.exchange__details-info {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.exchange__details-info h2 {
  color: var(--text-primary);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  word-break: break-word;
}

.exchange__details-info p {
  color: var(--text-primary);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  word-break: break-word;
}

.exchange__form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media(max-width: 991px) {
  .exchange__form-row {
    flex-direction: column;
  }
}

.exchange__form-row .cselect {
  min-width: 240px;
}

@media(max-width: 991px) {
  .exchange__form-row .cselect {
    width: 100%;
  }
}

.exchange__form-row h2 {
  color: var(--white);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.exchange__information {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
  background: var(--bg-secondary);
  border: 1px solid var(--border-primary);
  border-radius: 40px;
  padding: 35px 30px;
}

.exchange__information img {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  text-align: center;
}

.exchange__information-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1rem;
}

.exchange__information-row h2 {
  color: var(--text-primary);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.exchange__information-row p {
  color: var(--white);
  text-align: right;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.exchange__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.exchange__footer p {
  color: var(--white);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.exchange__footer p span {
  font-size: 20px;
  font-weight: 800;
}

.exchange__footer p a {
  color: var(--color-primary);
  transition: 0.2s;
}

.exchange__footer p a:hover {
  color: var(--white);
}

.exchange__roster {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-primary);
  border-radius: 40px;
  padding: 35px 30px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.exchange__roster.is-open {
  opacity: 1;
  visibility: visible;
}

.exchange__roster .input {
  width: 100%;
  max-width: 700px;
}

.exchange__directions {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 2rem;
  width: 100%;
  max-height: 400px;
  overflow-y: auto;
  padding: 5px 0;
}

.exchange__direction {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  gap: 0.5rem;
  transition: 0.2s;
}

.exchange__direction:hover {
  cursor: pointer;
  scale: 1.1;
  transition: 0.2s;
}

.exchange__direction-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 45px;
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
}

.hwork__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

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

@media(min-width: 1400px) {
  .hwork__items {
    gap: 5rem;
  }
}

.hwork__item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hwork__item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 27px;
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  background-color: var(--color-primary);
  border-radius: 50%;
  box-shadow: 0 0px 0 10px var(--border-surface-20);
}

.hwork__item-icon::after {
  content: '';
  position: absolute;
  left: 0;
  width: calc(100% + 2rem);
  height: 1px;
  background: var(--gradient-primary);
  opacity: 0.3;
  z-index: -1;
}

.hwork__item-icon:last-child::after {
  width: 100%;
}

@media(min-width: 1400px) {
  .hwork__item-icon::after {
    width: calc(100% + 5rem);
  }
}

@media(max-width: 991px) {
  .hwork__item-icon::after {
    display: none;
  }
}

.hwork__item-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hwork__item-info h2 {
  color: var(--white);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.hwork__item-info p {
  color: var(--text-primary);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.clean-item {
  padding-top: 30px;
  padding-bottom: 30px;
}

.clean-item__content {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  background-image: var(--gradient-primary);
  background-color: var(--color-primary);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 30px;
  padding: 4rem 3.5rem;
}

@media (max-width: 1199px) {
  .clean-item__content {
    padding: 30px 20px;
  }
}

@media (max-width: 991px) {
  .clean-item__content {
    justify-content: center;
    gap: 1.5rem;
    padding: 20px 15px;
  }
}

.clean-image {
  position: absolute;
  right: 0;
  bottom: 50%;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}

@media (max-width: 1199px) {
  .clean-image {
    max-width: 465px;
  }
}

@media (max-width: 991px) {
  .clean-image {
    right: unset;
    bottom: unset;
    -webkit-transform: none;
    transform: none;
    position: relative;
    max-width: 100%;
  }
}

.clean-block {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 620px;
}

@media (max-width: 1199px) {
  .clean-block {
    max-width: 400px;
  }
}

@media (max-width: 991px) {
  .clean-block {
    max-width: 100%;
  }
}

.clean-information {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.clean-information h1 {
  color: var(--white);
  font-size: 37px;
  font-style: normal;
  font-weight: 800;
  line-height: 47px;
  text-transform: uppercase;
}

@media(max-width: 991px) {
  .clean-information h1 {
    font-size: 24px;
    line-height: 120%;
  }
}

.clean-information p {
  color: var(--white);
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

@media(max-width: 991px) {
  .clean-information p {
    font-size: 14px;
  }
}

.clean-information span {
  color: var(--color-primary);
}

.features__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

@media(max-width: 991px) {
  .features__header {
    flex-direction: column;
  }
}

.features__pagination {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

@media(max-width: 991px) {
  .features__pagination {
    flex-direction: column;
    width: 90%;
  }
}

.feature__loader {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--text-primary);
  width: 360px;
}

@media(max-width: 991px) {
  .feature__loader {
    width: 100%;
  }
}

.feature__loader>p {
  color: var(--text-primary);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.feature__loader .loadline {
  position: relative;
  flex: 1 1 auto;
  height: 4px;
  border-radius: 999px;
  overflow: hidden;

  background: rgba(255, 255, 255, 0.08);
}

.feature__loader .loadline::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: calc((var(--value) / var(--max)) * 100%);
  border-radius: inherit;

  background: var(--color-primary, #6b35ff);
  transition: 0.5s;
}

.features__arrows {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.swiper-wrapper.features__items {
  align-items: stretch;
}

.swiper-wrapper.features__items .swiper-slide {
  height: auto !important;
}

.features__item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 20px 24px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-primary);
  border-radius: 0 50px;
  height: 100%;
}

.features__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 50px;
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
  background-color: var(--color-primary);
  border-radius: 50%;
}

.features__item p {
  color: var(--white);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.faq__content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
}

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

@media(min-width: 1400px) {
  .faq__content {
    gap: 5rem;
  }
}

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

.faq__description h2 {
  color: var(--white);
  font-size: 40px;
  font-style: normal;
  font-weight: 800;
  line-height: 40px;
}

@media(max-width: 991px) {
  .faq__description h2 {
    font-size: 32px;
  }
}

.faq__description p {
  color: var(--white);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.textual__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.textual__content p {
  color: var(--text-primary);
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: normal;
  word-break: break-word;
}