.w3-container .w3-button {
    color: #d0d3d4;
}

.w3-container .w3-button:hover {
    background: rgba(0, 0, 0, 0.5) !important;
    color: #95a5a6 !important;
}

.w3-container .menu-over:hover {
    border-bottom: 5px solid #f39c12;
}

.bg-item {
    background: rgba(0, 0, 0, 0.5) !important;
    color: #95a5a6;
}

.w3-dropdown-content .w3-bar-item {
    padding: 10px 20px;
    transition: 0.3s all;
}

.w3-dropdown-content .w3-bar-item:hover {
    border-left: 5px solid #f39c12;
    background-color: rgba(108, 105, 105, 0.5) !important;
    padding-left: 20px;
}

/* ================= */

.w3-dropdown-content {
    animation: growDown 300ms ease-in-out forwards;
    transform-origin: top center;
}

@keyframes growDown {
    0% {
        transform: scaleY(0)
    }

    80% {
        transform: scaleY(1.1)
    }

    100% {
        transform: scaleY(1)
    }
}

.w3-container .menu-over{
    border-bottom: 5px solid rgba(0, 0, 0, 0.0);
}
