.steps {
  position: relative;
  padding: 110px 0 55px 0;
  z-index: 0;
}
.steps::after {
  content: "";
  position: absolute;
  pointer-events: none;
  right: 0;
  top: 320px;
  background-image: url("../../../img/pattern-right.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 254px;
  height: 730px;
  z-index: -1;
}
@media screen and (max-width: 1440px) {
  .steps::after {
    width: 197px;
    height: 558px;
  }
}
@media screen and (max-width: 1280px) {
  .steps::after {
    width: 172px;
    height: 489px;
  }
}
@media screen and (max-width: 1024px) {
  .steps::after {
    width: 134px;
    height: 380px;
  }
}
@media screen and (max-width: 768px) {
  .steps::after {
    width: 84px;
    height: 240px;
  }
}
@supports (width: clamp(1px, 2vw, 3px)) and (height: clamp(1px, 2vw, 3px)) {
  .steps::after {
    width: clamp(84px, 13.8vw, 254px);
    height: clamp(240px, 38.1vw, 730px);
  }
}
.steps .section-title {
  margin-bottom: 90px;
}
.steps .steps__container {
  max-width: 1120px;
}
.steps__content {
  display: flex;
  flex-direction: column;
  gap: 124px 20px;
}
.steps .steps-desc {
  max-width: 640px;
  margin: 0 auto 54px auto;
}

.steps-item {
  display: flex;
  width: 100%;
}
.steps-item__inner {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px 100px;
  max-width: 846px;
}
.steps-item:nth-child(even) {
  position: relative;
  justify-content: flex-end;
}
.steps-item:nth-child(even)::before, .steps-item:nth-child(even)::after {
  position: absolute;
  content: "";
  left: 47%;
  width: 1px;
  height: 75px;
  background-color: #000;
}
@media screen and (max-width: 616px) {
  .steps-item:nth-child(even)::before, .steps-item:nth-child(even)::after {
    left: 50%;
  }
}
.steps-item:nth-child(even)::before {
  top: -100px;
}
.steps-item:nth-child(even)::after {
  bottom: -100px;
}
.steps-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 132px;
  max-height: 132px;
  width: 100%;
  height: 132px;
  border-radius: 50%;
  overflow: hidden;
}
.steps-item__content {
  flex: 1 375px;
}
.steps-item__head {
  display: flex;
  align-items: flex-start;
  margin-bottom: 18px;
}
.steps-item__head .item-count {
  display: flex;
  font-size: 90px;
  width: 100%;
  line-height: 86%;
  max-width: 69px;
  max-height: 68px;
}

@media screen and (max-width: 1179px) {
  .steps {
    padding: 46px 0 80px 0;
  }
  .steps .section-title {
    margin-bottom: 88px;
  }
}
@media screen and (max-width: 1024px) {
  .steps {
    padding: 20px 0 20px 0;
  }
  .steps .section-title {
    margin-bottom: 30px;
  }
}