.ast-theme-transparent-header #masthead.sticky_nav,
.site-header.sticky_nav {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    backdrop-filter: blur(8px);
    box-shadow: 0px  2px 10px rgba(0, 0, 0, 0.2) !important;
    z-index: 9999;
    transform: translateY(-100%);
    animation: slide_down 0.4s ease-out forwards;
}


.ast-theme-transparent-header #masthead.sticky_nav {
    background-color: rgba(0, 36, 85 , .8) ;
}

.site-header.sticky_nav {

    background-color: rgba(255, 255, 255, 0.8) ;

}

@keyframes slide_down {
    to {
        transform: translateY(0);
    }
}

@media (max-width: 921px) {
    .ast-header-break-point .ast-primary-header-bar {
        background: transparent;
    }
}