/*--------------------------------------------------------------
# Hero background video (Vimeo)
--------------------------------------------------------------*/
.hero .hero-video-container {
  overflow: hidden;
  background-color: #060606;
}

.hero .hero-video-iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-width: 177.78vh;
  min-height: 100%;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}

.hero .hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(6, 6, 6, 0.35) 0%,
    rgba(6, 6, 6, 0.5) 45%,
    rgba(6, 6, 6, 0.72) 100%
  );
}

.hero .hero-content h1,
.hero .hero-content p {
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

@media (max-width: 768px) {
  .hero .hero-video-iframe {
    width: 300vw;
    height: 168.75vw;
    min-width: 300vw;
    min-height: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero .hero-video-iframe {
    display: none;
  }
}
