.menu-top > ul > li > a {
    font-weight: 900;
    font-size: 15px;
    line-height: 18px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    color: #004A8D;
    padding: 19px 23px;
    display: inline-block;
    position: relative;
}

.menu-top > ul > li > a:before {
    content: '';
    position: absolute;
    left: 23px;
    bottom: 0;
    height: 5px;
    background: #EA2127;
    width: 0;
    transition: width 0.9s;
 }
.menu-top > ul > li > a.selected:before,
.menu-top > ul > li > a:hover:before {
    width: calc(100% - 46px);
}
.menu-top > ul {
    display: flex;
    flex-flow: row wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-top__submenu {
    position: absolute;
    left: 0;
    top: 100%;
    display: none;
    height: 275px;
    padding: 33px 0 33px 23px;
}

.folder {
    position: relative;
}

.menu-top__submenu a {
    font-weight: 400;
    font-size: 17px;
    line-height: 120%;
    color: #000000;
    text-decoration: none;
    transition: 0.3s;
}

.menu-top__submenu a:hover {
    color: #686868;
}

.menu-top__submenu li {
    position: relative;
    padding-left: 25px;
    padding-right: 30px;margin-bottom: 18px;
    display: inline-block;
}
.menu-top__submenu li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background: #EA2127;
}
.menu-top__submenu ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-flow: column wrap;
    height: 100%;
    white-space: nowrap;
}
.folder:hover .menu-top__submenu {
    display: block;
}