<!-- Hide and Show Mobile Footer -->
<script>
var prevScrollpos = window.pageYOffset;
window.onscroll = function() {
var currentScrollPos = window.pageYOffset;
if (prevScrollpos > currentScrollPos) {
document.getElementById("footer-mobile").style.bottom = "0";
} else {
document.getElementById("footer-mobile").style.bottom = "-80px"; /* adjust this value to the height of your header */
}
prevScrollpos = currentScrollPos;
}
</script>
<style>
/* Show Hide Sticky Header Speed Control */
#footer-mobile {
transition: all 0.4s ease!important;
}
</style>