@charset "UTF-8";
/* stylelint-disable */
/* ---------- example ---------- */
/*
.selector {
  // только в промежутке tablet..desktop
  @include media-between(tablet, desktop) { ... }

  // ровно «только tablet» (1024..1239)
  @include media-only(tablet) { ... }

  // ≥ 1440
  @include for-desktop { ... }

  // ≤ 767
  @include small-tablet { ... }
}
*/
/* ---------- helpers ---------- */
/* Min-width */
/* Max-width */
/* stylelint-disable */
.section-how-it-works {
  padding: 6rem 0;
  background: var(--section-bg);
  overflow: hidden;
}
.section-how-it-works__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(30px, 5.859vw, 6rem);
}
.section-how-it-works .steps {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  width: 100%;
}
.section-how-it-works .step {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  counter-increment: list;
}
.section-how-it-works .step::before {
  content: "0" counter(list);
  position: absolute;
  top: 0;
  font-size: 2.2rem;
  line-height: 120%;
  font-weight: 700;
  height: 4.6rem;
  width: 4.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--second-color);
  border-radius: 50%;
  color: var(--cl-a);
}
.section-how-it-works .step::after {
  content: "";
  position: absolute;
  width: 1px;
  height: calc(100% + 7.5rem);
  background-color: var(--second-color);
  z-index: -1;
}
.section-how-it-works .step:last-of-type::after {
  display: none;
}
.section-how-it-works .step__image {
  overflow: hidden;
  display: flex;
}
.section-how-it-works .step__image img,
.section-how-it-works .step__image picture,
.section-how-it-works .step__image video {
  width: 100%;
  height: 100%;
}
.section-how-it-works .step__info {
  max-width: 375px;
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}
.section-how-it-works .step__title {
  font-size: 3rem;
  line-height: 120%;
  font-weight: 700;
  color: var(--global-color);
}
.section-how-it-works .step__description {
  font-size: 1.8rem;
}
.section-how-it-works__link .main-button {
  padding: clamp(10px, 0.781vw, 1.5rem) clamp(30px, 3.418vw, 3.5rem);
  background-color: var(--global-color);
  color: var(--cl-a);
}
@media (min-width: 1025px){
  .section-how-it-works .step {
    grid-template-columns: 375px 5rem 375px;
    justify-content: center;
    gap: 7.4rem;
  }
  .section-how-it-works .step::before {
    left: 50%;
    transform: translateX(-50%);
  }
  .section-how-it-works .step::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .section-how-it-works .step:nth-child(odd) .step__image {
    justify-content: flex-end;
  }
}
@media (max-width: 1024.98px){
  .section-how-it-works .steps {
    gap: 5rem;
    align-items: center;
  }
  .section-how-it-works .step {
    max-width: 55.5rem;
    padding-left: 7rem;
  }
  .section-how-it-works .step::after {
    left: 2.3rem;
  }
  .section-how-it-works .step__divider {
    order: -1;
    width: 5rem;
  }
  .section-how-it-works .step__image {
    display: none;
  }
  .section-how-it-works .step__info {
    padding-top: 0.5rem;
  }
}
/*# sourceMappingURL=section-how-it-works.css.map */