.benefits_slider__wrapper {
  display: flex;
  flex-direction: column;
  width: 1180px;
  overflow-x: hidden;
  opacity: 0;
  transition: .1s opacity ease;
}

.benefits_slider__section .section-header p {
  text-align: center;
}

.benefits_slider__list {
  display: flex;
  flex-direction: row;
  column-gap: 35px;
  padding-left: 0;
  margin-bottom: 30px;
  width: 2395px;
  transition: .2s transform ease;
}

.benefits_slider__item {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  transition: .2s background ease, .2s box-shadow ease;
  background-color: #fff;
  padding: 50px 40px;
  width: 359px;
}

.benefits_slider__item__img {
  max-width: 60px;
  width: 100%;
  margin-bottom: 35px;
}

.benefits_slider__item__img svg * {
  transition: .2s fill ease;
}

.benefits_slider__item__title {
  font-size: 19px !important;
  color: #273e5d;
  font-weight: bold;
  line-height: 1.474;
  text-align: left;
  transition: .2s color ease;
  margin-bottom: 15px;
}

.benefits_slider__item__text {
  font-size: 16px;
  color: #273e5d;
  line-height: 1.5;
  text-align: left;
  transition: .2s color ease;
}

.benefits_slider__item.active {
  background-color: rgb(52, 97, 201);
  box-shadow: 0px 6px 13px 0px rgba(52, 97, 201, 0.56);
}

.benefits_slider__item.active .benefits_slider__item__title {
  color: #fff;
}

.benefits_slider__item.active .benefits_slider__item__text {
  color: #fff;
}

.benefits_slider__item.active .benefits_slider__item__img svg * {
  fill: #fff;
}

.benefits_slider__dots {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0 22px;
  margin-top: 30px;
}

.benefits_slider__dot {
  border-radius: 50%;
  background-color: #acb8c3;
  width: 14px;
  height: 14px;
  transition: .2s background ease;
  cursor: pointer;
  position: relative;
}

.benefits_slider__dot::before {
  content: '';
  border: 2px solid #acb8c3;
  background-color: transparent;
  border-radius: 50%;
  position: absolute;
  width: 28px;
  height: 28px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  visibility: hidden;
  opacity: 0;
  transition: .2s visibility ease, .2s opacity ease;
}

.benefits_slider__dot:not(.active):hover {
  background-color: #929ca7;
}

.benefits_slider__dot.active {
  background-color: #3461c9;
}

.benefits_slider__dot.active::before {
  opacity: 1;
  visibility: visible;
}