/* Logo Marquee
---------------------------------------- */

.nou-logo-marquee-section {
	background: linear-gradient(180deg, rgba(247, 250, 255, 0.34) 0%, #f7faff 100%);
	position: relative;
	z-index: 2;
}

.nou-logo-marquee {
	--nou-logo-marquee-duration: 28s;
	--nou-logo-marquee-gap: clamp(54px, 5vw, 88px);
	border: 1px solid rgba(216, 227, 247, 0.95);
	box-shadow: 0 24px 70px rgba(35, 54, 104, 0.08);
	margin-top: 0;
	overflow: hidden;
	position: relative;
}

.nou-logo-marquee::before {
	background: radial-gradient(circle at center, rgba(8, 55, 255, 0.045), transparent 68%);
	content: "";
	height: 180px;
	left: 50%;
	pointer-events: none;
	position: absolute;
	top: -82px;
	transform: translateX(-50%);
	width: 560px;
	z-index: 0;
}

.nou-logo-marquee-title {
	color: #080d22;
	letter-spacing: 0;
	margin: 0 0 30px;
	position: relative;
	z-index: 1;
}

.nou-logo-marquee-viewport {
	margin: 0;
	overflow: hidden;
	position: relative;
	width: 100%;
	z-index: 1;
}

.nou-logo-marquee-viewport::before,
.nou-logo-marquee-viewport::after {
	bottom: 0;
	content: "";
	pointer-events: none;
	position: absolute;
	top: 0;
	width: clamp(44px, 9vw, 150px);
	z-index: 2;
}

.nou-logo-marquee-viewport::before {
	background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
	left: 0;
}

.nou-logo-marquee-viewport::after {
	background: linear-gradient(270deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
	right: 0;
}

.nou-logo-marquee-track {
	align-items: center;
	display: flex;
	flex-wrap: nowrap;
	gap: var(--nou-logo-marquee-gap);
	justify-content: flex-start;
	margin: 0;
	min-width: max-content;
	width: max-content;
}

.nou-logo-marquee.is-style-logo-marquee .nou-logo-marquee-track {
	animation: nou-logo-marquee-scroll var(--nou-logo-marquee-duration) linear infinite;
}

.nou-logo-marquee.is-style-logo-marquee:hover .nou-logo-marquee-track {
	animation-play-state: paused;
}

.nou-logo-marquee-set {
	align-items: center;
	display: flex;
	flex: 0 0 auto;
	flex-wrap: nowrap;
	gap: var(--nou-logo-marquee-gap);
	margin: 0;
}

.nou-logo-marquee-item {
	align-items: center;
	display: inline-flex;
	flex: 0 0 auto;
	justify-content: center;
	margin: 0;
}

.nou-logo-marquee-item img {
	display: block;
	height: auto;
	max-height: 48px;
	max-width: none;
	object-fit: contain;
	width: auto;
}

@keyframes nou-logo-marquee-scroll {
	from {
		transform: translate3d(0, 0, 0);
	}

	to {
		transform: translate3d(calc(-50% - (var(--nou-logo-marquee-gap) / 2)), 0, 0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.nou-logo-marquee.is-style-logo-marquee .nou-logo-marquee-track {
		animation: none;
		justify-content: center;
		min-width: 100%;
		width: 100%;
	}

	.nou-logo-marquee.is-style-logo-marquee .nou-logo-marquee-set:nth-child(2) {
		display: none;
	}
}

@media (max-width: 781px) {
	.nou-logo-marquee-section {
		padding-left: 20px;
		padding-right: 20px;
	}

	.nou-logo-marquee {
		--nou-logo-marquee-gap: 42px;
		border-radius: 22px;
		padding-left: 22px;
		padding-right: 22px;
	}

	.nou-logo-marquee-title {
		margin-bottom: 20px;
	}

	.nou-logo-marquee-item img {
		max-height: 40px;
	}
}
