nav {
    background-color: white;
    height: 135px;
    line-height: 135px;
}
html {
    font-family: "Lato", sans-serif !important;
    font-weight: 400 !important;
}
body {
    /*background-color: #BCBF00;*/
    /*background-color: #AEBC21;*/
}
.dropdown-content {
    background-color: #fff;
    margin: 0;
    display: none;
    min-width: 100px;
    overflow-y: auto;
    opacity: 0;
    position: absolute;
    left: 0;
    top: -135px;
    z-index: 9999;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
}
.dropdown-content li > a, .dropdown-content li > span {
    font-size: 1.2rem;
    color: black;
    display: block;
    line-height: 22px;
    padding: 14px 16px;
}
nav ul a {
    -webkit-transition: background-color .3s;
    transition: background-color .3s;
    font-size: 1.2rem;
    color: #fff;
    display: block;
    padding: 0 15px;
    cursor: pointer;
}
nav ul li.active {
    background-color: #AEBC21;

}
.dropdown-content li.active {
   background-color: #AEBC21;

}