html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

.trainer-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  clip-path: url(#trainer-clip);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.trainer-img:hover {
  transform: scale(1.02);
  filter: brightness(1.05);
}

@media (max-width: 768px) {
  .trainer-img {
    height: 360px;
  }
}

@media (max-width: 480px) {
  .trainer-img {
    height: 320px;
  }
}

/* Hide scrollbar for Chrome, Safari and Opera */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.no-scrollbar {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.animate-marquee {
  animation: marquee 25s linear infinite;
}