.video-hero-banner-wrapper {
  width: 100%;
  margin: 0 auto;
}

.video-hero-banner-wrapper.full-width {
  max-width: 100%;
}

.video-hero-banner-container {
  width: 100%;
  height: var(--height-mobile, 500px);
  position: relative;
  overflow: hidden;
}

@media (width >= 1000px) {
  .video-hero-banner-container {
    height: var(--height-desktop, 700px);
  }
}

.video-hero-banner-container.video-playing {
  cursor: pointer;
}

.video-hero-banner-container:has(.video-hero-banner-youtube-video) {
  aspect-ratio: 16 / 9;
  height: auto;
}

.video-hero-banner-overlay {
  background-color: var(--overlay-color, #000);
  opacity: var(--overlay-opacity, 0);
  z-index: 2;
  pointer-events: none;
  transition: opacity .3s ease-in-out;
  position: absolute;
  inset: 0;
}

.video-hero-banner-video-container {
  z-index: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.video-hero-banner-poster {
  z-index: 2;
  width: 100%;
  height: 100%;
  transition: opacity .3s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
}

.video-hero-banner-poster img {
  object-fit: cover;
  object-position: var(--focal-point-x-mobile, 50%) var(--focal-point-y-mobile, 50%);
  width: 100%;
  height: 100%;
  display: block;
}

@media (width >= 600px) {
  .video-hero-banner-poster img {
    object-position: var(--focal-point-x-tablet, var(--focal-point-x-mobile, 50%)) var(--focal-point-y-tablet, var(--focal-point-y-mobile, 50%));
  }
}

@media (width >= 1400px) {
  .video-hero-banner-poster img {
    object-position: var(--focal-point-x-desktop, var(--focal-point-x-tablet, var(--focal-point-x-mobile, 50%))) var(--focal-point-y-desktop, var(--focal-point-y-tablet, var(--focal-point-y-mobile, 50%)));
  }
}

.video-playing .video-hero-banner-poster {
  opacity: 0;
  pointer-events: none;
}

.video-hero-banner-player {
  z-index: 0;
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

.video-hero-banner-player .vp-center, .video-hero-banner-player .vp-controls, .video-hero-banner-player .vp-controls-wrapper, .video-hero-banner-player .vp-player-ui-overlays, .video-hero-banner-player .vp-sidedock, .video-hero-banner-player .vp-captions-wrapper, .video-hero-banner-player .vp-overlay, .video-hero-banner-player .vp-outro, .video-hero-banner-player .vp-outro-content, .video-hero-banner-player .vp-outro-wrapper, .video-hero-banner-player .vp-share-wrapper, .video-hero-banner-player [class*="PlayButton_module"], .video-hero-banner-player [class*="playButtonWrapper"], .video-hero-banner-player [class*="center__"], .video-hero-banner-player [class*="playButton"], .video-hero-banner-player [class*="Outro"], .video-hero-banner-player [class*="outro"], .video-hero-banner-player [class*="EndScreen"], .video-hero-banner-player [class*="endscreen"], .video-hero-banner-player [class*="Share"], .video-hero-banner-player [class*="overlay"], .video-hero-banner-player button[aria-label*="Play"], .video-hero-banner-player button[aria-label*="play"], .video-hero-banner-player button[aria-label*="Watch"], .video-hero-banner-player button[aria-label*="Share"], .video-hero-banner-player [data-play-button], .video-hero-banner-player [data-overlay], .video-hero-banner-player [data-outro] {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  display: none !important;
}

.video-hero-banner-youtube-video {
  z-index: 1;
  pointer-events: auto;
  border: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.video-hero-banner-html5-video {
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.video-hero-banner-html5-video:focus-visible {
  outline-offset: -8px;
  outline: 4px solid #fff !important;
  box-shadow: inset 0 0 0 8px #00000080 !important;
}

.video-hero-banner-html5-video:focus:not(:focus-visible) {
  outline: none !important;
}

.video-hero-banner-html5-video::-webkit-media-controls {
  display: none !important;
}

.video-started .video-hero-banner-html5-video {
  pointer-events: auto !important;
}

@media (width >= 1000px) {
  .video-started .video-hero-banner-html5-video::-webkit-media-controls {
    opacity: 0;
    transition: opacity .3s ease-in-out;
    display: flex !important;
  }

  .video-started .video-hero-banner-html5-video:hover::-webkit-media-controls {
    opacity: 1;
  }

  .video-started .video-hero-banner-html5-video:focus::-webkit-media-controls {
    opacity: 1;
  }

  .video-started .video-hero-banner-html5-video:focus-within::-webkit-media-controls {
    opacity: 1;
  }
}

@media (hover: none) {
  .video-started .video-hero-banner-html5-video::-webkit-media-controls {
    opacity: 1;
    display: flex !important;
  }
}

.video-hero-banner-click-overlay {
  z-index: 3;
  cursor: pointer;
  pointer-events: none;
  background: none;
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
}

.video-hero-banner-click-overlay:focus-visible {
  outline-offset: -8px;
  outline: 4px solid #fff !important;
  box-shadow: inset 0 0 0 8px #00000080 !important;
}

.video-hero-banner-click-overlay:focus:not(:focus-visible) {
  box-shadow: none !important;
  outline: none !important;
}

.video-playing .video-hero-banner-click-overlay {
  pointer-events: auto;
  display: block !important;
}

.video-hero-banner-video-container:has(.video-hero-banner-html5-video) .video-hero-banner-click-overlay {
  pointer-events: none !important;
  display: none !important;
}

.video-hero-banner-video-container:has(.video-hero-banner-youtube-video) .video-hero-banner-click-overlay {
  pointer-events: none !important;
  display: none !important;
}

.video-hero-banner-play-btn {
  z-index: 10;
  cursor: pointer;
  color: #fff;
  background: none;
  border: none;
  padding: 0;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: auto !important;
}

.position-mobile-middle .video-hero-banner-play-btn {
  top: auto;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
}

@media (width >= 1000px) {
  .position-mobile-middle .video-hero-banner-play-btn {
    top: 50%;
    bottom: auto;
    transform: translate(-50%, -50%);
  }

  .position-desktop-center .video-hero-banner-play-btn {
    top: auto;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
  }
}

.video-hero-banner-play-btn:before {
  content: "";
  opacity: .8;
  pointer-events: none;
  background: radial-gradient(circle, #fff0 0% 35%, #fff9 50%, #fff6 70%, #fff0 100%);
  border-radius: 50%;
  width: 140%;
  height: 140%;
  animation: 2s ease-in-out infinite alternate ping;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (width >= 1000px) {
  .video-hero-banner-play-btn:before {
    width: 150%;
    height: 150%;
  }
}

.video-hero-banner-play-btn:focus-visible {
  outline-offset: 6px;
  outline: 4px solid #fff !important;
  box-shadow: 0 0 0 10px #00000080, 0 0 30px #fff9 !important;
}

.video-hero-banner-play-btn:focus:not(:focus-visible) {
  box-shadow: none !important;
  outline: none !important;
}

.video-hero-banner-play-btn svg {
  z-index: 1;
  filter: drop-shadow(0 4px 12px #0006);
  width: 3rem;
  height: 3rem;
  display: block;
  position: relative;
}

@media (width >= 1000px) {
  .video-hero-banner-play-btn svg {
    width: 5rem;
    height: 5rem;
  }
}

.video-playing .video-hero-banner-play-btn, .video-started .video-hero-banner-play-btn {
  display: none;
}

.video-hero-banner-pause-btn {
  z-index: 4;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  transition: transform .2s ease-in-out;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}

@media (width >= 1000px) {
  .video-hero-banner-pause-btn {
    top: 2rem;
    right: 2rem;
  }
}

.video-hero-banner-pause-btn:hover {
  transform: scale(1.1);
}

.video-hero-banner-pause-btn:focus {
  outline-offset: 4px;
  outline: 2px solid #fff;
}

.video-hero-banner-pause-btn:active {
  transform: scale(.95);
}

.video-hero-banner-pause-btn svg {
  filter: drop-shadow(0 2px 8px #0000004d);
}

.video-hero-banner-content {
  z-index: 3;
  pointer-events: none;
  transition: opacity .3s ease-in-out;
  display: flex;
  position: absolute;
  inset: 0;
}

@media (width >= 1000px) {
  .video-hero-banner-content.position-desktop-topLeft {
    padding: 2.625rem 0 0 3rem;
  }

  .video-hero-banner-content.position-desktop-topCenter {
    padding: 2.625rem 3rem 0;
  }

  .video-hero-banner-content.position-desktop-topRight {
    padding: 2.625rem 3rem 0 0;
  }

  .video-hero-banner-content.position-desktop-center {
    padding: 3rem;
  }

  .video-hero-banner-content.position-desktop-bottomLeft {
    padding: 0 0 2.625rem 3rem;
  }

  .video-hero-banner-content.position-desktop-bottomCenter {
    padding: 0 3rem 2.625rem;
  }

  .video-hero-banner-content.position-desktop-bottomRight {
    padding: 0 3rem 2.625rem 0;
  }
}

.video-hero-banner-text-container {
  opacity: 1;
  padding: var(--text-bg-padding, 2rem);
  pointer-events: auto;
  max-width: 100%;
  position: relative;
}

.video-hero-banner-text-container:before {
  content: "";
  background-color: var(--text-bg-color, transparent);
  opacity: var(--text-bg-opacity, 0);
  z-index: -1;
  border-radius: .5rem;
  position: absolute;
  inset: 0;
}

@media (width >= 1000px) {
  .video-hero-banner-text-container {
    max-width: var(--text-bg-max-width, 780px);
  }
}

.video-hero-banner-subheader {
  font-weight: var(--skin-font-weight-bold);
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--skin-main-text-color-1);
  font-size: calc(var(--subheader-font-size-mobile, 14) * 1px);
}

@media (width >= 1000px) {
  .video-hero-banner-subheader {
    font-size: calc(var(--subheader-font-size-desktop, 18) * 1px);
  }
}

.video-hero-banner-header {
  color: var(--skin-main-text-color-1);
  font-weight: 500;
  line-height: 1.2;
  font-size: calc(var(--header-font-size-mobile, 28) * 1px);
}

@media (width >= 1000px) {
  .video-hero-banner-header {
    font-size: calc(var(--header-font-size-desktop, 48) * 1px);
  }
}

.video-hero-banner-subtitle {
  color: var(--skin-main-text-color-1);
  line-height: 1.5;
  font-size: calc(var(--subtitle-font-size-mobile, 14) * 1px);
}

@media (width >= 1000px) {
  .video-hero-banner-subtitle {
    font-size: calc(var(--subtitle-font-size-desktop, 18) * 1px);
  }
}

.video-hero-banner-cta.btn-solid:hover, .video-hero-banner-cta.btn-outline:hover {
  color: var(--button-text-color, #fff);
}

.video-hero-banner-cta:focus-visible {
  outline-offset: 2px;
  z-index: 10;
  position: relative;
  outline: 2px solid var(--skin-primary-color-1, #000) !important;
}

.video-hero-banner-cta:focus:not(:focus-visible) {
  z-index: auto;
  box-shadow: none !important;
  outline: none !important;
}

.video-hero-banner-controls {
  z-index: 5;
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(to top, #000000b3 0%, #0000 100%);
  transition: opacity .3s ease-in-out;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.video-playing:hover .video-hero-banner-controls, .video-playing:focus-within .video-hero-banner-controls {
  opacity: 1;
  pointer-events: auto;
}

@media (hover: none) {
  .video-playing .video-hero-banner-controls {
    opacity: 1;
    pointer-events: auto;
  }
}

.video-controls-bar {
  pointer-events: auto;
}

.video-control-btn {
  color: #fff;
  cursor: pointer;
  background: none;
  border: none;
  flex-shrink: 0;
  transition: opacity .2s ease-in-out;
}

.video-control-btn:hover {
  opacity: .8;
}

.video-control-btn:focus {
  outline-offset: 2px;
  outline: 2px solid #fff;
}

.video-control-btn svg {
  width: 1.5rem;
  height: 1.5rem;
}

@media (width >= 1000px) {
  .video-control-btn svg {
    width: 1.75rem;
    height: 1.75rem;
  }
}

.video-control-time {
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
  font-size: .875rem;
}

@media (width >= 1000px) {
  .video-control-time {
    font-size: 1rem;
  }
}

.video-control-time .video-time-separator {
  margin: 0 .25rem;
}

.video-control-progress-container {
  min-width: 0;
}

.video-control-progress-bar {
  cursor: pointer;
  background: #ffffff4d;
  border-radius: .1875rem;
  width: 100%;
  height: .375rem;
  transition: height .2s ease-in-out;
  position: relative;
}

.video-control-progress-bar:hover {
  height: .5rem;
}

.video-control-progress-bar:hover .video-control-progress-handle {
  opacity: 1;
}

.video-control-progress-filled {
  background: #fff;
  border-radius: .1875rem;
  width: 0%;
  height: 100%;
  transition: width .1s linear;
  position: absolute;
  top: 0;
  left: 0;
}

.video-control-progress-handle {
  opacity: 0;
  pointer-events: none;
  background: #fff;
  border-radius: 50%;
  width: .875rem;
  height: .875rem;
  transition: opacity .2s ease-in-out;
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-50%, -50%);
}

.video-control-volume-slider {
  width: 4rem;
  display: none;
}

@media (width >= 1000px) {
  .video-control-volume-slider {
    display: block;
  }
}

.video-control-volume-bar {
  cursor: pointer;
  background: #ffffff4d;
  border-radius: .1875rem;
  width: 100%;
  height: .375rem;
  position: relative;
}

.video-control-volume-bar:hover {
  height: .5rem;
}

.video-control-volume-filled {
  background: #fff;
  border-radius: .1875rem;
  width: 100%;
  height: 100%;
  transition: width .1s linear;
  position: absolute;
  top: 0;
  left: 0;
}

.video-hero-banner-container[data-vimeo-initialized="false"] .video-hero-banner-player {
  background: #0000001a;
}

@keyframes ping {
  to {
    opacity: .4;
    transform: translate(-50%, -50%)scale(1.15);
  }
}


/*# sourceMappingURL=videoHeroBanner.css.map*/