





.yes {
  position: relative;
  text-decoration: none;
  padding-bottom: 2px;
}

.yes::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0.5px;
  background: rgb(255, 255, 255);
  transition: width 0.35s ease;
}

.yes:hover::after {
  width: 100%;
}