.jcarousel-wrapper {
    position: relative;
}

/** Carousel **/

.jcarousel {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.jcarousel ul {
    width: 20000em;
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
}

.jcarousel li {
    width: 200px;
    float: left;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.jcarousel .image {
    width: 100%;
    height: 300px;
}
.jcarousel .image img {
    width:100%;
    height: 100%;
    object-fit: cover;
}

/** Carousel Controls **/

.jcarousel-control-prev,
.jcarousel-control-next {
    position: absolute;
    top: 50%;
    margin-top: -25px;
    width: 50px;
    height: 50px;
    text-decoration: none;
}

.jcarousel-control-prev {
    left: 25px;
    background: url(../images/jcarousel-prev.png) no-repeat center;
}

.jcarousel-control-next {
    right: 25px;
    background: url(../images/jcarousel-next.png) no-repeat center;
}

/** Carousel Pagination **/

.jcarousel-pagination {
    position: absolute;
    bottom:20px;
    left:0;
    right:0;
    margin: 0;
    z-index:999;
    text-align: center;
}

.jcarousel-pagination a {
    text-decoration: none;
    display: inline-block;
    height: 10px;
    width: 10px;
    line-height: 10px;
    margin:0 7px;

    background: #fff;
    border-radius: 100%;
    text-indent: -9999px;
}

.jcarousel-pagination a.active {
    height: 25px;
    width: 25px;
    line-height: 25px;
}
