﻿

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

/* Carousel base class */
.carousel {
  max-height: 400px;
  margin-bottom: 30px;
}

/* Declare heights because of positioning of img element */
.carousel .item {
  max-height: 400px;
}
.carousel-inner > .item > img {

  min-width: 100%;
  max-height: 400px;
}

@media (max-width: 992px) {
.carousel {
  max-height: 300px;
  margin-bottom: 30px;
}
.carousel .item {
  max-height: 300px;
}
.carousel-inner > .item > img {

  min-width: 90%;
  max-height: 300px;
}

}

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

@media (min-width: 768px) {
  /* Navbar positioning foo */
  .navbar-wrapper {
    margin-top: 20px;
  }
  .navbar-wrapper .container {
    padding-right: 15px;
    padding-left: 15px;
  }
  .navbar-wrapper .navbar {
    padding-right: 0;
    padding-left: 0;
  }

  /* The navbar becomes detached from the top, so we round the corners */
  .navbar-wrapper .navbar {
    border-radius: 4px;
  }

  /* Bump up size of carousel content */
  .carousel-caption p {
    line-height: 1;
  }

  .featurette-heading {
    font-size: larger;
  }
}

