.euphoria-scrolling-text.marquee-text.left-direction .scrolling-title span {
  width: 100%;
  will-change: transform;
  animation: marquee-left 25s linear infinite forwards;
}
.euphoria-scrolling-text.marquee-text.right-direction .scrolling-title span {
  width:100%;
  display: inline-block;
  animation: marquee-right 25s linear infinite forwards;
  will-change: transform;
}
.euphoria-scrolling-text .scrolling-title:hover{
  animation-play-state: paused;
}


.euphoria-scrolling-text .scrolling-title span {
    position: relative;
    display: block;
}

.euphoria-scrolling-text.marquee-text {
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
  white-space: nowrap;
}

@keyframes marquee-left {
    0% {
      transform: translate(0, 0);
    }
  
    100% {
      transform: translate(-100%, 0);
    }
  }
  @keyframes marquee-right {
    0% {
      /* text-indent: 100%; */
      transform: translate(-100%, 0);
    } 
  
    100% {
      transform: translate(0, 0);
      /* text-indent: -100%; */
    } 
  }
 
@media(max-width:1024px){
  .euphoria-scrolling-text .scrolling-title{
    font-size: var(--font-size-h2);
  }
}
 