.parallax-block {
  position: fixed;
  top: -10px;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: -1;
  background-color: black;
  max-width: 100% !important;
  pointer-events: none;
  margin-top: 0px;
}
.parallax-block .parallax-overlay {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.parallax-block.scrolled .parallax-overlay {
  opacity: 0.5;
}
/*# sourceMappingURL=./parallax-background.css.map */