@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');
body {
    font-family: 'Roboto', sans-serif;
    background-color: #2c3e50;
    margin: 0;
    color: whitesmoke;
}


h3 {
	text-align: center;
	text-transform: uppercase ;
	letter-spacing: 2px;
}

#box {
	margin-top: 30px;
	display: flex;
	justify-content: center;
	margin: auto;
	flex-wrap: wrap;
	max-width: 1200px;
	position:relative;
	cursor:pointer;
	
}


.photo {
	position: relative;
}

img {
	border-radius: 8px;
	width: 100%;
	height: auto;

}

.texte {
	margin-left: 30px;
	margin-top: 50px;
}

.retour {
	text-align: center;
	color: red;
}

.fleche {
	text-align: center;
}
.fleche img {
	width: 73px;
	height: 51px;
}

/*-------------------------*/

.texte1 {

	width:50px;
	height:50px;
	border-radius: 50%;
	/*background-color:#b15433;*/
	background-color: transparent;
	position:absolute;
	bottom:56px;
	left:0px;
	display:flex;
	justify-content: center;
	align-items: center;
	transition:1s;
	font-size: 30px;
	border: 1px solid white;
	color:white;
	font-style: bolder;

	
}


.texte1 span {
	display:block;
	display:none;
	transition:1s;
	overflow: hidden;
	font-style: bolder;

	
}

#box:hover .texte1 {

	width:360px;
	border-radius: 20px;
	overflow: hidden;
	/*z-index: 2;*/
	transition:1s;
	/*translate:-900px;*/
	box-sizing: border-box;
	padding-left: 10px;
	

}

#box:hover .texte1 span {
	transition:1s;
	display:block;

	
}


@media screen and (max-width: 750px) {
   #box .texte1{
       display:none;
}

}




























