@charset "utf-8";
/* CSS Document */


/* ORIGINAL styles for the titles when they sat left*/
/*.carousel-caption {
	position: absolute;
	left: 50%;
	bottom: 50%;
	right: 0;
	padding: 10px;	
	color: #fff;
	text-align: center;
	text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
	background-color: rgba(35,31,32,0.8);
}

.item h2 {
	font-size: 36px;
	color: #FFF;
	font-weight: 500;	
	text-transform: uppercase;
	margin: 30px 0;
	font-family: 'Open Sans';
}*/


.carousel-caption {
	position: relative;
	left: 0;
	top:400px;
	right: 0;
	padding: 10px;
	/* padding-bottom: 20px; */
	color: #fff;
	text-align: center;
	text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
	background-color: rgba(35,31,32,0.8);
	width:100%
}

.carousel-item h2 {
	font-size: 36px;
	color: #FFF;
	font-weight: 500;
	/* display: inline-block; */
	text-transform: uppercase;
	margin: 20px 0 20px 70px;
	font-family: 'Open Sans';
	text-align: left;
}

.carousel-item h3 {
	font-size: 18px;
	color: #fd9d00;
	font-weight: 500;
	/* display: inline-block; */
	text-transform: uppercase;
	margin: 20px 70px 20px 0;
	font-family: 'Open Sans';
	text-align: right;
}


@media only screen and (max-width:1024px) {
	
.carousel-caption {
	position: absolute;
	left: 20%;
	bottom: 20%;
	right: 0;
	padding: 10px;
	/* padding-bottom: 20px; */
	color: #fff;
	text-align: center;
	text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
	background-color: rgba(35,31,32,0.8);
}

.carousel-item h2 {
	font-size: 20px;
	color: #FFF;
	font-weight: 500;
	/* display: inline-block; */
	text-transform: uppercase;
	margin: 10px 0;
	font-family: 'Open Sans';
}
}



@media only screen and (max-width:768px) {	

.carousel-caption {
/*	position: absolute;
	right: 30%;
	bottom: 30%;
	left: 0;
	padding: 10px;
	color: #fff;
	text-align: center;
	text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
	background-color: rgba(35,31,32,0.8);*/
	display:none;
}

.carousel-item h2 {
/*	font-size: 20px;
	color: #FFF;
	font-weight: 500;
	text-transform: uppercase;
	margin: 30px 0;
	font-family: 'Open Sans';*/
	display:none;
}

.carousel-indicators {
/*	bottom: 10px;
	left: 50%;
	list-style: none outside none;
	margin-left: -30%;
	padding-left: 0;
	position: absolute;
	text-align: center;
	width: 60%;
	z-index: 15;*/
	display:none;
}
}

/* Carousel Fading slide */
.carousel-fade .carousel-inner { background: #000; }
.carousel-fade .carousel-control { z-index: 2; }  
.carousel-fade .item {
  opacity: 0;
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
  }

  .carousel-fade .next.left,
  .carousel-fade .prev.right,
  .carousel-fade .item.active { opacity: 1; }

  .carousel-fade .active.left,
  .carousel-fade .active.right {
    left: 0;
    opacity: 0;
    z-index: 1;
    }


/* Safari Fix */
@media all and (transform-3d), (-webkit-transform-3d) {
    .carousel-fade .carousel-inner > .item.next,
    .carousel-fade .carousel-inner > .item.active.right {
      opacity: 0;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
    .carousel-fade .carousel-inner > .item.prev,
    .carousel-fade .carousel-inner > .item.active.left {
      opacity: 0;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
    .carousel-fade .carousel-inner > .item.next.left,
    .carousel-fade .carousel-inner > .item.prev.right,
    .carousel-fade .carousel-inner > .item.active {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
}




/* Carousel Control custom */
.carousel-control .control-icon {
  font-size: 48px;
  height: 30px;
  margin-top: -15px;
  width: 30px;
  display: inline-block;
  position: absolute;
  top: 50%;
  z-index: 5;
  }
  .carousel-control .prev { margin-left:  -15px;  left: 50%; } /* Prev */
  .carousel-control .next { margin-right: -15px; right: 50%; } /* Next */


/* Removing BS background */
.carousel .control-box { opacity: 0; }
a.carousel-control.left  { left: 0; background: none; border: 0;}
a.carousel-control.right { right: 0; background: none; border: 0;}


/* Animation */
.control-box, a.carousel-control, .carousel-indicators li {
  -webkit-transition: all 3s ease;
  -moz-transition: all 250ms ease;
  -ms-transition: all 250ms ease;
  -o-transition: all 250ms ease;
  transition: all 250ms ease;   
  /* hardware acceleration causes Bootstrap carousel controlbox margin error in webkit */
  /* Assigning animation to indicator li will make slides flicker */
  } 


/* Hover animation */
.carousel:hover .control-box { opacity: 1; }
.carousel:hover a.carousel-control.left { left: 15px; }
.carousel:hover a.carousel-control.right { right: 15px; }  


/* Carouse Indicator */
.carousel-indicators li.active,
.carousel-indicators li { border: 0; }

.carousel-indicators li {
  background: #666;
  margin: 0 3px;
  width: 12px;
  height: 12px;
  }

.carousel-indicators li.active {
  background: #fff;
  margin: 0 3px;
  }





