.jcarousel-wrapper {
    margin: 0;
	padding: 0 50px;
    position: relative;
    border: none;
	background-color: transparent;
}

/** Carousel **/

.jcarousel {
    position: relative;
    overflow: hidden;
    width: 100%;
	
}

.jcarousel ul {
    width: 10000em;
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
	display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}

.jcarousel li {
    width: 200px;
	min-height: 370px;
    float: left;
    padding: 0 8px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.jcarousel li .inner {
	width: 100%;
	height: 100%;
	padding: 15px;
	background-color: #fff;
	border: solid 1px #ddd;
}

.jcarousel li .inner .inner-img {
	width: 100%;
	height: 150px;
	display: flex;
    align-items: center;
    justify-content: center;
}


.jcarousel li .inner img {
    display: block;
    max-width: 80%;
	max-height: 150px;
    height: auto !important;
}


.jcarousel li .inner h4 {
	font-size: 1.2rem;
	line-height: 1.4rem;
	color: #333;
	font-weight: 500;
}

.jcarousel li .inner p {
	font-size: 1rem;
	line-height: 1.5rem;
	color: #555;
	font-weight: 400;
}

@media only screen and (max-width: 766px) {
	.jcarousel li .inner h4 {
	font-size: .95rem;
	line-height: 1.2rem;
}

.jcarousel li .inner p {
	font-size: .85rem;
	line-height: 1.4rem;
}
}


/** Carousel Controls **/

.jcarousel-control-prev,
.jcarousel-control-next {
    position: absolute;
    top: 50%;
    margin-top: -15px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #4E443C;
    color: #fff;
    text-decoration: none;
    font: 24px/27px;
}

.jcarousel-control-prev,
.jcarousel-control-next {
    position: absolute;
    top: 50%;
    margin-top: -15px;
    width: 30px;
    height: 30px;
    display: flex;
  align-items: center;
  justify-content: center;
    background: #4E443C;
    color: #fff;
    text-decoration: none;
    font: 30px/30px;
	transition: all 0.3s;
	border-radius: 30px;
}

.jcarousel-control-prev:hover,
.jcarousel-control-next:hover {
	color: #fff;
	text-decoration:none;
	opacity: .5;
}
.jcarousel-control-prev {
    left: 15px;
}

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

/** Carousel Pagination **/

.jcarousel-pagination {
    position: absolute;
    bottom: -40px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    margin: 0;
}

.jcarousel-pagination a {
    text-decoration: none;
    display: inline-block;

    font-size: 11px;
    height: 10px;
    width: 10px;
    line-height: 10px;

    background: #fff;
    color: #4E443C;
    border-radius: 10px;
    text-indent: -9999px;

    margin-right: 7px;


    -webkit-box-shadow: 0 0 2px #4E443C;
    -moz-box-shadow: 0 0 2px #4E443C;
    box-shadow: 0 0 2px #4E443C;
}

.jcarousel-pagination a.active {
    background: #4E443C;
    color: #fff;
    opacity: 1;

    -webkit-box-shadow: 0 0 2px #F0EFE7;
    -moz-box-shadow: 0 0 2px #F0EFE7;
    box-shadow: 0 0 2px #F0EFE7;
}
