Privacy Preference Center

// Logo navbar bianco sulla home (function(){ if (!document.body.classList.contains("page-id-119027")) return; function fixLogo() { var light = document.querySelector(".logo-image.logo-light"); var dark = document.querySelector(".logo-image.logo-dark"); if (light) light.style.setProperty("display", "block", "important"); if (dark) dark.style.setProperty("display", "none", "important"); } document.addEventListener("DOMContentLoaded", fixLogo); window.addEventListener("load", fixLogo); setTimeout(fixLogo, 100); setTimeout(fixLogo, 500); })(); // Card riga 1 โ€” font uniformati a riga 2 (function(){ // row-unique-3-fix function fixCardFonts() { var row = document.getElementById('row-unique-3'); if (!row) return; var h4s = row.querySelectorAll('h3, h4'); var ps = row.querySelectorAll('p, span, a'); h4s.forEach(function(el) { el.style.setProperty('font-size', '28px', 'important'); }); ps.forEach(function(el) { el.style.setProperty('font-size', '18px', 'important'); }); } document.addEventListener('DOMContentLoaded', fixCardFonts); window.addEventListener('load', fixCardFonts); setTimeout(fixCardFonts, 200); })();