Press

Read what they say about us in the news!
Transform how you connect with your audience—schedule your free demo!
Get My Free Demo
/* === Mobile brands-carousel first-load recentering fix === */ (function(){ function recenterBrandsCarousel(){ if (window.innerWidth > 991) return; var t = document.querySelector(".brands-track"); var n = document.querySelector(".brands-nav-next"); var p = document.querySelector(".brands-nav-prev"); if (!t || !n || !p) return; if (t.dataset.blRecenterDone === "1") return; t.dataset.blRecenterDone = "1"; var prevTrans = t.style.transition; t.style.transition = "none"; n.click(); requestAnimationFrame(function(){ p.click(); requestAnimationFrame(function(){ t.style.transition = prevTrans; }); }); } function schedule(){ setTimeout(recenterBrandsCarousel, 300); if (document.fonts && document.fonts.ready){ document.fonts.ready.then(function(){ setTimeout(recenterBrandsCarousel, 300); }); } window.addEventListener("orientationchange", function(){ var t = document.querySelector(".brands-track"); if (t) t.dataset.blRecenterDone = "0"; setTimeout(recenterBrandsCarousel, 400); }); } if (document.readyState === "complete") schedule(); else window.addEventListener("load", schedule); })();