.client-card img {
    width: 100%;
    padding: 10px 12px;
    object-fit: contain;
}

.client-card {
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 65px;
    position: relative;
    background: #fff;
    border-bottom: 3px solid #e6af18;
    border-top: 1px solid #ccc;
    border-right: 3px solid #e6af18;
    border-left: 1px solid #ccc;
    transition: .5s;
    cursor: pointer;
}

.client-card::before {
    position: absolute;
    left: 0%;
    top: 0%;
    z-index: -1;
    content: '';
    height: 100%;
    width: 100%;
    background: transparent;
    transition: all 0.5s ease;
}

.client-card:hover::before {
    left: 5%;
    top: 10%;
    background: #e6af18;
}