.menu {
    float: right;
    
    z-index: 2000 !important;
}

.menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu>ul>li {
    font-family: Roboto, sans-serif;
    font-weight: 500;
    float: left;
    padding: 10px 20px;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    list-style: none;
}

.menu>ul>li>a {
    font-size: 18px;
    line-height: 20px;
    text-decoration: none;
    list-style: none;
    color: #000;
    
}

.menu>ul>li>a:visited {
    text-decoration: none;
    color: #000;
}

.menu>ul>li:hover {
    color: rgb(120, 120, 120);
}
.menu>ul>li>a:hover {
    color: rgb(253,79,0);
}

.menu>ul>li>ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.menu>ul>li:hover>ul {
    display: block;
}

.menu>ul>li>ul>li {
    padding: 10px 20px;
}

.menu>ul>li>ul>li:hover {
    background: #f5f5f5;
}

.menu>ul>li>ul>li>a {
    font-size: 16px;
    line-height: 20px;
    color: #000;
    text-decoration: none;
    list-style: none;
}

.menu>ul>li>ul>li>a:visited {
    text-decoration: none;
    color: #000;
}

.menu>ul>li>ul>li>a:hover {
    color: rgb(120, 120, 120);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    float: right;
    margin: 10px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #000;
    margin: 5px 0;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .menu {
        display: none;
        width: 100%;
        position: absolute;
        top: 100px;
        left: 0;
        background: #fff;
        padding: 20px;
    }

    .menu.active {
        display: block;
    }

    .menu>ul>li {
        float: none;
        width: 100%;
    }

    .menu>ul>li>ul {
        position: static;
        box-shadow: none;
        width: 100%;
    }

    .menu>ul>li:hover>ul {
        display: none;
    }

    .menu>ul>li.active>ul {
        display: block;
    }
}