.line-hover-btn a {
  position: relative;
}

.line-hover-btn a::before {
  content: " ";
  width: 2rem;
  height: 0.2rem;
  @apply bg-primary;
  position: absolute;
  bottom: 0rem;
  opacity: 0;
  transform: translateX(-1.5rem);
  transition: all 0.2s ease;
}

.line-hover-btn a:hover::before {
  width: 80%;
  transform: translateX(0);
  opacity: 1;
}

.-line-hover-btn button {
  position: relative;
}

.-line-hover-btn button::before {
  content: " ";
  width: 2rem;
  height: 0.2rem;
  @apply bg-primary;
  position: absolute;
  bottom: -0.2rem;
  opacity: 0;
  transform: translateX(-1.5rem);
  transition: all 0.2s ease;
}

.-line-hover-btn button:hover::before {
  width: 80%;
  transform: translateX(0);
  opacity: 1;
}