.custom_block.custom_block_crop-image .couverture{
	background-position: center center;
	-webkit-background-size: cover; /* pour Chrome et Safari */
	-moz-background-size: cover; /* pour Firefox */
	-o-background-size: cover; /* pour Opera */
	background-size: cover; /* version standardisée */
	width:100%;
	height:200px;
	display: block;
}

/* unsemantic mobil- */
@media screen and (max-width: 767px) {
	
}
/* unsemantic tablet- */
@media screen and (min-width: 768px) and (max-width: 1024px) {

}
/* unsemantic screen */
@media screen and (min-width: 1025px) {
	
}

.img-banner {
	height: 200px;
	width: 100%;
	position: relative;
}

.img-banner .overlay, .img-banner .image {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

.img-banner .overlay {
	background-color: var(--bleu-fonce);
	opacity: 0.35;
}

.img-banner .image {
	filter: grayscale(100%);
}

.img-banner .image-title {
	position: absolute;
	bottom: 34px;
	left: 32px;
	color: white;
	text-transform: uppercase;
}


@media (min-width:767px) {
	.img-banner {
		height: 240px;
	}
}