.font-apple-system {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
    Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

@keyframes zoomInOut {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
.animate-zoom {
  animation: zoomInOut 4s infinite ease-in-out;
}

/* Testimonial slider fixes */
#testimonialTrack {
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

#testimonialTrack > div {
  scroll-snap-align: start;
}
