/*============= FUNCTIONS ===============*/
/*============= MIXINS ===============*/
.steps-block {
  padding: 40px 0;
}
.steps-block .title {
  font-size: clamp(25px, 0.015625 * 100vw + 20px, 50px);
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  text-align: center;
}
.steps-holder {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.steps-holder .step-item {
  display: flex;
  flex-direction: column;
  gap: 100px;
  padding: 35px 40px;
  background: var(--bgLight);
}
.steps-holder .step-item_number {
  font-size: clamp(25px, 0.015625 * 100vw + 20px, 50px);
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  color: var(--head);
}
.steps-holder .step-item_name {
  font-size: clamp(20px, 0.0025 * 100vw + 19.2px, 24px);
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  color: var(--head);
  margin-bottom: 10px;
}
.steps-holder .step-item_name span {
  font-size: clamp(20px, 0.0025 * 100vw + 19.2px, 24px);
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  color: var(--primary);
}
.steps-holder .step-item_desc p {
  font-size: clamp(14px, 0.0025 * 100vw + 13.2px, 18px);
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  color: var(--text);
  margin: 0;
}
.steps-holder .step-item_desc p strong {
  font-size: clamp(14px, 0.0025 * 100vw + 13.2px, 18px);
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  color: var(--primary);
}
.steps-holder .step-item.form {
  background: var(--primary);
}
.steps-holder .step-item.form .step-item_number {
  color: var(--card);
}
.steps-holder .step-item.form .step-item_name {
  color: var(--card);
}
.steps-holder .step-item.form .step-item_btn {
  margin-top: 38px;
  background: var(--card);
  border-color: var(--card);
  color: var(--primary);
  width: 100%;
}
.steps-holder .step-item.form .step-item_btn:hover {
  color: var(--card);
  background: var(--hover);
  border-color: var(--hover);
}

@media (max-width: 1200px) {
  .steps-holder {
    gap: 15px;
  }
  .steps-holder .step-item {
    padding: 20px;
  }
}
@media (max-width: 992px) {
  .steps-block {
    padding: 20px 0;
  }
  .steps-holder {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 769px) {
  .steps-holder {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .steps-holder {
    grid-template-columns: 100%;
  }
}/*# sourceMappingURL=block.css.map */