Skip to content Skip to footer
Go to Top
function toggleBox(box) { document.querySelectorAll('.super-menu-box').forEach(function (item) { if (item !== box) item.classList.remove('active'); }); box.classList.toggle('active'); }