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

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

.carousel-indicators {
	bottom: 0;
	}
	
.carousel-indicators li {
	border-color: #cc0000;
	background-color: #fff;
	}
	
.carousel-indicators li.active {
	background-color: #cc0000;
	}
	
.glyphicon-chevron-right::before {
	font-family: FontAwesome;
	content: "\f054";
	}

.glyphicon-chevron-left::before {
	font-family: FontAwesome;
	content: "\f053";
	}
	
/* Since positioning the image, we need to help out the caption */
.carousel-caption {
	z-index: 10;
	width: 23em;
	height: 200px;
	left: 15%;
	margin: 0;
	padding: 0;
	color: #fff;
	text-shadow: 0 1px 2px rgba(0,0,0,.9);
	}
	
.carousel-caption .bg {
	position: relative;
	height: 130px;
	margin-top: 35px;
	background: #fff;
	opacity: 0.2;
	border-radius: .5em;
	}

.carousel-caption .copy {
	position: absolute;
	top: 35px;
	left: 0;
	right: 0;
	margin: 0;
	padding: .5em;
	font-size: 1.2em;
	font-weight: 400;
	}
	
.carousel-caption .copy span {
	font-size: .75em;
	font-weight: 600;
	}
	
.carousel-caption .btn-sm {
	position: absolute;
	left: 10px;
	right: 10px;
	bottom: 45px;
	margin-left: auto;
	margin-right: auto;
	font-size: 1em;
	background: #cc0000;
	border-color: #fff;
	}
	
.carousel-caption .btn-sm:hover {
	color: #cc0000; 
	background: #fff;
	border-color: #cc0000;	
	}
	
.carousel-caption .btn-sm i {
	padding-left: .5em;
	}

.carousel .item {
	height: 240px;
	background-repeat: no-repeat;
	background-position: center; 
	background-position: calc(50% + 150px) 50%;
	}

