jumbotron photos not displaying properly on mobile and ipads

The jumbotron images are not displayed correctly on the iphones and ipads. They do not scroll over the image. Instead it is a blurry zoomed in stationary image. The first image is what it should look like on the phone and the second is what is actually displaying. I have checked on serveral devices.
Could I please get some information on how to fix this glitch?

Hi @danielwoflbuilders,

Use this css code to solve:

@media only screen and (max-width: 1024px) {
#header {
background-attachment: initial !important;
}
}

thanks,

Cristian