Появляется подчеркивание при наведении на блок scc

.effectbl::before{
display: block;
position: absolute;
content: «»;
height: 2px;
width: 0;
background-color: #dfe8e8;
transition: width .5s ease-in-out, left .5s ease-in-out;
left: 50%;
bottom: 0;
}
.effectbl::after{
display: block;
position: absolute;
content: «»;
height: 2px;
width: 0;
background-color: #dfe8e8;
transition: width .5s ease-in-out;
left: 50%;
bottom: 0;
}
.effectbl:hover::before{
width: 50%;
left: 0;
}
.effectbl:hover::after{
width: 50%;
}