

/* Variables */
:root {
	--col_pourpre: #ac2249;
	--col_canard: #077f88;
	--col_gris: #39444c;
	--main_width: 90%;
	--main_max_width: 1170px;
	--header_height: min( calc(10.76vw + 40px), 182px ); /* marge haute du contenu pour échapper le bandeau */
	--icone_plus_size: 34px;
}




/* Polices */

@font-face {
font-family: 'titre';
    src: url("../fonts/josefin-sans-v32-latin-regular.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
}

@font-face {
font-family: 'titre_light';
    src: url("../fonts/josefin-sans-v32-latin-300.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
}

@font-face {
font-family: 'courant';
    src: url("../fonts/Lato-Light.woff2") format("woff2");
    font-weight: normal;
    font-style: normal;
}

@font-face {
font-family: 'courant';
    src: url("../fonts/Lato-LightItalic.woff2") format("woff2");
    font-weight: normal;
    font-style: italic;
}


:root {
--font_alternate: courant, arial, helvetica, verdana, sans-serif;
}



html, body {
	background-color: white;
	color: var(--col_gris);
	margin: 0;
	padding: 0;
	font-family: var(--font_alternate);
}




/* Body */

a {
	color: inherit;
	text-decoration-thickness: 1px;
}

a:active, a:focus, input:focus {
	outline: none;
}

*, *::before, *::after {
	box-sizing: border-box;
}



hr {
color: var(--col_gris);
background-color:  var(--col_gris);
height: 2px;
border: 0;
width: 66%;
margin: 50px auto;
clear: both;
}




h2, h3, h4 {
	font-family: titre, var(--font_alternate);
	color: var(--col_canard);
	font-weight: normal;
	text-align: left;
	background-image: url("../im/points_canard.svg"); 
	background-repeat: no-repeat;
	background-position: left center;
	box-sizing: border-box;
}

h2 {
	font-size: min(8vw, 34px);
	line-height: min(7vw, 34px);
	padding: 0 2vw 0 min(10vw, 60px);
	background-size: min(7.5vw, 45px) auto;
}

h3 {
	font-size: min(7.5vw, 30px);
	line-height: min(6.2vw, 30px);
	padding: 0 2vw 0 min(8.8vw, 53px);
	background-size: min(6.6vw, 40px) auto;
	margin: 45px 0 15px 0;
}

h4 {
	font-size: min(6.5vw, 25px);
	line-height: min(6vw, 25px);
	padding: 0 2vw 0 min(7.3vw, 44px);
	background-size: min(5.5vw, 33px) auto;
	margin: 40px 0 10px 0;
}



.citation {
	font-size: 26px;
	font-style: italic;
	text-align: center;
}

.texte_plus {
	position: relative;
	display: inline-block;
	font-size: 24px;
	line-height: 20px;
	text-align: center;
	color: white;
	font-family: titre_light, var(--font_alternate);
	text-decoration: none;
	background-color: var(--col_pourpre);	
	padding: 5px 30px 5px 20px;
	margin: 30px 0px;
}

.texte_plus a {
	text-decoration: none;
}

/* Video container pour youtube responsive */

.video_container_yt {
	position: relative;
	/* padding-bottom: 56.25%; */
	padding-bottom: 53.7%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
	margin-bottom:20px;
	width: 100%;
}	

.video_container_yt iframe,
.video_container_yt object,
.video_container_yt embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}


/* Images */

.im-a-gauche, .im-a-gauche-bord {
	float: left;
	margin-right: 20px;
}
.im-a-droite, .im-a-droite-bord {
	float: right;
	margin-left: 20px;
}
.im-centre, .im-centre-bord {
	display: block;
	margin: 20px auto;
}
.im-normale-bord, .im-a-gauche-bord, .im-a-droite-bord, .im-centre-bord {
	border: 1px solid #000000;
}


/* Logos clients */

.images_clients {
	text-align: center;
}

.images_clients a{
	display: inline-block;
	margin: 20px;
}

.images_clients a img {
	vertical-align: top;
	height: 120px;
}










