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

#top{
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100vh;
}

#home_top{
	position: relative;
	flex: 1;
	display: flex;
	align-items: flex-end;
	background-size: cover;
	background-position: center;
}

#home_top .home_top_hover{
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
	z-index: 1;
}

#home_top .home_top_content{
	position: relative;
	z-index: 2;
	padding: 5em;
}

#home_top .home_top_content h1{
	text-transform: uppercase;
	font-size: 3rem;
	color: #fff;
	margin: 0;
	margin-bottom: 0.3em;
}

#home_top .home_top_content h2{
	font-size: 2rem;
	color: #fff;
	font-weight: 500;
	margin: 0;
	display: flex;
	align-items: center;
}

@media(min-width: 576px){

	#home_top .home_top_content h2::after{
		content: "";
		display: inline-block;
		width: 60px;
		height: 5px;
		background-color: #ffcd00;
		margin-left: 0.6em;
		margin-top: 5px;
	}

}

@media(max-width: 1200px){

	#home_top .home_top_content{
		padding: 4em;
	}

	#home_top .home_top_content h1{
		font-size: 2.5rem;
	}

	#home_top .home_top_content h2{
		font-size: 2rem;
	}
	
}

@media(max-width: 992px){

	#home_top .home_top_content{
		padding: 3em;
	}

	#home_top .home_top_content h1{
		font-size: 2rem;
	}

	#home_top .home_top_content h2{
		font-size: 1.5rem;
	}
	
}

@media(max-width: 768px){

	#home_top .home_top_content{
		padding: 2.5em;
	}

	#home_top .home_top_content h1{
		font-size: 2rem;
	}

	#home_top .home_top_content h2{
		font-size: 1.5rem;
	}
	
}

@media(max-width: 576px){

	#home_top .home_top_content{
		padding: 2em 1.5em;
	}

	#home_top .home_top_content h1{
		font-size: 1.8rem;
	}

	#home_top .home_top_content h2{
		font-size: 1.3rem;
	}
	
}



/***********************/
/*   HOME ACTUS
/**********************/

#home_actus{
	padding: 2em ;
	background-color: #F9F9F9;
}

#home_actus .home_actus_left{
	padding: 1em;
	text-align: center;
}

#home_actus .home_actus_left img{
	width: 100%;
	max-width: 500px;
}

#home_actus .home_actus_right{
	padding: 1em;
}

#home_actus .home_actus_titre{
	text-transform: uppercase;
	font-size: 1.4em;
	font-weight: 600;
}

#home_actus .home_actus_soustitre{
	font-size: 1.2em;
	font-weight: 400;
	color: #93c01f;
}

#home_actus .home_actus_texte a{
	color: #93c01f;
	text-decoration: none;
}

#home_actus .home_actus_texte a:hover{
	text-decoration: underline;
}

.slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slide {
  display: none;
}

.slide img {
  width: 100%;
  height: auto;
}

.slider-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #bbb;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}

.dot.active {
  background-color: #555;
}
















