/* Hide main nav items in mobile menu on desktop */
@media screen and (min-width: 737px) {
    #menu .links li:nth-child(2), /* Chapters */
    #menu .links li:nth-child(3), /* History */
    #menu .links li:nth-child(4), /* Officials */
    #menu .links li:nth-child(5), /* Events */
    #menu .links li:nth-child(6), /* Forms */
    #menu .links li:nth-child(7)  /* Information */
    {
        display: none;
    }
}

/* Show all items on mobile/tablet */
@media screen and (max-width: 736px) {
    #menu .links li {
        display: block;
    }
}