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

/* Since positioning the image, we need to help out the caption */
.carousel-caption {
  z-index: 10;
}
.carousel-caption h1{
  color: #ffffff;
  text-shadow: -1px 0 #374D63, 0 1px #374D63, 1px 0 #374D63, 0 -1px #374D63;
  font-size: 30px;

}
.carousel-caption h2{
  color: #ffffff;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
  font-size: 22px;

}
.carousel-indicators {
    bottom: 5px;
}
.carousel-indicators li {
    width: 25px;
    height: 7px;
    border-radius: 0px;
}
.carousel-indicators .active {
    width: 27px;
    height: 9px;
}
/* Makes images fully responsive */

.img-responsive,
.thumbnail > img,
.thumbnail a > img,
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  max-height: 500px;
  height: auto;
}

.carousel-control.left,
.carousel-control.right {
  background-image: none;
}

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


@media (max-width: 768px) {
  .carousel-inner > .item > img {
    min-width: 100%;
    max-height: 500px;
    height: auto;
  }
  .carousel-caption h1{
	  color: #ffffff;
	  text-shadow: -1px 0 #374D63, 0 1px #374D63, 1px 0 #374D63, 0 -1px #374D63;
	  font-size: 18px;

  }
	.carousel-caption h2{
	  color: #ffffff;
	  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
	  font-size: 16px;

	}

}

