/**
 * .header-article-wrapper
 */

.banner-wrapper {
	position: relative;
    display: table;
	overflow: hidden;
	width: 100%;
	background: #000;
}

.banner-wrapper {
	width: 100%;
	min-height: 40vh;
	padding: 0 0 40px;
	vertical-align: middle;
}

.banner-inner,
.banner-title {
	color: #fff;
}

.banner-overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 99;
	opacity: .3;
}

.banner-image {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	margin: 0;
	overflow: hidden;
}

@-webkit-keyframes overlayAnim {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
@keyframes overlayAnim {
	0% {opacity: 0; }
	100% {opacity: 1;}
}

.banner-image img {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0; /* Left offset in flint-common.js */
	min-height: 100%;
	min-width: 100%;
	margin: auto;
	opacity: 0;
	-webkit-animation: overlayAnim .4s ease-in-out .5s forwards;
	animation: overlayAnim .4s ease-in-out .5s forwards;
}

.banner-inner {
	position: relative;
    display: table-cell;
    vertical-align: middle;
	box-sizing: border-box;
	width: 100%;
	max-width: 1084px;
	margin: 0 auto;
	padding: 32px;
	z-index: 100;
	text-align: center;
}

.banner-title-pre,
.banner-title-post {
	display: block;
	margin-bottom: .75em;
	font-size: 20px;
	text-transform: none;
	letter-spacing: 1px;
	font-weight: 400;
	font-style: italic;
	line-height: 1.4em;
}

.banner-title-pre {
    opacity: 0.7;
	-moz-osx-font-smoothing: grayscale;
	font-style: normal;
}

.banner-title-post {
	max-width: 30em;
	margin: 1em auto 2em;
}

.banner-title {
	margin: auto auto .2em;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2em;
	text-transform: uppercase;
	letter-spacing: 4px;
}

.banner-button:hover {
    box-shadow: none;
    transform: scale(1.1);
}