.department-sidemenu__nav {
    border-top: 1px solid #e5e8ec;
}

.department-sidemenu__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 4rem;
    padding: 1.2rem 1.5rem;
    color: #3d4658;
    font-size: 1.4rem;
    line-height: 115%;
    text-decoration: none;
    border-bottom: 1px solid #EBEEF1;
    box-sizing: border-box;
    transition: all .3s ease;
}
.department-sidemenu__item span {
    transition: all .3s ease;
}
.department-sidemenu__item:hover {
    color: #0088CC;
    text-decoration: none;
}
.department-sidemenu__item:hover span{
    color: #0088CC;
    text-decoration: none;
}
.department-sidemenu__item_active {
    min-height: 58px;
    color: #fff;
    background: #0088CC;
}

.department-sidemenu__item_active:hover {
    color: #fff;
}
.department-sidemenu__item_active .department-sidemenu__text{
    color: #fff;
}

.department-sidemenu__text {
    display: block;
}

.department-sidemenu__arrow {
    flex: 0 0 auto;
    margin-left: .5rem;
    color: #0088CC;
    font-size: 1.6rem;
    line-height: 1;
    font-weight: 300;
}
.department-sidemenu__arrow svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.department-sidemenu__title {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 120%;
    margin-bottom: 1.2rem;
}
@media (max-width: 1280px){
    .department-sidemenu__item {
        padding: .6rem 1rem;
    }
}
@media (min-width: 768px) and (max-width: 1280px){

}
@media (max-width: 767px){

}