.marquee-container-325401be {
	display: flex;
	overflow: hidden;
	width: 100%;
	position: relative;
	--marquee-duration: 20s;
}

.marquee-track-325401be {
	display: flex;
	flex-shrink: 0;
	align-items: flex-start; /* allow natural heights when text is bottom/top */
	justify-content: space-around;
	min-width: 100%;
	animation: scroll-marquee-325401be var(--marquee-duration) linear infinite;
	padding-right: var(--card-gap, 8px);
}

.marquee-container-325401be.pos-center .marquee-track-325401be {
	align-items: center;
}

.marquee-container-325401be.dir-right .marquee-track-325401be {
	animation-direction: reverse;
}

.marquee-container-325401be.pause-on-hover:hover .marquee-track-325401be {
	animation-play-state: paused;
}

.marquee-item-325401be {
	position: relative;
	display: flex;
	flex-direction: column;
	overflow: visible;
	flex-shrink: 0;
	text-decoration: none;
	background: transparent;
	border-radius: 8px; /* Applied to item globally, Elementor control handles this */
}

.marquee-img-wrap-325401be {
	position: relative;
	width: 100%;
	overflow: hidden;
	border-radius: inherit; /* inherit from item if set, or via elementor control */
}

.marquee-img-325401be {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.marquee-item-325401be:hover .marquee-img-325401be {
	transform: scale(1.05);
}

.marquee-overlay-325401be {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.6); /* Default, overridden by Elementor */
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 1;
	transition: background-color 0.3s ease;
}

.marquee-item-325401be:hover .marquee-overlay-325401be {
	background-color: rgba(0, 0, 0, 0.8);
}

.marquee-content-wrapper-325401be {
	text-align: center;
	box-sizing: border-box;
}

.marquee-content-bottom-325401be {
	text-align: center;
	margin-top: 10px;
	box-sizing: border-box;
}

.marquee-content-top-325401be {
	text-align: center;
	margin-bottom: 10px;
	box-sizing: border-box;
}

.marquee-title-325401be {
	color: #fff;
	margin: 5px 0;
}

.marquee-slogan-325401be {
	color: #ddd;
	font-size: 14px;
	margin: 0;
}

@keyframes scroll-marquee-325401be {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-100%);
	}
}
