/* BANNER */
.banner {
	color: #fff;
	position: relative;
}
.banner.full {
	padding: 0;
	min-height: 700px;
	height: 700px !important;
}
.banner.half {
	padding: 0;
	min-height: 400px;
	height: 400px !important;
}
.banner .indicators {
	bottom: 1.5em;
	left: 0;
	list-style: none;
	margin: 0;
	padding: 0;
	position: absolute;
	text-align: center;
	width: 100%;
	z-index: 2;
}
.banner .indicators li {
	cursor: pointer;
	display: inline-block;
	height: 2em;
	overflow: hidden;
	padding: 0;
	position: relative;
	text-indent: 5em;
	width: 2em;
}
.banner .indicators li:before {
	background: rgba(255, 255, 255, 0.35);
	border-radius: 100%;
	content: '';
	display: inline-block;
	height: 0.8em;
	left: 50%;
	margin: -0.4em 0 0 -0.4em;
	position: absolute;
	text-indent: 0;
	top: 50%;
	width: 0.8em;
}
.banner .indicators li.visible:before {
	background: #fff;
}
.banner > article {
	-moz-transition: opacity 1s ease, visibility 1s;
	-webkit-transition: opacity 1s ease, visibility 1s;
	-ms-transition: opacity 1s ease, visibility 1s;
	transition: opacity 1s ease, visibility 1s;
	background-attachment: fixed;
	background-position: bottom center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100%;
	left: 0;
	opacity: 0;
	position: absolute;
	text-align: center;
	padding: 0;
	top: 0;
	visibility: hidden;
	width: 100%;
	z-index: 0;
}
.banner > article:before {
	content: '';
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}
.banner > article:after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 1;
	background: rgba(0,0,0, .25)
}
.banner > article .inner {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	z-index: 1;
	top: 50px;
}
.banner > article span {
	color: #fff;
	font-family: "Mulish", sans-serif;
	font-weight: bold;
	font-size: 80px;
	text-transform: uppercase;
	padding: 0 25px;
}
.banner > article p {
	color: #fff;
	font-size: 40px;
	font-style: italic;
	margin: 0;
	padding: 0 25px 20px 25px;
}
.banner > article img {
	display: none;
}
.banner > article.visible {
	opacity: 1;
	visibility: visible;
}
.banner > article.top {
	z-index: 1;
}
.banner > article.instant {
	-moz-transition: none !important;
	-webkit-transition: none !important;
	-ms-transition: none !important;
	transition: none !important;
}
body.is-loading .banner:after {
	opacity: 1.0;
	visibility: visible;
}
@media (max-width: 1280px) {
	.banner.full {
		padding: 0;
		min-height: 600px;
		height: 600px !important;
	}
	
	.banner > article img {
		background-attachment: scroll;
	}
	.banner > article span {
		font-size: 60px;
	}
	.banner > article p {
		font-size: 25px;
		letter-spacing: 0;
	}
}
@media (max-width: 1024px) {
	.banner.full {
		padding: 0;
		min-height: 500px;
		height: 500px !important;
	}
	.banner.half {
		background-attachment: scroll;
		min-height: 300px;
		height: 300px !important;
	}
	.banner > article .inner {
		left: initial;
	}
	.banner .indicators {
		bottom: .25em;
	}
	.banner > article span {
		font-size: 40px;
	}
	.banner > article p {
		font-size: 20px;
		letter-spacing: 0;
	}
}
@media (max-width: 760px) {
	.banner > article span {
		font-size: 30px;
	}	
		.banner > article p {
		font-size: 15px;
	}
}
@media (max-device-width: 480px) {
	.banner.full, .banner.half {
		display: none;
	}
	.banner.full > article .inner :first-child {
		display: ruby;
	}
	.banner > article .inner {
	position: absolute;
	display: flex;
	top: 250px;
	}
	.banner > article span {
		padding: 0 15px;
	}
	.banner > article p {
		font-size: 22px;
		line-height: 1.2;
		padding: 0 25px 25px 25px;
	}
	.banner.full button {
		width: initial;
	}
}
body.is-mobile .banner > article {
	background-attachment: scroll;
}