@keyframes fade-slow {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes rise-soft {
  from { transform: translateY(16px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes shimmer {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; }
}

.animate-fade-slow {
  animation: fade-slow 0.9s ease-in-out both;
}

.animate-rise {
  animation: rise-soft 0.8s ease-out both;
}

.animate-shimmer {
  animation: shimmer 2.4s ease-in-out infinite;
}


@media screen and (max-width: 768px) {
.md\:flex.items-center.space-x-6 {
	display:none;
}
}