/* ===== VIDEO BANNER ===== */
.video-banner {
  position: relative;
  height: 150px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* VIDEO */
.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -2;
}

/* OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: -1;
}

/* TEXT */
.video-banner h1 {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  text-align: center;
}

/* RESPONSIVE */
@media(max-width: 768px) {
  .video-banner {
    height: 100px;
  }

  .video-banner h1 {
    font-size: 25px;
  }
}