.page-wrapper .page-header.sticky.active {
position: fixed;
z-index: 999;
background: #fff;
width: 100%;
box-shadow: 0px -5px 11px rgba(0,0,0,0.5);
animation: scroll .3s ease-in-out;
}
@keyframes scroll {
from {
top: -100%;
}
to {
top: 0px;
}
}
