.steps {
  margin: 50px 0;
}
.steps__container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.steps__step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.steps__step:not(:last-of-type)::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -20px;
  left: 0;
  right: 0;
  background-color: #E1E1E1;
}
@media (min-width: 900px) {
  .steps__container {
    gap: 80px;
  }
  .steps__step {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
  }
  .steps__step:not(:last-of-type)::after {
    bottom: -40px;
  }
  .steps__number {
    grid-column: span 1;
  }
  .steps__title {
    grid-column: span 3;
  }
  .steps__text {
    grid-column-start: 6;
    grid-column: span 8;
  }
}
@media (min-width: 1200px) {
  .steps {
    margin: 100px 0 160px;
  }
}