.video-hero {
  position: relative;
  padding: 20px;
  background-color: #211365;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* background-image specificed inline */
}

.video-hero-media video {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  height: 100%;
  width: 100%;
   z-index: 2;
}

.video-hero-content {
  position: relative;
  min-width: 200px;
  max-width: 630px;
  padding: 24px;
  margin: 0 auto;
  background-color: rgba(255 255 255 / 85%);
  z-index: 4;
  text-wrap: balance;
}

.video-hero-content-cta {
  display: flex;
  flex-flow: row wrap;
  gap: 16px;
}

@media (min-width: 768px) {
  .video-hero {
    padding: 72px 72px 72px 72px;
  }
}

@media (min-width: 990px) {
  .video-hero {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .video-hero-content {
    margin: 0;
    padding: 35px;
  }
}

@media (min-width: 1180px) {
  .video-hero {
    padding-left: calc(calc(100% - 1140px) / 2);
    padding-right: 0;
  }
