/* Pop-out hover effect for nav links and TOS */
.hov {
  /* transition:
    color 0.3s,
    transform 11s cubic-bezier(0.77, 0, 0.175, 1),
    box-shadow 0.5s cubic-bezier(0.77, 0, 0.175, 1); */
  transform: translateX(0) translateY(0) !important;
  transition: 0.3s ease-in-out !important;
  opacity: 1;
  animation-delay: 3.8s;
}

@keyframes fade-up-in {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
.hov:hover {
  color: #73f5ed !important;
  transform: translateX(-5px) translateY(-5px) !important;
  box-shadow: 5px 5px 0 #435680 !important;
  transition: 0.3s ease-in-out !important;
}

.hovv:hover {
  transform: rotate(360deg) scale(0.8) !important;
  transition: transform 0.6s ease-in-out !important;
}

.hoov {
  transition: 0.1s ease-in-out !important;
}
.hoov:hover {
  /* outline: 2px solid #73f5ed !important; */
  transform: translateY(-5px) !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3) !important;
}
