@charset "utf-8";


/***************************** CARD ******************************/
.mosaic {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.card {
	width: 31%;
	/*height: 380px;*/
	margin-bottom: 2rem;
	box-sizing: border-box;
	border: solid #dfe1e5 1px;
	box-shadow: 0 1px 4px 0 rgba(32,33,36,0.28);
	display: flex;
	flex-direction: column;
	line-height: 1.5;
	text-align: center;
	background:#fff;
}

.card .image img{
	width: 100%;
	height: 375px;
	object-fit: cover;
}

.card .titre{
	font-weight: 400;
	font-size: 3rem;
	color:#222;
	padding-top: 50px;
}

.card .prix{
	font-weight: 400;
	font-size: 2rem;
	color:#333;
}

.card .titre:focus, .titre:hover, a:focus .titre, a:hover .titre {
    color: #414141;
	text-decoration: none;
}

.card h3 {
	margin: 0.8rem 0 0.8rem;
	display: none;
}

.card .text {
	margin-top: 1rem;
	margin-bottom: 2rem;
	text-decoration: none;
	text-align: center;
	color:#222;
	padding:0 3rem;
	display: none;
}
