/* Sticky Header with Transparent Background




body {
    padding-top: 80px;
}


*/
@media (max-width: 991px) {
    .header.sticky, .element_to_stick.sticky {
        position: fixed;
        background-color: #fff !important; 
    }
} 
.header, .element_to_stick {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: all 0.4s ease;
    background-color: transparent !important;
    box-shadow: none;
    border-bottom: none !important;
}
.header.sticky, .element_to_stick.sticky {
    background-color: rgba(255, 255, 255, 0.9) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}