.steps-block {
  position: relative;
}
.steps-block > .container {
  overflow: hidden;
}
@media (min-width: 768px) {
  .steps-block > .container {
    overflow: unset;
  }
}
@media (min-width: 768px) {
  .steps-block__headline {
    margin-bottom: 40px;
  }
}
.steps-block__item {
  --padding-top: 0;
  max-width: 370px;
  margin: 0 auto;
  padding: var(--padding-top) 20px 0;
  position: relative;
  text-align: center;
}
.steps-block__item.style_counter {
  --padding-top: 120px;
}
.steps-block__item.style_counter:before {
  content: attr(data-count);
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  text-align: center;
  line-height: 1;
  font-size: 150px;
  font-weight: 700;
  color: #C0EDEB;
  z-index: -1;
  pointer-events: none;
}
@media (min-width: 992px) {
  .steps-block__item.style_counter {
    --padding-top: 140px;
  }
  .steps-block__item.style_counter:before {
    font-size: 170px;
  }
}
@media (min-width: 1500px) {
  .steps-block__item {
    padding-left: 0;
    padding-right: 0;
  }
}
.steps-block__item-headline {
  margin-bottom: 8px;
  line-height: var(--lh-text-h);
  font-size: var(--fz-text-h);
  font-weight: 700;
}
@media (min-width: 1200px) {
  .steps-block__item-headline {
    padding: 0 15px;
  }
}
.steps-block__item-image {
  margin-bottom: 3px;
}
.steps-block__item-caption {
  line-height: var(--lh-text);
  font-size: var(--fz-text);
}
@media (min-width: 1200px) {
  .steps-block__item-caption {
    padding: 0 5px;
  }
}
.steps-block__item-link {
  margin-top: 10px;
}
.steps-block__item-link span {
  text-decoration: underline;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  color: #555;
  cursor: pointer;
}
.steps-block__item-link span:hover {
  text-decoration: none;
}
.steps-block__button {
  padding-top: 30px;
}
@media (min-width: 768px) {
  .steps-block__button {
    padding-top: 95px;
  }
}
@media (min-width: 992px) {
  .steps-block__button {
    padding-top: 95px;
  }
}
.steps-block__button button {
  width: 205px;
  height: 205px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  line-height: 1.5;
  font-size: 22px;
  font-weight: 700;
  color: #000;
  background-color: #EBD500;
  border: none;
  border-radius: 100%;
  cursor: pointer;
  transition: all 200ms;
  animation: simplePulse 1.5s ease-in-out infinite alternate-reverse;
}
.steps-block__button button:hover {
  background-color: #f0da00;
}
.steps-block__button button:active {
  background-color: #e1cc00;
}
.steps-block__slider {
  max-width: 330px;
  margin: 0 auto;
  overflow: hidden;
}
@media (min-width: 768px) {
  .steps-block__slider {
    max-width: unset;
  }
  .steps-block__slider .swiper-wrapper {
    max-width: 1340px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px 0;
  }
  .steps-block__slider .swiper-slide {
    width: 50%;
    position: relative;
  }
  .steps-block__slider .swiper-slide:after {
    content: "";
    width: 60px;
    height: 15px;
    display: block;
    position: absolute;
    top: 180px;
    left: calc(100% - 30px);
    background: url("img/step-arrow.svg") no-repeat center;
    background-size: contain;
  }
  .steps-block__slider .swiper-slide:nth-child(2n+2):after, .steps-block__slider .swiper-slide:last-child:after {
    display: none;
  }
}
@media (min-width: 1200px) {
  .steps-block__slider .swiper-slide {
    width: 33.3333333333%;
  }
  .steps-block__slider .swiper-slide:nth-child(2n+2):after {
    display: block;
  }
  .steps-block__slider .swiper-slide:nth-child(3n+3):after, .steps-block__slider .swiper-slide:last-child:after {
    display: none;
  }
}
@media (min-width: 1500px) {
  .steps-block__slider .swiper-slide:not(:last-child):after {
    display: block;
  }
}
.steps-block__slider-navigation {
  margin-top: 30px;
}
