/* Client Logos Section */
.client-logos-section {
	padding: 3em 0 1em 0;
	background-color: rgba(240, 240, 240, 0.75); /* Light semi-transparent background */
	text-align: center;
}

.client-logos-section .content {
	max-width: 100%;
	margin: 0 auto;
	overflow: hidden;
}

.client-logos-section h2.major {
	margin-bottom: 1.5em;
	font-size: 1.75em;
	color: #444;
}

/* Slider track */
.slider-wrap {
	position: relative;
	overflow: hidden;
	padding: 20px 0;
	width: 100%;
}

/* Logo container styles for JavaScript animation */
.logo-container {
	position: relative;
	display: flex;
	align-items: center;
	width: max-content; /* Allow container to expand as needed */
	left: 0;
}

/* Hover effect handled by JavaScript */
.logo-container:hover {
	cursor: default;
}

/* Individual logos */
.client-logo {
	max-height: 65px;
	max-width: 170px;
	object-fit: contain;
	opacity: 0.8;
	transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
	margin: 0 30px;
	flex-shrink: 0;
}

.client-logo:hover {
	opacity: 1;
	transform: scale(1.05);
}

/* Responsive adjustments */
@media screen and (max-width: 736px) {
	.client-logos-section {
		padding: 2em 0 0.5em 0;
	}
	.client-logos-section h2.major {
		font-size: 1.5em;
		margin-bottom: 1em;
	}
	.client-logo {
		max-height: 55px;
		max-width: 140px;
		margin: 0 20px;
	}
}

@media screen and (max-width: 480px) {
	.client-logos-section h2.major {
		font-size: 1.3em;
	}
	.client-logo {
		max-height: 45px;
		max-width: 110px;
		margin: 0 15px;
	}
}
