/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 08 2026 | 14:03:50 */
.marquee-section {
  overflow: hidden;
  width: 100%;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll-marquee 48s linear infinite;gap:50px;
}
.marquee-track.less-gap{
  animation: scroll-marquee 48s linear infinite;gap:20px;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 18px;
  font-family: "Belanosima", Sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #0D5C48;
  white-space: nowrap;
}
.marquee-icon { display: flex; align-items: center; padding: 0 18px; }
@keyframes scroll-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}