/* ======================================================================================================
 * Carrousel Classique - section
 * ====================================================================================================== */

#home-carrousel-classique {
	display          : flex;
	align-items      : center;
	flex-direction   : column;
	flex-wrap        : nowrap;
	justify-content  : space-between;
	padding          : 145px 0 10px 0;
	background-color : var(--background-color-ponsot);
	gap              : 70px;
}


/* ==================== Content ==================== */
.home-carrousel-classique-content {
	display         : flex;
	align-items     : center;
	flex-direction  : column;
	justify-content : center;
	width           : 100%;
	padding         : 0 20px;
}

.home-carrousel-classique-content p {
	max-width  : 550px;
	text-align : center;
}

/* ==================== Carrousel ==================== */
.home-carrousel-classique {
	position : relative;
	left     : 120px;
	overflow : hidden;
	width    : calc(100% + 240px);
	height   : 750px;
}

.home-carrousel-classique__slide {
	overflow      : hidden;
	border-radius : 5px;
}

.home-carrousel-classique__slide img {
	width           : 100%;
	height          : 100% !important;
	object-fit      : cover;
	object-position : center;
}

/* =========================
 * Responsive
 * ========================= */
@media (max-width : 1300px) {
	.home-carrousel-classique {
		height : 550px;
	}
}

@media (max-width : 768px) {
	.home-carrousel-classique {
		left   : 0px;
		width  : 100%;
		height : 500px;
	}

	#home-carrousel-classique {
		padding : 45px 0 10px 0;
	}

	#home-carrousel-classique.titre_en_dessous {
		flex-direction : column-reverse;
	}

	.home-carrousel-classique-content .section__sub-title {
		text-align : center;
	}

	.home-carrousel-classique-content .section__title {
		text-align : center;
	}
}

/* ======================================================================================================
 * END  Carrousel Classique - section
 * ====================================================================================================== */
