/* Makes images fully responsive */
.img-responsive,
.thumbnail > img,
.thumbnail a > img,
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  width: 100%;
  height: auto;
}

/* ------------------- Carousel Styling ------------------- */
.carousel-inner {
  border-radius: 0px;
}
.carousel-caption {
  background-color: inherit;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  padding: 0 0 10px 25px;
  color: #fff;
  text-align: left;
}
.carousel-indicators {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  z-index: 15;
  margin: 0;
  padding: 0 25px 25px 0;
  text-align: right;
}
.carousel-control.left,
.carousel-control.right {
  background-image: none;
}

/* carousel fullscreen - vertically centered caption*/
.carousel-fullscreen .carousel-caption {
    top: 40%;  
    bottom: auto;
    -webkit-transform: translate(0, -50%); 
    -ms-transform: translate(0, -50%); 
    transform: translate(0, -50%);
}
.carousel-caption {
    top: 40%;  
    bottom: auto;
    -webkit-transform: translate(0, -50%); 
    -ms-transform: translate(0, -50%); 
    transform: translate(0, -50%);
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}
/* overlay for better readibility of the caption  */
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    opacity: 0.3;
    transition: all 0.2s ease-out;
}
.super-heading {
    font-size: 80px;
	color: #fff;
	text-align: center;
	text-transform: uppercase;
	font-family: 'Ubuntu', sans-serif;
}
.super-paragraph {
    font-size: 28px;
	font-weight: 300;
	text-align: center;
}
.carousel-caption .super-paragraph a,
.carousel-caption .super-paragraph a:hover {
    color: #fff;
}
#carousel {
    margin: 0px 0;
}

@media (max-width: 800px) {
.super-heading { font-size: 60px; color: #fff; text-align: center; }	
}

@media (max-width: 480px) {
#carousel { margin-top: 20px; }
.super-heading { font-size: 30px; color: #fff; text-align: center; }
.super-paragraph { font-size: 24px; line-height: 28px; font-weight: 300; text-align: center; }
}