@media(min-width: 992px){
    .fixed-header .header-top {
        position: fixed!important;
        top: 0;
        left: 0;
        right: 0;
        /* Puedes agregar estilos adicionales para el encabezado fijo, por ejemplo: */
        /* background-color: #fff; */
        /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
        /* z-index: 999; */
        z-index: 10;
    }
    
    .fixed-header .searchblock {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 9;
        transition: top 0.5s ease 0s; /* only transition top property */
    }
    
    .fixed-header.scrollup-header .searchblock {
        top: 57px;
        transition: top 0.5s ease 0s; /* only transition top property */
    }
}