body .benefits-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0 0;
  background: #111419;
  color: #f4f6fb;
}

body .benefits-section__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

body .benefits-section__background-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body .benefits-section.alignfull {
  padding-left: 0;
  padding-right: 0;
}

body .benefits-section .container {
  position: relative;
  z-index: 2;
}

body .benefits-section__title {
  max-width: 640px;
  margin-bottom: 48px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

body .benefits-section__title .tag-line .tag {
    color: #fff;
}

body .benefits-section__title .title-text {
  margin: 20px 0;
  color: #ffffff;
  text-align: center;
}

body .benefits-section__inner {
  display: flex;
  align-items: stretch;
  gap: 80px;
}

body .benefits-section__slider {
  flex: 0 0 45%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: auto;
}

body .benefits-section__slides {
  position: relative;
  min-height: 220px;
}

body .benefits-section__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(24px);
  transition: opacity 1000ms ease, transform 800ms ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

body .benefits-section__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

body .benefits-section__slide-title {
  margin: 0 0 16px;
  color: #ffffff;
}

body .benefits-section__dots {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

body .benefits-section__dot {
  width: 10px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(129, 165, 255, 0.35);
  transition: transform 180ms ease, background-color 200ms ease;
  cursor: pointer;
}

body .benefits-section__dot.is-active,
body .benefits-section__dot:focus-visible {
  transform: scale(1.3);
  background: #81a5ff;
}

body .benefits-section__visual {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  z-index: 2;
  padding-bottom: 80px;
}

body .benefits-section__visual::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 720px;
  height: 760px;
  background: url("../../assets/images/bg-opacity-lottie.png") bottom right/contain no-repeat;
  z-index: -1;
  pointer-events: none;
}

@media (max-width: 1600px) {
  body .benefits-section__visual::before {
    right: -160px;
  }
}

@media (max-width: 1400px) {
  body .benefits-section__visual::before {
    right: -120px;
  }
}

@media (max-width: 1200px) {
  body .benefits-section__visual::before {
    right: -80px;
  }
}

body .benefits-section__lottie {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1.1;
}

body .benefits-section__lottie > div {
  width: 100% !important;
  height: 100% !important;
}

@media (max-width: 991px) {
  body .benefits-section__background {
    display: none;
  }
}

@media (max-width: 1199px) {
  body .benefits-section__inner {
    gap: 48px;
  }
}

@media (max-width: 991px) {
  body .benefits-section {
    padding: 64px 0 0;
  }

  body .benefits-section__inner {
    flex-direction: column;
    gap: 12px;
    padding-bottom: 64px;
  }

  body .benefits-section__visual {
    order: -1;
    min-height: 320px;
    padding-bottom: 0;
  }
  
  body .benefits-section__visual::before {
    display: none;
  }

  body .benefits-section__slider {
    flex: 1;
    max-width: none;
    margin: 0;
  }

  body .benefits-section__slides {
    min-height: 200px;
  }

  body .benefits-section__dots {
    display: flex;
  }
}

@media (max-width: 767px) {
  body .benefits-section {
    padding: 52px 0 0;
  }

  body .benefits-section__title {
    margin-bottom: 40px;
  }

  body .benefits-section__inner {
    gap: 12px;
    padding-bottom: 52px;
  }

  body .benefits-section__visual {
    min-height: 280px;
  }

  body .benefits-section__visual::before {
    display: none;
  }

  body .benefits-section__slide-title {
    font-size: 24px;
  }

  body .benefits-section__slide-text {
    font-size: 16px;
  }
}

