Hey, I had this issue too then replace code in footer with this and it works again
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/scrollax@1.0.0/scrollax.min.js"></script>
<script>
$('.has-background').attr('data-scrollax-parent', 'true');
$('.has-background .section-background').attr('data-scrollax', 'properties: { translateY: "30%" }');
$.Scrollax();
</script>
<style>
.has-background {overflow: hidden;}
</style>