/* ========================================
Video Hero Unit
======================================== */
div.ccm-page .video-hero-unit {
  overflow: hidden;
  height: 550px;
  position: relative;
  background-position: 50% 50%;
  background-size: cover;
  display: flex;
  justify-content: center;
}
div.ccm-page .video-hero-unit-container {
  position: relative;
}
div.ccm-page .video-hero-unit video {
  display: block;
  height: 550px;
  object-fit: cover;
  width: fit-content;
  min-width: 100%;
}
div.ccm-page .video-hero-unit__overlay {
  width: 100vw;
  height: 550px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(48, 48, 48, 0.03);
}
div.ccm-page .video-hero-unit__content {
  position: absolute;
  top: 50%;
  z-index: 25;
  transform: translateY(-50%);
  width: 100%;
}
div.ccm-page .video-hero-unit__content h2 {
  color: #003316;
  font-size: 3.4em;
}
@media (max-width: 48em) {
  div.ccm-page .video-hero-unit__content h2 {
    font-size: 2.2em;
  }
}