/* Change Logo Size On Small Screens */
@media(max-width: 575px) {
    #header .header-logo,
    #header .header-logo img {
        width: 200px !important;
        height: auto !important;
    }
}
/* Change Logo Size On Small Screens */
@media(min-width: 800px) {
    #header .header-logo,
    #header .header-logo img {
        width: 350px !important;
        height: auto !important;
    }
}

/* Reduce The Space Between Menu Items  */
@media(min-width: 992px) {
    #header .header-nav-main nav > ul > li > a {
        padding: 0px 15px !important;
    }
}