.InfiniteCarousel {
	position: relative;
	width: 100%;
	overflow: hidden;
	padding: 3rem 0;
	box-sizing: border-box;
	background-image: url(/repository/files/2026040116110869CD277C1993C705200112.png);
	background-size: cover;
	background-position: center;
}

.InfiniteCarousel * {
	box-sizing: border-box;
}

.InfiniteCarouselViewport {
	position: relative;
	width: 100%;
	overflow: hidden;
	padding: 2.5rem 0;
}

.InfiniteCarouselTrack {
	position: relative;
	display: flex;
	align-items: center;
	will-change: transform;
	transform: translate3d(0, 0, 0);
	backface-visibility: hidden;
}

.InfiniteCarouselBottom,
.InfiniteCarouselTop h2 {
	text-align: center;
}

.InfiniteCarouselTop h2 {
	text-transform: uppercase;
    font-size: 2.1rem;
    line-height: 2.4rem;
    font-weight: 900;
    font-family: var(--Font_Normal);
    color: #EC3B8D;
    letter-spacing: 0.03rem;
    transform: scaleX(1.08);
    transform-origin: center;
}
.InfiniteCarouselTop h2 b {
	font-size: 2.5rem;
	color: #042E5B;
}
.InfiniteCarouselBottom h3 {
	letter-spacing: 0.03rem;
	transform: scaleX(1.08);
	transform-origin: center;
	color: #042E5B;
	font-size: 1.7rem;
	margin-top: 0.5rem;
	font-weight: 800;
	line-height: 1.8rem;
}
.InfiniteCarouselBottom p {
	color: #042E5B;
	letter-spacing: 0.03rem;
	transform: scaleX(1.08);
	transform-origin: center;
	font-size: 0.8rem;
	margin-top: -0.3rem;
}

.InfiniteCarouselItem {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 1.15rem;
}

.InfiniteCarouselCard {
	display: block;
	width: 11.5rem;
	text-decoration: none;
	transform: scale(0.78);
	transform-origin: center center;
	opacity: 0.7;
	transition:
		transform 0.38s ease,
		opacity 0.38s ease,
		filter 0.38s ease;
}

.InfiniteCarouselCard:hover {
	text-decoration: none;
}

.InfiniteCarouselCard img {
	display: block;
	width: 100%;
	height: auto;
	border: 0;
}

.InfiniteCarouselItem.is-active .InfiniteCarouselCard {
	transform: scale(1.14);
	opacity: 1;
	z-index: 3;
}

.InfiniteCarouselItem.is-near .InfiniteCarouselCard {
	transform: scale(0.9);
	opacity: 0.88;
	z-index: 2;
}

.InfiniteCarousel.is-normalizing .InfiniteCarouselCard {
	transition: none !important;
}

@media screen and (max-width: 1200px) {
	.InfiniteCarousel {
		padding: 2.5rem 0;
	}

	.InfiniteCarouselCard {
		width: 10rem;
	}

	.InfiniteCarouselItem {
		margin: 0 0.9rem;
	}
}

@media screen and (max-width: 767px) {
	.InfiniteCarousel {
		padding: 2rem 0;
	}

	.InfiniteCarouselViewport {
		padding: 2rem 0;
	}

	.InfiniteCarouselCard {
		width: 11.5rem;
		transform: scale(0.78);
	}

	.InfiniteCarouselItem {
		margin: 0 0.55rem;
	}

	.InfiniteCarouselItem.is-active .InfiniteCarouselCard {
		transform: scale(1.08);
	}

	.InfiniteCarouselItem.is-near .InfiniteCarouselCard {
		transform: scale(0.92);
	}
}

@media screen and (max-width: 440px) {
	.InfiniteCarouselCard {
		width: 6.4rem;
	}
	.InfiniteCarouselItem {
		margin: 0 0.45rem;
	}

	.InfiniteCarouselTop {
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
	}
	.InfiniteCarouselTop h2 {
		text-transform: uppercase;
		font-size: 2rem;
		line-height: 2.2rem;
		font-weight: 900;
		font-family: var(--Font_Normal);
		color: #EC3B8D;
		letter-spacing: 0.03rem;
		transform: scaleX(1.08);
		transform-origin: center;
		width: 80%;
		margin-bottom: 1rem;
		margin-top: 1rem;
	}
	.InfiniteCarouselTop h2 b {
		font-size: 2.7rem;
		line-height: 3rem;
	}
	.InfiniteCarouselViewport {
		padding: 4rem 0;
		transform: scale(2);
	}
	.InfiniteCarouselBottom {
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
	}
	.InfiniteCarouselBottom h3 {
		letter-spacing: 0.03rem;
		transform: scaleX(1.08);
		transform-origin: center;
		color: #042E5B;
		font-size: 1.7rem;
		margin-top: 1.5rem;
		font-weight: 800;
		line-height: 1.7rem;
		width: 70%;
	}
	.InfiniteCarouselBottom p {
		color: #042E5B;
		letter-spacing: 0.03rem;
		transform: scaleX(1.08);
		transform-origin: center;
		font-size: 1rem;
		line-height: 1.6rem;
		margin-top: -0.3rem;
		width: 80%;
	}
}