.bg-banner-general {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
  background: #FFF;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 600ms ease;
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}

.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-slide::before,
.hero-slide::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 15%;
  z-index: 2;
  pointer-events: none;
}

.hero-slide::before {
  left: 0;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0.6) 0%,
    rgba(255,255,255,0) 100%
  );
}

.hero-slide::after {
  right: 0;
  background: linear-gradient(
    to left,
    rgba(255,255,255,0.6) 0%,
    rgba(255,255,255,0) 100%
  );
}

.bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  z-index: 1;
  pointer-events: none;
}

.hero-caption {
  position: absolute;
  left: 136px;
  bottom: 120px;
  z-index: 999;
  color: #FFF;
  max-width: 710px;
}

.hero-title {
  margin: 0 0 10px;
  line-height: 1.08;
  font-size: 52px;
  font-weight: 400;
  letter-spacing: 0.2px;
}

.hero-subtitle {
  margin: 0 0 18px;
  font-size: 22px;
  font-weight: 500;
  opacity: .95;
}

.hero-title,
.hero-subtitle {
  text-shadow: 0 3px 6px rgba(0,0,0,0.6);
}

.hero-cta {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 12px;
  background: #0058B8;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 6px 16px rgba(26,115,232,.25);
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.hero-cta:hover {
  background: #014fa1;
}

.hero-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 18px;
  z-index: 3;
  display: flex;
  gap: 10px;
}

.hero-dots__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255,255,255,.75);
  box-shadow: 0 2px 6px rgba(124, 124, 124, 0.35);
  transition: transform 0.2s ease, background-color 0.3s ease;
}

.hero-dots__dot:hover {
  cursor: pointer;
  background: #fff;
  transform: scale(1.2);
}

.hero-dots__dot.is-active {
  background: #fff;
  box-shadow: 0 2px 8px rgba(53, 53, 53, 0.5);
  transform: scale(1.25);
}

@media (max-width: 1024px) {
  .hero-caption {
    left: 30px;
  }
}

@media (max-width: 768px) {
  .bg-overlay {
    background: rgba(77, 77, 77, 0.15);
  }

  .hero-caption {
    bottom: 40px;
    max-width: 90%;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-slide.is-active {
    z-index: 2;
  }
}

@media (max-width: 480px) {
  .hero-caption {
    bottom: 60px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 16px;
  }
}
