    /** 
    ** Sticky Section
    **/      
    
    .element-ready-sticky.element-ready-sticky-container{
        position: fixed;
        animation: er_lite_sticky  1.2s;
        left: 0;
        top: 0;
        right: 0;
        background: #fff;
        z-index: 100;
        box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.04);
    }
    
    @-webkit-keyframes er_lite_sticky {
        0% {
            top: -200px;
        }
    
        100% {
            top: 0;
        }
    }
    
    @keyframes er_lite_sticky {
        0% {
            top: -200px;
        }
    
        100% {
            top: 0;
        }
    }