Skip to main content
document.addEventListener("DOMContentLoaded", function() {
document.querySelectorAll('.nectar-fancy-box').forEach(box => {
box.addEventListener('mouseenter', function() {
this.querySelector('.box-bg').style.backgroundImage = 'none';
});
});
});