.zoom-container {
  height: 250vh;
  position: relative;
}

.zoom-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.video-wrapper {
  width: 45vw;
  height: 55vh;
  overflow: hidden;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
  transform: translateZ(0);
}

.zoom-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zoom-text {
  position: absolute;
  font-family: 'Funel', 'Arial', sans-serif;
  font-size: 8.5vw;
  font-weight: 700;
  white-space: nowrap;
  pointer-events: none;
  will-change: transform, opacity;
  margin: 0;
}

.text-top-left {
  top: 12vh;
  left: 6vw;
  z-index: 3;
}

.text-middle {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
}

.text-bottom-right {
  bottom: 12vh;
  right: 6vw;
  z-index: 3;
}

@media (prefers-reduced-motion: reduce) {
  .zoom-text {
    will-change: auto;
  }
}