/* Hero background with animated image slider */
.section_hero {
  position: relative;
  overflow: hidden;
}

.section_hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(15, 15, 18, 0.65); /* Updated overlay opacity to 25% */
  z-index: 1;
}

.hero-background-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-background-slideshow img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-background-slideshow img.active {
  opacity: 1;
}

/* Make sure all hero content is above the background images */
.section_hero .padding-global,
.section_hero .container-large,
.section_hero .hero_container {
  position: relative;
  z-index: 2;
}
