*{
    box-sizing: border-box;
    padding: 0;
    margin:0;
}
ul{
    padding: 0;
}
.navbar{
    display: flex;
    justify-content: center;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: black;
}
.nav-list{
    list-style-type: none;
    margin-top: 0px;
    margin-bottom: 0px;
    font-size: .8rem;
}
.nav-list .list-item{
    display: inline-block;
    padding: 0 20px;
    border-right: 1px solid #fff;
}
.nav-list .list-item a{
    color: #fff;
    text-decoration: none;
}
.list-item a:hover{
    text-decoration: underline;
}
.menu-toggle{
    display: none;
}
.menu-toggle .bar{
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background: #000;
}
/*Hover*/
.dropdown:hover .dropdown-menu {
/*Opens Drop Down on Hover */
display: block;
margin-top: 0; /* remove the gap so it doesn't close */
border-radius: 0;
background-color: #000;
opacity: 1;
font-size: .8rem;
}
.dropdown-menu li:hover{
    background-color: #FFF;
}
.dropdown-menu li a:hover{
    color: #000;
}
/*End of Hover*/
@media screen and (min-width: 770px){
}
@media screen and (max-width: 769px){
    .navbar{
        flex-direction: column;
    }
    .nav-list{
        display: none;
    }
    .menu-toggle{
        display: block;
        position: absolute;
        top: 160px;
        right: 20px;
    }
    .nav-list .list-item{
        display: block;
        border-right: none;
        border-top: 1px solid #fff;
        text-align: center;
        margin-right: 0px;
        margin-left: 0px;
        padding: 10px 0;
    }
    .active{
        display: block;
    }
    .primary-logo{
        display: block;
        margin-right: auto;
        margin-left: auto;
    }
    .dropdown-menu{
        background-color: #000;
    }
}