/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 26 2026 | 10:47:38 */
/* Add your CSS code here.

For example:
.example {
    color: red;
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */ 

.mn_header_area {
    transition: all 0.4s ease;
    z-index: 999;
    transform: translateY(0);
}
 
.mn_header_area.sticky {
    position: fixed;
    top: 0;
    left: 0;
	transform: translateY(0);
    animation: slideDownsd 0.4s ease;
}

@keyframes slideDownsd {
    from {
        transform: translateY(-100%);
        opacity: 0.7;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}