.card_tuto {
	position: relative;
	height: 150px;
	width: 250px;
	border: 1px solid transparent;
	margin: 1em;
	padding: 1em;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	transition: .3s ease-in-out;
	box-shadow: 0 1px 5px rgba(0,0,0,.2), 0 2px 2px rgba(0,0,0,.14), 0 3px 1px -2px rgba(0,0,0,.12);
}
.card:hover {
	box-shadow: 0 5px 5px -3px rgba(0,0,0,.2), 0 8px 10px 1px rgba(0,0,0,.14), 0 3px 14px 2px rgba(0,0,0,.12)
}

.card {
	position: relative;
	height: 100px;
	width: 100px;
	border: 1px solid transparent;
	margin: 1em;
	padding: 1em;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	transition: .3s ease-in-out;
	box-shadow: 0 1px 5px rgba(0,0,0,.2), 0 2px 2px rgba(0,0,0,.14), 0 3px 1px -2px rgba(0,0,0,.12);
}
.card:hover {
	box-shadow: 0 5px 5px -3px rgba(0,0,0,.2), 0 8px 10px 1px rgba(0,0,0,.14), 0 3px 14px 2px rgba(0,0,0,.12)
}

.card img {
	width: 70%;
}
.card H3 {
	position: absolute;
	left: 50%;
	bottom: 1em;
	transform: translate(-50%, 50%);
	width: 100vw;
	max-width: 92%;
}
.card2 {
	height: 40px;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	text-align: center;
}
.card22 {
	position: absolute;
	top:110px;	
	font-size: 14px;					
	background-color: #fff; 
	text-align:center;	
}

.card3 {
	position: absolute;
	left: 50%;
	bottom: 1em;
	transform: translate(-50%, 50%);
	width: 100vw;
	max-width: 92%;
	font-size: 14px;
	text-align:center;
}

@media screen and (max-width: 470px) {
	.card {
		height: 80px;
		width: 80px;
	}
}