.steps-block {
  padding: 75px 0;
}

.steps-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

.steps-callback {
  width: 30%;
  position: -webkit-sticky;
  position: sticky;
  top: 130px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.steps-callback_image {
  max-width: 360px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.steps-callback_image img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.steps-callback_button {
  margin-top: 40px;
}

.steps-holder {
  width: 70%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.steps-item {
  margin-top: 26px;
}

.steps-item_holder {
  border-radius: 20px;
  background: var(--bg_secondary);
  position: relative;
  padding: 55px 30px 30px 30px;
  height: 100%;
}

.steps-item_number {
  position: absolute;
  font-weight: 700;
  font-size: clamp(16px, calc(0.0025 * 100vw + 15.2px), 20px);
  line-height: 120%;
  letter-spacing: 0%;
  top: -26px;
  left: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--third);
  border-radius: 100%;
}

.steps-item_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}

.steps-item_name {
  margin-bottom: 73px;
  text-wrap: balance;
}

.steps-item_desc {
  margin-top: auto;
  color: var(--text_primary);
  text-wrap: balance;
}

.steps-item_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 80%;
}

.steps-item_icon {
  width: 40px;
  height: 40px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.steps-item_icon img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 1200px) {
  .steps-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .steps-callback {
    width: 100%;
    position: relative;
    top: unset;
  }
  .steps-callback_image {
    max-width: unset;
  }
  .steps-callback_button {
    margin-top: 10px;
  }
  .steps-holder {
    width: 100%;
  }
}

@media (max-width: 992px) {
  .steps-block {
    padding: 20px 0 !important;
  }
  .steps-holder {
    gap: 15px;
  }
  .steps-item_icon {
    width: 25px;
    height: 25px;
  }
  .steps-item_holder {
    padding: 35px 15px 15px 15px;
  }
  .steps-item_content {
    width: 100%;
  }
  .steps-item_number {
    width: 40px;
    height: 40px;
    top: -20px;
    left: 15px;
  }
  .steps-item_name {
    margin-bottom: 20px;
  }
}

@media (max-width: 600px) {
  .steps-holder {
    -ms-grid-columns: 100%;
        grid-template-columns: 100%;
  }
}
/*# sourceMappingURL=block.css.map */