/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jan 26 2026 | 19:04:12 */
.partners-slider{
	positon: relative;
	padding: 14px;
	overflow: clip;
}

.slidey{
	width: 200px;
	height: 100px;
	position: absolute;
	box-shadow: 4px 6px 12px #0000002c;
	left: max(calc(240px * 4),100%);
	animation: slide 20s linear infinite;
	padding: 24px;
	border-radius: 4px;
}

.slidey:nth-child(1){
	animation-delay: calc(20s / 4 * (4 - 1) * -1);
}

.slidey:nth-child(2){
	animation-delay: calc(20s / 4 * (4 - 2) * -1);
}

.slidey:nth-child(3){
	animation-delay: calc(20s / 4 * (4 - 3) * -1);
}

.slidey:nth-child(4){
	animation-delay: calc(20s / 4 * (4 - 4) * -1);
}

/* ========== volunteers=============== */



.slideyo{
	width: 200px;
	height: 100px;
	position: absolute;
	box-shadow: 4px 6px 12px #0000002c;
	right: max(calc(320px * 4),100%);
	animation: slidiy 20s linear infinite;
	padding: 24px;
	border-radius: 4px;
}

.slideyo:nth-child(1){
	animation-delay: calc(20s / 4 * (4 - 1) * -1);
}

.slideyo:nth-child(2){
	animation-delay: calc(20s / 4 * (4 - 2) * -1);
}

.slideyo:nth-child(3){
	animation-delay: calc(20s / 4 * (4 - 3) * -1);
}

.slideyo:nth-child(4){
	animation-delay: calc(20s / 4 * (4 - 4) * -1);
}

@keyframes slide{
	from{
		left: -240px;
	}
}


@keyframes slidiy{
	from{
		right: 320px;
	}
}