#hero-lightpass {

  opacity: 0.5;
  z-index: -10;
  mix-blend-mode: screen;
  position: fixed;
  left: 0px;
  top: 50%;
  transform: translate(0px, -50%);
  max-width: 100%;
  max-height: 100%;
  }

  @media screen and (max-width: 1200px) {
    #hero-lightpass {
      z-index: -10;
      mix-blend-mode: screen;
      position: fixed;
      left: 0px;
      transform: translate(0px, 0%);
      max-width: 100vw;
      max-height: 100vh;
      top: 0px;
  }
  }

  @media screen and (max-width: 900px) {
    #hero-lightpass {
   display: none;
  }
  }