*{box-sizing: border-box;}

.ImgStrip{
	display:flex;
	justify-content:left;
	align-content:center;
}

.ImgType{
	display:flex;
	justify-content:center;
	align-content:center;
	height:100%;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.TxtLnk{
	display:flex;
	justify-content:center;
	align-content:center;
	width:100%;
	height:100%;
	background-color:rgba(0,0,0,0.4);
}

.TxtLnk:hover{
	background-color:rgba(0,0,0,0);
}

.TxtLine{
	display:flex;
	width:100%;
	transform: translate(-50%,-50%);
	position: absolute;
	top: 50%;
	left: 50%;
}

.TxtLnk:hover .TxtLine{
	transform: translate(-100%,-100%);
	top: 100%;
	left: 100%;
}

.texte{
	display:relative;
	width:100%;
	text-align:center;
}

.ImgStrip:hover .ImgType:not(:hover) .TxtLine{
	display:none;
}

