.entete_section {
	background-color: var(--color_light_blue);
	position: relative;
	overflow: hidden;
}

.entete_section.no_photo::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: calc(400px + ((100vw - 1300px)/2));
	background-image: url('/wp-content/uploads/2023/02/bg-formes-entete.svg');
	background-size: cover;
    background-repeat: no-repeat !important;
    background-position: 0% 93%;
}

.entete_section > .entete_inner_wrap {
	padding-top: 125px;
	padding-bottom: 0;
	min-height: 420px;
	display: flex;
	flex-direction: row !important;
	align-items: stretch !important;
	flex-wrap: wrap;
}

.entete_left {
	width: calc(100% - 300px);
	display: flex;
    flex-direction: column;
	justify-content: space-between;
	padding: 10px 100px 30px 0;
}

.entete_left_titles_wrap {
	flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 50px;
}

.entete_subtitle {
	margin-top: 15px;
	max-width: 650px;
}

.entete_right {
	width: 300px;
}

.entete_section.no_photo .entete_right {
	display: none;
}

.entete_img {
	height: 100%;
	width: 100%;
	position: relative;
	aspect-ratio: 4 / 3;
}

.entete_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
	position: relative;
	display: block;
}

.entete_img::before {
	content: "";
	width: calc(100% + 59px);
    height: 100%;
    right: -42px;
	top: 0;
	position: absolute;
	background-image: url('/wp-content/uploads/2023/02/cartes.svg');
	background-size: cover;
}

@media screen and (max-width: 1300px) {

	.entete_section.no_photo::before {
		width: 400px;
	}

	.entete_section > .entete_inner_wrap {
		padding-right: 60px !important;
	}

}

@media screen and (max-width: 1120px) {

	.entete_section.no_photo::before {
		width: 470px;
	}

	.entete_left {
		width: calc(100% - 340px);
	}

}

@media screen and (max-width: 991px) {

	.entete_right, .entete_section.no_photo::before {
		display: none;
	}

	.entete_left {
		width: 100%;
	}

	.entete_section > .entete_inner_wrap {
		min-height: 350px;
	}

}

@media screen and (max-width: 767px) {

	.entete_section.no_photo::before {
		display: none;
	}

	.entete_left {
		padding: 10px 0px 30px 0;
	}

}