/**handles:custom-styles**/
section.hero-video {
    position: relative;
    overflow: hidden;
  }
    @media (max-width: 1200px) {
      section.hero-video {
        height: 0;
        padding: 0 0 56.25% 0;
      }
    }
  section.hero-video .container {
    position: relative;
    z-index: 5;
  }
  section.hero-video h2 {
    margin: 30px;
    text-shadow: 2px 2px 7px rgb(0 0 0 / 25%)
  }
  section.hero-video .video-wrapper {
    width: 100vw;
    height: 100vh;
  }
  section.hero-video iframe {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%);
  }
    @media (min-aspect-ratio: 16/9) {
      section.hero-video .video-wrapper iframe {
        height: 56.25vw;
      }
    }
    @media (max-aspect-ratio: 16/9) {
      section.hero-video .video-wrapper iframe {
        width: 177.78vh;
      }
    }