/* CUSTOMIZE THE CAROUSEL
-------------------------------------------------- */

/* Carousel base class */
.carousel {
  margin-bottom: 0em;
}
/* Since positioning the image, we need to help out the caption */

.carousel-caption {
  position: absolute;
  top: 10%;
  right: 10%;
  left: 10%;
  text-align: center;
  z-index: 15;
}

.carousel-caption h1{
	color:#fff;
	font-size:2em;
	-webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: 1;
}
  .carousel-caption h1 span{
	color:#956a17;
  }
.carousel-caption i{
	font-size:1.5em;
	margin-left:8px;
	margin-right:8px;;
	color:#e60000;
}
@media (min-width: 1200px) {
.carousel-caption h1.big-white{
	font-size:5em;
}
}

.carousel-caption h1.big-white i{
	color:#fff;
}
.carousel-caption p{
	color:#eee;
	font-size:1.25em;
	-webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: 1;
}


/* Declare heights because of positioning of img element */
.carousel-item {
  height: 24em;
}
.carousel-item > img {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  height: auto;
  margin-left:auto;
  margin-right:auto;
}


/* MARKETING CONTENT
-------------------------------------------------- */

/* Center align the text within the three columns below the carousel */
.marketing .col-lg-4 {
  margin-bottom: 1.5em;
  text-align: center;
}
.marketing h2 {
  font-weight: 400;
}
.marketing .col-lg-4 p {
  margin-right: .75em;
  margin-left: .75em;
}


/* Featurettes
------------------------- */

.featurette-divider {
  margin: 5rem 0; /* Space out the Bootstrap <hr> more */
}

/* Thin out the marketing headings */
.featurette-heading {
  font-weight: 300;
  line-height: 1;
  letter-spacing: -.05em;
}


/* RESPONSIVE CSS
-------------------------------------------------- */

@media (min-width: 1200px) {
  /* Bump up size of carousel content */
   .carousel-caption {
    top: 20%;
	right: 20%;
	left: 20%;

  }
   .carousel-caption h1 {

	font-size:2.75em;
  }

  .carousel-caption p {
    margin-bottom: 1.75em;
	margin-top:1.75em;
    font-size: 1.25em;
    line-height: 1.4;

  }

  .carousel-item {
  height: 36em;
}
}


.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  width: 15%;
  color: #fff;
  text-align: center;
  z-index: 15;
  opacity: 0.5;
}
.carousel-control-prev .fa,
.carousel-control-next .fa{
  font-size:2em;
}
.carousel-control-prev:focus .fa, .carousel-control-prev:hover .fa,
.carousel-control-next:focus .fa,
.carousel-control-next:hover .fa{
  font-size:4em;
}

.carousel-control-prev:focus, .carousel-control-prev:hover,
.carousel-control-next:focus,
.carousel-control-next:hover {
  color: #956a17;
  text-decoration: none;
  outline: 0;
  opacity: .9;
}
.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: transparent no-repeat center center;
  background-size: 100% 100%;
}

#myCarousel {
	text-align:center;
}
.slide .carousel-indicators {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}

.slide .carousel-indicators li {
  position: relative;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.9);
}

.slide .carousel-indicators li::before {
  position: absolute;
  top: -10px;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 10px;
  content: "";
}

.slide .carousel-indicators li::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 10px;
  content: "";
}

.slide .carousel-indicators .active {
  background-color: #956a17;
}