.dropdown {}

.dropdown .dropbtn {
    /* font-size: 16px;   */
    border: none;
    outline: none;
    color: white;
    padding: 9px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #000000b8;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    color: #ffffff;
    z-index: 1;
}

div .dropdown-content a {
    float: none;
    color: #ffffff;
    padding: 12px 16px;
    background-color: #000000b8;
    text-decoration: none;
    display: block;
    text-align: left;
}

div .dropdown-content a:hover {
    background-color: #ff830f93;
    color: #ffffff;
}

.dropdown:hover .dropdown-content {
    display: block;
}

 @media only screen and (max-width: 992px) {
     .dropdown .dropbtn {
         color: #000000;
     }

 }