.gamme_sec_img {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.gamme_sec_img_bloc {
	width: calc(50% - 5px);
	aspect-ratio: 16 / 9;
}

.gamme_sec_img_bloc a {
	display: block;
	width: 100%;
	height: 100%;
}

.gamme_sec_img_bloc img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .5s;
}

.gamme_content{
	position:relative;
	overflow: hidden;
	height: 100%;
}

.gamme_desc {
	position: absolute;
	bottom: 0px;
    padding: 50px 30px 25px;
	color: white;
	background: rgb(0,0,0);
	background: -moz-linear-gradient(0deg, rgba(0,0,0,0.654499299719888) 0%, rgba(0,0,0,0.16150210084033612) 74%, rgba(0,0,0,0) 100%);
	background: -webkit-linear-gradient(0deg, rgba(0,0,0,0.654499299719888) 0%, rgba(0,0,0,0.16150210084033612) 74%, rgba(0,0,0,0) 100%);
	background: linear-gradient(0deg, rgba(0,0,0,0.654499299719888) 0%, rgba(0,0,0,0.16150210084033612) 74%, rgba(0,0,0,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
	width: 100%;
	transition: .3s;
}

.gamme_desc h2,
.gamme_desc .gamme_desc_sous-titres{
	text-transform: uppercase;
}

.gamme_encart_titre {
	font-size: 1.7rem;
	line-height: 1.2;
}

.gamme_content:hover .gamme_desc {
	padding: 50px 30px 35px;
}

.gamme_sec_img_bloc .gamme_content:hover img {
	transform: scale(1.1);
}

@media screen and (max-width: 767px) {

	.gamme_sec_img_bloc {
		width: 100%;
	}

}

@media screen and (max-width: 480px) {

	.gamme_encart_titre {
		font-size: 1.3rem;
	}

	.gamme_desc {
		padding: 50px 20px 25px;
	}

}