@media (max-width: 48em) {
    /** ==================== Responsive Menu ====================== **/
    .responsive-menu {
        position: fixed;
        top: 0;
        display: flex;
        justify-content: left;
        align-items: center;
        height: 90px;
        width: 100%;
        z-index: 888;
        background-color: var(--light-bg);
        border-bottom: 2px solid black;
    }

    .responsive-menu:hover{
        cursor: pointer;
    }

    .responsive-menu .hamburger{
        display: block;
        height: 3px;
        width: 20px;
        margin-left: 1em;
        background-color: black;
    }

    .responsive-menu .hamburger::before {
        position: absolute;
        display: block;
        content: " ";
        height: 3px;
        width: 20px;
        margin-top: -10px;
        background-color: black;
    }

    .responsive-menu .hamburger::after {
        position: absolute;
        display: block;
        content: " ";
        height: 3px;
        width: 20px;
        margin-top: 10px;
        background-color: black;
    }

    /** ==================== Responsive Header ====================== **/
    header {
        position: fixed;
        top:0;
        left: 20%;
        width: 60%;
        height: 90px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        z-index: 999;
    }

    header img{
        width: 200px;
    }

    header a span{
        font-size: 16px;
    }

    /** ==================== Responsive Nav ====================== **/
    .nav-list{
        display: none;
    }

    .responsive-nav-list{
        position: fixed;
        display: block;
        top: 90px;
        left: 0;
        width: 100%;
        list-style: none;
        background-color: var(--dark-bg);
        padding-inline-start: 1em;
        margin: 0;
        z-index: 999;
    }

    .nav-item{
        display: block;
        text-align: left;
        position: relative;
        line-height: 2em;
        border-bottom: 1px solid #e7e7e7;
        margin-top: .25em;
        margin-bottom: .25em;
        padding: .25em;
    }

    .nav-item span{
        font-weight: 540;
        font-size: 1.35rem;
        font-style: normal;
        letter-spacing: 1px;
        color: #e7e7e7;
    }

    .nav-item span:hover{
        color: #e8a847;
        cursor: pointer;
    }

    .nav-item-link{
        font-weight: 540;
        font-size: 1.35rem;
        font-style: normal;
        letter-spacing: 1px;
        color: #e7e7e7;
        text-decoration: none;
    }

    .nav-item-link:hover {
        color: var(--primary);
    }

    /** ==================== Responsive Nav Dropdowns ====================== **/
    .sub-nav-list{
        width: 90%;
        background-color: var(--cshade3);
        padding-inline-start: 1rem;
        list-style: none;
        padding-top: .25em;
        padding-bottom: 1em;
        margin-bottom: .5em;
        border-radius: 5px;
    }

    .sub-nav-item{
        display: block;
        width: 100%;
        padding: .25em;
    }

    .sub-nav-item-link{
        display: block;
        width: 100%;
        height: 100%;
        padding-top: .25em;
        padding-bottom: .25em;
        text-align:left;
        text-decoration: none;
        font-style: normal;
        font-size: 1.25em;
        color: #e7e7e7;
    }

    .sub-nav-item-link:hover {
        background-color: var(--cshade6);
        color: var(--primary);
    }
}