.customer-carousel {
	width: 100%;
	margin: 0;
	position: relative;
	padding: 0 80px;
	box-sizing: border-box;
}

.customer-carousel .swiper-wrapper {
	align-items: center;
}

.customer-carousel .swiper-slide {
	width: min(70vw, 880px);
	max-width: 880px;
	opacity: 1;
	transition: opacity .3s ease, transform .3s ease;
}

.customer-carousel .swiper-slide-active {
	opacity: 1;
}

.customer-carousel .swiper-button-prev,
.customer-carousel .swiper-button-next {
	display: none !important;
}

.customer-card-inner {
	display: grid;
	grid-template-columns: 360px 1fr;
	gap: 32px;
	align-items: center;
	background: #fff;
	margin: 40px 0;
}

.customer-card-media {
	width: 360px;
	height: auto;
	max-width: 100%;
	overflow: hidden;
	margin: 0 auto;
}

.customer-card-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.customer-card-meta {
	font-size: 14px;
	line-height: 20px;
	color: #888888;
	text-transform: uppercase;
}

.customer-card-title {
	font-size: 16px;
	line-height: 24px;
	font-family: 'Poppins', sans-serif !important;
	font-weight: 400;
	color: #000000;
	padding-bottom: 24px;
}

.customer-card-content {
	font-size: 12px;
	line-height: 18px;
	font-family: 'Poppins', sans-serif !important;
	font-weight: 300;
	color: #454545;
	padding-bottom: 24px;
}
.customer-carousel .swiper-pagination {
	position: static;
	display: flex;
	justify-content: center;
	margin-top: 24px;
}

.customer-carousel .swiper-pagination-bullet {
	width: 80px;
	height: 2px;
	border-radius: 0;
	background: #d9d9d9;
	opacity: 1;
	margin: 0 !important;
}

.customer-carousel .swiper-pagination-bullet-active {
	background: #C4A300;
	width: 80px;
	height: 2px;
}

.customer-carousel.swiper {
	overflow: visible !important;
}

@media (max-width: 1200px) {
	.customer-card-inner {
		grid-template-columns: 1fr;
		justify-items: center;
	}

	.customer-carousel {
		padding: 0 40px;
	}
}

@media (max-width: 768px) {
	.customer-carousel {
		padding: 0;
	}

	.customer-card-inner {
		padding: 28px;
	}

	.customer-card-media {
		width: 100%;
		height: auto;
	}
}

@media (max-width: 1199px) {
	.customer-carousel.swiper {
		overflow: hidden !important;
	}

	.customer-carousel .swiper-slide {
		width: auto;
		max-width: none;
	}
}
