/*********************/
/*  TOP - HOME
/*********************/

#top_home{
	padding: 3em;
	text-align: center;
	text-align: center;
	text-transform: uppercase;
	font-weight: 700;
	z-index:  9;
	position: relative;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

#top_home .row{
	margin: 0;
}

#top_home .top_home_logo{
	display: inline-block;
}

#top_home .top_home_logo object{
	width: 100%;
	max-width: 600px;
	position: relative;
	opacity: 0;
	animation: opacity 4s 0.5s forwards;
}

@keyframes opacity {
0%   { opacity: 0%; top: -100px; }
100% { opacity: 100%; top: 0px; }
}

@media(max-width: 768px){

	#top_home{
		padding: 5em 3em;
	}

}

@media(max-width: 576px){

	#top_home .t1{
		font-size: 6.13vw;
	}

	#top_home .t2{
		font-size: 7vw;
	}

	#top_home .t3{
		font-size: 9.62vw;
	}

	#top_home .t4{
		font-size: 11vw;
	}

}





/*********************/
/*  TOP - PAGE - HOME
/*********************/

#top_page_home{
	text-align: center;
	padding: 0;
}

#top_page_home .top_page_home_content{
	background-color: rgba(255,255,255,0.75);
	width: 100%;
	height: 100%;
	padding: 15em 1em;
}

#top_page_home h1{
	font-size: 4rem;
	font-weight: 600;
	color: #333;
}

#top_page_home h2{
	font-size: 2.5rem;
	margin: 0.8em 0 1.3em;
	text-transform: uppercase;
}

#top_page_home h3{
	background-color: #b76d37;
	color: #fff;
	display: inline-block;
	padding: 0.3em 2em;
	border-radius: 3px;
}

@media(max-width: 992px){

	#top_page_home h1{
		font-size: 2.5rem;
	}

	#top_page_home h2{
		font-size: 2rem;
	}

}





/***************************/
/*  BANDEAU LOCALISATION
/***************************/

#bandeau_localisation{
	font-size: 2rem;
	color: #fff;
	text-align: center;
	text-transform: uppercase;
	padding: 0.5em;
	position: relative;
	z-index:  9;
}

#bandeau_localisation svg{
	margin-right: 0.5em;
	margin-top: -10px;
}

#bandeau_localisation .bandeau_localisation_icon{
	display: inline-block;
}

#bandeau_localisation .bandeau_localisation_texte{
	display: inline-block;
}

#bandeau_localisation .bandeau_localisation_texte h1{
	font-size: 1.3em;
	margin:  0;
	text-transform: capitalize;
}

#bandeau_localisation .bandeau_localisation_texte2 h2{
	margin: 0;
	font-size: 1.6rem;
}

@media(max-width: 576px){

	#bandeau_localisation .bandeau_localisation_texte h1{
		font-size: 0.9em;
	}

	#bandeau_localisation .bandeau_localisation_texte2 h2{
		font-size: 0.6em;
	}

	#bandeau_localisation svg{
		width: 20px;
	}

}





/***************************/
/*  PRÉSENTATION
/***************************/

#presentation{
	padding: 4em 0;
}

#presentation .presentation_top{
	border-bottom: solid 1px #666;
	padding-bottom: 2em;
	margin-bottom: 4em;
}

#presentation .presentation_photos{
	margin-top: 2em;
}

#presentation .presentation_photos img{
	width: 100%;
}

#presentation .presentation_texte{
	font-size: 1.1rem;
	text-align: justify;
	margin-top: 1em;
}

#presentation .presentation_texte span{
	font-style: italic;
	text-align: center;
	display: inline-block;
	width: 100%;
	font-weight: 600;
	font-size: 1.3rem;
}

#presentation .presentation_map{
	position: relative;
	text-align: center;
}

#presentation .presentation_map svg{
	width: 80%;
}

#presentation .presentation_map path{
	stroke: #333;
	stroke-width:5;
	stroke-linejoin:round;
}

#presentation .presentation_map .ville:hover{
	fill: #333;
	cursor: pointer;
}

#presentation .presentation_map .tarif{
	position: absolute;
	top: 50px;
	left: 50px;
	background-color: #333;
	color: #fff;
	padding: 8px 15px;
	text-align: center;
	border-radius: 5px;
}

@media(max-width: 768px){
	
	#presentation .presentation_map .tarif{
		top: 30px;
		left: 0px;
	}
	
}

#presentation .presentation_map .tarif .map_ville{
	text-transform: uppercase;
	font-weight: 300;
}

#presentation .presentation_map .tarif .map_tarif{
	text-transform: uppercase;
	font-weight: 600;
}

#presentation .presentation_map .hidden{
	display: none;
}

#presentation .presentation_map .zone1{
	fill: #ffdecc;
}

#presentation .presentation_map .zone2{
	fill: #ddb097;
}

#presentation .presentation_map .zone3{
	fill: #bc7549;
}

#presentation .presentation_zones_titre{
	text-transform: uppercase;
	font-weight: 600;
	font-size: 1.6rem;
	margin-bottom: 0.5rem;
}

#presentation .presentation_zones{
	text-align: center;
}

#presentation .presentation_zones_tarifs{
	display: inline-block;
}

#presentation .presentation_zones_tarifs ul{
	list-style-type: none;
	padding: 0;
}

#presentation .presentation_zones_tarifs ul li{
	display: flex;
	align-items: center;
	font-size: 1.2rem;
	padding: 0.5em 0;
	margin: 0 0 0 0.5em;
}

#presentation .presentation_zones_tarifs ul li span{
	width: 25px;
	height: 25px;
	border-radius: 5px;
	border: solid 1px #555;
	display: inline-block;
	margin-right: 0.5em;
}

#presentation .presentation_zones_tarifs ul li strong{
	margin-right: 5px;
}

#presentation .presentation_zones_tarifs ul li .li_zone1{
	background-color: #ffdecc;
}

#presentation .presentation_zones_tarifs ul li .li_zone2{
	background-color: #ddb097;
}

#presentation .presentation_zones_tarifs ul li .li_zone3{
	background-color: #bc7549;
}

#presentation .presentation_zones_tarifs p{
	font-size: 1.3rem;
	font-weight: 400;
}




#presentation .presentation_right{
	padding-left: 2em;
}

#presentation .presentation_blocs{
	margin-top: 2em;
}

#presentation .presentation_blocs_icon{
	margin-right: 0.5em;
}

#presentation .presentation_blocs_texte{
	font-size: 1.1rem;
}

#presentation .presentation_blocs_texte h4{
	font-weight: 600;
}

#presentation .presentation_blocs_texte h5{
	font-weight: 600;
}

@media(max-width: 768px){

	#presentation .presentation_top{
		padding: 0 2em;
	}

	#presentation .presentation_texte{
		margin-bottom: 2em;
	}

	#presentation .presentation_right,
	#presentation .presentation_left{
		padding: 0 2em;
	}

}

@media(max-width: 992px){

	#presentation .presentation_right{
		margin-top: 2em;
	}

}




/*********************/
/*  SERVICES
/*********************/

#services{
	padding: 3em 0;
	background-color: #EEE;
}

#services h4{
	font-weight: 600;
}

#services .services_left{
	position: relative;
	padding-top: 5em;
	text-align: right;
}

#services .services_link{
	visibility: hidden;
}

#services .services_content:hover .services_link{
	visibility: visible;
}

#services .services_left .services_dot{
	position: absolute;
	top: 130px;
	right: -73px;
}

#services .services_left .services_dot svg{
	width: 20px;
}

#services .titre{

}

#services .services_center{
	text-align: center;
	padding: 5em;
	background-size: 80%;
	background-position: center center;
	background-repeat: no-repeat;
}

#services .services_center img{
	width: 100%;
	max-width: 350px;
	border-radius: 50%;
}

#services .services_center .hidden{
	display: none;
}

#services .services_right .services_dot{
	position: absolute;
	top: 130px;
	left: -73px;
}

#services .services_right .services_dot svg{
	width: 20px;
}

#services .services_right{
	position: relative;
	padding-top: 5em;
}

#services .services_bottom{
	position: relative;
	text-align: center;
}

#services .services_bottom .services_dot{
	position: absolute;
	top: -59px;
	left: 210px;
}

#services .services_bottom .services_dot svg{
	width: 20px;
}

#services .services_content:hover{
	cursor: pointer;
}

#services .services_link a{
	text-decoration: none;
	color: #333;
	font-weight: 600;
	border-radius: 20px;
	border: solid 1px;
	padding: 0.3em 0.8em;
}

#services .services_link a:hover{
	color: #fff;
}

@media(max-width: 1400px){

	#services .services_left .services_dot{
		top: 111px;
		right: -66px;
	}

	#services .services_right .services_dot{
		top: 111px;
		left: -66px;
	}

	#services .services_bottom .services_dot{
		top: -54px;
		left: 180px;
	}

	#services .services_center{
		padding: 4em;
	}

}

@media(max-width: 1200px){

	#services .services_left .services_dot{
		top: 91px;
		right: -57px;
	}

	#services .services_right .services_dot{
		top: 91px;
		left: -57px;
	}

	#services .services_bottom .services_dot{
		top: -47px;
		left: 150px;
	}

}

@media(max-width: 992px){

	#services .services_center{
		display: none;
	}

	#services .services_dot{
		display: none;
	}

	#services .services_left{
		text-align: left;
		padding-top: 0;
	}

	#services .services_right{
		text-align: left;
		padding-top: 0;
	}

	#services .services_bottom{
		text-align: left;
	}

	#services .services_link{
		visibility: inherit;
		margin-bottom: 3em;
	}

}

@media(max-width: 576px){

	#services{
		padding: 3em 1em;
	}

}












