/* Slider wrapper */
.acf-slider {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
  min-height: 60rem;
}
.webgl-stage {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.webgl-container {
  display: none;
}
.acf-slide {
  position: absolute;
  inset: 0;
  pointer-events: none;
  div {
    height: 100%;
  }
}
.acf-slide-content {
  height: 100%;
  position: absolute;
  bottom: 6%;
  left: 6%;
  z-index: 4;
  color: #fff;
  max-width: 46%;
  display: none;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.6);
  pointer-events: auto;
}
.acf-slide-content.active {
  display: block;
}
.webgl-stage canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.acf-slide-titles__container {
  height: 100%;
}
@media (max-width: 900px) {
  .acf-slide-content {
    max-width: 86%;
    left: 4%;
    bottom: 4%;
  }
  .acf-slider {
    height: 95vh;
  }
}
