/* media.css */
@media screen and (max-width: 845px) {
    .headerBig {
        display: none !important;
    }
    .headerSmall{
        display: block !important;
    }
    .mobile-screen-button-row{
        display: block;
    }
}
@media screen and (min-width: 844px) {
    .headerBig {
        display: block !important;
    }
    .headerSmall{
        display: none !important;
    }
    .mobile-screen-button-row{
        display: none;
    }
    
}