

/* MOBILE CSS - MI START */

/* size log on mobile */
.mobile-logo {
    max-height: 60px;
    width: auto;
}
/* hide mobile menu unless 768 or below */

@media screen and (min-width: 768px) {
    .mobile-nav {
        display: none !important;
    }

}



/* Hide normal menu below 768px width */
@media only screen and (max-width: 768px) {
    .site-header {
    display:none;
    }
}

/* Basic Reset for Mobile */
.mobile-nav .menu-list {
    display: none; /* Hidden by default */
    list-style: none;
    padding: 0;
    background: #b11e2d;
    color: white;    
    a {
        text-decoration: none;
    }
        a:link, a:visited {
            color: white;
        }

        a:hover {
            color: white;
            font-weight:bold;
        }
}

.mobile-nav.is-open .menu-list {
    display: block; /* Show when parent has .is-open class */
}

/* Submenu logic */
.submenu {
    display: none;
    padding-left: 20px;
    }

.has-submenu.is-expanded .submenu {
    display: block;
}

/* Hamburger Icon Styles NOTE: bottom 3 settings arte to push it right */
.menu-toggle {
    display: block;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 0px;
    right: 10px;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #333;
}
/* MOBILE CSS - MI END */


