.client-slider-heading{
    text-align:center;
    font-size:38px;
    font-weight:700;
    margin-bottom:55px;
    color:#222;
    position:relative;
}

.client-slider-heading::after{
    content:'';
    width:70px;
    height:3px;
    background:#d4af37;
    display:block;
    margin:15px auto 0;
    border-radius:10px;
}

.client-slider-section{

padding:70px 20px;

background:#fff;

overflow:hidden;

}

.client-slider{

overflow:hidden;

}

.client-track{

display:flex;

width:max-content;

animation:clients 35s linear infinite;

}

.client-slider:hover .client-track{

animation-play-state:paused;

}

.client-item{
    width:220px;
    margin-right:35px;
    flex-shrink:0;
    text-align:center;
}

.client-card{

    background:#fff;

    border:1px solid #ececec;

    border-radius:14px;

    padding:25px 20px;

    transition:all .35s ease;

    height:240px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    box-shadow:0 8px 25px rgba(0,0,0,.05);

}
.client-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(0,0,0,.12);

    border-color:#d4af37;

}

.client-item img{

width:120px;

height:120px;

object-fit:contain;

display:block;

margin:auto;

}
.client-card img{

    width:130px;

    height:90px;

    object-fit:contain;

    margin-bottom:20px;

}
.client-card h4{

    font-size:18px;

    font-weight:600;

    color:#333;

    line-height:1.4;

    margin:0;

}
.client-item h4{

margin-top:15px;

font-size:15px;

font-weight:600;

}

.client-item a{

text-decoration:none;

color:#222;

}

@keyframes clients{

from{

transform:translateX(0);

}

to{

transform:translateX(-50%);

}

}

@media(max-width:768px){

.client-item{

width:140px;

}

.client-item img{

width:90px;

height:90px;

}

}

@media(max-width:768px){

.client-slider-heading{

font-size:28px;

margin-bottom:35px;

}

.client-item{

width:170px;

}

.client-card{

height:200px;

padding:18px;

}

.client-card img{

width:90px;

height:70px;

}

.client-card h4{

font-size:15px;

}

}