.underline:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 8px;
  border-radius: 5px;
  background: #bf932d;
  z-index: -1;
}

.btn-move {
  transition: transform 0.3s ease;
}

.btn-move:hover {
  color: var(--bs-btn-hover-bg);
  background-color: #bf932d;
  transform: translateY(-5px);
}

