.menu-item a:hover {
    text-decoration:none;
}
@media screen and (min-width: 992px) {
.submenu {
    opacity: 0;
    position: absolute;
    display: none;
    list-style: none;
    padding: 10px 12px;
    width: 100%;
    top: 100%;
}
.menu-item:hover .submenu {
    display: block;
    opacity: 1;
    position: absolute;
    z-index: 20;
    background: rgba(255,255,255,0.8);
    border-top: 4px solid #666666;
    padding: 0 8px;
    min-width: 210px;
    left: -15px;
}
.submenu .nav-item {
    margin: 0;
    display: block;
    border-bottom: 1px solid rgba(51,51,51,0.4);
    text-align: left;
}
.submenu .nav-item a:hover {
    background-color: rgba(51,51,51,0.3);
}
.submenu .nav-item:last-child {
    border-bottom: none;
}
.menu-item .submenu .nav-item a {
    width: auto !important;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 0;
    font-size: 12px;
    font-weight: 600 !important;
    font-style: normal;
    font-stretch: normal;
    letter-spacing: -0.2px;
    text-align: left;
    color: #000000;
    padding: 7px 7px;
    margin: 4px 0;
}
}
/*Inline menu css*/
.main-navigation ul li.focus > ul { 
    display: block; 
    opacity: 1;
    position: absolute;
    z-index: 99999999;
    background: #ffffff;
}
/*End of inline menu css*/
@media screen and (max-width: 992px) {
    .mobile-arrow {
        position: absolute;
        display: block;
        right: 0px;
        top: 0;
        cursor: pointer;
        height: 41px;
        padding: 0 15px;
        transition: all 0.3s ease 0s;
        display: none;
        z-index: 20;
    }
    .mobile-arrow:before {
        content: '';
        position: absolute;
        right: 15px;
        top: 17.5px;
        width: 13px;
        height: 3px;
        background: #b2b2b2;
    }
    .mobile-arrow:after {
        content: '';
        position: absolute;
        right: 20px;
        top: 13px;
        width: 3px;
        height: 13px;
        background: #b2b2b2;
    }
    .minus-arrow:after { background: transparent; }
}