.navmenu{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
}
.nav-dropdown-products{
    width: 12px;
    height: 12px;
    margin-top: 2px;
    margin-left: 6px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.dropdown-img-products{
    transform: rotate(0deg);
    transform-origin: 50% 50%;
    transition: all 0.3s;
}
#products:hover .dropdown-img-products{
    transform: rotate(180deg);
    transition: all 0.3s;
}
.dropdown-menus-products{
    position: absolute;
    top: 61px;
    left:0;
    width: 230px;
    min-height: 50px;
    height: auto;
    background: #fff;
    display: none;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    opacity: 1;
}
#products:hover .dropdown-menus-products{
    display: block;
}
.dropdown-item{
    width: 230px;
    height: 45px;
    line-height: 45px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    color: #000;
    transition: all 0.3s;
    text-align: left;
    text-indent: 2.2em;
    font-weight: 500;
    position: relative;
    box-sizing: border-box;
    border-bottom: solid 1px rgb(230,230,230,.2);
}
.dropdown-item:last-child{
    border-bottom: none;
}
.line-menu{
    position: absolute;
    width: 3px;
    height: 0;
    background: #0377ca;
    left: 0;
    top: 22px;
    transition: all 0.5s;
}
.dropdown-item:hover{
    background: rgba(210,210,220,.2);
    color: #0377ca;
    transition: all 0.3s;
    text-indent: 3em;
}
.dropdown-item:hover .line-menu{
    height: 45px;
    transition: all 0.5s;
    top:0;
}
.submenu-active{
    background: rgba(210,210,220,.1);
    color: #0377ca;
    position: relative;
}
.submenu-active::before{
    content: "";
    position: absolute;
    width: 3px;
    height: 45px;
    background: #0377ca;
    left: 0;
    top: 0;
}
.navmenu a{
    font-weight: 500;
}
.navmenu:hover{
    background: #2461a5;
}
.nav-dropdown-solution{
    width: 12px;
    height: 12px;
    margin-top: 2px;
    margin-left: 6px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.dropdown-img-solution{
    transform: rotate(0deg);
    transform-origin: 50% 50%;
    transition: all 0.3s;
}
#solution:hover .dropdown-img-solution{
    transform: rotate(180deg);
    transition: all 0.3s;
}
.dropdown-menus-solution{
    position: absolute;
    top: 61px;
    left:0;
    width: 230px;
    min-height: 50px;
    height: auto;
    background: #fff;
    display: none;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    opacity: 1;
}
#solution:hover .dropdown-menus-solution{
    display: block;
}