/*
==================================================
SMITECH WEBSITE
FILE      : clients.css
SECTION   : Client Logos
==================================================
*/


.clients-section{

padding:80px 0;

background:#f8fafc;

}



.clients-grid{

display:grid;

grid-template-columns:repeat(6,1fr);

gap:25px;

margin-top:40px;

}



.client-card{

background:#fff;

padding:25px;

border-radius:15px;

text-align:center;

border:1px solid #e5e7eb;

transition:.3s ease;

}



.client-card:hover{

transform:translateY(-5px);

box-shadow:0 10px 25px rgba(0,0,0,.12);

}



.client-card img{

max-width:100%;

height:70px;

object-fit:contain;

margin-bottom:15px;

}



.client-card span{

display:block;

font-size:14px;

color:#64748b;

}



@media(max-width:1100px){

.clients-grid{

grid-template-columns:repeat(3,1fr);

}

}



@media(max-width:600px){

.clients-grid{

grid-template-columns:repeat(2,1fr);

}

}