#homeWrap {
	display: flex;
	flex-direction: column;
}

#homeImgLstWrap{
	position: relative;
	order: 1;
	width: 100%;
	height: 50vh;
	overflow: hidden;
	background-color: #000;
}
#homeImgLst{
	position: relative;
}
#homeImgLstWrap > div, #homeImgLst, #homeImgLst li, #homeImgLst li img{
	width: 100%;
	height: 100%;
}
#homeImgLstWrap > div{
	height: calc(100% - 50px);
}
#homeImgLst li{
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
}
#homeImgLst li.on{
	animation-name: homeImgAnim;
	animation-duration: 2s;
	animation-timing-function: ease-out;
	-webkit-animation-name: homeImgAnim;
	-webkit-animation-duration: 2s;
	-webkit-animation-timing-function: ease-out;
}
@-webkit-keyframes homeImgAnim{
	from{
		opacity: 0;
	}
	to{
		opacity: 1;
	}
}
@keyframes homeImgAnim{
	from{
		opacity: 0;
	}
	to{
		opacity: 1;
	}
}
#homeImgLst li img{
	object-fit: contain;
}
#homeImgLst li p{
	display: none;
/*	position: absolute;
	margin: 0;
	padding: 5px 10px;
	bottom: 0;
	right: 0;
	background-color: rgba(255, 255, 255, 0.8);
	color: var(--color-contraste);*/
}

/* navigation avec flèche gauche et droite */
/*#homeImgLstNav li{
	z-index: 2002;
	position: absolute;
	top: 50%;
	display: inline;
	width: 40px;
	height: 40px;
	padding: 10px;
	background-color: rgba(0, 0, 0, 0.5);
	color: #fff;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 25px 25px;
	font-size: 60px;
	text-decoration: none;
	transition: all 0.3s ease 0s;
	transform: translateY(-50%);
	cursor: pointer;
}
#homeImgLstNav li:hover{
	background-color: rgba(0, 0, 0, 1);
}
#homeImgLstNav li span{
	display: none;
}
#homeImgLstNav li.prev{
	left: 0;
	background-image: url(../img/arrow/left-w@50.png);
}
#homeImgLstNav li.next{
	right: 0;
	background-image: url(../img/arrow/right-w@50.png);
}*/

/* navigation avec boutons ronds sous les images */
#homeImgLstNav{
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-top: 15px;
}
#homeImgLstNav li{
	list-style: none;
}
#homeImgLstNav input{
	width: 50px;
	height: 12px;
	margin: 0;
	padding: 0;
	border-radius: 10px;  border: 2px solid #999;
	background: transparent;
}
#homeImgLstNav li.on input{
	border-color: var(--color-jauneABT);
	background-color: var(--color-jauneABT);
}

/* liste des produits */
#homeProduct{
	order: 2;
	align-items: center;
	position: relative;
	padding: 50px 0;
	background-color: #dddbd2;
}
#homeProduct h2{
	font-family: 'Oswald', sans-serif;
	font-size: 2em;
	color: #fff;
	text-align: left;
}
#homeProduct ul{
	display: flex;
	gap: 40px;
	overflow: hidden;
	min-width: 100%;
}
#homeProduct li{
	flex: 0 0 50%;
	list-style: none;
}
#homeProduct a{
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 100%;
	padding: 20px;
	background-color: #fff;
	text-decoration: none;
	font-size: 0.9em;
	line-height: 0.9em;
	color: #000;
}
#homeProduct a:hover{
	color: var(--color-contraste);
}
#homeProduct li .title{
	margin: 20px 0 10px;
	font-weight: bold;
}
#homeProduct li .price, #homeProduct li .priceOld{
	margin-top: 10px;
	color: var(--color-contraste);
}
#homeProduct li .priceOld{
	position: relative;
}
#homeProduct li .priceOld::after{
	display: block;
	content: ' ';
	position: absolute;
	width: 100%;
	height: 2px;
	top: 50%;
	left: 0;
	background: var(--color-contraste);
}
#homeProduct li img{
	width: 150px;
	height: 150px;
	object-fit: contain;
}
#homeProduct li img.zoomMoins05{
	transform: scale(0.95);
}
#homeProduct li img.zoomMoins08{
	transform: scale(0.92);
}
#homeProduct li img.zoomMoins10{
	transform: scale(0.9);
}
#homeProduct li img.zoomMoins12{
	transform: scale(0.88);
}
#homeProduct li img.zoomMoins15{
	transform: scale(0.85);
}
#homeProduct li img.zoomMoins20{
	transform: scale(0.8);
}
#homeProduct li img.zoomPlus05{
	transform: scale(1.05);
}
#homeProduct li img.zoomPlus08{
	transform: scale(1.08);
}
#homeProduct li img.zoomPlus10{
	transform: scale(1.1);
}
#homeProduct li img.zoomPlus12{
	transform: scale(1.12);
}
#homeProduct li img.zoomPlus15{
	transform: scale(1.15);
}
#homeProduct li img.zoomPlus20{
	transform: scale(1.2);
}
#homeProduct input{
	position: absolute;
	top: 50%;
	width: 50px;
	height: 50px;
	opacity: 0;
	border: none;
	border-radius: 50%;
	background-color: var(--color-contraste);
	background-size: 32px;
	background-repeat: no-repeat;
	background-position: center;
	font-size: 0;
	transform: translateY(-50%);
	transition: opacity ease-in 0.2s;
	-webkit-transition: opacity ease-in 0.2s;
}
#homeProduct input.show{
	opacity: 1;
}
#homeProduct #homeProductBtPrev{
	left: 0;
	background-image: url(../img/arrow/left-b@50.png);
}
#homeProduct #homeProductBtNext{
	right: 0;
	background-image: url(../img/arrow/right-b@50.png);
}

/* présentation */
#homeDescription{
	order: 3;
	padding: 30px 10px;
}
#homeDescription h1{
	font-family: 'Oswald', sans-serif;
	font-size: 2em;
	color: #333;
	line-height: 1.4em;
}
#homeDescription h1 span{
	display: block;
	font-size: 1.5em;
	color: #000;
}
#homeDescription h1 b{
	color: var(--color-jauneABT);;
}
#textColumn{
	margin: 1em 0;
}
#textColumn{
	display: flex;
	gap: 5%;
}
#textColumn > div{
	text-align: left;
}
#textColumn p{
	margin: 0.5em 0;
}

#homeBrand{
	display: block;
	width: 100%;
	height: auto;
	margin: auto;
}



@media screen and (min-width: 750px){
/*home*/
#homeNav ul{
	display: flex;
	flex-direction: row;
	justify-content: space-around;
}
#homeNav li{
	flex: 0 0 30%;
	height: 500px;
	margin: 50px 0;
}

/* liste des produits */
#homeProduct li{
	flex: 0 0 20%;
}
#homeProduct li:first-child{
	margin-left: 0;
}
#homeProduct li:last-child{
	margin-right: 0;
}

/* présentation */
#homeDescription{
	padding: 40px 5%;
}
}





@media screen and (min-width: 1000px){
/* présentation */
#homeDescription{
	padding: 50px 10%;
}
}





@media screen and (min-width: 1400px){
#homeProduct{
	padding-left: calc(1% + 58px);
	padding-right: calc(1% + 58px);
}

/* présentation */
#homeDescription{
	padding: 70px 15%;
}
}