.avis-col{
	display: flex;
	flex-direction: column;
	overflow-y: scroll;
	aspect-ratio: 2;
	margin: 0 auto;/*auto = centrer*/
	box-shadow: -2px 5px 8px 0 rgba(0, 0, 0, 0.6), 0 0 0 2px var(--blec);
}
.avis-col img{/*positionne la première image*/
	display: block;
	margin: 0 auto;/*auto = centrer*/
	height: auto;
	width: 100%;/*prend toute la largeur*/
	padding-bottom: 2vw;
	background: white;
	border-bottom: 2px solid var(--blec);
}
.avis-col img:last-child{
	padding-bottom: none;
	border-bottom: none;
}
@media (orientation: portrait){
.avis-col{
	max-width: 100%;
}
}
@media (orientation: landscape){
.avis-col{
	max-width: 70%;
}
}