/*
	BLOC 2 - NOUS CHOISIR
*/

.why-choose-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(240px, 1fr));
	gap: 30px;
	margin-top: 40px;
	justify-items: center;
	align-items: stretch;
}

.why-card {
	width: 100%;
	min-width: 0;
	max-width: 360px;
	background: #f4f1de;
	border-radius: 15px;
	padding: 30px 20px;
	text-align: center;
	overflow: hidden;
}

@media (max-width: 991px) {
	.why-choose-grid {
		grid-template-columns: repeat(2, minmax(220px, 1fr));
		gap: 20px;
	}
}

@media (max-width: 767px) {
	.why-choose-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.why-card {
		max-width: 100%;
	}
}

.why-card-icon {
	width: 60px;
	height: 60px;
	margin: 0 auto 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	/* background: #f5f5f5; */
	/* border-radius: 50%; */
	transition: all 0.3s ease;
}

.why-card:hover .why-card-icon {
	/* transform: scale(1.15); */
	/* background: #000; */
}

.why-card-icon svg {
	width: 30px;
	height: 30px;
	fill: #000;
	transition: all 0.3s ease;
}

.why-card:hover .why-card-icon svg {
	fill: #fff;
}

.why-card-title {
	margin: 0 0 10px;
	font-size: 1.3rem;
	line-height: 1.3;
	color: #000;
	font-weight: bold;
	letter-spacing: normal;
}

.why-card-text {
	margin: 0;
	line-height: 1.2;
	color: #555;
	font-size: 16px;
}
