/* Rebuild the captured hero background as a fluid local slideshow. */
.elementor-element-2a60e41 > .elementor-background-slideshow {
  display: none !important;
}

.local-home-hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.local-home-hero-slideshow::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: linear-gradient(rgba(255, 255, 255, 0.41) 0%, rgb(48, 48, 48) 100%);
  mix-blend-mode: multiply;
}

.local-home-hero-slide {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1.05);
  transition: opacity 1500ms ease;
}

.local-home-hero-slide.is-active {
  opacity: 1;
  animation: local-home-hero-ken-burns 3500ms linear forwards;
}

.elementor-element-2a60e41 > .e-con-inner {
  position: relative;
  z-index: 3;
}

@keyframes local-home-hero-ken-burns {
  from { transform: scale(1.05); }
  to { transform: scale(1.3); }
}
