    /* .dropbtn {
    background-color: transparent;
    color: white;
    padding: 1px;
    font-size: bold;
    border: none;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: transparent;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: grey;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color: transparent;
} */
    
    li {
        display: block;
        /* transition-duration: 0.5s; */
    }
    
    li:hover {
        cursor: pointer;
        color: grey
    }
    
    ul li ul {
        visibility: visible;
        opacity: 1;
        position: absolute;
        transition: all 0.5s ease;
        margin-top: 1rem;
        left: 0;
        display: none;
    }
    
    ul li:hover>ul,
    ul li ul:hover {
        visibility: visible;
        opacity: 1;
        display: block;
        background-color: rgb(77, 77, 77)
    }
    /* ul li ul li {
        clear: both;
        width: 100%;
    } */
    
    .dropdown {
        position: relative;
        display: inline-block;
        background-color: transparent;
    }
    
    .dropbtn {
        background-color: transparent;
        color: transparent;
        padding: 1px;
        font-size: bold;
        border: none;
    }
    @media(max-width: 990px) {
        ul li:hover>ul,
        ul li ul:hover {
            visibility: visible;
            opacity: 1;
            display: block;
            background-color: white
        }
    }
  