Hi, try this code..in template - custom.css
.sp-megamenu-parent > li > a:before, .sp-megamenu-parent > li > span:before {
content: "";
position: absolute;
left: 15px;
bottom: 25px;
width: 0;
height: 2px;
background-color: #000000;
transition: 0.3s;
}
.sp-megamenu-parent > li:hover > a:before, .sp-megamenu-parent > li:focus > a:before, .sp-megamenu-parent > li:hover > span:before, .sp-megamenu-parent > li:focus > span:before {
width: 25px;
}
.sp-megamenu-parent > li.active > a:before {
width: 45px;
}