.link::after {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  margin-top:5px;
  background: #fff;
  transition: width .3s ease-out;
}

.link:hover::after {
    width: 100%;
}