@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scale-in {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes pulse-soft {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

.animate-fade-up {
  animation: fade-up 0.8s ease forwards;
}

.animate-scale-in {
  animation: scale-in 0.7s ease forwards;
}

.animate-shimmer {
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.35) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  background-size: 200% 100%;
  animation: shimmer 2s linear infinite;
}

.animate-pulse-soft {
  animation: pulse-soft 2.4s ease-in-out infinite;
}

@media screen and (max-width: 768px) {
.md\:flex.md\:items-center.md\:space-x-8.text-base.font-medium {
	display:none;
}
}