*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.navbar{
    background-color:  white;
    /* color: #605e5e; */
    color: #bc9d5b;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-bottom: 1px solid #605e5e;
}


.page-logo {
    padding: 0px 15px;
}

.page-logo img{
    height: 125px;
}

.nav-list{
    list-style-type: none;
}


.nav-list > .list-item{
    display: inline-block;
    padding: 20px 15px;
}

.navbar a{
    font-family: 'Rubik', sans-serif;
    font-size: 1.3em;
    /* color: #605e5e; */
    color: #bc9d5b;
    text-decoration: none;
    font-weight: 500;
}

.nav-list a:hover{
    filter: brightness(60%);
    font-weight: 500;
}

.menu{
    display: none;
    font-size: 2em;
    color: black;
}

@media all and (max-width: 980px){
    .navbar{
        flex-direction: column;
    }
    
    .menu{
        display: block;
        position: absolute;
        right: 40px;
        top: 25px;
        cursor: pointer;
    }

    .nav-list > .list-item{
        display: block;
        padding: 10px;
        /* border-bottom: 1px solid  #a0a0a0; */
        width: 100%;
  
    }

    .nav-list{
        border-top: 2px solid #a0a0a0;
        list-style-type: none;
        width: 75%;
        margin: 0px 250px;
        text-align: center;
        padding-top: 10px;
        padding-bottom: 10px;
        display: none;
    }

    .page-logo{
        padding: 2px;
        width: 100%;
    }

    .page-logo img {
        height: 80px;
        margin-left: 10px;
        margin-top: 0px;
    }

    .active {
        display: block;
    }

}