.nav-item>ul {
    display: none;
    position: relative;
    float: left;
}

.nav-item:hover>ul {
    position: absolute;
    display: block;
    background: white;
}

.nav-item:hover>ul:hover ul {
    position: absolute;
    left: 100%;
    /* width: 170px; */
    top: 50%;
    background: white;
    min-width: 100px;
}

@media (max-width:991px) {
    .nav-item:hover>ul {
        display: inline-block;
        position: relative;
        left: 0;
        background-color: white;
    }
    .nav-item:hover>ul:hover ul {
        position: relative;
        left: 0px;
        width: 100%;
    }
    .nav-item:hover>ul:hover ul:hover ul {
        position: relative;
        left: 0px;
        width: 100%;
    }
    .fa-angle-right {
        display: none;
    }
}