
    body .transition {
      display: block
    }

    .w-editor .transition {
      display: none;
    }

    .no-scroll-transition {
      overflow: hidden;
      position: relative;
    }
  
  
    @keyframes scroll {
      from {
        transform: translateX(0);
      }

      to {
        transform: translatex(calc(-100% - 1rem));
      }
    }

    .scroll {
      animation: scroll 60s linear infinite;

      &:hover {
        animation-play-state: paused;
      }

    }


    .testimonial-container:hover .scroll {
      animation-play-state: paused;
      cursor: pointer;
    }
  