/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Dec 12 2025 | 11:21:05 */
/* Add your CSS code here.

For example:
.example {
    color: red;
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */ 
.marquee-text {
  overflow: hidden;
  white-space: nowrap;
  display: inline-block;
  animation: marquee 15s linear infinite;
  padding-left: 10%;
  transform: translateX(0)
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
