.infos_centre_row {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.infos_centre_item {
	width: 33.3333%;
	margin-bottom: 50px;
}

.infos_centre_title {
	font-size: 1.1em;
	font-weight: 700;
	display: flex;
	align-items: center;
	position: relative;
	margin-bottom: 20px;
}

.infos_centre_title::after {
	content: "";
	width: 100%;
	height: 2px;
	background-color: #D49242;
	position: absolute;
	left: 0;
	bottom: -5px;
}

.infos_centre_item:first-child .infos_centre_title::after {
	left: 37px;
}

.infos_centre_item:last-child .infos_centre_title::after {
	width: calc(100% + ((100vw - 1260px)/2));
}

.infos_centre_title img {
	height: 22px;
	width: 27px;
	object-fit: contain;
	margin-right: 10px;
}

.infos_centre_content {
	padding-left: 37px;
	line-height: 1.5;
}

.infos_centre_content p {
	margin-top: 10px;
	margin-bottom: 10px;
}

.infos_centre_subtitle {
	color: #D49242;
	margin-top: 10px;
}

@media screen and (max-width: 1300px) {
	
	.infos_centre_item .infos_centre_title::after {
		width: calc(100% + 20px) !important;
	}
	
}

@media screen and (max-width: 991px) {
	
	.infos_centre_item {
		width: 50%;
	}
	
}

@media screen and (max-width: 767px) {
	
	.infos_centre_item {
		width: 100%;
	}
	
	.infos_centre_item .infos_centre_title::after {
		left: 37px;
		width: calc(100% - 17px) !important;
	}
	
}





