/* WPBakery Row Background Slideshow — bridge-child */

.has-bg-slideshow {
  position: relative;
}

/* Lift the row's normal children (Bridge .section_inner, WPB .wpb_column wrappers)
   above the slideshow without altering their layout. */
.has-bg-slideshow > :not(.wpb-bg-slideshow) {
  position: relative;
  z-index: 1;
}

.wpb-bg-slideshow {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.wpb-bg-slideshow__slides {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.wpb-bg-slideshow__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  transition: opacity var(--wpb-slideshow-fade, 1.5s) ease-in-out;
  will-change: opacity;
}

.wpb-bg-slideshow__slide.is-active {
  opacity: 1;
}

.wpb-bg-slideshow__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

@media (prefers-reduced-motion: reduce) {
  .wpb-bg-slideshow__slide {
    transition: none;
  }
}
