.scrollingtext--section {
	background: var(--theme-orange);
	color: var(--theme-cream);
	padding: 60px 0;
	overflow: hidden;
}

.scrollingtext--text {
	text-transform: uppercase;
	margin-bottom: 0;
}

.scrollingtext--wrap {
	white-space: nowrap;
	display: inline-block;
	position: relative;
	animation: lwh-scroll-left linear infinite; /* Add the animation here */
}

.scrollingtext--text {
	display: inline-block;
}

@keyframes lwh-scroll-left {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%); /* Scroll exactly half the width */
	}
}