.jcarousel-wrapper {
    margin: 20px auto;
    margin-left:1%;
    
    position: relative;
    border: 5px solid #fff;
    width: 97%;
    height: 150px;
    height:auto;
    -webkit-border-radius: 5px;
       -moz-border-radius: 5px;
            border-radius: 5px;
    -webkit-box-shadow: 0 0 2px #999;
       -moz-box-shadow: 0 0 2px #999;
            box-shadow: 0 0 2px #999;
}
/** Carousel **/
.jcarousel {
  position: relative;
  overflow: hidden;
}
.jcarousel ul {
  width: 20000em;
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}

.jcarousel li {
  float: left;
  width:23vw;
  max-width:370px;
  height:auto;
  margin:2px;
}
.jcarousel li a{
  display:block;
  /*
  width:190px;
  height:127px;
  */
  text-decoration:none;
}
.jcarousel .img {
  width: 190px;
  height: 127px;
  width:100%;
  height:auto;
  
  background-size:auto 100%;
  background-size:100% auto ;
  background-size:cover;
  background-repeat:no-repeat;
  background-position:top center;
}
.jcarousel .img img{
  width:100%;height:auto;
  border:0px;
  padding:0px;
}

.dets{
  padding:5px;
  /*width:190px;*/
  width:100%;
  color:#ffffff;
  z-index: 2;
  font-size:12px;
  margin-top:-42px;
  background:rgba(18,41,57,0.70);
  overflow:hidden;

}
/** Carousel Controls **/

.jcarousel-control-prev,
.jcarousel-control-next {
    position: absolute;
    top: 50px;
    top:6vw;
    width: 30px;
    height: 30px;
    text-align: center;
    background: #4E443C;
    color: #fff;
    text-decoration: none !important;
    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;
    text-decoration:none;
}

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

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

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

.jcarousel-control-prev.inactive,
.jcarousel-control-next.inactive {
    opacity: .5;
    cursor: default;
}

/** Carousel Pagination **/

.jcarousel-pagination {
    position: absolute;
    bottom: 0;
    left: 15px;
}

.jcarousel-pagination a {
    text-decoration: none;
    display: inline-block;
    font-size: 11px;
    line-height: 14px;
    min-width: 14px;
    background: #fff;
    color: #4E443C;
    border-radius: 14px;
    padding: 3px;
    text-align: center;
    margin-right: 2px;
    opacity: .75;
}

.jcarousel-pagination a.active {
    background: #4E443C;
    color: #fff;
    opacity: 1;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.75);
}


/*     TABLET      */
@media all and (max-width:1024px){
  .jcarousel li {
    width:35vw;
    max-width:250px;
  }
}