.client-carousel-container{
    width: 100%;
    height: fit-content;
    display: grid;
    grid-template-columns: repeat(4,25%);
    grid-column-gap: 20px;
}

.client-card{
    width: 100%;
    height: 100px;
    min-height: 100px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

.client-card a {
    width: 100%;
    min-height: 200px;
    display: block;
}

.client-carousel-container .slick-prev{
    left: 5%;
}
.client-carousel-container .slick-next{
    right: 5%;
}

.client-carousel-container .slick-prev::before,
.client-carousel-container .slick-next::before{
    display: flex;
    justify-content: center;
    width: 20px;
    height: 20px;
    color: #FFD800;
    background-color: #012F6B;
    border-radius: 100%;
    opacity: 1;
    font-size: 30px;
}

.client-carousel-container .slick-list{
    width: 80%;
    margin: auto;
}