.angie-logo-carousel-17247e48 {
	overflow: hidden;
	white-space: nowrap;
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
}

.angie-logo-carousel-track-17247e48 {
	display: flex;
	align-items: center;
	gap: var(--logo-gap, 30px);
	animation: marquee-17247e48 var(--animation-speed, 20s) linear infinite;
	width: max-content;
}

.angie-logo-carousel-track-17247e48:hover {
	animation-play-state: paused;
}

.angie-logo-carousel-item-17247e48 {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.angie-logo-carousel-item-17247e48 img {
	max-width: var(--logo-max-width, 150px);
	height: auto;
	object-fit: contain;
}

@keyframes marquee-17247e48 {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}