$("a span").hover(
function() {
$( this ).parent().addClass('hover');
}, function() {
$( this ).parent().removeClass('hover');
}
);
a.hover {
color: #4ec7e5 !important;
transition: 0.5s ease;
border-top: 1px solid red;
border-bottom: 1px solid red;
}