::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #ed1c24;
}
::-webkit-scrollbar-thumb:hover {
  background: #c1161d;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.animate-marquee {
  animation: marquee 70s linear infinite;
}
.animate-marquee-fast {
  animation-duration: 55s;
}
.animate-marquee-slow {
  animation-duration: 90s;
}
@media (hover: hover) {
  .animate-marquee:hover {
    animation-play-state: paused;
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes scale-up {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.animate-fade-in {
  animation: fade-in 0.3s ease-out forwards;
}
.animate-scale-up {
  animation: scale-up 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.content-auto {
  content-visibility: auto;
  contain-intrinsic-size: 1px 800px;
}
section[id] {
  scroll-margin-top: 96px;
}
@media (max-width: 768px) {
  .animate-marquee {
    animation: none !important;
    transform: translateX(0) !important;
  }
  .backdrop-blur-xl,
  .backdrop-blur-md,
  .backdrop-blur-sm,
  .backdrop-blur-\[2px\] {
    backdrop-filter: none !important;
  }
}
