/*
|--------------------------------------------------------------------------
| POURQUOI NOUS
|--------------------------------------------------------------------------
*/

.sama-voyage-why{

	padding:90px 0;

	background:#f8fafc;

}

.sama-voyage-why-grid{

	display:grid;

	grid-template-columns:repeat(4,1fr);

	gap:30px;

}

.sama-why-card{

	background:#fff;

	border-radius:24px;

	padding:40px 28px;

	text-align:center;

	box-shadow:0 18px 45px rgba(0,0,0,.08);

	transition:.35s;

}

.sama-why-card:hover{

	transform:translateY(-8px);

	box-shadow:0 28px 60px rgba(0,0,0,.16);

}

.sama-why-icon{

	width:82px;

	height:82px;

	margin:auto auto 25px;

	border-radius:50%;

	background:#16a34a;

	display:flex;

	align-items:center;

	justify-content:center;

}

.sama-why-icon img{

	width:42px;

	height:42px;

	object-fit:contain;

	filter:brightness(0) invert(1);

}

.sama-why-card h3{

	font-size:22px;

	font-weight:700;

	margin-bottom:16px;

	color:#111827;

}

.sama-why-card p{

	font-size:16px;

	line-height:1.7;

	color:#6b7280;

}

@media(max-width:1200px){

	.sama-voyage-why-grid{

		grid-template-columns:repeat(2,1fr);

	}

}

@media(max-width:768px){

	.sama-voyage-why-grid{

		grid-template-columns:1fr;

	}

}