.animated-text__wrapper {
	position: relative;
}

.animated-text {
	display: flex;
	align-items: center;
	-webkit-animation: loop 20s infinite linear;
	animation: loop infinite infinite linear;
	position: relative;
}

h2.animated-text__item {
	color: var(--neutral-0, #FFF);
	font-family: "eUkraine Head";
	font-size: 150px;
	font-style: normal;
	font-weight: 400;
	line-height: 110%;
	letter-spacing: -13.5px;
	text-transform: uppercase;
	margin-left: 0;
	min-width: 1536px;
}

.animated-text__wrapper::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 300px;
	background: red;
}

@keyframes loop {
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}