.underline-style {
	color: #CDCCB7;
    position: relative;
    cursor: pointer;
}
.underline-style:after {
	content: "";
    display: block;
    position: absolute;
    right: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background-color: #FFD33E;
    transition: width 0.5s;
}

.underline-style:hover:after {
	content: "";
    width: 100%;
    display: block;
    position: absolute;
    left: 0;
    bottom: -3px;
    height: 2px;
    background-color: #FFD33E;
    transition: width 0.5s;
}
     