.steps .steps__top {
  margin-bottom: 3.75rem;
  max-width: 50rem;
}

.steps .steps__list {
  width: 100%;
  max-width: 78.3125rem;
  gap: 1rem;
}

.steps .steps__list.flex--row {
  max-width: 97.875rem;
}

.steps .steps__list .step {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  overflow: hidden;
  border-radius: 0.5rem;
}

.steps .steps__list .step .step__background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--black-800-60, rgba(26, 24, 36, 0.6));
  opacity: 0;
  z-index: 0;
  transition: all 0.3s ease;
}

.steps .steps__list.flex--row .step .step__background-overlay {
  background-color: transparent;
}

@media screen and (min-width: 1024px) {
  .steps .steps__list.flex--row .step:hover .step__background-overlay,
  .steps .steps__list.flex--row .step:focus .step__background-overlay {
    opacity: 1;
  }
}

.steps .steps__list .step .step__background-overlay svg {
  display: block;
  position: absolute;
  width: 68.4375rem;
  height: 20.875rem;
  fill: var(--purple-700, rgba(33, 0, 85, 0.6));
  filter: blur(4.75rem);
}

.steps .steps__list .step .step__background-overlay svg:first-child {
  bottom: -2.8125rem;
  left: -3.4375rem;
}
.steps .steps__list .step .step__background-overlay svg:last-child {
  top: -4.5625rem;
  right: -3.4375rem;
}

.steps .steps__list.flex--row .step .step__background-overlay svg {
  width: 25.6875rem;
  height: 25.8125rem;
}

.steps .steps__list.flex--row .step .step__background-overlay svg:first-child {
  bottom: 0;
  left: 0;
}
.steps .steps__list.flex--row .step .step__background-overlay svg:last-child {
  top: 0rem;
  right: 0rem;
}

.steps .steps__list .step .step__inner {
  position: relative;
  width: 100%;

  padding: 2.4375rem 5rem 2.4375rem 2.5rem;
  border-radius: 0.5rem;
  z-index: 1;
}

.steps .steps__list.flex--row .step .step__inner {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;

  padding-right: 2.5rem;
  gap: 2rem;
}

.steps .step .step__icon {
  padding: 2.0625rem;
  border-radius: 0.5rem;
  border: 0.0625rem solid var(--white-700-20, rgba(255, 255, 255, 0.2));
  background: var(--black-400, rgba(26, 24, 36, 0.1));
  backdrop-filter: blur(16px);
  margin-right: 2rem;
}

.steps .steps__list.flex--row .step .step__icon {
  margin-right: 1.25rem;
}

.steps .step .step__icon img {
  width: 3.5rem;
  height: 3.5rem;
  display: block;
}

.steps .step .step__name {
  flex: 1 1 100%;
}

.steps .step .step__name .step__number {
  margin-bottom: 0.5rem;
  color: var(--white-900-80, rgba(255, 255, 255, 0.8));
}

.steps .step .step__name .heading {
  color: var(--white-1000, #ffffff);
}

.steps .step .step__description {
  color: var(--white-1000, #ffffff);
  flex: 0 0 28.3125rem;
}

.steps .steps__list.flex--row .step .step__description {
  flex: 1 1 auto;
}

@media screen and (max-width: 1023px) {
  .steps .steps__list .step .step__inner {
    padding: 2.4375rem 2.5rem;
  }

  .steps .step .step__description {
    flex-shrink: 1;
  }

  .steps .step .step__name {
    flex: 1 0 23rem;
  }

  .steps .steps__list.flex--row .step .step__background-overlay svg {
    width: 75rem;
    height: 20.875rem;
  }
  .steps
    .steps__list.flex--row
    .step
    .step__background-overlay
    svg:first-child {
    bottom: 0;
    left: 0;
  }
  .steps .steps__list.flex--row .step .step__background-overlay svg:last-child {
    top: 0rem;
    right: 0rem;
  }
}

@media screen and (max-width: 767px) {
  .steps .steps__top {
    margin-bottom: 3.75rem;
    max-width: 100%;
  }

  .steps .steps__list,
  .steps .steps__list.flex--row {
    max-width: 100%;
    gap: 1rem;
  }

  .steps .steps__list .step .step__inner {
    padding: 2rem;
  }

  .steps .steps__list.flex--row .step .step__inner {
    gap: 0px;
  }

  .steps .step .step__icon {
    padding: 1.5rem;
    margin-right: 0;
    margin-bottom: 2.5625rem;
  }

  .steps .step .step__icon img {
    width: 2.625rem;
    height: 2.625rem;
  }

  .steps .step .step__name {
    flex: 1 1 auto;
  }

  .steps .step .step__description {
    margin-top: 1.5rem;
    flex: 1 1 auto;
  }
}
