/*============= FUNCTIONS ===============*/
/*============= MIXINS ===============*/
.steps-block {
  padding: 40px 0;
}
.steps-holder {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
}
.steps-holder .step-item {
  display: flex;
  gap: 20px;
  padding: 50px 40px;
  background: var(--bgLight);
  border-radius: 10px;
  position: relative;
}
.steps-holder .step-item::after {
  content: url(./images/after.svg);
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translate(0, -50%);
}
.steps-holder .step-item_number {
  font-family: "MinionPro", sans-serif;
  font-size: clamp(25px, 0.010625 * 100vw + 21.6px, 42px);
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  color: var(--primary);
}
.steps-holder .step-item_desc p {
  font-family: "Manrope", sans-serif;
  font-size: clamp(14px, 0.0025 * 100vw + 13.2px, 18px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  color: var(--text);
  margin: 0;
}
.steps-holder .step-item_desc a {
  color: var(--primary);
}
.steps-holder .step-item_desc a:hover {
  color: var(--hover);
}
.steps-holder .step-item:nth-child(3n)::after {
  display: none;
}

@media (max-width: 1100px) {
  .steps-holder {
    gap: 10px 30px;
  }
  .steps-holder .step-item {
    padding: 20px;
  }
  .steps-holder .step-item::after {
    right: -25px;
  }
}
@media (max-width: 992px) {
  .steps-block {
    padding: 20px 0;
  }
  .steps-holder {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .steps-holder .step-item::after {
    display: none;
  }
}
@media (max-width: 500px) {
  .steps-holder {
    grid-template-columns: 100%;
  }
}/*# sourceMappingURL=block.css.map */