/**
* Block Name: hero_video
*/

section.hero_video {
  position: relative;
  height: 81vh;
  min-height: 500px;
  overflow: hidden;
  border-bottom: 10px solid var(--Blau);
}

section.hero_video img.bg_static_cover {
  position: absolute;
  top: 0;
  z-index: 1;
  opacity: 1;
}

section.hero_video::before {
  content: " ";
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 3;
}

section.hero_video .container {
  position: relative;
  z-index: 4;
}

section.hero_video .embed-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  max-width: 100%;
  height: auto;
  z-index: 2;
}

section.hero_video .embed-container iframe,
section.hero_video .embed-container object,
section.hero_video .embed-container embed {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 56.25vw;
  left: 50%;
  min-height: 100%;
  min-width: 100%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  width: 177.77777778vh;
}
