#page h1{
	position: relative;
	margin-top: 35px;
	padding-bottom: 10px;	
	margin-bottom: 40px;
	text-transform: uppercase;
}

#page h1:after{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	border-bottom: 2px solid #959595;
}

#page h1 span{
	position: relative;
}

#page h1 span:after{
	content: '';
	position: absolute;
	bottom: -10px;
	z-index: 1;
	left: 0;
	width: 100%;
	border-bottom: 2px solid #fba809;
}

#page .galerie_container{
    margin-bottom: 30px;
}

#page .galerie{
    background: #f2f2f2;
    padding: 10px;
    display: flex;
    flex-direction: column;
	box-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    transition: box-shadow 0.15s;
}

#page .galerie:hover{
	box-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

#page .galerie header{
	display: flex;
	flex-direction: column;
}

#page .galerie .galerie_titre{
	position: relative;
	padding-bottom: 10px;
	margin-bottom: 10px;
}

#page .galerie .galerie_titre h2{
	border-bottom: none;
    font-size: 18px;
    margin-bottom: 0;
    padding-bottom: 0;
    color: #8d0000;
}

#page .galerie .galerie_titre h2::before{
	display: none;
}

#page .galerie .galerie_titre:before{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 20%;
	border-bottom: 2px solid #fba809;
}

#page .galerie .galerie_titre:after{
	content: '';
	position: absolute;
	bottom: 0;
	left: 20%;
	width: 80%;
	border-bottom: 2px solid #959595;
}

#page .galerie .btn{
	background: #fbb52e;
	border: none;
	border-radius: 0;
}

#page .galerie .btn a{
	color: #232222;
	text-decoration: none;
	text-transform: uppercase;
}

