.cv-scroller-container {
    position: relative;
    width: 100%;
    height: 200px;
    max-height: 200px;
}

.cv-scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.cv-scroll-arrow > a {
    color: #c2c2c2;
}

.cv-scroller-arrow-left {
    left: 0;
}

.cv-scroller-arrow-right {
    right: 0;
}

.cv-client-row {
    overflow-x: scroll;
    white-space: nowrap;
    overflow-y: hidden;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.cv-client {
    width: 30%;
    height: 100%;
    position: relative;
    float: none;
    display: inline-block;
}

.cv-client > img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
@media (min-width:480px) {
    .cv-client {
        width: 23.1%; /* (.3 to notice there's more to scroll through)*/
    }
}

@media (min-width:768px) {
    .cv-client {
        width: 18.75%; /* (.3 to notice there's more to scroll through)*/
    }
}

@media (min-width:992px) {
    .cv-scroller-container {
        height: 250px;
        max-height: 250px;
    }
    .cv-client {
        width: 15.8%; /* this should allow 6.3 clients to be shown (.3 to notice there's more to scroll through)*/
    }
}
