@keyframes lp-fade-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lp-grow {
  from {
    transform: scale(0.92);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes lp-glow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(229, 231, 235, 0.4);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(229, 231, 235, 0);
  }
}

@keyframes lp-blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}

.lp-animate-fade {
  animation: lp-fade-in 0.6s ease-out both;
}

.lp-animate-grow {
  animation: lp-grow 0.7s ease-out both;
}

.lp-animate-glow {
  animation: lp-glow 2.4s ease-out infinite;
}

.lp-animate-blink {
  animation: lp-blink 2s ease-in-out infinite;
}


@media screen and (max-width: 768px) {

.md\:flex.md\:items-center.md\:space-x-8.text-sm.font-medium {
	display:none;
}

}