/*REVERSE STICKY BEHAVIOR FOR HEADER*/
/*GENERAL*/
header.pretransform {
    visibility: hidden !important;
    transform: translate(-50%, -100%) !important;
    top: 0 !important;
}

body:not(.home) header.pretransform:not(.following) {
    transition: 0s !important;
}

header.following {
    transition: transform 400ms ease-in-out, filter 400ms ease-in-out, visibility 400ms ease-in-out;
}

header.following {
    position: fixed !important;
    transform: translate(-50%, -100%) !important;
    left: 50% !important;  
    top: 0 !important;
}

header.pretransform.following {
    transform: translate(-50%, -100%) !important;  
}

header.reverseShow {
    transform: translate(-50%, 0) !important;
}



/*SPECIFIC*/
/*.headerNavCont.following {
    border-radius: 0 0 8px 8px !important;
    border-width: 0 3px 3px 3px !important;
    border-style: solid !important;
    border-color: var(--wp--preset--color--base-2) !important;
}

.headerNavCont.reverseShow {
    filter: drop-shadow(0 12px 8px #000B2A1A) !important;
}*/