
/* Carousel base class */
.carousel {
  margin-bottom: 4rem;
}
/* Since positioning the image, we need to help out the caption */
.carousel-caption {
  z-index: 10;
  text-shadow:1px 1px #363636;
  transform:translateY(-50%)
}
.carousel-caption .btn {font-size:1rem;background: #d0b148;
    border-radius: 5px;
    text-transform: uppercase;
    text-shadow: none;
    font-weight: 500; position:relative; border:none; padding-right:25px; padding-left:25px}
.carousel-caption .btn:hover, .carousel-caption .btn:active, .carousel-caption .btn:focus {background-color:#5895a0!important; box-shadow:inherit}
/* Declare heights because of positioning of img element */
.carousel-item {
  height: 32rem;
}
.carousel-item > img {
  position: absolute;
  top: -50%;
  bottom:-50%;
  left: 50%;
  min-width: 100%;
  -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);
}


/* MARKETING CONTENT
-------------------------------------------------- */



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

@media (min-width: 40em) {
  /* Bump up size of carousel content */
  .carousel-caption p {
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    line-height: 1.4;
  }

}

