.switch-nav{
    width: 100%;
    background-color: #fff;
    padding: 10px;
    margin: 10px 0;
    box-shadow: 0 1px 2px rgba(0,0,0,0.7);
}
.switch-nav .menu-list{
    width: 100%;
    padding: 0;
    list-style: none;
    display: flex;
}
.switch-nav .list-item{
    display: inline-block;
    width: 50%;
    margin: auto;
    text-align: center;
}
.switch-nav .list-item > a{
    text-decoration: none;
    color: rgb(195, 147, 42);
    width: 100%;
    display: inline-block;
    padding: 10px 0;
    transition: 0.4s;
}
.switch-nav .list-item > a:hover, .switch-nav .active > a{
    background-color: rgb(195, 147, 42);
    color: #fff;
}

@media (max-width:768px){
    .switch-nav .list-item a{
    font-size: small;
}
}