Growth Decoded explores new ways to drive business growth through incredible customer experience (CX). Through conversations with today’s experts in digital marketing, each episode helps you conquer a different aspect of the customer experience.
Check out all previous Growth Decoded episodes below!
window.onscroll = () => {
const nav = document.querySelector('.elementor-element-f80a111');
const bg = document.querySelector('.elementor-element-da25aa4');
if(this.scrollY > 10) {
bg.classList.add('scroll');
nav.classList.add('scroll');
} else if(window.scrollY== 0){
bg.classList.remove('scroll');
nav.classList.remove('scroll');
}
};