/**
* Block Name: hero_video
*/

section.hero_video {
  position: relative;
  height: 80vh;
  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(255, 255, 255, 0.66);
  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::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.5);
  z-index: 0;
  width: 100%;
  height: 100%;
  top: 0;
}

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;
  filter: blur(5px);
}

section.hero_video .text h1 {
  font-size: 40px;
  margin-bottom: 0;
}

section.hero_video .type-it {
  min-height: 300px;
}

section.hero_video .text p {
  font-size: 28px;
  word-wrap: break-word;
  overflow-wrap: break-word;

  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}

section.hero_video .scroll-down {
  position: absolute;
  bottom: 0%;
  height: 60px;
  width: 60px;
  background-color: white;
  z-index: 4;
  -webkit-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  text-decoration: none;
}

section.hero_video .scroll-down::after {
  content: "\e5db";
  font-family: "Material Symbols Outlined";
  font-size: 28px;
}
@media (max-width: 992px) {
  section.hero_video .text h1 {
    font-size: 36px;
  }
}

@media (max-width: 600px) {
  section.hero_video .text p {
    font-size: 25px;
  }
}

@media (max-width: 400px) {
  section.hero_video .text p {
    font-size: 18px;
  }
}
