0
404 SERVICE PAGE
The Page You Were Looking For Was Not Found!
RETURN TO HOMEPAGE
function revealOnScroll() { const lefts = document.querySelectorAll('.reveal-left'); const rights = document.querySelectorAll('.reveal-right'); const windowHeight = window.innerHeight; lefts.forEach(el => { const top = el.getBoundingClientRect().top; if (top < windowHeight - 100) { el.classList.add('visible-left'); } }); rights.forEach(el => { const top = el.getBoundingClientRect().top; if (top < windowHeight - 100) { el.classList.add('visible-right'); } }); } window.addEventListener('scroll', revealOnScroll); window.addEventListener('load', revealOnScroll);