#parallax-bg.template-colorful {
  background-image:
    /* translucent white overlay on top */
    linear-gradient(rgba(255,255,255,0.75), rgba(255,255,255,0.75)),
    /* the image */
    url('/static/media/background_images/color1.jpg');

  background-size: cover, cover;
  background-repeat: no-repeat, no-repeat;
  background-position: center, bottom;

  /* REMOVE the blend mode – it neutralizes the overlay with white */
  /* background-blend-mode: soft-light; */

  opacity: 0.98;
  background-origin: content-box;
  padding-top: 80px;
}