#parallax-header {
  overflow: hidden;
  width: 100%;
  height: 500px;
  max-height: 500px;
  position: relative;
}

#parallax-image {
  height: 200%;
  position: relative;
  top: -115%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

#parallax-header:before {
  background: rgba(0,0,0,0.3);
  content: none;
  left: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
}

#parallax-contenuto {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
}

#parallax-contenuto h1 {
  color: #FFFFFF;
  position: relative;
  font-weight: 600;
  padding: 0;
  text-transform: uppercase;
  text-align: center;
}

#parallax-contenuto h1:before {
  content: none;
}