.steps {
  margin-bottom: 70px;
}
.steps .section-title {
  margin-bottom: 38px;
}
.steps__list {
  display: flex;
  gap: 70px;
  flex-wrap: wrap;
}

.steps-wrapper {
  max-width: 1120px;
  margin: auto;
}

.steps__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  /* max-width: 280px; */
  width: 100%;
  flex: 1 280px;
}
.steps__item::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 33px;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 16px);
  background-image: url(../img/steps/arrow-b.svg);
  background-size: contain;
  background-repeat: no-repeat;
  display: flex;
  flex-shrink: 0;
}

.steps__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: #F5F6F8;
  flex-shrink: 0;
  outline: 5px solid #E4E8EF;
}
.steps__icon img {
  max-width: 50px;
  max-height: 50px;
}

.steps__base {
  margin-top: 20px;
}

.steps__base h3 {
  font-size: 17px;
  line-height: 25px;
  margin-bottom: 10px;
}
.steps__base p {
  font-size: 17px;
  line-height: 25px;
  color: #1F1F1F;
}

.steps-adds {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
}

@media screen and (min-width: 1023px) {
  .steps {
    margin-bottom: 62px;
  }
  .steps__container {
    padding-left: 80px;
    padding-right: 80px;
  }
  .steps .section-title {
    margin-bottom: 70px;
  }
  .steps__list {
    gap: 64px;
    justify-content: center;
  }
  .steps__item {
    flex: auto;
    max-width: 232px;
  }
  .steps__base h3 {
    font-size: 19px;
    margin-bottom: 13px;
    font-family: "Raleway";
  }
  .steps__base p {
    font-size: 19px;
  }
}
@media screen and (min-width: 1152px) {
  .steps__item::after {
    width: 82px;
    height: 10px;
    top: 42px;
    left: 100%;
    transform: none;
    background-image: url(../img/steps/arrow-r.svg);
    background-size: contain;
    background-repeat: no-repeat;
  }
  .steps__item:last-child::after {
    display: none;
  }
}
@media screen and (min-width: 1439px) {
  .steps {
    margin-bottom: 96px;
  }
  .steps .section-title {
    margin-bottom: 82px;
  }
  .steps__base h3 {
    font-size: 19px;
  }
  .steps__base p {
    font-size: 19px;
  }
  .steps-adds {
    margin-top: 64px;
  }
}