.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-video-wrapper {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.hero-video-wrapper iframe {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 177.77vh;
  height: 56.25vw;
  min-width: 100%;
  min-height: 100%;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .hero-section {
    min-height: 60vh;
    background: url('/static/img/ui/og-default.jpg') center/cover no-repeat;
  }
  .hero-video-wrapper {
    display: none;
  }
}
