.block-titre {
	padding: 5%;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 50vh;
	overflow: hidden;
	background: #e20a17;
}

.block-titre > div > * {
	color: #ffffff;
}

.block-titre h2 {
	font-family: Merriweather,serif;
	font-style: italic;
	text-align: center;
	font-size: 26px;
	font-weight: 300;
	display: block;
	z-index: 3;
	position: relative;
}

.block-titre h3 {
	font-family: Oswald,sans-serif;
	text-transform: uppercase;
	font-size: 30px;
	font-weight: bold;
	text-align: center;
	display: block;
	z-index: 3;
	position: relative;
}

.block-titre a {
	z-index: 4;
}

.block-titre .bg {
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.block-titre a,
.block-titre .bg,
.block-titre .bg::before {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.block-titre:hover .bg::before {
	transition: opacity 0.9s;
	opacity: 0.6;
}
.block-titre .bg::before {
	content: "";
	background: #000000;
	opacity: 0.3;
}




/*RESPONSIVE*/

/*phone*/
@media (max-width: 767px) {

	.block-titre {
		height: 35vh;
	}

	.block-titre h2 {
		font-size: 20px;
	}

	.block-titre h3 {
		font-size: 25px;
	}

}

/*tablet*/
@media (min-width: 768px) and (max-width: 1024px) {


	.block-titre {
		height: 35vh;
	}

	.block-titre h2 {
		font-size: 20px;
	}

	.block-titre h3 {
		font-size: 12px;
	}


}

/*mobile and tablet*/
@media (max-width: 1024px) {

}

/*pc portable*/
@media (min-width: 1025px) and (max-width: 1700px) {

}

/*desktop*/
@media (min-width: 1025px) {

}

/*RESPONSIVE*/
