/*
|--------------------------------------------------------------------------
| COMPAGNIES
|--------------------------------------------------------------------------
*/

.sama-voyage-airlines{

	padding:70px 0;

	background:#fff;

}

.sama-voyage-airlines-header{

	text-align:center;

	margin-bottom:45px;

}

.sama-voyage-airlines-header p{

	font-size:18px;

	color:#6b7280;

	margin:0;

}

.sama-voyage-airlines-header h2{

	font-size:42px;

	font-weight:800;

	margin-top:10px;

	color:#111827;

}

.sama-voyage-airlines-header span{

	color:#16a34a;

}

.sama-voyage-airlines-grid{

	display:grid;

	grid-template-columns:repeat(6,1fr);

	gap:24px;

}

.sama-airline-card{

	background:#fff;

	border-radius:18px;

	padding:25px;

	display:flex;

	align-items:center;

	justify-content:center;

	box-shadow:0 10px 25px rgba(0,0,0,.08);

	transition:.3s;

}

.sama-airline-card:hover{

	transform:translateY(-5px);

	box-shadow:0 18px 40px rgba(0,0,0,.15);

}

.sama-airline-card img{

	max-width:120px;

	max-height:50px;

	object-fit:contain;

}

@media(max-width:1200px){

	.sama-voyage-airlines-grid{

		grid-template-columns:repeat(4,1fr);

	}

}

@media(max-width:768px){

	.sama-voyage-airlines-grid{

		grid-template-columns:repeat(2,1fr);

	}

}