.wrapper {
  max-width: 1000px;
  width: 100%;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

/**
 * Use this wrapper only for demo purposes
 * So you can show the items outside the wrapper
 */

.wrapper--demo { overflow: visible; }

.wrapper--demo:after,
.wrapper--demo:before {
  content: "";
  position: absolute;
  width: 800px;
  height: 100%;
  top: 0;
  left: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.wrapper--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;
  bottom: 10px;
  left: 0;
  margin: -33px 0 0 0;
  padding: 0;
  font-size: 3em;
  width: 100%;
  text-align: center;
 letter-spacing: .3rem;
  color: #FFF;
	z-index: 200000;
}

.carousel .carousel__content .item .title--sub {
  margin-top: 20px;
  font-size: 1.2em;
  opacity: .5;
}

.carousel .carousel__content .item img {
  width: 100%;
  max-width: 100%;
  display: block;
}

.carousel .carousel__nav {
  position: absolute;
  width: 100%;
  top: 35%;
  margin-top: 0px;
  left: 0;
  z-index: 1;
}

.carousel .carousel__nav .nav {
  position: absolute;
  top: 0;
  color: #000;
  background: rgba(255,255,255,0.75);
  padding: 0 3% 0 3%;
  font-family: ptsans-nb;
  font-weight: bold;
  text-decoration: none;
  font-size: 4vw;
  transition: padding .25s ease;
}

.carousel .carousel__nav .nav:hover {
  padding: 0 4% 0 4%;
  background: rgba(255,255,255,1.0);
}

.carousel .carousel__nav .nav--left { 
	left: 0px;
	border-radius: 0 20% 20% 0;; 
}

.carousel .carousel__nav .nav--right {
  right: 0px;
  border-radius: 20% 0 0 20%;
}
