.customersCarousel {
    display: flex;
    align-items: center;
    gap: 8px;
}

.customersViewport {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.customersTrack {
    display: flex;
    gap: 16px;
    will-change: transform;
}

.customerItem {
    flex: 0 0 calc((100% - 64px) / 5);
    min-height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.customerItem img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.customersBtn {
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: #f1f1f1;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    flex-shrink: 0;
    transition: 0.2s;
}

.customersBtn:hover {
    background: #dddddd;
}

@media (max-width: 991px) {
    .customerItem {
        flex: 0 0 calc((100% - 32px) / 3);
    }
}

@media (max-width: 640px) {
    .customerItem {
        flex: 0 0 calc((100% - 16px) / 2);
    }

    .customerItem img {
        max-height: 65px;
    }

    .customersBtn {
        width: 34px;
        height: 34px;
        font-size: 18px;
    }
}