a {
  color: #1e4287;
  position: relative;
  text-decoration: none;
}


a::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 4px;
  border-radius: 4px;
  background-color: #1e4287
  bottom: 0;
  left: 0;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform .3s ease-in-out;
}


a:hover::before {
  transform-origin: left;
  transform: scaleX(1);
}





