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

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

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


.carousel-caption h1 {
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 40px;
}

.carousel-caption hr {
  margin: 30px auto;
}

.carousel-caption p {
  font-weight: 300;
  /*color: rgba(255, 255, 255, 0.7);*/
  font-size: 16px;
  margin-bottom: 50px;
}


@media only screen and (max-width: 600px) {
  .carousel {
    height: 350px;

  }
  /* Since positioning the image, we need to help out the caption */
  .carousel-caption {
    z-index: 10;
    padding-bottom: 25px;
  }

  .carousel-caption h1 {
    font-weight: 300;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 18px;
  }

  .carousel-caption hr {
    margin: 30px auto;
  }

  .carousel-caption p {
    font-weight: 100;
    /*color: rgba(255, 255, 255, 0.7);*/
    font-size: 11px;
    margin-bottom: 10px;
  }
  .btn-xl {
    padding: 5px 23px;
    font-size: 12px;
  }

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