/* --------------------------------------------------------------- */
/*
/* Fonts
/*
/* --------------------------------------------------------------- */

@font-face {
	font-family: "Athiti";
	src: url('../polices/Athiti-Regular/Athiti-Regular.eot'),
	url('../polices/Athiti-Regular/Athiti-Regular.ttf'),
	url('../polices/Athiti-Regular/Athiti-Regular.woff');
}

@font-face {
	font-family: "Parisienne";
	src: url('../polices/Parisienne-Regular/Parisienne-Regular.eot'),
	url('../polices/Parisienne-Regular/Parisienne-Regular.ttf'),
	url('../polices/Parisienne-Regular/Parisienne-Regular.woff');
}

@font-face {
	font-family: "Playfair";
	src: url('../polices/Playfair-Display-Black/PlayfairDisplay-Black.eot'),
	url('../polices/Playfair-Display-Black/PlayfairDisplay-Black.ttf'),
	url('../polices/Playfair-Display-Black/PlayfairDisplay-Black.woff');
}


/* --------------------------------------------------------------- */
/*
/* HTML
/*
/* --------------------------------------------------------------- */
* {
	box-sizing:border-box;	
}

html, body {
	margin:0; padding:0; width:100%; height:100%;
	font-family:"Athiti"; font-size: 20px;
}

body {
	text-align:center;
}

#main {
	position:relative; top:0; left:0; 
	width:100%; min-height:100%; 
	margin:0 auto;
	text-align:left;  
	color:#333;
	background-color:#fff;
}

.test {
	background-color: rgba(20,170,220,0.3);
}

/* --------------------------------------------------------------- */
/*
/* Header
/*
/* --------------------------------------------------------------- */
#entete {
	position:relative; top:0; left:0;
}

#entete #logo {
	position:relative; top:0; left:0;
	font-family: "Parisienne";
	font-size: 36px;
	line-height: 0.9;
	color: #333;
	text-decoration: none;
	padding: 10px 0;
}

#entete .bloc-img {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.size {
	font-size: 21px;
}

.espace {
	display: block;
	margin-left: 15px;
}


/* --------------------------------------------------------------- */
/*
/* Menu
/*
/* --------------------------------------------------------------- */
#menu {
	display: block;
	position:relative; top:0px; left:0;
	width:100%; height: 84px;
}

#menu ul {
	list-style-type:none; margin:0; padding:0;
	display:flex;
	justify-content:start;
}

#menu ul li {
	position: relative; top: 0; left: 0;
	margin:0px; padding:0;
	height: 100%;
}

#menu ul li a {
	text-decoration:none;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding:0 10px;
	color: #333;
	text-transform: uppercase;
	font-size: 14px;
	box-sizing: border-box;
	height: 84px;
	transition: background-color 0.2s;
}

#menu ul li a:hover {
	background-color: #70a838;
	transition: background-color 0.2s;
	color: #fff;
}

#menu ul li a.active {
	background-color: #70a838;
	color: #fff;
}

#menu ul li ul {
	position:absolute; top:30px; left:0;
	display:none;
}

#menu ul li:hover ul { 
	display:block; 
}

#menu ul li ul li {
	margin:0;
}

#burger {
	display: none;
}

#burger span {
	width: 40px;
	height: 4px;
	background-color: #60942c;
	display: block;
	margin: 8px 0;
}

/* --------------------------------------------------------------- */
/*
/* Page
/*
/* --------------------------------------------------------------- */
#page {
	position:relative; top:0; left:0;
	min-height:350px;
}

#page a {
	text-decoration: none;
}

h2 {
	font-family: "Playfair";
	font-size: 38px;
}

.bouton {
	padding: 10px 42px;
	background-color: #70a838;
	transition: background-color 0.3s;
	color: #fff;
	font-size: 16px;
	margin: 20px 0;
	display: inline-block;
}

.bouton:hover {
	background-color: #60942c;
	transition: background-color 0.3s;
	color: #fff;
}


/* --------------------------------------------------------------- */
/*
/* Pied
/*
/* --------------------------------------------------------------- */
#pied {
	position:relative; top:0; left:0;
	background-color: #2f2f2f;
}
#pied a {
	text-decoration: none;
}

#pied h2 {
	color: #fff;
	font-size: 48px;
	font-family: "Parisienne";
	line-height: 0.9;
}

#pied #footer_haut {
	padding: 7px 0;
}

#pied #footer_haut .bloc-text {
	color: #fff;
}

#pied #footer_haut .bloc-text h3{
	font-family: "Playfair";
	font-size: 20px;
}

#pied #footer_haut p{
	font-size: 16px;
	line-height: 1.3;
}

#pied #footer_haut a{
	color: #fff;
}


#pied #footer_bas {
	border-top: 1px solid rgb(139, 139, 139);
	color: #fff;
	font-size: 14px;
	padding: 8px 0;
}

#pied #footer_bas a {
	color: #fff;
	margin: 0 5px;
}

/* --------------------------------------------------------------- */
/*
/* Général
/*
/* --------------------------------------------------------------- */
a img {
	border:none;	
}

/* --------------------------------------------------------------- */
/*
/* Responsive
/*
/* --------------------------------------------------------------- */

@media screen and (max-width: 1199px) {
	#burger {
		display: block !important;
	}

	#menu {
		display: none !important;
	}

	#menu.active {
		position: absolute;
		width: 100%;
		z-index: 1500;
		top: 83px;
		background-color: #f5f5f5;
		display: block !important;
		padding: 0 35px;
	}
}

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

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

}

@media screen and (max-width: 660px) {
	#menu.active {
		height: auto;
	}

	#menu ul li {
		width: 100%;
	}

	#menu ul li a{
		text-align: center;
		font-size: 18px;
		height: 65px;
	}

	#menu ul li a.active {
		background-color: #70a83886;
	}

	#contenu .bloc-lien a {
		width: 100%;
	}

	.bouton {
		padding: 10px 22px;
	}

	#bandeau h1 {
		font-size: 58px !important;
	}

	h2 {
		font-size: 30px;
	}
}

@media screen and (max-width: 575px) {
	#entete {
		padding: 0 20px;
	}

	h2 {
		font-size: 28px;
	}
}



