@charset "iso-8859-1";

@import url('https://fonts.googleapis.com/css2?family=Spartan:wght@300;400;500;600;700;800;900&display=swap');

.font-regular{
	font-family: 'Spartan', sans-serif;
	font-weight: 400;
	font-style: normal;
}
.font-light{
	font-family: 'Spartan', sans-serif;
	font-weight: 300;
	font-style: normal;
}
.font-bold{
	font-family: 'Spartan', sans-serif;
	font-weight: 700;
	font-style: normal;
}
.font-medium{
	font-family: 'Spartan', sans-serif;
	font-weight: 500;
	font-style: normal;
}



/* Older browsers */

html{ 
	font-size: 62.5%;
}

body {
    background-color: #fff;
    font-size: 1.6rem;
    color: #000;
	font-family: 'Spartan', sans-serif;
	font-weight: 300;
    line-height: 1.5;
    overflow-x: hidden;
}


/* ----------
00 - COULEURS
-------------*/
:root{
	--white: #fff;    /*Blanc*/
	--black: #000;    /*Noir*/


	/*Primary couleur*/
	--colorprimary:  #eace8e ; /*Primary couleur*/
	
	/*Secondary couleur*/
	--colorsecondary:  #ededed ; /*Primary couleur*/
	
}


input[type=submit]{
	-webkit-appearance: none;
	border-radius: 0;
}


*{
		-moz-box-sizing:border-box;
	box-sizing:border-box;
}
.lt-ie7 *{behavior:url(../scripts/boxsizing.htc)}



a, a:hover, a:focus{
	-moz-transition: background 0.3s, color 0.3s;
	-webkit-transition: background 0.3s, color 0.3s;
	transition: background 0.3s, color 0.3s;
}



/* ---------------
APPARENCE DES IMAGES
-----------------*/
img{
	border:0;
	vertical-align: bottom;
	max-width:100%;
}
.map img{
	max-width:inherit;
}

/* --------------
CALAGE DES BLOCS
-----------------*/
.clear{
	border:0;
	clear: both;
	height:0;
	line-height:0;
	visibility: hidden;
	display:block;
	margin:0;
}
.clear-box{
	clear: both;
}

.clearfix::after{
	content:'';  
	display:block;  
	clear:both;
}

