/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Jun 23 2026 | 13:19:27 */
/* =========================================
   HEADER + BOTTOM MENU
========================================= */

.site-header {

    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;

    transition: transform .35s ease;

}

.lower-menu {

    position: fixed !important;
    left: 0;
    bottom: 0;
    width: 100%;

    z-index: 999;

    transition: transform .35s ease;

}


/* =========================================
   HIDE / SHOW ANIMATION
========================================= */

.site-header.hide-header {

    transform: translateY(-100%);

}

.lower-menu.hide-lower {

    transform: translateY(100%);

}


/* =========================================
   PAGE SPACING
========================================= */

/* top header spacing */

body {

    padding-top: 0px;

}


/* bottom menu spacing on tablet + mobile */

@media (max-width: 1024px) {

    body {

        padding-bottom: 12vh;

    }

}