.elementor-86414 .elementor-element.elementor-element-bc9ac0a{--display:flex;--min-height:200vh;--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:center;--align-items:center;overflow:visible;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}/* Start custom CSS for container, class: .elementor-element-bc9ac0a */.elementor-86414 .elementor-element.elementor-element-bc9ac0a {
    transition: background-color 0.3s ease;
}

.elementor-86414 .elementor-element.elementor-element-bc9ac0a.scrolled {
    background-color: #ffcc00; /* Change to your desired color */
}

window.addEventListener('scroll', function() {
    const element = document.querySelector('.elementor-86414 .elementor-element.elementor-element-bc9ac0a');
    if (window.scrollY > 50) { // Change 50 to the scroll position you want
        element.classList.add('scrolled');
    } else {
        element.classList.remove('scrolled');
    }
});/* End custom CSS */