/* CUSTOMIZE THE CAROUSEL
-------------------------------------------------- */

/* Carousel base class */
.carousel {
	color: white;
	height: 550px;
}
/* Since positioning the image, we need to help out the caption */
.carousel-caption {
  z-index: 10;
}

/* Declare heights because of positioning of img element */
.carousel-inner{
	height: 400px;
	overflow: hidden;
	background: url(/images/bg/testimoniales.jpg) no-repeat center;
    background-size: cover;
}
.carousel .item {
	position: relative;
	width: 50%;
    overflow: auto;
    margin: auto;
    transform: translateY(-50%) overflow: hidden;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.carousel-inner > .item{
	display: none;
	-webkit-transition: -webkit-transform .6s ease-in-out;
	-o-transition: -o-transform .6s ease-in-out;
	transition: transform .6s ease-in-out;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-perspective: 1000px;
	perspective: 1000px
}
.carousel-inner>.active, .carousel-inner>.next, .carousel-inner>.prev{
	display: block
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.carousel-item-next,
.carousel-item-prev {
  position: absolute;
  top: 0;
}

.carousel-indicators{
	display: block;
	text-align: center;
	margin: -50px 0px;
}
.carousel-indicators img{
	display: inline-block;
	width: 95px;
	height: 95px!important;
	border-radius: 50%;
	cursor: pointer;
	border: 2px solid #f1f1f1;
    background: white;
    padding: 10px;
    margin: 0px 25px;
    -webkit-box-shadow: inset 0px 1px 1px #9E9E9E, 2px 2px 2px rgba(0,0,0,0.29);
    -moz-box-shadow: inset 0px 1px 1px #9E9E9E, 2px 2px 2px rgba(0,0,0,0.29);
    -ms-box-shadow: inset 0px 1px 1px #9E9E9E, 2px 2px 2px rgba(0,0,0,0.29);
    -o-box-shadow: inset 0px 1px 1px #9E9E9E, 2px 2px 2px rgba(0,0,0,0.29);
    box-shadow: inset 0px 1px 1px #9E9E9E, 2px 2px 2px rgba(0,0,0,0.29);
}

.carousel-indicators .active{
	margin: 0;
	background-color: #fff;
}

.testimonials{
    padding-top: 40px;
}


/* RESPONSIVE CSS
-------------------------------------------------- */

@media (min-width: 768px) {
  /* Navbar positioning foo */
  .navbar-wrapper {
    margin-top: 20px;
  }
  .navbar-wrapper .container {
    padding-right: 15px;
    padding-left: 15px;
  }
  .navbar-wrapper .navbar {
    padding-right: 0;
    padding-left: 0;
  }

  /* The navbar becomes detached from the top, so we round the corners */
  .navbar-wrapper .navbar {
    border-radius: 4px;
  }

  /* Bump up size of carousel content */
  .carousel-caption p {
    margin-bottom: 20px;
    font-size: 21px;
    line-height: 1.4;
  }

  .featurette-heading {
    font-size: 50px;
  }
}

@media (min-width: 992px) {
  .featurette-heading {
    margin-top: 120px;
  }
}

