.bshc-hero-stage,
.e-con:has(> .elementor-widget-bshc-hero + .elementor-widget-bshc-hero-marquee) {
	position: relative;
	overflow: hidden;
}

.elementor-widget-bshc-hero-marquee {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 108px;
	z-index: 3;
	width: 100%;
}

.bshc-marquee {
	position: relative;
	height: 200px;
	overflow: visible;
	color: #727176;
	font-family: var(--bshc-font-display);
	font-weight: 300;
	line-height: 1;
	text-transform: uppercase;
	user-select: none;
}

.bshc-marquee__row {
	overflow: hidden;
	white-space: nowrap;
}

.bshc-marquee__row--large {
	height: 80px;
	padding-block: 16px;
	font-size: 48px;
}

.bshc-marquee__row--medium {
	height: 64px;
	padding-block: 16px;
	font-size: 32px;
}

.bshc-marquee__row--small {
	height: 56px;
	padding-block: 16px;
	font-size: 24px;
}

.bshc-marquee__belt {
	width: max-content;
	display: flex;
	will-change: transform;
	animation-duration: var(--bshc-marquee-duration, 75s);
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	animation-play-state: paused;
}

.bshc-marquee__group {
	min-width: 100vw;
	display: flex;
	flex: none;
	align-items: center;
	justify-content: space-around;
}

.bshc-marquee__row--large .bshc-marquee__group span {
	padding-inline: 25px;
}

.bshc-marquee__row--medium .bshc-marquee__group span {
	padding-inline: 15px;
}

.bshc-marquee__row--small .bshc-marquee__group span {
	padding-inline: 10px;
}

.bshc-marquee.is-ready .bshc-marquee__row[data-bshc-marquee-direction="forward"] .bshc-marquee__belt {
	animation-name: bshc-marquee-forward;
}

.bshc-marquee.is-ready .bshc-marquee__row[data-bshc-marquee-direction="reverse"] .bshc-marquee__belt {
	animation-name: bshc-marquee-reverse;
}

.bshc-marquee.is-running .bshc-marquee__belt {
	animation-play-state: running;
}


@keyframes bshc-marquee-forward {
	from { transform: translate3d(0, 0, 0); }
	to { transform: translate3d(-50%, 0, 0); }
}

@keyframes bshc-marquee-reverse {
	from { transform: translate3d(-50%, 0, 0); }
	to { transform: translate3d(0, 0, 0); }
}

@media (max-width: 700px) {
	.elementor-widget-bshc-hero-marquee {
		bottom: 64px;
	}

	.bshc-marquee {
		height: 142px;
	}


	.bshc-marquee__row--large {
		height: 58px;
		padding-block: 12px;
		font-size: 34px;
	}

	.bshc-marquee__row--medium {
		height: 46px;
		padding-block: 11px;
		font-size: 24px;
	}

	.bshc-marquee__row--small {
		height: 38px;
		padding-block: 10px;
		font-size: 18px;
	}

	.bshc-marquee__row--large .bshc-marquee__group span {
		padding-inline: 17px;
	}

	.bshc-marquee__row--medium .bshc-marquee__group span {
		padding-inline: 12px;
	}

	.bshc-marquee__row--small .bshc-marquee__group span {
		padding-inline: 8px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.bshc-marquee {
		overflow-x: auto;
		scrollbar-width: none;
	}

	.bshc-marquee::-webkit-scrollbar {
		display: none;
	}

	.bshc-marquee__belt {
		animation: none !important;
		transform: none !important;
		will-change: auto;
	}

	.bshc-marquee__group[aria-hidden="true"] {
		display: none;
	}
}
