

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

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

/*Settings for controls based on font-awesome*/
.carousel .carousel-control .fa-chevron-right, .carousel .carousel-control .fa-chevron-left{
  font-size: 1.3em;
  /*margin-right: 30px;*/
  position: absolute;
  top: 50%;
  z-index: 55;
}

.carousel .carousel-control .fa-chevron-right{
  right: 25px;
}

/* Declare heights because of positioning of img element */
.carousel .item {
  height: 250px;
  background-color: #777;
}
.carousel-inner > .item > img {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  height: 250px;
}



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

@media (min-width: 768px) {

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

  /*Carousel slides adapt to size of screen*/
  .carousel, .carousel .item, .carousel-inner > .item > img{
    height: 540px;
  }
}

@media (min-width: 992px) {

  /*Carousel slides adapt to size of screen*/
  .carousel, .carousel .item, .carousel-inner > .item > img{
    height: 690px;
  }
}

@media (min-width: 1200px) {
  
  /*Carousel slides adapt to size of screen*/
  .carousel, .carousel .item, .carousel-inner > .item > img{
    height: 820px;
  }
}

@media (min-width: 1600px) {
  
  /*Carousel slides adapt to size of screen*/
  .carousel, .carousel .item, .carousel-inner > .item > img{
    height: 1070px;
  }
}