/**
 *
 * You can write your CSS code here, DO NOT touch the default JavaScript file
 * because it will make it harder for you to update.
 *
 */

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

@keyframes spin-up {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-180deg);
    }
}

.spin-up {
    animation: spin-up 0.5s forwards;
}

.spin-reset {
    transform: rotate(0deg);
    transition: transform 0.5s;
}

.testimonial {
    display: none;
}

.testimonial.active {
    display: block;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.overflow-hidden {
    overflow: hidden;
}

.animate-scroll {
    display: flex;
    animation: scroll 20s linear infinite;
}

.whitespace-nowrap {
    white-space: nowrap;
}
