/**
 * site/logo-strip — legacy .features-flex parity.
 */

.logo-strip.features-flex {
	border-top: 3px solid #E9E5E0;
	border-bottom: 3px solid #E9E5E0;
	margin: 30px 0 50px;
	max-width: 1193px;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 97%;
	padding: 51px 0;
}

.logo-strip__title {
	margin: 0;
}

.logo-strip__list {
	width: 83%;
	display: flex;
	justify-content: space-between;
	list-style: none;
	margin: 0;
	padding: 0;
}

.logo-strip__item {
	width: 25%;
	height: 80px;
	background-image: var(--logo-bg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.logo-strip__item:nth-child(2) {
	width: 23%;
	background-size: contain;
}

.logo-strip__item:nth-child(3) {
	width: 17%;
	background-size: 88px;
}

.logo-strip__item:nth-child(4) {
	background-size: 84%;
}

.logo-strip__item:nth-child(5) {
	background-size: 67%;
}
@media (max-width:1024px) {
	.logo-strip.features-flex {
		display:block;
		text-align:center;
	}
	.logo-strip__list {
		width:100%;
		margin:20px 0 -20px;
		flex-wrap:wrap;
		justify-content:center;
		gap:20px;
	}
}
@media (max-width:600px) {
	.logo-strip__item:nth-child(3) {
		background-size:contain;
	}
	.logo-strip__item:nth-child(4) {
	    background-size: contain;
	}
	.logo-strip__item:nth-child(5) {
	    background-size: contain;
	}
	.logo-strip.features-flex {
		    width: 90%;
		    padding: 30px 0 30px;
		    margin: 20px auto;
	}
	.logo-strip.features-flex {
		margin: 20px auto;
	}
}