.carousel-wrapper {
	position: relative;
}

.carousel-border {
	position: absolute;
	top: 0px;
	z-index: 100;
	pointer-events: none;
}

.carousel .item {
	background-size: cover;
	background-position: center;
	transition: 1s;
}

.carousel-border img {
	width: 100%;
	height: auto;
}

.carousel-caption {
	position: absolute;
	top: 0px;
	left: 0px;
	bottom: 0px;
	right: 0px;
	width: 100%;
	height: 100%;
	display: inline-block;
	padding: 0px;
	z-index: auto;
	text-align: left;
}
.carousel-caption>span, .carousel-caption>a>span {
	top: 0px;
	left: 50%!important;
	transform: translateX(-50%);
	text-align: left;
	position: absolute;
	height: 100%;
}

.carousel-caption>span>span, .carousel-caption>a>span>span {
	position: absolute;
	width: 100%;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.carousel-caption>a {
	width: 100%;
	height: 100%;
	display: inline-block;
}

.carousel-caption>a>span {
	color: #FFF!important;
}

.carousel-indicators {
	bottom: 8%!important;
	z-index: 10;
}
.carousel-indicators li {
	margin: 5px!important;
}

.carousel-fade {
	background-color: #000;
}
.carousel-fade .carousel-inner .item {
	opacity: 0;
	transition-property: opacity;
}

.carousel-fade .carousel-inner .active {
	opacity: 1;
}

.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
	left: 0;
	opacity: 0;
	z-index: 10;
}

.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
	opacity: 1;
}

.carousel-fade .carousel-control {
	z-index: 20;
}

.carousel-caption h1 {
	transition: all 1.5s;
	opacity: 0;
	transform: translateY(60px);
	text-shadow: 0px 0px 6px rgba(0, 0, 0, 1)!important;
}

.carousel-caption h3 {
	transition: all 3s;
	opacity: 0;
	transform: translateY(100px);
	text-shadow: 0px 0px 6px rgba(0, 0, 0, 1)!important;
}

.active .carousel-caption h1 {
	opacity: 1;
	transform: translateY(0%);
}

.active .carousel-caption h3 {
	opacity: 1;
	transform: translateY(0%);
}

/*
  WHAT IS NEW IN 3.3: "Added transforms to improve carousel performance in modern browsers."
  Need to override the 3.3 new styles for modern browsers & apply opacity
*/
@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);
	}
}
@media only screen and (max-width: 767px) {
	.carousel-caption h2 {
		font-weight: 900;
		font-size: 24px;
		
	}
	.carousel-caption h1 {
		font-weight: 700;
		font-size: 32px;
		text-align: center!important;
	}
	
	.carousel-caption h3 {
		font-weight: 400;
		font-size: 14px;
		text-align: center!important;
	}
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.carousel-caption h2 {
		font-weight: 900;
		font-size: 32px;
		
	}
	.carousel-caption h1 {
		font-weight: 700;
		font-size: 48px;
		text-align: center!important;
	}
	
	.carousel-caption h3 {
		font-weight: 400;
		font-size: 24px;
		text-align: center!important;
	}
	.carousel-caption h3>span {
		white-space: nowrap;
	}
}
@media only screen and (max-width: 991px) {
	.carousel-indicators {
		display: none;
	}
	.carousel-caption>span, .carousel-caption>a>span {
		width: 100%;
	}
	.carousel-caption>span>span, .carousel-caption>a>span>span {
		padding: 25px;
	}
}
@media only screen and (min-width: 992px) {
	.carousel-control {
		display: none;
		position: absolute;
		top: 50%!important;
		left: 50%!important;
		text-align: center;
		text-shadow: 0 1px 2px rgba(0,0,0,.6);
		width: 30px!important;
		height: 30px!important;
		color: #FFF!important;
		font-size: 26px;
		text-decoration: none!important;
		opacity: .3;
		background-image: none!important;
	}
	.carousel-control:hover {
		text-decoration: none!important;
		opacity: 1;
	}
	.carousel-control span {
	}
	.carousel-caption h2 {
		font-weight: 900;
		font-size: 36px;
		
	}
	.carousel-caption h1 {
		font-weight: 700;
		font-size: 72px;
		text-align: center!important;
	}
	
	.carousel-caption h3 {
		font-weight: 400;
		font-size: 24px;
		text-align: center!important;
	}
	.carousel-caption h3>span {
		white-space: nowrap;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.carousel-caption>span, .carousel-caption>a>span {
		width: 960px;
	}
	.carousel-control.left {
		transform: translate(-445px, -50%)!important;
	}
	.carousel-control.right {
		transform: translate(415px, -50%)!important;
	}
}

@media only screen and (min-width: 1200px) {
	.carousel-caption>span, .carousel-caption>a>span {
		width: 1170px;
	}
	.carousel-control.left {
		transform: translate(-545px, -50%)!important;
	}
	.carousel-control.right {
		transform: translate(515px, -50%)!important;
	}
}