
.textcarrousel {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	--marquee-width: 100vw;
	--offset: 20vw;
	--move-initial: calc(-25% + var(--offset));
	--move-final: calc(-50% + var(--offset));
	--item-font-size: 10vw;
	counter-reset: textcarrousel;
	overflow: hidden;
	max-width: 100vw;
}
.textcarrousel .carousel-row:first-of-type{
	position: relative;
	z-index: 2;
}
.textcarrousel .carousel-row:last-of-type{
	position: relative;
	z-index: 0;
}
.carousel-row{
    display: flex;
    width: 100vw;
    overflow: hidden;
    position: relative;
}

.carousel{
    display: flex;
    position: relative
}

.carousel-copy{
    position: absolute;
    left: 0rem;
    top: 0;
}

.carousel-row span {
  	text-align: center;
	font-size: var(--item-font-size);
	padding: 0 1vw;
	font-weight: 900;
	line-height: 1.30;
    font-family: 'Brier';
	color: var(--white);
	display: inline-block;
	width: max-content;
}