/*=========================================
            EXPERTISE
=========================================*/

.clients{

    background:#05070D;

    padding:40px 0 90px;

}

/*=========================
      SECTION TITLE
=========================*/

.section-title{

    text-align:center;

    margin-bottom:50px;

}

.section-title h5{

    color:#D4AF37;

    letter-spacing:4px;

    margin-bottom:15px;

    font-size:15px;

    font-weight:700;

    text-transform:uppercase;

}

.section-title h2{

    font-size:54px;

    color:#ffffff;

    margin-bottom:20px;

    font-weight:700;

}

.section-title p{

    color:#C7CDD5;

    max-width:760px;

    margin:0 auto;

    line-height:1.8;

    font-size:17px;

}

/*=========================
      EXPERTISE GRID
=========================*/

.clients-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

/*=========================
      CARD
=========================*/

.client-card{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    height:180px;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    font-size:28px;

    font-weight:700;

    color:#ffffff;

    transition:.35s;

    backdrop-filter:blur(10px);

    cursor:pointer;

    box-shadow:0 10px 30px rgba(0,0,0,.20);

}

.client-card:hover{

    transform:translateY(-10px);

    border-color:#D4AF37;

    color:#D4AF37;

    box-shadow:0 20px 45px rgba(212,175,55,.18);

}

/*=========================
      RESPONSIVE
=========================*/

@media(max-width:992px){

.clients-grid{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.clients{

    padding:50px 0 70px;

}

.section-title{

    margin-bottom:40px;

}

.section-title h2{

    font-size:40px;

}

.clients-grid{

    grid-template-columns:1fr;

}

.client-card{

    height:150px;

    font-size:24px;

}

}

@media(max-width:480px){

.section-title h2{

    font-size:32px;

}

.section-title p{

    font-size:15px;

}

.client-card{

    height:130px;

    font-size:22px;

}

}