.jcarousel-wrapper {
    width: 100%;
    height: 415px;
    text-align: center;
    position: relative;
    margin-bottom: 90px;
    background-size: cover; 
}
.jcarousel-wrapper .container {
    position: relative;
}

/** Carousel **/

.jcarousel {
    position: relative;
    overflow: hidden;
}
.slider .jcarousel {
    height: 415px;
}

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

.jcarousel li {
    float: left;
}
.slider .jcarousel li {
    background-size: cover;
    height: 415px;
}

/** Carousel Controls **/

.slider .jcarousel-control-prev {
    position: absolute;
    top: -250px;
    width: 60px;
    height: 21px;
    background: url(../img/banner-l.png) no-repeat;
}

.slider .jcarousel-control-next {
    position: absolute;
    top: -180px;
    width: 60px;
    height: 21px;
    background: url(../img/banner-r.png) no-repeat;
}

.slider .jcarousel-control-prev:hover{
     background: url(../img/banner-l-hover.png) no-repeat;
}
.slider .jcarousel-control-next:hover{
    background: url(../img/banner-r-hover.png) no-repeat;
}
.slider .jcarousel-control-prev, .slider .jcarousel-control-next {
    right: 30px;
}
.jcarousel-control-prev.inactive,
.jcarousel-control-next.inactive {
    opacity: .5;
    cursor: default;
}


/** Carousel Pagination **/

.jcarousel-pagination {
    position: absolute;
    left: 30px;
    top: -247px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.jcarousel-pagination a {
    text-decoration: none;
    display: block;
    font-size: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
    margin-bottom: 13px;
}

.jcarousel-pagination a.active {
    background: #e7ce79;
    width: 7px;
    height: 18px;
    border-radius: 50px;   
}


