.center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.centersb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.service-steps__title {
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 20px;
}

.service-steps__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
}

.service-steps__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  width: calc(50% - 10px);
}

.service-steps__list {
  counter-reset: numbers;
}

.service-steps__item {
  position: relative;
  padding-left: 80px;
  counter-increment: numbers;
  min-height: 100px;
}

.service-steps__item::before {
  position: absolute;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 5px;
  left: 5px;
  width: 54px;
  height: 54px;
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  color: #fff;
  background-color: #222222;
  border-radius: 50%;
  content: counter(numbers);
}

.service-steps__item:not(.service-steps__item:last-child) {
  padding-bottom: 20px;
}

.service-steps__item:not(.service-steps__item:last-child)::after {
  position: absolute;
  content: "";
  top: 10px;
  bottom: -10px;
  left: 32px;
  width: 1px;
  background-color: #e6e6e6;
}

.service-steps__slider {
  position: relative;
  width: calc(50% - 10px);
  -ms-flex-item-align: start;
      align-self: start;
}

.service-steps__slider-wrapper {
  position: relative;
}

.service-steps__item {
  position: relative;
}

.service-steps__link {
  display: block;
}

.service-steps__picture {
  display: block;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 830/467;
}

.service-steps__image {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.service-steps__arrows {
  position: absolute;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  top: 50%;
  left: 16px;
  right: 16px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
}

.service-steps .arrows {
  width: calc(100% - 32px);
}

.service-steps .arrows__item {
  width: 40px;
  height: 40px;
  pointer-events: auto;
}

.service-steps__pagination {
  position: absolute;
  padding-bottom: 1px;
  z-index: 1;
  left: 16px;
  right: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.service-steps__bullet {
  display: block;
  width: 6px;
  height: 6px;
  background-color: #E6E6E6;
  border-radius: 50%;
  -webkit-transition-property: width, background-color;
  transition-property: width, background-color;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  cursor: pointer;
}

.service-steps__bullet--active {
  border-radius: 20px;
  width: 20px;
  background-color: #ff5c00;
  pointer-events: none;
}

.service-steps .text h5 {
  margin-bottom: 8px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 130%;
  color: #222;
}

.service-steps .text p {
  margin: 8px 0;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 150%;
  color: #222;
}

.service-steps .text ul li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 29px;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 150%;
  color: #222;
}

.service-steps .text ul li::before {
  position: absolute;
  top: 8px;
  left: 8px;
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #222;
}

.service-steps .text *:last-child {
  margin-bottom: 0;
}

.service-steps .text *:first-child {
  margin-top: 0;
}

.service-steps__button {
  margin-top: 0;
  padding: 10px 15px;
}

.service-steps .swiper-pagination-bullets {
  bottom: 8px;
}

@media (min-width: 2100px) {
  .service-steps .swiper-horizontal {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 1439px) {
  .service-steps__wrapper {
    gap: 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .service-steps__content {
    width: 100%;
  }

  .service-steps__slider {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    width: 100%;
  }

  .service-steps__pagination {
    position: static;
    margin-top: 8px;
  }
}

@media (max-width: 833px) {
  .service-steps__title {
    margin-bottom: 15px;
  }

  .service-steps__content {
    gap: 15px;
  }

  .service-steps__item {
    padding-left: 58px;
    min-height: 75px;
  }

  .service-steps__item::before {
    top: 4px;
    left: 4px;
    width: 40px;
    height: 40px;
  }

  .service-steps__item:not(.service-steps__item:last-child) {
    padding-bottom: 13px;
  }

  .service-steps__item:not(.service-steps__item:last-child)::after {
    left: 24px;
  }

  .service-steps__arrows {
    display: none;
  }

  .service-steps__bullet {
    width: 3px;
    height: 3px;
  }

  .service-steps__bullet--active {
    width: 20px;
  }

  .service-steps .text h5 {
    margin-bottom: 4px;
    font-size: 0.875rem;
    line-height: 128.5714285714%;
  }

  .service-steps .text p {
    margin: 4px 0;
    font-size: 0.8125rem;
    line-height: 146.1538461538%;
  }

  .service-steps .text ul li {
    margin-bottom: 4px;
    padding-left: 27px;
    font-size: 0.8125rem;
    line-height: 146.1538461538%;
  }

  .service-steps .text ul li::before {
    top: 6px;
  }
}

@media (max-width: 479px) {
  .service-steps__button {
    width: 100%;
  }
}
@supports (appearance:none){

}

 @media (min-width: 2100px){

@supports (appearance:none){

}

}

 @media (max-width: 1439px){

@supports (appearance:none){

}

}

 @media (max-width: 833px){

@supports (appearance:none){

}

}

 @media (max-width: 479px){

@supports (appearance:none){

}

}
