.client-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: auto;
}

.client-carousel {
    display: flex;
    transition: transform 0.5s ease;
}

.client-slide {
    box-sizing: border-box;
    text-align: center;
}

.client-slide img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    background-color: black;
}

.client-carousel-btn {
    position: absolute;
    top: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

.client-carousel-prev {
    left: 0px;
}

.client-carousel-next {
    right: 0px;
}