html{
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px;
    font-style: normal;
}
.nav-menu-item {
    align-content: center;
}

* {
    box-sizing: border-box;
}

a {
    color : inherit;
}

body{
    margin: 0px;
    padding: 0px;
}



.nav-wrapper-large{
    display: flex;
    flex-direction: row;
    justify-content: space-around;

}

/* Removed - we are now using the wagtail image tag to size the image more precisely */
/* .nav-image-large{
    height:150px;
    width: auto;
}*/

.nav-menu-item{
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: flex-end;
}

.nav-menu-item a {
    /* margin-block-end: 1em; */
    text-decoration: none;
    padding-bottom: 5px;
}

.nav-menu-item-header{
    cursor: pointer;
    font-size: 16px;

}

.nav-dropdown-items{
    position: absolute;
    /* top: 78px; */
    display:none;
    flex-direction: column;
}



.nav-dropdown-items>a{
    text-decoration: none;
    font-size: 1.2rem;
    padding: 5px 20px 5px 5px;
}



/* large screen functionality */

.nav-menu-item:hover .nav-dropdown-items{
    display: flex;
}



.nav-large-closeout-button{
    display: none;
}

.nav-wrapper-small{
    display: none;
}

@media screen and (max-width:775px){

    

    .nav-image-large{
        display: none;
    }

    .nav-logout{
        display: none;
    }

    .nav-wrapper-small{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    /* new top nav */

    .nav-large-closeout-button{
        display: block;
        cursor: pointer;
        align-self: center;
        margin: 0px;
        padding: 10px 10px 0px 0px;
        font-size: 3rem;
    }

    .nav-open-button{
        cursor: pointer;
        padding: 25px 0px 0px 20px;
        font-size: 1.2rem;
        min-width: 70px;

    }

    .nav-image-small{
        height: 75px;
        width: auto;
    }

    .nav-logout-small{
        justify-self: flex-start;
        text-decoration: none;
        padding: 25px 20px 0px 0px;
        font-size: 1.5rem;
        min-width: 70px;
    }

    /* new side nav */

    .nav-wrapper-large{
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: -300px;
        height: 100%;
        width: 200px;
        border-bottom: 0px;
        transition: all .5s ease;
        z-index: 2;

    }

    .nav-dropdown-items{
        left: 0px;
        top: 0px;
        height: 100%;
        width: 200px;
        text-align: center;
        justify-content: space-around;
        align-self: center;
    }

    .nav-menu-item-header{
        margin: 0px;
        align-self: center;
    }

    
}
