.ppep-marquee {
	position: relative;
	width: 100%;
	overflow: hidden;
	padding: 22px 0;
	background: #fff;
	--ppep-marquee-gap: 32px;
}

.ppep-marquee-inner {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.ppep-marquee--fade::before,
.ppep-marquee--fade::after {
	content: "";
	position: absolute;
	top: 0;
	width: 100px;
	height: 100%;
	z-index: 3;
	pointer-events: none;
}

.ppep-marquee--fade::before {
	left: 0;
	background: linear-gradient(to right, rgba(255,255,255,1), rgba(255,255,255,0));
}

.ppep-marquee--fade::after {
	right: 0;
	background: linear-gradient(to left, rgba(255,255,255,1), rgba(255,255,255,0));
}

.ppep-marquee-track {
	display: flex;
	align-items: center;
	width: max-content;
	min-width: 100%;
	gap: var(--ppep-marquee-gap);
	will-change: transform;
	animation-name: ppepMarqueeLoop;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	animation-play-state: paused;
}

.ppep-marquee--ready .ppep-marquee-track {
	animation-play-state: running;
}

.ppep-marquee--pause:hover .ppep-marquee-track {
	animation-play-state: paused;
}

.ppep-marquee-set {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	gap: var(--ppep-marquee-gap);
	min-width: max-content;
}

.ppep-marquee-item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	gap: 10px;
	opacity: 1;
	transition: transform .3s ease, opacity .3s ease, color .3s ease;
}

.ppep-marquee-item:hover {
	transform: translateY(-2px);
}

.ppep-marquee-item img {
	display: block;
	width: auto;
	height: 42px;
	max-width: none;
	object-fit: contain;
	transition: filter .3s ease, opacity .3s ease, transform .3s ease;
}

.ppep-marquee-item:hover img {
	transform: translateY(-1px);
}

.ppep-marquee--hover-restore .ppep-marquee-item:hover img {
	filter: none !important;
}

@keyframes ppepMarqueeLoop {
	0% {
		transform: translate3d(0, 0, 0);
	}
	100% {
		transform: translate3d(calc(-1 * var(--ppep-marquee-distance, 500px)), 0, 0);
	}
}

.ppep-trusted-proof {
	display: flex;
	align-items: center;
	gap: 12px;
}

.ppep-layout-column {
	flex-direction: column;
	align-items: flex-start;
}

.ppep-avatar-group {
	display: flex;
	align-items: center;
}

.ppep-avatar-group img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid #040812;
	transition: all .3s ease;
}

.ppep-avatar-group img:not(:first-child) {
	margin-left: -15px;
}

.ppep-avatar-group img:hover {
	transform: translateY(-3px) scale(1.08);
	z-index: 3;
}

.ppep-trusted-text {
	display: flex;
	flex-direction: column;
	line-height: 1.2;
}

.ppep-trusted-text strong {
	display: block;
	font-size: 1rem;
	font-weight: 600;
	color: #ffffff;
}

.ppep-trusted-text span {
	font-size: .9rem;
	color: #94a3b8;
}

.ppep-cta-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	text-decoration: none;
	border: 2px solid transparent;
	font-weight: 600;
	transition: all .3s cubic-bezier(.4,0,.2,1);
	position: relative;
	overflow: hidden;
}

.ppep-cta-btn--block {
	display: flex;
	width: 100%;
}

.ppep-cta-btn:hover {
	transform: translateY(-2px);
}

.ppep-cta-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all .3s ease;
}

.ppep-arrow-hover .ppep-cta-arrow {
	opacity: 0;
	transform: translateX(-8px);
	width: 0;
	overflow: hidden;
}

.ppep-arrow-hover:hover .ppep-cta-arrow {
	opacity: 1;
	transform: translateX(0);
	width: auto;
}

.ppep-arrow-always .ppep-cta-arrow {
	opacity: 1;
	transform: translateX(0);
}

.ppep-particles-wrap {
	position: relative;
	overflow: hidden;
}

.ppep-particles-canvas {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	pointer-events: auto;
}

.ppep-particles-wrap > .elementor-container,
.ppep-particles-wrap > .e-con-inner,
.ppep-particles-wrap > .e-con,
.ppep-particles-wrap > .elementor-widget-wrap {
	position: relative;
	z-index: 2;
}

@media (max-width: 767px) {
	.ppep-marquee {
		padding: 18px 0;
		--ppep-marquee-gap: 20px;
	}

	.ppep-marquee--fade::before,
	.ppep-marquee--fade::after {
		width: 40px;
	}

	.ppep-marquee-item img {
		height: 32px;
	}
}