.frontpage__supported {
	width: 100%;
	padding: 10rem 0;
	align-items: center;
	display: flex;
	flex-direction: column;
	/* height: 10rem; */
	justify-content: center;
	overflow: hidden; /* Para ocultar el desbordamiento horizontal */
}

.frontpage__supported h2 {
	font-weight: 700;
	font-size: 3rem;
	line-height: 3.4rem;
	text-transform: uppercase;
	text-align: center;
	color: var(--blue);
	position: relative;
	padding-bottom: 2rem;
	margin-bottom: 2rem;
}

.supported_carousel {
	background: var(--background);
	/* box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125); */
	/* height: 100px; */
	margin: auto;
	overflow: hidden;
	position: relative;
	width: auto;
}

.supported_carousel::before,
.supported_carousel::after {
	background: linear-gradient(
		to right,
		var(--background) 0%,
		rgba(246, 246, 233, 0) 100%
	);
	content: "";
	height: 100px;
	position: absolute;
	width: 200px;
	z-index: 2;
}

.supported_carousel::after {
	right: 0;
	top: 0;
	transform: rotateZ(180deg);
}

.supported_carousel::before {
	left: 0;
	top: 0;
}

.carousel-item {
	padding: 0 52.6px;
	/* height: 100px; */
	/* width: auto; */
}

.carousel-item img {
	width: auto;
	max-width: 250px;
	height: 60px;
	display: inline-block;
}
