/*=====================================
SCROLL PROGRESS
=====================================*/

#scroll-progress{

    position:fixed;

    top:0;

    left:0;

    width:0;

    height:4px;

    background:linear-gradient(
        90deg,
        var(--secondary),
        #FFD65A
    );

    z-index:99999;

    transition:width .08s linear;

}
