@keyframes fade-slow {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes grow-soft {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-slow {
  animation: fade-slow 0.8s ease-out both;
}

.animate-grow-soft {
  animation: grow-soft 0.9s ease-out both;
}

.animate-rise {
  animation: rise 0.9s ease-out both;
}




@media screen and (max-width: 768px) {
.md\:flex.items-center.space-x-6.text-sm.font-medium {
	display:none;
}
}