.parallax {
  position: relative;
  background-attachment: fixed;
  background-position: center 0;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}

@media (max-width: 768px) {
  .parallax {
    background-attachment: scroll;
  }
}
