.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: 200px;
    top: 50%;
    background: white;
    min-width: 100px;
}
.nav-item:hover>ul:hover ul li a {
    white-space:initial;
}

@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;
    }
}