#steps .container {
  --content-width: 1283px;
  position: relative;
  z-index: 3;
}

#steps .title {
  font-size: 46px;
  line-height: 1em;
}

#steps p {
  font-size: 16px;
  line-height: 24px;
}

#steps .subt {
  font-size: 20px;
  line-height: 1em;
}

#steps .number {
  font-size: 50px;
  border-radius: 50%;
  color: var(--blue);
  background-color: var(--yellow);
  height: 85px;
  width: 85px;
  line-height: 85px;
  margin: 0 auto;
  position: relative;
}

#steps .number::after {
  content: '';
  position: absolute;
  background-image: url('../../images/how-it-works/steps-arrow.png');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  width: min(314px, 22vw);
  height: 7px;
  top: 55%;
  left: 94px;
  transform: translateY(-50%);
}
#steps .swiper-slide:last-of-type .number:after {
  display: none;
}

#steps .button {
  margin-top: 36px;
  padding: 3px 24px 0;
  height: 52px;
  line-height: 52px;
  font-size: 17px;
  background-color: var(--yellow);
  color: #000;
}

#steps .swiper-button-prev {
  left: -7px;
}

#steps .swiper-button-next {
  right: -7px;
  transform: scale(-1);
}

#steps .swiper-button-next,
#steps .swiper-button-prev {
  background-image: url("../../images/swiper-arrow.png");
  background-size: 7px 11px;
  background-position: center;
  background-repeat: no-repeat;
  width: 37.5px;
  height: 37.5px;
  border-radius: 50%;
  border: 1px solid var(--dark-gray);
  top: calc(50% + 39px);
}
#steps .swiper-button-next::after,
#steps .swiper-button-prev::after {
    display: none;
}

@media screen and (min-width: 992px ) {
  #steps .swiper-button-prev,
  #steps .swiper-button-next {
    display: none;
  }
}

@media screen and (max-width: 991px ) {
  #steps .number::after {
    display: none;
  }
}

@media screen and (max-width: 567px ) {
  #steps {
    padding-top: 0;
  }
  #steps .inner {
    margin-top: 0;
  }
  #steps .title {
    font-size: 36px;
    line-height: 1em;
    margin-bottom: 19px;
    margin-top: 0;
    text-transform: capitalize;
  }
  #steps p {
    font-size: 16px;
    line-height: 24px;
    margin: 10px auto 0 auto;
  }
  #steps p br {
    display: none;
  }
  #steps .number {
    margin-bottom: 29px;
  }
  #steps .swiper {
    margin-top: 43px;
  }
  #steps .desc {
    font-size: 14px;
    line-height: 19px;
  }
  #steps .swiper-cont {
    padding: 0 23px;
  }
  #steps .button {
    /*margin-top: 50px;*/
  }
  #steps .swiper-button-next, #steps .swiper-button-prev {
    width: 35px;
    height: 35px;
    top: 46px;
  }
  #steps .swiper-button-next {
    right: 0;
  }
  #steps .swiper-button-prev {
    left: 0;
  }
}