@keyframes fade {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes grow {
  from { transform: scale(0.96); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.animate-fade {
  animation: fade 0.7s ease both;
}

.animate-grow {
  animation: grow 0.8s ease both;
}

.animate-blink {
  animation: blink 2.6s ease-in-out infinite;
}



@media screen and (max-width: 768px) {
.md\:flex.md\:items-center.md\:space-x-6.w-full.md\:w-auto.mt-4.md\:mt-0 {
	display:none;
}
}