/*===========================*/
/*   Padding For Head Items  */
.headerBuffer {
	height:66px;
	width:100%;
	display:block;
}
.headerBufferItem{
	height:70vh;
	width:100%;
	display:block;
}
.headerContentPos{
	margin-top:40vh;
}
.headerContentPos h1{
	color:#ffffff;
	font-weight:bold;
	text-shadow: 1px 1px 3px #000000;
}

@media screen and (max-width: 767px) {
	.headerContentPos {
		margin-top:20vh;
	}
	.headerContentPos h1{
		color:#ffffff;
	}
}


/*===========================*/
/*        Header Title       */
.headerText {
	position: absolute;
	top: 55vh;
	width: 100%;
	z-index:10;
}
.headerText h1 {
	position:relative;
	color:#ffffff;
	font-weight:bold;
	text-shadow: 1px 1px 1px #000000;
	margin:auto;
	width:100%;
}
.headAlign {
	text-align:left;
}
@media screen and (max-width: 767px) {
	.headerText {
		position: absolute;
		width: 100%;
		top: 40vh;
		left: 0px;
	}
	.headerText h1 {
		font-size:34px;
		margin-left:auto;
		margin-right:auto;
		width:100%;
	}
	.headAlign {
		text-align:center;
	}
}


/*===========================*/
/*   Referral Header Title   */
.refHeaderText {
	position: absolute;
	top: 28vh;
	width: 100%;
	z-index:10;
}
.refHeaderText h1 {
	position:relative;
	color:#ffffff;
	font-weight:bold;
	text-shadow: 1px 1px 1px #000000;
	margin-bottom:20px;
	width:100%;
	text-align:left;
}
@media screen and (max-width: 767px) {
	.refHeaderText {
		position: absolute;
		width: 100%;
		top: 20vh;
		left: 0px;
	}
	.refHeaderText h1 {
		font-size:34px;
		width:100%;
		margin-bottom:10px;
		text-align:center;
	}
}


/*===========================*/
/*       Header Subtext      */
.headerSubText {
	background: rgba(0, 0, 0, 0.6);
	padding: 20px;
	-webkit-box-shadow: 0 0 23px 5px rgba(0, 0, 0, 0.6);
	-moz-box-shadow: 0 0 23px 5px rgba(0, 0, 0, 0.6);
	box-shadow: 0 0 23px 5px rgba(0, 0, 0, 0.6);
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-ms-border-radius: 3px;
	-o-border-radius: 3px;
	border-radius: 3px;
	color:#ffffff;
}

.headerSubText h1 {
	font-size:30px;
	font-weight:bold;
}

.headerSubText h1 span {
	font-style:italic;
	font-size:20px;
	font-weight:100;
}

.slideLogo {
	background-repeat:no-repeat;
	background-size:contain;
	float:left;
	margin-right:20px;
	width:90px;
	height:55px;
	border-right:#efefef 1px solid;
}

.blockquote span {
	font-size:18px;
	padding: 10px 0px 20px 0px;
	display:block;
	font-style:italic;
	line-height:130%;
}

@media screen and (max-width: 767px) {
	.headerSubText {
		position: relative;
		margin:auto;
		text-align:center !important;
		padding:10px;
	}
	.headerSubText h1 {
		font-size:22px;
	}
	.headerSubText h1 span {
		font-style:italic;
		font-size:14px;
		font-weight:100;
	}
	.slideLogo {
		margin-right:10px;
		width:60px;
		height:40px;
	}
	.blockquote span {
		font-size:17px;
		padding: 5px 0px 10px 0px;
		display:block;
		font-style:italic;
		line-height:115%;
	}
}


/*===========================*/
/*        Header Image       */
.pageHeaderContainer {
	height:80vh;
	display:block;
}

.pageHeader {
	position:relative;
	height:80vh;
	width: 100%;
	overflow: hidden;
}

.pageHeaderImg {
	display: block;
	width: 100vw;
	height: 100vh;
	object-fit: cover;
	object-position: center;
}
.pageHeaderImgFallback {
	background-size: cover;
	background-position: center center;
}


/*===========================*/
/*        Header Video       */
.videoPositionContainer {
	min-height:100vh;
	display:block;
}

.videoContainer {
	position: absolute;
	height: 100vh;
	width: 100%;
	overflow: hidden;
	display:block;
}

.videoContainer video {
	position: relative;
	top: 50%;
	left: 50%;
	z-index: 1;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	transform: translate(-50%, -50%);
	clear: both;
}