.carousel {
  position: relative;
  overflow: hidden;
  display: block;
  width: 50%;
  height: auto; }

.full-screen.carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.carousel-stage {
  height: 100%;
  width: auto;
  border: none; }

.carousel-stage ol {
  height: 100%;
  position: relative;
  top: 0;
  margin: 0;
  padding: 0; }

/* if the images in the slides aren't all of equal height, a max-width
 * can be used to correctly align the caption */
.carousel-stage li {
  position: relative;
  overflow: hidden;
  float: left;
  list-style: none outside none;
  text-align: center;
  padding: 0; }

/* depending on whether you want to fit to width or height, adjust these
 * properties accordingly */
.carousel-stage li img {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: auto; }

/* the caption */
.carousel-stage li h1 {
  font-size: 30px; }
  .carousel-stage li h1 a {
    font-size: 40px;
    display: block; }

.carousel-stage li p {
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  margin: 0;
  width: 96%;
  padding: 2%; }

/* Controls */
.carousel .carousel-sliders {
  position: absolute;
  top: 50%;
  z-index: 100;
  width: 100%; }

.carousel .carousel-sliders a {
  color: #999;
  font-size: 48px;
  -webkit-transition: -webkit-transform 0.5s ease;
  -moz-transition: -moz-transform 0.5s ease;
  transition: transform 0.5s ease; }

.carousel .carousel-sliders a:hover,
.carousel .carousel-sliders a:focus {
  text-decoration: none;
  -webkit-transform: scale(1.25);
  -moz-transform: scale(1.25);
  transform: scale(1.25); }

/* Right */
.carousel .carousel-sliders a.right {
  float: right;
  position: relative;
  margin-right: 40px; }

/* Left */
.carousel .carousel-sliders a.left {
  float: left;
  position: relative;
  margin-left: 40px; }

/* Navigation */
.carousel-navigation ol {
  list-style: none outside none;
  height: 20px;
  padding: 0;
  margin: 0; }

.carousel-navigation li {
  float: left;
  margin-right: 10px; }

.carousel-navigation li.selected a {
  text-decoration: underline; }

.carousel-navigation a:hover {
  opacity: 0.5; }
