.scroll {
  width: 100%;
  padding: 0;
  margin: 0 !important;
  max-width: 100% !important;
  position: relative;
  overflow-x: hidden;
}
.scroll.right .m-scroll {
  animation: scrollTextRight 24s infinite linear;
}

.m-scroll {
  overflow: hidden;
  height: 100%;
  white-space: nowrap;
  animation: scrollTextLeft 24s infinite linear;
  margin: 0;
  font-size: 0;
  display: inline-block;
}
.m-scroll h2 {
  display: inline-block;
  min-width: 50px;
  font-style: normal;
  font-weight: 200;
  line-height: 0.75;
  letter-spacing: -1.208px;
  text-transform: uppercase;
  color: var(--wdg-light-blue);
  margin-left: VAR(--wdg-spacing-md);
  font-size: clamp(3rem, 5vw + 3.5rem, 5rem);
}

@keyframes scrollTextLeft {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes scrollTextRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0%);
  }
}

/*# sourceMappingURL=style.css.map */