 
body {
  overflow-x: hidden;
  }

.wrappersel {
  max-width: 80%;
  width: 100%;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  overflow-x: hidden;
}
@media only screen and (max-width: 480px) {
.wrappersel {
	max-width:100%;
  overflow-x: hidden;
}
}
/**
 * Use this wrappersel only for demo purposes
 * So you can show the items outside the wrappersel
 */
.wrappersel--demo {
  overflow: visible;
}
.wrappersel--demo:after, .wrappersel--demo:before {
  content: "";
  position: absolute;
  width: 800px;
  height: 100%;
  top: 0;
  left: 100%;
  background: rgba(255, 255, 255, 0.8);
  z-index: 2;
}
.wrappersel--demo:before {
  left: -800px;
}

.carousel {
  width: 100%;
  position: relative;
}
.carousel .carousel__content {
  width: auto;
  position: relative;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-transition: translate3d(0, 0, 0);
}
.carousel .carousel__content .item {
  display: block;
  float: left;
  width: 100%;
  position: relative;
}
.carousel .carousel__content .item .title {
  position: absolute;
  top: 95%;
  left: 0;
  margin: -33px 0 0 0;
  padding: 10px;
  font-size: 2rem;
  width: 100%;
  text-align: center;
  letter-spacing: .3rem;
  color: #FFF;
  background-color: rgba(0,0,0,0.5);
}
@media only screen and (max-width: 480px) { 
.carousel .carousel__content .item .title {
  font-size: 1rem;
  margin: -30px 0 0 0;

}

}
.carousel .carousel__content .item .title--sub {
  margin-top: 20px;
  font-size: 1.2em;
  opacity: .5;
}
.carousel .carousel__content .item .title a {
	color:#FFF;
	display:block;
}
.carousel .carousel__content .item .title a:hover {
	text-decoration:none;
}
.carousel .carousel__content .item img {
  width: 100%;
  max-width: 100%;
  display: block;
}
.carousel .carousel__nav {
	position:absolute;
  width: 108%;
  top: 50%;
  margin-top: -17px;
  margin-left:-4%;
  left: 0;
  z-index: 100;
}
.carousel .carousel__nav .nav {
  position: absolute;
  top: 0;
  color: #FFF;
  background-color: rgba(208, 208, 208,0.5);
  padding: 8px 12px;
  font-weight: bold;
  text-decoration: none;
  transition: padding .25s ease;
}
.carousel .carousel__nav .nav:hover {
  padding: 8px 8px;
   background-color: rgba(255, 255, 255,0.5);
   color:#999999;
}
.carousel .carousel__nav .nav--left {
  border-radius: 3px 0px 0px 3px;
}
.carousel .carousel__nav .nav--right {
  right: 0;
  border-radius: 0px 3px 3px 0px;
}