.steps {
  --step-margin: 5px;
  position: relative;
  display: block;
  z-index: 0;
  padding-top: 1px;
}
@media (max-width: 767px) {
  .steps .anchor {
    margin-top: calc(var(--header-height) * -0.5);
  }
}
.steps .steps-intro {
  padding: var(--container-padding);
  font-size: var(--font-size-sm);
}
.steps .button {
  margin-top: 1em;
}
.steps .numbers {
  position: absolute;
  display: flex;
  bottom: 0;
  right: 0;
  left: 0;
  text-align: left;
  font-weight: 800;
  font-size: 20vw;
  color: var(--white);
  line-height: 0.69;
  margin: 0 -3.7vw;
  list-style: none;
  padding: 0;
  z-index: 1;
}
@media (min-width: 1921px) {
  .steps .numbers {
    font-size: 380px;
  }
}
.steps .number {
  position: absolute;
  left: 100%;
  width: 100%;
  bottom: 0;
  transition: 0.4s var(--ease-out-quad);
}
.steps .number:first-child {
  padding-right: 4%;
}
.steps .number[data-current=true] {
  left: 0;
}
.steps .number:has(~ [data-current=true]) {
  left: -100%;
}
.steps .image-box img, .steps .image-box video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}
.steps .image-box::before {
  z-index: 1;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color-lighter);
  opacity: 0.7;
}
.steps .image-box::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color-light);
  mix-blend-mode: color;
}
.steps .steps-headline {
  position: relative;
  font-size: var(--font-size-xxl);
  line-height: 1.2;
  font-weight: 800;
  margin: 0 -0.05em 0.5em;
}
.steps .steps-wrapper {
  position: relative;
  text-wrap: pretty;
  background-color: var(--white);
}
.steps .step-title {
  font-size: var(--font-size-md);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 1em;
  text-wrap: pretty;
  color: var(--primary-color-text);
  hyphens: auto;
}
.steps .intro-scroll-tracker {
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 100%;
}
.steps .button-wrapper {
  display: none;
}
@media (orientation: portrait), (max-width: 999px) and (orientation: landscape) {
  .steps::after {
    content: "";
    position: absolute;
    display: block;
    bottom: -5px;
    height: 10px;
    left: 0;
    right: 0;
    background-color: var(--white);
  }
  .steps .intro-button {
    display: none;
  }
  .steps .button-wrapper {
    display: block;
    background-color: var(--white);
    padding: 0 var(--container-padding);
  }
  .steps .image-box {
    position: sticky;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    z-index: -1;
  }
}
@media (orientation: portrait) and (min-width: 568px), (max-width: 999px) and (orientation: landscape) and (min-width: 568px) {
  .steps .image-box {
    max-width: 70%;
  }
}
@media (orientation: portrait), (max-width: 999px) and (orientation: landscape) {
  .steps .steps-wrapper {
    background-color: transparent;
    margin-top: calc(var(--header-height) - 100vh);
    counter-reset: step;
    overflow: hidden;
  }
  .steps .step {
    position: relative;
    padding: var(--container-padding) var(--container-padding) calc(var(--container-padding) * 1.6);
    margin-top: calc(25% + 120px);
    background-color: var(--white);
    counter-increment: step;
  }
  .steps .step::before {
    content: "0" counter(step);
    position: absolute;
    bottom: 100%;
    right: 0.1em;
    line-height: 0.6;
    font-size: calc(20vw + 60px);
    color: var(--white);
    font-weight: 800;
    text-align: right;
  }
  .steps .step:last-child {
    padding-bottom: 10px;
  }
}
@media (orientation: portrait) and (min-width: 568px), (max-width: 999px) and (orientation: landscape) and (min-width: 568px) {
  .steps .step {
    margin-top: calc(15% + 100px);
  }
  .steps .step::before {
    font-size: calc(12vw + 60px);
    right: 32%;
  }
}
@media (orientation: portrait), (max-width: 999px) and (orientation: landscape) {
  .steps .numbers {
    display: none;
  }
}
@media (max-width: 999px) and (orientation: landscape) {
  .steps .image-box {
    width: 60%;
  }
  .steps .step {
    margin-top: calc(15% + 100px);
    padding: 10px var(--container-padding) 20px;
  }
  .steps .step::before {
    left: calc(var(--container-padding) - 0.1em);
    right: auto;
    font-size: calc(12vw + 60px);
  }
}
@media (orientation: landscape) and (min-width: 1000px) {
  .steps {
    display: flex;
    align-items: flex-start;
  }
  .steps > div {
    flex: 1 1 100%;
  }
  .steps .steps-intro {
    position: sticky;
    top: calc(var(--header-height));
    padding: var(--container-padding);
    max-width: 28%;
    min-width: 28%;
    z-index: 1;
    height: calc(100vh - var(--header-height));
  }
  .steps .steps-intro .text-box {
    position: relative;
    margin-right: -120%;
  }
  .steps .steps-intro p {
    position: relative;
    max-width: 600px;
  }
  .steps .image-box {
    --offset: calc(40% - var(--intro-scroll) * 40%);
    position: sticky;
    height: calc(100vh - var(--header-height));
    top: var(--header-height);
    min-width: 28%;
    max-width: 28%;
    z-index: -1;
    overflow: hidden;
    transform: translate3d(0, var(--offset), 0);
  }
}
@media (orientation: landscape) and (min-width: 1000px) and (max-width: 1199px) {
  .steps .image-box {
    min-width: 34%;
    max-width: 34%;
    margin-left: -12%;
  }
}
@media (orientation: landscape) and (min-width: 1000px) {
  .steps .steps-wrapper {
    max-width: 44%;
  }
}
@media (orientation: landscape) and (min-width: 1000px) and (max-width: 1199px) {
  .steps .steps-wrapper {
    max-width: 50%;
  }
}
@media (orientation: landscape) and (min-width: 1000px) {
  .steps .step {
    --offset: calc(var(--scroll) * -30%);
    height: calc(100vh - var(--header-height));
    position: sticky;
    top: var(--header-height);
    display: flex;
    align-items: center;
    background-color: var(--white);
    padding: var(--container-padding) var(--container-padding) calc(var(--container-padding) * 1.6);
    transform: translate3d(0, var(--offset), 0);
  }
  .steps .step > * {
    max-width: 640px;
    margin: 0 auto;
  }
  .steps .step + .step {
    margin-top: var(--step-margin);
  }
  .steps .step + .step::before {
    content: "";
    position: absolute;
    display: block;
    bottom: 100%;
    left: 0;
    right: 0;
    aspect-ratio: 1;
    pointer-events: none;
    background: linear-gradient(6deg, rgba(var(--dark-color-rgb), 0.1) -20%, rgba(var(--dark-color-rgb), 0) 60%);
    transition: 0.6s ease;
    opacity: 1;
  }
  .steps .step[style="--scroll: 0;"] ~ .step::before {
    opacity: 0;
  }
}

/*# sourceMappingURL=steps.css.map */
