/* Hero video section fix */
.hero-video video,
.hero-video {
  width: 100%;
  max-height: 600px;       /* limit total height */
  object-fit: cover;       /* scale proportionally */
  object-position: top;    /* anchor from top, no heads chopped */
  margin: 0 auto;
  display: block;
}

/* mobile adjustment */
@media (max-width: 768px) {
  .hero-video video,
  .hero-video {
    max-height: 400px;     /* shrink for mobile so it doesn’t swallow the screen */
  }
}
/* WPBakery row video background fix */
.vc_video-bg {
  object-fit: cover;
  object-position: top center !important;  /* anchor from top */
  height: 600px;                           /* desktop */
  width: 100%;
}

/* Mobile shrink */
@media (max-width: 768px) {
  .vc_video-bg {
    height: 400px;
  }
}