/* 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: 400px;
}
/* ------------------- Carousel Styling ------------------- */

#index-carousel .carousel {} .carousel-inner {} .carousel-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 20;
    padding: 15px 25px 5px 25px;
    color: #fff;
    text-align: right;
}
.carousel-caption h2 {
    font-size: 16px;
    margin: 0px;
    z-index: 20;
}
.carousel-caption a {
    color: #fff;
    z-index: 20;
}
.carousel-indicators {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    z-index: 15;
    margin: 0;
    padding: 0 55px 25px 0;
    text-align: center;
}
.carousel-control.left,
.carousel-control.right {
    background-image: none;
}
@media (max-width: 768px) {
    .img-responsive,
    .thumbnail > img,
    .thumbnail a > img,
    .carousel-inner > .item > img,
    .carousel-inner > .item > a > img {
        height: 200px;
    }
}