/* Put your custom CSS here */

/* Show/hide Menu/Hamburger  */
@media (min-width: 799px) {

    .show-798 {
        display: none;
    }

}

@media (max-width: 798px) {
    .show-798 {
        display: block !important;
    }

    .hide-798 {
        display: none !important
    }
}
