/* carousel_coverflow */

.swiper {
	width: 100vw;
	overflow: visible;
	position: relative;
	padding: 60px 0;
	margin: 0;
}

.swiper .elementor-container,
.swiper .elementor-section {
	overflow: visible !important;
}

.swiper .swiper-slide {
	flex-shrink: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 !important;
}

.swiper swiper-slide img {
	width: 100%;
	max-width: 33vw;
	transition: transform 0.3s ease, opacity 0.3s ease;
	border-radius: 4px;
	object-fit: cover;
}

.swiper .swiper-navigation-wrapper {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-top: 2rem;
}

.swiper .custom-swiper-button {
	background-color: #e1ecf8;
	color: #2fb1da;
	width: 40px;
	height: 40px;
	border-radius: 4px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	cursor: pointer;
	transition: background 0.3s ease;
	position: relative;
	margin: 6px;
}

.swiper .custom-swiper-button::after {
	font-family: swiper-icons;
	font-size: 16px;
	line-height: 1;
	color: #2fb1da;
}

.swiper .swiper-button-prev.custom-swiper-button::after {
	content: 'prev';
}

.swiper .swiper-button-next.custom-swiper-button::after {
	content: 'next';
}

/* carousel_content */
.contentSwiper {
	width: 100%;
	padding: 60px 0;
	position: relative;
}
.carousel-swiper-container {
	overflow: hidden;
}
/* 
.contentSwiper .swiper-wrapper {
	overflow: visible;
} */

.contentSwiper .swiper-slide {
	width: auto;
	display: flex;
	justify-content: center;
	align-items: center;
}

.contentSwiper .carousel-box {
	width: 100%;
	/* max-width: 33vw; */
	background: #f3f6fb;
	border-radius: 8px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
	text-align: left;
	margin-right: 17px;
}
.contentSwiper .carousel-box .carousel-box-content {
	padding: 48px;
}

.contentSwiper .carousel-box img {
	width: 100%;
	height: 30%;
	display: block;
	border-radius: 6px;
	margin-bottom: 1.5rem;
}

.contentSwiper .carousel-box h3 {
	margin: 0 0 1rem;
	font-size: 20px;
	font-weight: 600;
	color: #1f2e51;
}

.contentSwiper .carousel-box p {
	margin: 0;
	font-size: 16px;
	line-height: 1.6;
	color: #2b4c70;
}

.contentSwiper .swiper-navigation-wrapper {
	justify-content: flex-start;
}

@media (max-width: 768px) {
	.contentSwiper .carousel-box {
		margin-right: 0;
	}
}
