.steps-block__wrap {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}
.steps-block .step {
  position: relative;
}
.steps-block .step__wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.steps-block .step__image {
  position: relative;
}
.steps-block .step__image:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.steps-block .step__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.steps-block .step:nth-child(even) {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: 1fr;
  gap: 50px;
}
.steps-block .step:nth-child(even)::before {
  content: "";
  display: block;
}
.steps-block .step:nth-child(even):after {
  content: "";
  height: 350px;
  width: 200px;
  background-image: url("./images/decor1.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
  position: absolute;
  top: clamp(20px, calc(9.1539528433vw + -89.7558945908px), 86px);
  left: clamp(-90px, calc(-5.547850208vw + 16.5187239945px), -50px);
  z-index: -1;
  pointer-events: none;
}
.steps-block .step:nth-child(odd):not(:first-child) {
  height: -moz-fit-content;
  height: fit-content;
}
.steps-block .step:nth-child(odd):not(:first-child):after {
  content: "";
  height: 63px;
  width: 130px;
  background-image: url("./images/decor2.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top;
  position: absolute;
  top: calc(100% + 10px);
  left: clamp(-60px, calc(-5.547850208vw + 46.5187239945px), -20px);
  z-index: -1;
  pointer-events: none;
}

@media (max-width: 1199px) {
  .steps-block .step:nth-child(even)::before, .steps-block .step:nth-child(even)::after {
    display: none;
  }
  .steps-block .step:nth-child(odd):not(:first-child):after {
    display: none;
  }
  .steps-block__wrap {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 991px) {
	.steps-block__wrap {
  gap: 15px;
}
	.steps-block .step__wrap  {
gap: 10px;}
}
@media (max-width: 575px) {
  .steps-block__wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 375px) {
  .steps-block__wrap {
    grid-template-columns: 1fr;
  }
}/*# sourceMappingURL=block.css.map */