@charset "UTF-8";
/**
 * Discover arrow: data URI so the icon works from any compiled CSS.
 * A file path like `url('./img/arrow.svg')` resolves relative to the generated
 * .css: OK for `scss/main.css` → `scss/img/`, broken for `blocks/.../css/*.css`.
 */
/**
 * Breakpoints
 */
/**
 * Functions
 */
/**
 * Mixin core
 */
.steps-content__intro {
  margin-bottom: 40px;
}
.steps-content__intro .block-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 30px;
}
.steps-content__intro .block-content__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.steps-content__items {
  display: grid;
  gap: 40px 20px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.steps-content__item {
  grid-column: span 6;
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: var(--bg-alt);
  border-radius: 15px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding: 20px;
  gap: 20px;
}

.steps-content__item:nth-child(5n+3),
.steps-content__item:nth-child(5n+4),
.steps-content__item:nth-child(5n+5) {
  grid-column: span 4;
}

@media screen and (max-width: 1198px) {
  .steps-content__items {
    grid-template-columns: 1fr;
    gap: 20px 0;
  }
}
.steps-content__image {
  position: relative;
  overflow: visible;
  height: 460px;
  width: 100%;
}
@media screen and (max-width: 1198px) {
  .steps-content__image {
    height: auto;
  }
}

.steps-content__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 5px;
}

.steps-content__number {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%);
  z-index: 10;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-color);
  border: 3px solid var(--bg-alt);
  color: #ffffff;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
}
@media screen and (max-width: 1198px) {
  .steps-content__number {
    transform: translate(-50%, 50%);
  }
}

.steps-content__description {
  font-size: 1rem;
  line-height: 1.8;
  color: #333333;
}