﻿.as-seen-on-slider {
	text-align: center;
	overflow: hidden;
}

.as-seen-on-logos img {
	vertical-align: middle;
}

.as-seen-on-logos {
	display: flex;
}

.as-seen-on-logos div {
	left: 100%;
	animation: marquee 22s linear infinite;
}

.as-seen-on-logos:hover div {
	animation-play-state: paused;
}

.as-seen-on-logos > div {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.as-seen-on-logos div:nth-child(1) {
	animation-delay: 0s;
}

.as-seen-on-logos div:nth-child(2) {
	animation-delay: 1.5s;
}

.as-seen-on-logos div:nth-child(3) {
	animation-delay: 3.0s;
}

.as-seen-on-logos div:nth-child(4) {
	animation-delay: 4.5s;
}

.as-seen-on-logos div:nth-child(5) {
	animation-delay: 6.0s;
}

.as-seen-on-logos div:nth-child(6) {
	animation-delay: 7.5s;
}

.as-seen-on-logos div:nth-child(7) {
	animation-delay: 9.0s;
}

.as-seen-on-logos div:nth-child(8) {
	animation-delay: 10.5s;
}

@keyframes marquee {
	0% {
		left: 100%;
	}

	100% {
		left: -100%;
	}
}