.bv-hero {
  padding: 0 0 14px;
}

.bv-hero .container-fluid {
  background: #e8f2fb;
  overflow: hidden;
  border-top: 1px solid #d8e8f3;
  border-bottom: 1px solid #d8e8f3;
  box-shadow: var(--bv-shadow-sm);
}

.bv-hero-slider {
  position: relative;
  min-height: 460px;
}

.bv-hero-slider__viewport {
  position: relative;
  min-height: 460px;
}

.bv-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.45s ease, transform 0.45s ease, filter 0.45s ease;
  pointer-events: none;
  overflow: hidden;
}


.bv-hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bv-hero-image);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1.01);
}

.bv-hero-slide.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  filter: drop-shadow(0 8px 24px rgba(8, 79, 49, 0.08));
}

.bv-hero-slide__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(165, 200, 236, 0.26) 0%, rgba(165, 200, 236, 0.18) 38%, rgba(165, 200, 236, 0.08) 68%, rgba(165, 200, 236, 0) 100%);
}

.bv-hero-slide__content {
  position: relative;
  z-index: 2;
  max-width: 52%;
  padding: 72px 34px 52px 84px;
}

.bv-hero__title {
  margin: 0;
  font-size: 62px;
  line-height: 1.05;
  color: var(--bv-primary-dark);
  font-weight: 800;
  text-transform: uppercase;
}

.bv-hero__desc {
  margin-top: 18px;
  font-size: 22px;
  line-height: 1.35;
  color: #334155;
}

.bv-hero__actions {
  margin-top: 28px;
  align-items: center;
}

.bv-hero__actions .bv-btn {
  flex: 0 0 auto;
}

.bv-hero-slider__paging {
  display: flex;
  align-items: center;
  gap: 8px;
  position: absolute;
  left: 84px;
  bottom: 18px;
  z-index: 3;
}

.bv-hero-slider__paging button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(11, 107, 67, 0.3);
  transition: var(--bv-transition);
}

.bv-hero-slider__paging button.is-active {
  width: 28px;
  background: var(--bv-primary);
}

@media (max-width: 991.98px) {
  .bv-hero-slider,
  .bv-hero-slider__viewport,
  .bv-hero-slide {
    min-height: 400px;
  }

  .bv-hero-slide__overlay {
    background: linear-gradient(180deg, rgba(165, 200, 236, 0.28) 0%, rgba(165, 200, 236, 0.2) 42%, rgba(165, 200, 236, 0.08) 100%);
  }

  .bv-hero-slide__content {
    max-width: 100%;
    padding: 30px 22px 18px;
  }

  .bv-hero__title {
    font-size: 42px;
  }

  .bv-hero__desc {
    font-size: 19px;
  }

  .bv-hero-slider__paging {
    left: 22px;
    bottom: 12px;
  }
}