.element_scrolling_text .scrolling-text {
  overflow: hidden;
}
.element_scrolling_text .scrolling-text .overlay-content {
  display: flex;
  white-space: nowrap;
  direction: rtl;
}
.element_scrolling_text .scrolling-text .overlay-content p {
  font-size: clamp(4.0625rem, 7.8125vw, 9.375rem);
  line-height: 1;
  text-transform: uppercase;
  animation: textLoop 20s linear infinite;
  white-space: nowrap;
  padding: 0 25px;
  margin: 0;
}
.element_scrolling_text .scrolling-text-border {
  border-top: 1px solid var(--color-main);
  margin-top: 35px;
}

@keyframes textLoop {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}