@charset "utf-8";
/* CSS Document */

.marquee__container {
    display: flex;
    align-items: center;
    overflow: hidden;
    transform: translateZ(0);
}
    .marquee--1611990256d2d90b7c {
      background: #007000;
      color: #ffffff;
    }
  
.marquee--1611990256d2d90b7c .marquee__text {
    font-size: 24px;
    animation-duration: 20s;
}
@media only screen and (min-width: 769px)
.marquee__text {
    animation-duration: 15s;
}
.marquee__text {
    font-size: 25px;
    margin: 0.15em 0;
    white-space: nowrap;
    width: auto;
    perspective: 900;
    animation: marquee-left 8.8s linear infinite forwards;
}
@keyframes marquee-left{
  0%{
    transform:translateX(-1%);
  }
  to{
    transform:translateX(-60%);
  }
}