/*
*,
*:after,
*:before {
  box-sizing: border-box;
}
*/


.slide {
  border: none;
  color: #fff;
  float: left;
  font-size: 20px;
  height: 85px;
  line-height: 5;
  text-align: center;
  width: 150px;
}

.slide img {
	height: 100%;
	padding: 0;
	margin: 0;
	border: none;
}


.carousel {
  margin: 20px auto;
  overflow: hidden;
  position: relative;
  width: 150px;
}

@media (min-width: 320px) {
  .carousel {
    width: 300px;
  }
}

@media (min-width: 480px) {
  .carousel {
    width: 450px;
  }
}

@media (min-width: 680px) {
  .carousel {
    width: 600px;
  }
}

@media (min-width: 880px) {
  .carousel {
    width: 800px;
  }

.slide {
  height: 110px;
  width: 200px;
}
  
}

@media (min-width: 1080px) {
  .carousel {
    width: 1000px;
  }
}

@media (min-width: 1280px) {
  .carousel {
    width: 1200px;
  }
}

@media (min-width: 1480px) {
  .carousel {
    width: 1400px;
  }
}

.carousel:before,
.carousel:after {
  content: "";
  display: table;
}

.carousel:after {
  clear: both;
}





/* ==========================

=============================

========================== */



.purejscarousel {
  overflow: hidden;
}

.purejscarousel-slides-container:before,
.purejscarousel-slides-container:after {
  content: "";
  display: table;
}

.purejscarousel-slides-container:after {
  clear: both;
}

.purejscarousel-slide {
  float: left;
}

.purejscarousel-btn {
  background: transparent;
  border: 0;
  box-shadow: none;
  outline: none;
  cursor: pointer;
  height: 20px;
  margin-top: -25px;
  position: absolute;
  top: 50%;
  width: 20px;
}

.purejscarousel-btn-next {
	border-bottom: 8px solid #aaa;
	border-right: 8px solid #aaa;
	right: 5px;
	-moz-transform: rotate(315deg);
	-webkit-transform: rotate(315deg);
	transform: rotate(315deg);
	display: none;
}

.purejscarousel-btn-prev {
	border-bottom: 8px solid #aaa;
	border-left: 8px solid #aaa;
	left: 5px;
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	display: none;
}

.purejscarousel-dots-container {
	float: left;
	margin-top: 12px;
	text-align: center;
	width: 100%;
}

.purejscarousel-dot {
	display: inline-block;
	margin: 0;
	padding: 0;
	background: #ccc;
	border: 0;
	border-radius: 50%;
	box-shadow: none;
	cursor: pointer;
	height: 8px;
	outline: none;
	margin: 0 5px;
	width: 8px;
}

.active.purejscarousel-dot {
	cursor: default;
	background: #008b27;
}

