/* = Sticky Header 
=============================================================================================== */
.header--fixed {
    top: 0;
    left: 0;
    right: 0;
    z-index: 9;
    position: absolute;
}
.headroom-sticky-header.header--fixed {
    position: fixed;
}
.admin-bar .header--fixed {
    top: 32px;
    @media screen and (max-width: 782px) {
        top: 46px;  
    }
}
.admin-bar.mn-top {
    .header--fixed {
        @media screen and (max-width: 600px) {
            top: 0; 
        }
    }
}
.headroom {
    will-change: transform;
    transition: transform .25s ease-in-out;
}

.headroom--pinned {
    transform: translateY(0);
    box-shadow: rgba(27, 31, 35, 0.04) 0px 1px 0px, rgba(255, 255, 255, 0.25) 0px 1px 0px inset;
}
.headroom--pinned.headroom--top {
    box-shadow: none;
}
.headroom--unpinned {
    transform: translateY(-100%)
}
.header-height-fixed {
    width: 100%;
    height: 80px;
    display: inline-block;
    @media screen and (max-width: 1024px) {
        height: 75px;
    }
}
.header-height-fixed.header-style-2 {
    @media screen and (min-width: 1025px) {
        height: 140px;
    }
}