.jcarousel-wrapper {
    margin: 20px auto;
    margin-left: 50px;
    margin-right: 50px;
    position: relative;
    width: 300px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.jcarousel-wrapper .photo-credits {
    position: absolute;
    right: 15px;
    bottom: 0;
    font-size: 13px;
    color: #fff;
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.85);
    opacity: .66;
}

.jcarousel-wrapper .photo-credits a {
    color: #fff;
}

/** Carousel **/

.jcarousel {
    margin-left: 20px;
    position: relative;
    overflow: hidden;
}

.jcarousel ul {
    width: 1000%;
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
}

.jcarousel li {
    float: left;
    width: 300px;
    height: 200px;
    margin-left: 0px;
    margin-right: 0px;
}

/** Carousel Controls **/

.jcarousel-control-prev,
.jcarousel-control-next {
    position: absolute;
    width: 30px;
    height: 30px;
    text-align: center;
    background: #4E443C;
    color: #fff;
    text-decoration: none;
    text-shadow: 0 0 1px #000;
    font: 24px/27px Arial, sans-serif;
    -webkit-border-radius: 30px;
       -moz-border-radius: 30px;
            border-radius: 30px;
    -webkit-box-shadow: 0 0 2px #999;
       -moz-box-shadow: 0 0 2px #999;
            box-shadow: 0 0 2px #999;
    bottom: 80px;
}

.jcarousel-control-prev {
    left: -10px;
}

.jcarousel-control-next {
    right: -10px;
}

.jcarousel-control-prev:hover span,
.jcarousel-control-next:hover span {
    display: block;
}

@media (min-width:768px) {
    .jcarousel-wrapper {
        margin: 20px auto;
        margin-left: 50px;
        margin-right: 50px;
        position: relative;
        width: 450px;
        height: 200px;      
    }

    .jcarousel li {
        float: left;
        width: 430px;
        height: 200px;
        margin-left: 0px;
        margin-right: 0px;
    }

}