Skip to content document.addEventListener('DOMContentLoaded', function() {
document.querySelectorAll('.elementor-invisible').forEach(function(el) {
el.addEventListener('animationend', function() {
var currentScroll = window.scrollY;
setTimeout(function() {
window.scrollTo(0, currentScroll);
}, 50);
});
});
});