ERROR 404

NOT FOUND


// You may have mis-typed the URL,
// Or the page has been removed,
// Actually, there is nothing to see here…

<< Go back to home page >>

document.addEventListener('scroll', function() { const header = document.querySelector('.real-international-menu'); if (window.scrollY > 50) { // Adjust the value if needed header.classList.add('sticky'); } else { header.classList.remove('sticky'); } });