.bandeau {
    height: 335px;
    background-image: url(../images/presentation/bandeau.jpg);
    position: relative;
}

.bandeau:after {
	content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0,0,0,0.25);
}

.bandeau h1 {
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.flex_contenu {
	margin: 30px 0;
}

.flex_contenu figure {
	margin-bottom: 25px;
}

.flex_contenu figure img {
	max-width: 100%;
}

.flex_contenu_texte p, .flex_contenu_texte li {
    color: #929292;
    font-weight: 300;
    line-height: 25px;
    margin-bottom: 15px;
}

.flex_contenu .flex_contenu_texte p:last-of-type {
 	margin-bottom: 0;   
}

.flex_contenu_texte h3 {
	font-weight: 700;
    font-size: 26px;
    margin-top: 25px;
    line-height: 32px;
}

.flex_contenu_texte h4 {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 10px;
    margin-top: 25px;
}

.flex_contenu .flex_contenu_texte .boutons {
 	margin: 20px 0 0 0;   
    justify-content: flex-start;
}

.rubrique.gris {
	background-color: #FAFAFA;
}

.rubrique.gris h1 {
	text-align: center;
}

.rubrique.gris .slider_container {
	max-width: 800px;
    margin: auto;
    text-align: center;
    padding-bottom: 70px;
}

.slider_container .slide h3 {
	font-weight: 600;
	font-size: 20px;
	margin-bottom: 15px;
}

.slider_container .slide p {
	color: #929292;
    font-weight: 300;
    line-height: 25px;
    margin-bottom: 15px;
}

@media (min-width: 992px){
 	.flex_contenu {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 70px 0;
    }
    
    /* SI LE CONTENU EST PLUS HAUT QUE L'IMAGE, PERMET D'AGRANDIR LE VISUEL SUR LA MÊME HAUTEUR */
    .flex_contenu.big {
        align-items: stretch;
    }

    .flex_contenu.big figure img {
	    height: 100%;
	    object-fit: cover;
	}
    
    .flex_contenu_texte {
        flex-basis: 55%;
    }
    
    .flex_contenu figure {
    	flex-basis: 40%;
        margin-bottom: 0;
    }
    
    /* PERMET DE GERER L'ALTERNANCE GAUCHE / DROITE SI PLUSIEURS BLOCS SUCCESSIFS */
    .flex_contenu.reverse figure {
        order: 1;
    }
}