.wrappers{
  width:100%;
  position:relative;
}

/**
 * Padding is set relative to the width
 * of the element, so here padding-top:60% is
 * a percentage of the width. This allows us 
 * to set the height as a ratio of the width
 *
 */
.carousels{
	width: 100%;
	position: relative;
	padding-top: 38%;
	overflow: hidden;
}

.inner{
	width: 100%;
	height: 100%;
	position: absolute;
	top:0;
	left: 0;
}

/**
 * ==========================
 * Animation styles
 * 
 * Notes:
 * 1. We use z-index to position active slides in-front 
 * of non-active slides
 * 2. We set right:0 and left:0 on .slide to provide us with
 * a default positioning on both sides of the slide. This allows 
 * us to trigger JS and CSS3 animations easily
 *
 */
.slides{
	width: 100%;
	height: 100%;
	position: absolute;
	top:0;
	right:0;
	left:0;
	z-index: 1;
	opacity: 0;
}

.slides.active,
.slides.left,
.slides.right{
	z-index: 2;
	opacity: 1;
}

/**
 * ==========================
 * JS animation styles
 * 
 * We use jQuery.animate to control the sliding animations
 * when CSS3 animations are not available. In order for
 * the next slide to slide in from the right, we need
 * to change the left:0 property of the slide to left:auto
 *
 */

.js-reset-left{left:auto}

/**
 * ==========================
 * CSS animation styles
 * 
 * .slide.left and .slide.right set-up
 * the to-be-animated slide so that it can slide
 * into view. For example, a slide that is about 
 * to slide in from the right will:
 * 1. Be positioned to the right of the viewport (right:-100%)
 * 2. Slide in when the style is superseded with a more specific style (right:0%)
 *
 */
.slides.left{
	left:-100%;
	right:0;
}

.slides.right{
	right:-100%;
	left: auto;
}

.transition .slides.left{left:0%}
.transition .slides.right{right:0%}

/**
 * The following classes slide the previously active
 * slide out of view before positioning behind the 
 * currently active slide
 *
 */
.transition .slides.shift-right{right: 100%;left:auto}
.transition .slides.shift-left{left: 100%;right:auto}

/**
 * This sets the CSS properties that will animate. We set the
 * transition-duration property dynamically via JS.
 * We use the browser's default transition-timing-function
 * for simplicity's sake
 * 
 * It is important to note that we are using CodePen's inbuilt
 * CSS3 property prefixer. For your own projects, you will need
 * to prefix the transition and transform properties here to ensure
 * reliable support across browsers
 *
 */
.transition .slides{
	transition-property: right, left, margin;
}

/**
 * ==========================
 * Indicators
 *
 */
.indicators{
  width:100%;
  position: absolute;
  bottom:0;
  z-index: 4;
  padding:0;
  text-align: center;
  display:none;
}

.indicators li{
	width: 13px;
	height: 13px;
	display: inline-block;
	margin: 5px;
	background: #fff;
	list-style-type: none;
	border-radius: 50%;
  cursor:pointer;
  transition:background 0.3s ease-out;
}

.indicators li.active{background:#93278f}

.indicators li:hover{background-color:#2b2b2b}

/**
 * ==========================
 * Arrows 
 *
 */
.arrow{
  position:absolute;
  top:50%;
  z-index:5;
  cursor:pointer;
}

.arrow:hover{border-color:#93278f}

.arrow-left{
  left:3em;
}

.arrow-right{
  right:3em;
}

/**
 * ==========================
 * For demo purposes only
 * 
 * Please note that the styles below are used
 * for the purposes of this demo only. There is no need
 * to use these in any of your own projects
 *
 */
.slides{
	text-align:center;
  padding-top:0%;
  background-size:cover;
}

.slides:nth-child(1){
	background-image:url(../images/products/t1.jpg);
 }
.slides:nth-child(2){
	background-image:url(../images/products/t2.jpg);
}
.slides:nth-child(3){
	background-image:url(../images/products/t3.jpg);
}

.slidesc:nth-child(1){
	background-image:url(../images/products/c1.jpg);
 }
.slidesc:nth-child(2){
	background-image:url(../images/products/c2.jpg);
}
.slidesc:nth-child(3){
	background-image:url(../images/products/c3.jpg);
}

.slidesar:nth-child(1){
	background-image:url(../images/products/ar1.jpg);
 }
.slidesar:nth-child(2){
	background-image:url(../images/products/ar2.jpg);
}
.slidesar:nth-child(3){
	background-image:url(../images/products/ar3.jpg);
}
.slidesar:nth-child(4){
	background-image:url(../images/products/ar4.jpg);
}
.slidesar:nth-child(5){
	background-image:url(../images/products/ar5.jpg);
}
.slidesar:nth-child(6){
	background-image:url(../images/products/ar6.jpg);
}
.slidesar:nth-child(7){
	background-image:url(../images/products/ar7.jpg);
}
.slidesar:nth-child(8){
	background-image:url(../images/products/ar8.jpg);
}
.slidesar:nth-child(9){
	background-image:url(../images/products/ar9.jpg);
}
.slidesar:nth-child(10){
	background-image:url(../images/products/ar10.jpg);
}

.slidesk:nth-child(1){
	background-image:url(../images/products/k1.jpg);
 }
.slidesk:nth-child(2){
	background-image:url(../images/products/k2.jpg);
}
.slidesk:nth-child(3){
	background-image:url(../images/products/k3.jpg);
}
.slidesk:nth-child(4){
	background-image:url(../images/products/k4.jpg);
}
.slidesk:nth-child(5){
	background-image:url(../images/products/k5.jpg);
}



.slidesag:nth-child(1){
	background-image:url(../images/products/ag1.jpg);
 }
.slidesag:nth-child(2){
	background-image:url(../images/products/ag2.jpg);
}
.slidesag:nth-child(3){
	background-image:url(../images/products/ag3.jpg);
}
.slidesag:nth-child(4){
	background-image:url(../images/products/ag4.jpg);
}
.slidesag:nth-child(5){
	background-image:url(../images/products/ag5.jpg);
}
.slidesag:nth-child(6){
	background-image:url(../images/products/ag6.jpg);
}

.slidesm:nth-child(1){
	background-image:url(../images/products/m1.jpg);
 }
.slidesm:nth-child(2){
	background-image:url(../images/products/m2.jpg);
}
.slidesm:nth-child(3){
	background-image:url(../images/products/m3.jpg);
}
.slidesm:nth-child(4){
	background-image:url(../images/products/m4.jpg);
}
.slidesm:nth-child(5){
	background-image:url(../images/products/m5.jpg);
}

.slidese:nth-child(1){
	background-image:url(../images/products/e1.jpg);
 }
.slidese:nth-child(2){
	background-image:url(../images/products/e2.jpg);
}
.slidese:nth-child(3){
	background-image:url(../images/products/e3.jpg);
}
.slidese:nth-child(4){
	background-image:url(../images/products/e4.jpg);
}
.slidese:nth-child(5){
	background-image:url(../images/products/e5.jpg);
}
.slidese:nth-child(6){
	background-image:url(../images/products/e6.jpg);
}

.slidesf:nth-child(1){
	background-image:url(../images/products/f1.jpg);
 }
.slidesf:nth-child(2){
	background-image:url(../images/products/f2.jpg);
}
.slidesf:nth-child(3){
	background-image:url(../images/products/f3.jpg);
}
.slidesf:nth-child(4){
	background-image:url(../images/products/f4.jpg);
}
.slidesf:nth-child(5){
	background-image:url(../images/products/f5.jpg);
}
.slidesf:nth-child(6){
	background-image:url(../images/products/f6.jpg);
}

.slidesh:nth-child(1){
	background-image:url(../images/products/h1.jpg);
 }
.slidesh:nth-child(2){
	background-image:url(../images/products/h2.jpg);
}
.slidesh:nth-child(3){
	background-image:url(../images/products/h3.jpg);
}
.slidesh:nth-child(4){
	background-image:url(../images/products/h4.jpg);
}
.slidesh:nth-child(5){
	background-image:url(../images/products/h5.jpg);
}

.slidessc:nth-child(1){
	background-image:url(../images/products/s1.jpg);
 }
.slidessc:nth-child(2){
	background-image:url(../images/products/s2.jpg);
}
.slidessc:nth-child(3){
	background-image:url(../images/products/s3.jpg);
}
.slidessc:nth-child(4){
	background-image:url(../images/products/s4.jpg);
}
.slidessc:nth-child(5){
	background-image:url(../images/products/s5.jpg);
}


.slidesind:nth-child(1){
	background-image:url(../images/products/industrial/ma1.jpg);
}
.slidesind:nth-child(2){
	background-image:url(../images/products/industrial/ma1.jpg);
}
.slidesind:nth-child(3){
	background-image:url(../images/products/industrial/ma1.jpg);
 }



