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

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


/* Declare heights because of positioning of img element */
.carousel .item {
  height: 450px;
}
.carousel-inner > .item > img {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  height: 400px;
}

.carousel-control {
  width: 5%;
  top: 50%;
  font-size: 40px;
  }

.carousel-control.left,
.carousel-control.right {
  background: transparent;
  color: #f98012;
}


.carousel .item {
  background: transparent;

}

.carousel-caption {
  color: #333;
}


.carousel-img  {
  position: relative;
  float: left;

}

.carousel-img .displayed {
  /* box-shadow: 2px 2px 5px; */
  display: block;
  margin-left: auto;
  margin-right: auto
}

.carousel-txt  {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.2em;
  position: relative;
  float: right;
  width: 40%;

}

.carousel-margin {
  margin-top: 120px;
}

.carousel-indicators {
    position: absolute;
    top: 10%;
    z-index: 5;
    width: 60%;
    height: 10%;
    padding-left: 0;
    margin-left: -30%;
    text-align: center;
    list-style: none;
}

.carousel-indicators li{
  border: 2px solid #f98012;
}


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

@media (min-width: 768px) {
 

  /* Bump up size of carousel content */
  .carousel-caption p {
    margin-bottom: 20px;
    font-size: 21px;
    line-height: 1.4;
  }

 
}


