/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Mar 06 2026 | 12:27:35 */
/* Smooth transition for mobile header */

 .ast-header-break-point .site-header,
 .ast-header-break-point .main-header-bar,
 .ast-header-break-point .ast-mobile-header-wrap 
{
    transition: transform 1.0s ease, opacity 1.0s ease;
}


.hide-header {
    transform: translateY(-100%) !important;
    opacity: 0 !important;
}

.show-header {
    transform: translateY(0) !important;
    opacity: 1 !important;
}
