@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scale-in {
  from {
    opacity: 0;
    transform: scale(0.94);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.animate-fade-in {
  animation: fade-in 0.65s ease-in-out both;
}

.animate-fade-up {
  animation: fade-up 0.75s ease-out both;
}

.animate-scale-in {
  animation: scale-in 0.6s ease-out both;
}

.animate-shimmer {
  background-size: 200% 100%;
  animation: shimmer 1.6s linear infinite;
}

@media screen and (max-width: 768px) {
.md\:flex.items-center.space-x-6.text-sm.font-medium {
	display:none;
}
}