evensenj Hi
It's due to this css property:
background-attachment: fixed;
Which is not fully supported in iOS Safari browser.
I changed it to:
@media (max-width: 991px) {
#t4-hero .bg-overlay-image {
background-attachment: scroll !important;
background-position: center center;
}
}
Kindly check.