Hi there,
It’s due to this custom CSS,
.x-container.main:before, .x-section {
background: transparent!important;
}
Please change it into this
.x-container.main:before {
background: transparent!important;
}
Parallax is normally disabled on mobile, but you may add this as well.
@media (max-width: 979px) {
.x-section.bg-image.parallax, .x-section.bg-pattern.parallax {
background-attachment: initial !important;
background-position: top center !important;
background-size: cover !important;
}
}
Hope this helps.