.steps-2 {
  position: relative;
  padding: 55px 0 120px 0;
  background-color: rgba(182, 221, 213, 0.2);
}
.steps-2 .section-title {
  margin-bottom: 90px;
}
.steps-2 .steps-2__container {
  max-width: 1120px;
}
.steps-2__content {
  display: flex;
  flex-direction: column;
  gap: 80px 20px;
  max-width: 822px;
  margin: auto;
}

.steps-2-item {
  display: flex;
  width: 100%;
}
.steps-2-item__inner {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 50px 20px;
  max-width: 686px;
}
.steps-2-item:nth-child(even) {
  position: relative;
  justify-content: flex-end;
}
.steps-2-item:nth-child(even)::before, .steps-2-item:nth-child(even)::after {
  position: absolute;
  content: "";
  left: 33%;
  width: 1px;
  height: 30px;
  background-color: #000;
}
.steps-2-item:nth-child(even)::before {
  top: -55px;
}
.steps-2-item:nth-child(even)::after {
  bottom: -55px;
}
.steps-2-item:last-child::after {
  display: none;
}
.steps-2-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  max-width: 52px;
  max-height: 52px;
  margin-top: 5px;
  width: 100%;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
}
.steps-2-item__content {
  flex: 1 375px;
}
.steps-2-item__head {
  display: flex;
  align-items: flex-start;
}

@media screen and (max-width: 1179px) {
  .steps-2 {
    padding: 40px 0 40px 0;
  }
  .steps-2 .section-title {
    margin-bottom: 45px;
  }
}
@media screen and (max-width: 992px) {
  .steps-2__content {
    max-width: 85%;
    gap: 50px 20px;
  }
  .steps-2-item {
    justify-content: flex-start;
  }
  .steps-2-item__icon {
    margin-top: 0;
  }
  .steps-2-item:nth-child(even) {
    justify-content: flex-start;
  }
  .steps-2-item:nth-child(even)::before {
    top: -38px;
  }
  .steps-2-item:nth-child(even)::after {
    bottom: -38px;
  }
  .steps-2-item:nth-child(even)::before, .steps-2-item:nth-child(even)::after {
    left: 26px;
  }
}