.looping-text-wrapper-bf7c9e22 {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    display: flex;
}

.looping-text-inner-bf7c9e22 {
    display: inline-block;
    white-space: nowrap;
    /* Default duration, overridden by Elementor control */
    animation: loop-text-right-bf7c9e22 20s linear infinite;
}

@keyframes loop-text-right-bf7c9e22 {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0%);
    }
}