#benefits::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 29px 61.5px 0 61.5px;
  border-color: var(--light-blue) transparent transparent transparent;
}

#benefits .title {
  font-size: 46px;
  line-height: 50px;
}

#benefits p {
  font-size: 18px;
  line-height: 26px;
}

#benefits .bs-step p {
  font-size: 16px;
  line-height: 24px;
  max-width: 349px;
}

#benefits .bs-step p.f-yellow {
  font-size: 20px;
  line-height: 23px;
}

@keyframes confetti-slow {
  0% {
    transform: translate3d(0, 0, 0) rotateX(0) rotateY(0);
  }
  100% {
    transform: translate3d(25px, 105vh, 0) rotateX(360deg) rotateY(180deg);
  }
}
@keyframes confetti-medium {
  0% {
    transform: translate3d(0, 0, 0) rotateX(0) rotateY(0);
  }
  100% {
    transform: translate3d(100px, 105vh, 0) rotateX(100deg) rotateY(360deg);
  }
}
@keyframes confetti-fast {
  0% {
    transform: translate3d(0, 0, 0) rotateX(0) rotateY(0);
  }
  100% {
    transform: translate3d(-50px, 105vh, 0) rotateX(10deg) rotateY(250deg);
  }
}

.confetti-container {
  perspective: 700px;
  position: absolute;
  overflow: hidden;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index:1;
  pointer-events:none;
}

.confetti {
  position: absolute;
  z-index: 1;
  top: -10px;
  border-radius: 0%;
}
.confetti--animation-slow {
  animation: confetti-slow 5.25s linear 1 forwards;
}
.confetti--animation-medium {
  animation: confetti-medium 4.75s linear 1 forwards;
}
.confetti--animation-fast {
  animation: confetti-fast 4.25s linear 1 forwards;
}

#benefits .swiper-button-prev {
  left: 0;
}

#benefits .swiper-button-next {
  right: 0;
  transform: scale(-1);
}

#benefits .swiper-button-next,
#benefits .swiper-button-prev {
  background-image: url("../../../images/swiper-arrow.png");
  background-size: 8px;
  background-position: center;
  background-repeat: no-repeat;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid var(--dark-gray);
  top: 50px;
}

#benefits .swiper-button-prev,
#benefits .swiper-button-next,
#benefits .swiper-button-next::after,
#benefits .swiper-button-prev::after {
  display: none;
  background-color: #fff;
}

@media screen and (max-width:991px) {
  #benefits .bs-step p br {
    display: none;
  }

  #benefits .bs-step p.bold {
    font-size: 1.25em;
  }
}

@media screen and (max-width:767px) {
  #benefits .bs-step p br {
    display: inline;
  }

  #benefits .swiper-button-prev,
  #benefits .swiper-button-next {
    display: flex;
  }

  #benefits .inner::after {
    content: '';
    position: absolute;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 72px;
    height: 2px;
    background-color: #fff;
  }
}

@media screen and (max-width:567px) {
  #benefits {
    padding: 38px 0 8px 0;
    margin-top: 30px;
  }

  #benefits .title {
    font-size: 32px;
    line-height: 1;
  }

  #benefits p {
    font-size: 16px;
    line-height: 26px;
  }

  .bs-steps {
    padding-top: 0;
    margin-top: 40px;
  }

  #benefits .bs-step p {
    font-size: 16px;
    line-height: 24px;
  }

  #benefits .bottom {
    margin-top: 43px;
  }
}