#banner-nosotros {
	width:90%;
	height:800px;
	margin:auto;
	box-shadow:0 0 5px rgba(187,187,187,0.8);
	}
	
.carousel{
	width: 100%;
	height:800px;
	position: relative;
	padding-top: 60%;
	overflow: hidden;
}

.inner{
	width: 100%;
	height: 800px;
	position: absolute;
	top:0;
	left: 0;
	box-shadow:0 0 30px rgba(86,86,86,1.00);
}

.slide{
	width: 100%;
	height:800px;
	position: absolute;
	top:0;
	right:0;
	left:0;
	z-index: 1;
	opacity: 0;
    background-size:cover;
    background-position:center center;
    padding-top:30%;
}


.slide.active,
.slide.left,
.slide.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%)
 *
 */
.slide.left{
	left:-100%;
	right:0;
}

.slide.right{
	right:-100%;
	left: auto;
}

.transition .slide.left{left:0%}
.transition .slide.right{right:0%}

/**
 * The following classes slide the previously active
 * slide out of view before positioning behind the 
 * currently active slide
 *
 */
.transition .slide.shift-right{right: 100%;left:auto}
.transition .slide.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 .slide{
	-webkit-transition-property: right, left, margin;
	transition-property: right, left, margin;
}

/**
 * ==========================
 * Indicators
 *
 */
.indicators{
  width:100%;
  position: absolute;
  top:750px;
  z-index: 4;
  padding:0;
  text-align: center;
}

.indicators li{
	width: 13px;
	height: 13px;
	display: inline-block;
	margin: 5px;
	background: #83AA00;
	list-style-type: none;
	border-radius: 50%;
  cursor:pointer;
  -webkit-transition: background 0.3s ease-out;
  transition:background 0.3s ease-out;
}

.indicators li.active{background:#253200}

.indicators li:hover{background-color:#445A00}

/**
 * ==========================
 * Arrows 
 *
 */
.arrow{
  width: 50px;
  height: 50px;
  position:absolute;
  top:35%;
  z-index:5;
  border-top:3px solid #fff;
  border-right:3px solid #fff;
  cursor:pointer;
  -webkit-transition: border-color 0.3s ease-out;
  transition:border-color 0.3s ease-out;
}

.arrow:hover{border-color:#83AA00}

.arrow-left{
  left:50px;
  -webkit-transform:rotate(225deg);
          transform:rotate(225deg);
}

.arrow-right{
  right:50px;
  -webkit-transform:rotate(45deg);
          transform:rotate(45deg);
}

/**
 * ==========================
 * 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
 *
 */

.slide p {
	background-color:rgba(107,140,0,0.8);
	width:40%;
	color:#FFFFFF;
	font-size:30px;
	line-height:35px;
	padding:20px 20px 40px 40px;
	top:0;
	}

.slide:nth-child(1){
	background-image:url(../imagenes/equipo-a+v-1.jpg);
 }

.slide:nth-child(2){
	background-image:url(../imagenes/equipo-a+v-2.jpg);
}

.slide:nth-child(3){
	background-image:url(../imagenes/equipo-a+v-3.jpg);
 }
 
 .slide:nth-child(4){
	background-image:url(../imagenes/equipo-a+v-4.jpg);
 }

.slide:nth-child(5){
	background-image:url(../imagenes/equipo-a+v-5.jpg);
}

.slide:nth-child(6){
	background-image:url(../imagenes/equipo-a+v-6.jpg);
 }
 
 
 /**********MEDIA QUERY
***************************/

/*1360*/	
@media screen and (max-width:1440px) {
	
#banner-nosotros,
.carousel,
.inner,
.slide {
	height:600px;
	}
	
.indicators {
	top:550px;
  }
	
	}

/*768*/	
@media screen and (max-width:900px) {
	
#banner-nosotros,
.carousel,
.inner,
.slide {
	height:400px;
	}
	
.indicators {
	top:360px;
  }
	
	
.slide p {
	width:50%;
	font-size:20px;
	line-height:25px;
	padding:20px;
	}
	

	}
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	