.jcarousel-wrapper.responsive {
    position: relative;
    border-left: 10px solid #f1f1f1;
    border-right: 10px solid #f1f1f1;
    border-top: 20px solid #f1f1f1;
    border-bottom: 20px solid #f1f1f1;
    margin: 0 20px;
}

/** Carousel **/

.jcarousel.responsive {
    position: relative;
    overflow: hidden;
    width: 100%;
    background: #f1f1f1
}

.jcarousel.responsive>ul {
    width: 20000em;
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
}

.jcarousel.responsive>ul>li {
    border-left: 10px solid #f1f1f1;
    border-right: 10px solid #f1f1f1;
    width: 200px;
    float: right;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.jcarousel.responsive .project-thumb {
    display: block;
    max-width: 100%;
    height: auto !important;
}

/** Carousel Controls **/

.jcarousel-wrapper.responsive .jcarousel-control-prev,
.jcarousel-wrapper.responsive .jcarousel-control-next {
    position: absolute;
    top: 50%;
    margin-top: -15px;
    width: 30px;
    height: 30px;
    text-align: center;
    color: #565656;
    text-decoration: none;
    font-size: 35px !important;
}

.jcarousel-wrapper.responsive .jcarousel-control-prev:hover,
.jcarousel-wrapper.responsive .jcarousel-control-next:hover,
.jcarousel-wrapper.responsive .jcarousel-control-prev:active,
.jcarousel-wrapper.responsive .jcarousel-control-next:active,
.jcarousel-wrapper.responsive .jcarousel-control-prev:focus,
.jcarousel-wrapper.responsive .jcarousel-control-next:focus {
    text-decoration: none
}

.jcarousel-wrapper.responsive .jcarousel-control-prev {
    right: -43px;
}

.jcarousel-wrapper.responsive .jcarousel-control-next {
    left: -43px;
}

/* Mobile: arrows inside + touch-friendly */
@media (max-width: 767px) {
    .jcarousel-wrapper.responsive {
        margin: 0 5px;
        border-left-width: 5px;
        border-right-width: 5px;
    }

    .jcarousel-wrapper.responsive .jcarousel-control-prev,
    .jcarousel-wrapper.responsive .jcarousel-control-next {
        width: 36px;
        height: 36px;
        line-height: 36px;
        background: rgba(0, 0, 0, 0.08);
        border-radius: 50%;
        font-size: 24px !important;
        z-index: 10;
    }

    .jcarousel-wrapper.responsive .jcarousel-control-prev {
        right: 5px;
    }

    .jcarousel-wrapper.responsive .jcarousel-control-next {
        left: 5px;
    }
}