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

.carousel {
	height: 930px;
}
/* Declare heights because of positioning of img element */
.carousel .item {
	background-position: center top;
	height: 100%;
	width: 100%;
	background-color: rgba(51,51,51,1);
	/*background-size: cover;*/
}
@media screen and (min-width: 1240px) {
	.carousel .item {
		background-attachment:fixed;
	}
}
.indicator-con {
	height: auto;
	width: 100%;
	position: absolute;
	bottom: 15px;
	z-index: 14;
}
.carousel-indicators {
	width: 340px;
	z-index: 15;
	text-align: center;
	list-style: none;
	margin-right: auto;
	margin-left: auto;
}

.carousel-indicators li {
	display: inline-block;
	background-color: rgba(255,255,255,0.2);
	width: 6px;
	height: 6px;
	margin-right: 6px;
	text-indent: -999px;
	cursor: pointer;
	border-radius: 50%;
}

.carousel-indicators .active {
  background-color: rgba(255,255,255,1);
}

.carousel-control {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 60px;
	text-align: center;
	z-index: 10;
	visibility: visible;
}

.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 5;
	display: inline-block;
	color:#FFF;
}

.carousel-control .icon-prev,
.carousel-control .icon-next {
	width: 30px;
    height: 30px;
    margin-top: -15px;
    margin-left: -15px;
    font-size: 30px;
}

.carousel-control:hover,
.carousel-control:focus {
	background-color: rgba(0,0,0,0.8);
}

.carousel-control .icon-prev:before {
  content: '\2039';
}

.carousel-control .icon-next:before {
  content: '\203a';
}

@media screen and (max-width: 768px) {
  .carousel-control {
	  visibility:hidden;
  }
  .carousel-control .icon-prev,
  .carousel-control .icon-next {
  }
}
