.gamme_sec_img_moto {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;

}

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

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

.gamme_sec_img_bloc_moto img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gamme_content_moto {
	position: relative;
	background-color: white;
	height: 400px;
}

.gamme_desc_moto {
	position: absolute;
	color: white;
	bottom: 0;
	background-color: white;
	width: 55%;
	color: var(--oxy_color_9);
	padding-left: 20px;
    padding-right: 20px;
	cursor: pointer;
}

.gamme_desc_moto_text {
	font-size: 18px;
	line-height: 22px;
	margin-top: 2px;
}

.gamme_desc_moto_plus {
	padding-top: 20px;
	margin-bottom: 30px;
	transition: all ease 200ms;
}

.gamme_desc_moto_plus h2 {
	font-size: 20px;
	line-height: 24px;
	margin-bottom: 5px;
}

.gamme_desc_separator {
	border: 2px solid var(--oxy_color_13);
	margin-bottom: 15px;
}

.gamme_desc_moto:hover .gamme_desc_separator{
	border: 2px solid var(--oxy_color_12);
}

.gamme_desc_moto:hover .gamme_desc_moto_plus{
	margin-bottom: 40px;
}

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

	.gamme_sec_img_bloc_moto {
		width: 100%;
	}

}