html,
body {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	-webkit-tap-highlight-color: transparent;
	-webkit-text-size-adjust: none;
	-moz-osx-font-smoothing: grayscale;
	scroll-behavior: smooth;
}

body {
	position: relative;
	overflow-x: hidden;
	font-family: 'Avenir', arial;
	text-align: center;
}

a {
	color: #B60234;
	text-decoration: none;	
}

a:hover {
	color: #D32048;
}

h1 {
	margin: 25px 0;
	font-size: 65px;
	line-height: 70px;
	font-weight: 900;
	letter-spacing: -1px;
	cursor: default;
}

h2 {
	margin: 20px 0;
	font-family: 'Oswald', sans-serif;
	font-size: 28px;
	line-height: 30px;
	letter-spacing: 4px;
	text-transform: uppercase;
	cursor: default;
}

h3,
h4 {
	margin: 40px 0 -10px;
	font-size: 22px;
	line-height: 33px;
	font-weight: 900;
	cursor: default;
}

blockquote {
	margin: 80px auto;
	border-top: 1px solid #D2DCE5;
	border-bottom: 1px solid #D2DCE5;
	padding: 40px 0;
	text-align: center;
	font-size: 22px;
	line-height: 36px;
	font-weight: 400;
}



/* -- Header -- */

header {
	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;
	width: 100%;
	height: 130px;
	text-align: center;
	background-color: #FFF;
	background-color: rgba(255,255,255,.85);
	transition: background-color .3s, box-shadow .3s, height .3s;
}

header.compact {
	height: 80px;
	background-color: #FFF;
	box-shadow: 0 0 2px rgba(0,0,0,.25);
}

header nav {
	position: absolute;
	z-index: 2;
	left: 0;
	top: 0;
}

header nav.open {
	width: 100%;
	height: 100vh;
}

header nav.nojs:hover {
	height: 100vh;
}

header .trigger {
	position: absolute;
	z-index: 3;
	left: 64px;
	top: 49px;
	width: 33px;
	height: 28px;
	overflow: hidden;
	cursor: pointer;
	transition: top .3s, left .3s;
}

header .trigger span {
	display: block;
	background: #000;
	height: 5px;
	margin-bottom: 6px;
	transition: background-color .2s;
}

header .trigger:hover span {
	background-color: #888;
}

header.compact .trigger {
	top: 24px;
}

header nav .menu {
	display: none;
	position: absolute;
	z-index: 4;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	margin: 0;
	padding: 0;
	overflow: auto;
	text-align: left;
	-webkit-font-smoothing: antialiased;
	-ms-overflow-style: none;
	scrollbar-width: none;
	-webkit-transform: translateZ(0);
	-moz-transform: translateZ(0);
	-ms-transform: translateZ(0);
	-o-transform: translateZ(0);
	transform: translateZ(0);
	transition: background-color .5s;
}

header nav .menu::-webkit-scrollbar {
	display: none;
}

header nav.animate .menu {
	background-color: rgba(255,255,255,.8);
}

header nav.nojs:hover .menu,
header nav.open .menu {
	display: block;
}

header nav .close {
	position: absolute;
	z-index: 2;
	width: 30px;
	height: 30px;
	top: 49px;
	left: 64px;
	background: url(../images/common/nav-close.svg) center center no-repeat;
	cursor: pointer;
	margin-left: -440px;
	opacity: 1;
	-webkit-transform: translateZ(0);
	-moz-transform: translateZ(0);
	-ms-transform: translateZ(0);
	-o-transform: translateZ(0);
	transform: translateZ(0);
	transition: margin-left .5s, top .5s, left .5s;
}

header nav.animate .close {
	margin-left: 0;
}

header nav .menu > ul {
	box-sizing: border-box;
	width: 100%;
	max-width: 440px;	
	min-height: 100%;
	margin: 0 0 0 -440px;
	padding: 130px 0 0;
	list-style: none;
	background-color: #5785C7;
	-webkit-transform: translateZ(0);
	-moz-transform: translateZ(0);
	-ms-transform: translateZ(0);
	-o-transform: translateZ(0);
	transform: translateZ(0);
	transition: margin .5s, max-width .5s, height .6s, min-height .5s, padding .5s;
}

header nav.nojs .menu > ul,
header nav.animate .menu > ul {
	margin-left: 0;
}

header nav .menu > ul > li {
	position: relative;
	/*height: 62px;*/
	margin: 0;
	padding: 0;
	font-size: 28px;
	line-height: 30px;
	font-weight: 700;
	opacity: 1;
	text-transform: uppercase;
	background: url(../images/common/nav-arrow.svg) right 70px center no-repeat;
	transition: height .3s, opacity .3s;
	-webkit-transform: translateZ(0);
	-moz-transform: translateZ(0);
	-ms-transform: translateZ(0);
	-o-transform: translateZ(0);
	transform: translateZ(0);
}

header nav .menu > ul > li.single {
	background-image: none;
}

header nav .menu > ul > li:hover {
	background: #6E96D0;
}

header nav .menu > ul > li a {
	display: block;
	padding: 16px 0 16px 64px;
	color: #FFF;
}

header nav .menu > ul > li > ul {
	display: none;
	position: absolute;
	width: 440px;
	left: 100%;
	top: 0;
	list-style: none;
	margin: -64px 0 0;
	padding: 0;
	background: #6E96D0;
}

header nav .menu > ul > li:hover > ul {
	display: block;
	width: 400px;
	padding: 20px;
}

header nav .menu > ul > li > ul > li {
	background: none;
	font-size: 22px;
	line-height: 24px;
	text-transform: initial;
}

header nav .menu > ul > li > ul > li a {
	padding: 13px 15px;
	transition: background-color .2s;
}

header nav .menu > ul > li > ul > li a:hover {
	background-color: #7CA2D8;
}

header nav .menu > ul > li.search {
	height: auto;
	padding: 48px 40px 40px;
	background: none;
	transition: padding .3s;
}

header nav .menu > ul > li.search:hover {
	background: none;
}

header nav .menu > ul > li.search input[type="text"] {
	display: inline;
	box-sizing: border-box;
	width: 100%;
	padding: 17px 65px 18px 25px;
	font-size: 28px;
	line-height: 32px;
	font-family: 'Avenir', arial;
	font-weight: 400;
	border: 0;
	color: #FFF;
	background: #6E96D0;
	outline: none;
	cursor: pointer;
	transition: background-color .2s;
}

header nav .menu > ul > li.search input[type="text"]:hover {
	background: #7EA3D6;
}

header nav .menu > ul > li.search input::placeholder {
	color: #FFF;
}

header nav .menu > ul > li.search input:-ms-input-placeholder {
	color: #FFF;
}

header nav .menu > ul > li.search input::-ms-input-placeholder {
	color: #FFF;
}

header nav .menu > ul > li.search input::-ms-input-placeholder {
	color: #FFF;
}

header nav .menu > ul > li.search input[type="image"] {
	position: absolute;
	z-index: 3;
	margin: 20px 0 0 -50px;
}

header nav.search-mode .menu > ul {
	min-height: 0;
	max-width: 100%;
	padding: 0;
	height: 130px;
}

header nav.search-mode .menu > ul > li  {
	height: 0;
	overflow: hidden;
	opacity: 0;
}

header nav.search-mode .menu > ul > li.search  {
	height: auto;
	opacity: 1;
	padding: 30px 100px;
}

header nav.search-mode .menu > ul > li.search input[type="text"]  {
	cursor: text;
	background: #7EA3D6;
}

header nav.search-mode .close  {
	left: 35px;
	background-image: url(../images/common/nav-back.svg);
}

#header-logo {
	position: relative;
	width: 224px;
	height: 88px;
	margin: 20px auto 0;
	transition: width .3s, height .3s, margin .3s;
}

header.compact #header-logo {
	width: 91px;
	height: 49px;
	margin-top: 10px;
}

#header-logo a {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
}

#header-logo a #logo-main {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 128px;
	height: 70px;
	transition: width .3s, height .3s;
}

header.compact #header-logo a #logo-main {
	width: 92px;
	height: 50px;
}

#header-logo a span.text {
	display: block;
	position: absolute;
	right: 0;
	bottom: 0;
	width: 99px;
	height: 40px;
	background: url(../images/common/logo-text.svg) right bottom no-repeat;
	background-size: contain;
	opacity: 1;
	transition: opacity .3s, width .3s, height .3s;
}

header.compact #header-logo a span.text {
	opacity: 0;
	width: 12px;
	height: 5px;
}

#header-logo a span.anniversary {
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 115px;
	height: 12px;
	background: url(../images/common/logo-75-years.svg) left bottom no-repeat;
	background-size: 100% auto;
	opacity: 1;
	transition: opacity .3s, width .3s, height .3s;
}

header.compact #header-logo a span.anniversary {
	opacity: 0;
	width: 20px;
	height: 1px;
}

#header-logo a span span {
	display: none;
}



#header-button {
	position: absolute;
	right: 40px;
	top: 42px;
	transition: top .3s;
}

header.compact #header-button {
	top: 16px;	
}

#header-button a {
	display: inline-block;
	padding: 0 18px;
	height: 45px;
	font-size: 16px;
	line-height: 45px;
	font-weight: 700;
	background: #B60234;
	color: #FFF;
	transition: background .2s;
	-webkit-font-smoothing: antialiased;
}

#header-button a:hover {
	background: #D32048;
}


/* -- Content -- */

#content {
	min-height: 940px;
	padding-bottom: 40px;		
}

.button,
.button-arrow {
	display: inline-block;
	padding: 0 18px;
	height: 45px;
	font-size: 16px;
	font-family: 'Avenir', arial;
	line-height: 45px;
	font-weight: 700;
	background: #B60234;
	color: #FFF;
	border: 0;
	transition: background-color .2s;
	-webkit-font-smoothing: antialiased;
	cursor: pointer;
}

.button-arrow {
	padding-right: 36px;
	background: #B60234 url(../images/common/button-arrow.svg) right 19px center no-repeat;
}

.button:hover,
.button-arrow:hover {
	color: #FFF;
	background-color: #D32048;
	text-decoration: none;
}


/* -- Page Elements -- */

.page {
	max-width: 1300px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 40px;
	padding-right: 40px;
	text-align: center;
}

.page:after {
	display: block;
	visibility: hidden;
	content: '';
	width: 0;
	height: 0;
	clear: both;
}

.page-max {
	max-width: 1300px;
	margin-left: auto;
	margin-right: auto;
}

.page-pad {
	padding-left: 40px;
	padding-right: 40px;
}

.page-form {
	margin: auto;
	max-width: 800px;
}

.page-back {
	position: absolute;
	z-index: 2;
	left: 45px;
	top: 70px;
}

.page-back a {
	display: block;
	height: 20px;
	padding-left: 18px;
	font-family: 'Oswald', sans-serif;
	font-size: 20px;
	line-height: 20px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #5785C7;
	background: url(../images/common/back-arrow.svg) left center no-repeat;
}

.page-back a span {
	display: block;
}

.page-back a:hover span {
	animation-name: rightleft;
	animation-duration: .3s;
	animation-fill-mode: both;
}

.page-share {
	position: absolute;
	z-index: 2;
	right: 45px;
	top: 70px;
}

.page-share > a {
	display: block;
	height: 20px;
	padding-right: 27px;
	font-family: 'Oswald', sans-serif;
	font-size: 20px;
	line-height: 20px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #5785C7;
	background: url(../images/common/share.svg) right center no-repeat;
}

.page-share > a span {
	display: block;
}

/*
.page-share > a:hover span {
	animation-name: leftright;
	animation-duration: .3s;
	animation-fill-mode: both;
}
*/

.page-share-menu {
	position: absolute;
	right: 0;
	top: 100%;
	margin-top: 15px;
	width: 210px;
	padding: 20px 15px;
	background: #E8ECF2;
}

.page-share-menu a {
	display: block;
	box-sizing: border-box;
	float: left;
	margin: 0 5px;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	border: 1px solid #D2DCE5;
	transition: border .3s;
}

.page-share-menu a span {
	display: none;
}

.page-share-menu a:hover {
	border-color: #6295DB;
}

.page-share-menu a.facebook {
	background: #FFF url(../images/common/share-facebook.svg) center center no-repeat;
}

.page-share-menu a.twitter {
	background: #FFF url(../images/common/share-twitter.svg) center center no-repeat;
}

.page-share-menu a.email {
	background: #FFF url(../images/common/share-email.svg) center center no-repeat;
}

.page-filter {
	position: absolute;
	z-index: 2;
	right: 40px;
	top: 55px;
}

.page-filter a.trigger {
	display: block;
	padding: 12px 25px 12px 55px;
	font-family: 'Oswald', sans-serif;
	font-size: 20px;
	line-height: 20px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #FFF;
	border: 2px solid #6E96D0;
	background: url(../images/common/icon-list.svg) left 25px center no-repeat;
	transition: border-color .2s;
	-webkit-font-smoothing: antialiased;
}

.page-filter a.trigger:hover {
	border-color: #FFF;
}

.page-filter.open a.trigger {
	border-color: #FFF;
	background-color: #6E96D0;
}

.page-filter-menu {
	display: none;
	position: absolute;
	z-index: 3;
	left: 50%;
	width: 600px;
	margin-left: -335px;
	top: 100%;
	margin-top: -3px;
	padding: 10px 35px 40px 35px;
	background: #5785C7;
	box-shadow: 0 30px 25px rgba(0,0,0,.4);
	-webkit-font-smoothing: antialiased;
}

.page-filter-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
	overflow: hidden;
	text-align: left;
	font-family: 'Oswald', sans-serif;
	font-size: 18px;
	font-weight: normal;
	line-height: 20px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.page-filter-menu ul li {
	display: block;
	box-sizing: border-box;
	margin: 0;
	padding: 8px 5px 8px;
	height: 36px;
	width: 50%;
	float: left;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;	
	color: #FFF;
}

.page-filter-menu ul li a {
	color: #FFF;
}

.page-filter-menu ul li a:hover {
	opacity: .8;
}

.page-hero {
	width: 100%;
	background-color: #E8ECF2;
}

.page-hero-image {
	width: 100%;
	height: 0;
	padding-top: 44.5%;
	background-color: #000;
	background-size: cover;
	background-position: center center;
	filter: brightness(99%);
}


.page-hero-title {
	position: relative;
	width: 100%;
	height: 234px;
	padding-top: 100px;
	background-color: #000;
	background-size: cover;
	background-position: center center;
	filter: brightness(99%);
}

.page-hero-title h1 {
	margin: 0;
	font-size: 50px;
	line-height: 50px;
	padding: 85px 0 17px;
	color: #FFF;
}

.page-hero-tag {
	font-size: 28px;
	color: #FFF;
}

.page-hero-title .page-back,
.page-hero-title .page-share {
	top: 220px;
}

.page-hero-title .page-back a {
	color: #FFF;
	background-image: url(../images/common/back-arrow-invert.svg);
	-webkit-font-smoothing: antialiased;
}

.page-hero-title .page-share > a {
	color: #FFF;
	background-image: url(../images/common/share-invert.svg);
	-webkit-font-smoothing: antialiased;
}

.page-header-bar {
	position: relative;
	height: 160px;
	margin-top: 130px;
	background: #5785C7;
	transition: margin .3s;	
}

.page-header-bar h1 {
	position: relative;
	box-sizing: border-box;
	z-index: 1;
	padding: 0 220px;
	top: 50%;
	width: 100%;
	text-align: center;
	color: #FFF;
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-font-smoothing: antialiased;
}

.page-header-bar .page-back a {
	color: #FFF;
	background-image: url(../images/common/back-arrow-invert.svg);
	-webkit-font-smoothing: antialiased;
}

.page-header-bar .page-share > a {
	color: #FFF;
	background-image: url(../images/common/share-invert.svg);
	-webkit-font-smoothing: antialiased;
}

.page-intro {
	position: relative;
	text-align: center;
	padding: 40px 20px 0;	
}

.page-intro .page-back,
.page-intro .page-share {
	top: 75px;
}

.page-intro h1 {
	max-width: 760px !important;
	padding: 0 190px;
	margin: 10px auto 5px;
}

.page-intro .action {
	margin: -20px 0 40px;	
}

.page-content {
	max-width: 800px;
	margin: 40px auto;
	text-align: left;
	font-size: 18px;
	line-height: 30px;
	font-weight: 400;
}

.page-content a:hover {
	text-decoration: underline;
}

.page-content h1 {
	display: none;
}

.page-content h2 {
	text-align: center;
}

.page-content p,
.page-content ul,
.page-content ol {
	margin: 25px 0;
}

.page-content .iframe {
	width: 120%;
	margin-left: -10%;
	margin-top: 35px;
	margin-bottom: 35px;
}

.page-content img {
	display: block;
	width: 120%;
	height: auto;
	margin: 50px 0 50px -10%;
}

.page-content img.img-right {
	width: 350px;
	height: 350px;
	object-fit: cover;
	float: right;
	margin: 10px -70px 20px 30px;
	transition: width .2s, height .2s;
}

.page-content img.img-left {
	width: 350px;
	height: 350px;
	object-fit: cover;
	float: left;
	margin: 10px 30px 20px -70px;
	transition: width .2s, height .2s;
}

/* legacy image */
.page-content img.photo-left { 
	width: initial;
	height: initial;
	float: left;
	margin: 10px 30px 20px 0;
}

/* legacy image */
.page-content img.photo-right { 
	width: auto;
	height: auto;
	float: right;
	margin: 10px 0 20px 30px;
}

.page-content .caption {
	margin-top: -35px;
	font-size: 14px;
	color: #68828E;
}

.page-menu {
	padding: 40px 0;
	margin: 0 auto;
}

.page-menu ul {
	position: relative;
	padding: 55px 40px 0 40px;
	margin: 0 auto;
	list-style: none;
	background: #E8ECF2;
	overflow: hidden;
}

.page-menu ul li {
	width: 50%;
	height: 175px;
	overflow: hidden;
	float: left;
	margin-bottom: 20px;
	text-align: left;
	cursor: default;
}

.page-menu ul li a {
	color: #000;
}

.page-menu ul li img {
	display: block;
	position: absolute;
	border-radius: 50%;
	width: 10%;
	height: auto;
	max-width: 140px;
	max-height: 140px;
	min-width: 80px;
	min-height: 80px;
}

.page-menu ul li .title {
	display: block;
	/*max-width: 340px;*/
	padding: 15px 40px 8px 25%;
	font-size: 30px;
	line-height: 32px;
	font-weight: 900;
	transition: color .2s;
}

.page-menu ul li .title:hover {
	color: #B60234;
}

.page-menu ul li .description {
	display: block;
	max-width: 340px;
	padding: 2px 40px 0 25%;
	font-size: 16px;
	line-height: 21px;
	font-weight: 400;
}

.page-details {
	display: -webkit-flex;
	display: -ms-flex;
    display: flex;
	position: relative;
	width: 100%;
	max-width: 920px;
	margin: auto;
	padding-bottom: 40px;
	overflow: hidden;
}

.page-details .page-contact {
	margin: 20px;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.page-contact {
	padding: 60px 20px;
	margin-bottom: 40px;
	text-align: center;
	border: 1px solid #D1DCE5;
}

.page-contact-person {
	font-size: 22px;
	font-weight: 500;
	line-height: 26px;
}

.page-contact-person img {
	display: block;
	margin: auto;
	border-radius: 50%;
	margin-bottom: 16px;
}

.page-contact-info {
	font-size: 16px;
	font-weight: 300;
	line-height: 26px;
	padding-top: 5px;
}

.page-contact-info a {
	color: #000;
}

.page-contact-info a:hover {
	color: #000;
	text-decoration: underline;
}

.page-details .page-nav {
	padding: 50px 20px 20px;
	margin: 20px;
	-webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
	text-align: center;
	border: 1px solid #D1DCE5;
}

.page-nav h2 {
	font-size: 18px;
	line-height: 22px;
	margin: 0 0 40px;
}

.page-nav nav {
	text-align: left;
}

.page-nav ul {
	list-style: none;
	margin: 0;
	padding: 0 20px;
	font-size: 20px;
	line-height: 26px;
	font-weight: 500;
}

.page-nav ul li {
	margin: 0;
	padding: 4px 0 4px 20px;
	background: url(../images/common/page-nav-arrow.svg) 0px 12px no-repeat;
}


.page-sidebox {
	padding: 50px 40px;
	margin-bottom: 40px;
	text-align: left;
	border: 1px solid #D1DCE5;
}

.page-sidebox h3 {
	font-size: 30px;
	line-height: 34px;
	margin: 0 0 20px;
}

.page-sidebox .action {
	margin: 40px 0 0;
	text-align: center;
}



/* -- Forms -- */

.form-item {
	text-align: left;	
}

.form-item label {
	font-size: 13px;
	letter-spacing: 2px;
	text-transform: uppercase;
	padding-bottom: 5px;	
}

.form-item input[type=text],
.form-item input[type=email],
.form-item input[type=phone],
.form-item input[type=password],
.form-item textarea {
	height: 48px;
	padding: 0 1.5%;
	border: 2px solid #D2DCE5;
	background: #FFF;
	font-family: 'Avenir', arial, sans-serif;
	font-size: 16px;
	line-height: 22px;
}

.form-item textarea {
	padding: 12px 1.5%;
	height: 100px;
}

.form-error {
	text-align: left;
	padding: 5px 0;	
}

.form-captcha {
	padding: 20px 0;
}

.form-submit {
	padding: 40px 0;
}



/* -- Hero Video & Spacer -- */

.hero-video {
	position: relative;
	padding: 230px 0 100px;
	background-color: #4D627F;
	cursor: default;
	text-align: left;
	overflow: hidden;
}

.hero-video-color-red {
	background-color: #710E25;
}

.hero-video-color-black {
	background-color: #000000;
}

.hero-video-color-green {
	background-color: #436B3C;
}

.hero-video-color-purple {
	background-color: #3A1E4A;
}


.hero-video-visual {
	position: relative;
	float: left;
	box-sizing: border-box;
	width: 70%;
	top: 50%;
	left: 0;
	padding: 0 40px;
}

.hero-video-text {
	position: relative;
	float: left;
	box-sizing: border-box;
	width: 30%;
	padding-top: 40px;
	padding-right: 40px;
	color: #FFF;
	-webkit-font-smoothing: antialiased;
}

.hero-video-text .title {
	max-width: 400px;
	font-weight: 800;
	font-size: 30px;
	line-height: 37px;
}

.hero-video-text .description {
	max-width: 400px;
	padding: 20px 0 30px;
	font-size: 16px;
	line-height: 25px;
	color: #D1DCE5;
}

.hero-video-text .button {
	color: #FFF;
	border: 2px solid #FFF;
	background: none;
	text-transform: initial;
}

.hero-video-text .button:hover {
	background: #FFF;
	color: #4B607A;
}

.hero-spacer {
	position: relative;
	height: 130px;
	overflow: hidden;
	background: #FFF;
	box-shadow: 0 0 800px rgba(210, 220, 229,.6);
}



/* -- Promo Feature -- */

.hero-promo {
	position: relative;
	box-sizing: border-box;
	height: 800px;
	height: 90vh;
	min-height: 720px;
	background-color: #E8ECF2;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	cursor: default;
}

.hero-promo .overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	color: #FFF;
	text-shadow: 0 0 16px rgba(0,0,0,.25);
	background: -moz-linear-gradient(top, rgba(0,0,0,0) 50%, rgba(0,0,0,.4) 100%);
	background: -webkit-linear-gradient(top, rgba(0,0,0,0) 50%,rgba(0,0,0,.4) 100%);
	background: linear-gradient(to bottom, rgba(0,0,0,0) 50%,rgba(0,0,0,.4) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#33000000',GradientType=0);
	-webkit-font-smoothing: antialiased;
}

.hero-promo .text {
	position: absolute;
	left: 45px;
	bottom: 60px;
	padding-right: 40px;
	text-align: left;
}

.hero-promo .text a {
	color: #FFF;
}

.hero-promo .text .title {
	max-width: 700px;
	font-size: 56px;
	line-height: 60px;
	font-weight: 900;
}

.hero-promo .text .description {
	max-width: 625px;
	padding: 20px 0 40px;
	font-size: 22px;
	line-height: 30px;
}

.hero-promo .button {
	max-width: 400px;
	color: #FFF;
	border: 2px solid #FFF;
	background: none;
	text-transform: initial;
}

.hero-promo .button:hover {
	background: #FFF;
	color: #333;
}


/* -- Image List -- */

.image-list {
	position: relative;
	padding: 40px 0 0;
}
 
.image-list ul {
	list-style: none;
	max-width: 850px;
	margin: 0 auto;
	padding: 0;
}

.image-list li {
	position: relative;
	padding: 30px 0;
	width: 100%;
	margin: 0;
	overflow: hidden;
	cursor: default;
	text-align: left;
}

.image-list li a {
	color: #000;
	transition: color .2s;
}

.image-list li a:hover {
	color: #B60234;
}

.image-list li .image {
	display: block;
	float: left;
	width: 39%;
	height: auto;
}

.image-list li .image img {
	display: block;
	width: 100%;
	height: auto;
}

.image-list li .text {
	display: block;
	float: right;
	width: 58%;
}

.image-list li .date {
	display: block;
	padding-bottom: 18px;
	font-family: 'Oswald', sans-serif;
	font-size: 13px;
	line-height: 14px;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.image-list li .title {
	display: block;
	padding-bottom: 10px;
	font-size: 30px;
	line-height: 36px;
	font-weight: 900;
}

.image-list li .summary {
	display: block;
	font-size: 18px;
	line-height: 26px;
}


/* -- News Grid -- */


.news-grid {
	position: relative;
	box-sizing: border-box;
	width: 100%;
	max-width: 1380px;
	margin: auto;
	overflow: hidden;
	padding: 20px;
}

.news-grid .item {
	position: relative;
	display: block;
	box-sizing: border-box;
	float: left;
	width: 50%;
	padding: 20px;
	overflow: hidden;
	cursor: default;
	text-align: left;
}

.news-grid .item a {
	display: block;
	position: relative;
	box-sizing: border-box;
	color: #000;
}

.news-grid .item .image {
	display: block;
	width: 100%;
	height: auto;
	transition: filter .2s;
}

.news-grid .item a:hover .image {
	filter: brightness(1.2);
}


.news-grid .item .overlay {
	display: block;
	position: absolute;
	width: 100%;
	height: 0;
	top: 0;
	padding: 64.60176% 0 0;
	color: #FFF;
	background: -moz-linear-gradient(top, rgba(0,0,0,0.015) 0%, rgba(0,0,0,0.015) 50%, rgba(0,0,0,0.77) 100%);
	background: -webkit-linear-gradient(top, rgba(0,0,0,0.015) 0%,rgba(0,0,0,0.015) 50%,rgba(0,0,0,0.77) 100%); 
	background: linear-gradient(to bottom, rgba(0,0,0,0.015) 0%,rgba(0,0,0,0.015) 50%,rgba(0,0,0,0.77) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#c4000000',GradientType=0 );
}

.news-grid .item .overlay .text {
	display: block;
	position: absolute;
	bottom: 0;
	width: 88%;
	max-width: 550px;
	padding: 0 0 28px 25px;
	text-shadow: 0 0 10px rgba(0,0,0,.5);
}

.news-grid .item .overlay .text .date {
	display: block;
	padding-bottom: 20px;
	font-family: 'Oswald';
	font-size: 15px;
	line-height: 16px;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.news-grid .item .overlay .text .title {
	display: block;
	font-size: 30px;
	line-height: 36px;
	font-weight: 900;
	-webkit-font-smoothing: antialiased;
}

.news-grid .item .description {
	display: block;
	position: relative;
	height: 110px;
	font-size: 18px;
	line-height: 26px;
	background: #E8ECF2;
}

.news-grid .item .description span {
	display: block;
	width: 88%;
	max-width: 550px;
	padding-top: 28px;
	padding-left: 25px;
	height: 52px;
	overflow: hidden;
}

.sub-features {
	position: relative;
	box-sizing: border-box;
	width: 100%;
	overflow: hidden;
	padding: 20px;
}

.sub-features .item {
	position: relative;
	display: block;
	box-sizing: border-box;
	float: left;
	width: 50%;
	padding: 20px;
	overflow: hidden;
	cursor: default;
	text-align: left;
}

.sub-features-3 .item {
	width: 33.333%;
}

.sub-features .item a {
	display: block;
	position: relative;
	box-sizing: border-box;
	color: #000;
}

.sub-features .item .image {
	display: block;
	width: 100%;
	height: auto;
	transition: filter .2s;
}

.sub-features .item a:hover .image {
	filter: brightness(1.2);
}

.sub-features .item .overlay {
	display: block;
	position: absolute;
	width: 100%;
	height: 0;
	top: 0;
	padding: 64.60176% 0 0;
	color: #FFF;
	background: -moz-linear-gradient(top, rgba(0,0,0,0.015) 0%, rgba(0,0,0,0.015) 50%, rgba(0,0,0,0.77) 100%);
	background: -webkit-linear-gradient(top, rgba(0,0,0,0.015) 0%,rgba(0,0,0,0.015) 50%,rgba(0,0,0,0.77) 100%); 
	background: linear-gradient(to bottom, rgba(0,0,0,0.015) 0%,rgba(0,0,0,0.015) 50%,rgba(0,0,0,0.77) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#c4000000',GradientType=0 );
}

.sub-features-3 .item .overlay {
	padding: 100% 0 0;
}

.sub-features .item .overlay .text {
	display: block;
	position: absolute;
	bottom: 0;
	width: 100%;
	text-align: center;
	padding-bottom: 28px;
	text-shadow: 0 0 8px rgba(0,0,0,.7);
}

.sub-features .item .overlay .text .title {
	display: block;
	padding: 0 20px;
	font-size: 30px;
	line-height: 36px;
	font-weight: 900;
	-webkit-font-smoothing: antialiased;
}

.sub-features .item .description {
	display: block;
	position: relative;
	height: 110px;
	font-size: 16px;
	line-height: 24px;
	background: #E8ECF2;
	text-align: center;
}

.sub-features .item .description span {
	display: block;
	position: absolute;
	padding: 0 20px;
	max-width: 550px;
	top: 50%;
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.intro,
.intro-sm {
	margin: 55px auto 80px;
	max-width: 800px;
	text-align: center;
	font-size: 22px;
	line-height: 36px;
	font-weight: 400;
}

.intro-sm {
	margin: 30px auto;
	font-size: 18px;
	line-height: 30px;
}

.intro * {
	margin: 0 !important;
	padding: 0 !important;
	color: inherit !important;
	background: inherit !important;
	font: inherit !important;
}

.intro p {
	display: block;
}

.intro em {
	font-style: italic !important;
}

.intro div,
.intro img,
.intro iframe {
	display: none !important;
}

.intro-tag {
	padding-top: 10px;
	padding-bottom: 40px;
	font-size: 22px;
	font-weight: 900;
}

.intro-video {
	max-width: 850px;
	margin: auto;
	padding-bottom: 30px;	
}

.tagline {
	margin: 50px auto;
	max-width: 800px;
	font-size: 24px;
	line-height: 30px;
	font-weight: 800;	
}

.more,
.pagination {
	clear: both;
	padding: 40px 0;
	text-align: center;	
}

.pagination .button {
	margin-left: 10px;
	margin-right: 10px;
}

.columns {
	box-sizing: border-box;
	width: 100%;
	overflow: hidden;	
}

.column-lg {
	float: left;
	width: 62%;
	width: calc(64% - 40px);
}

.column-sm {
	float: right;
	width: 36%;
}



/* -- FAQs -- */


.faq {
	padding: 40px 0;
	text-align: center;	
}

.faqs {
	width: 100%;
	max-width: 700px;
	padding-top: 40px;
	margin: auto;
	text-align: left;
	overflow: hidden;
}

.faqs div.unfocused {
	margin-top: 25px;
	opacity: 0;
}

.faqs div.focused {
	animation-name: faderise;
	animation-duration: .5s;
	animation-fill-mode: both;
	animation-delay: .1s;
}

.faqs .question {
	float: left;
	clear: both;
	position: relative;
	box-sizing: border-box;
	z-index: 3;
	max-width: 90%;
	padding: 20px 30px;
	margin-bottom: -10px;
	background: #B60234;
	border-radius: 40px;
	color: #FFF;
	font-size: 20px;
	line-height: 29px;
	font-weight: 900;
	cursor: default;
	-webkit-font-smoothing: antialiased;
}

.faqs .question:after {
	display: block;
	position: absolute;
	content: "";
	left: 40px;
	bottom: -22px;
	width: 22px;
	height: 23px;
	background: url(../images/common/faq-question-tail.svg) center top no-repeat;	
}

.faqs .answer {
	float: right;
	position: relative;
	box-sizing: border-box;
	z-index: 2;
	max-width: 90%;
	padding: 30px;
	margin-bottom: 60px;
	background: #E8ECF2;
	border-radius: 40px;
	font-size: 16px;
	line-height: 26px;
	color: #535557;
	cursor: default;
}

.faqs .answer:after {
	display: block;
	position: absolute;
	content: "";
	right: 40px;
	bottom: -22px;
	width: 22px;
	height: 23px;
	background: url(../images/common/faq-answer-tail.svg) center top no-repeat;	
}

.faqs .answer p {
	display: inline;
	margin: 0;
}

.faqs .answer a {
	text-decoration: underline;
	color: #535557;
}

.faqs .answer a:hover {
	color: #000;
}




/* -- Tabs -- */

.tabs {
	width: 100%;
	max-width: 880px;
	margin: 0 auto;
}

.tabs-controls {
	padding: 28px 16px;
	background: #5785C7;
	font-family: 'Oswald', sans-serif;
	font-size: 18px;
	line-height: 22px;
	letter-spacing: 1px;
}

.tabs-controls ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.tabs-controls ul li {
	display: inline-block;
	padding: 0;
	margin: 0;
}

.tabs-controls ul li a {
	display: inline-block;
	padding: 15px 40px;
	color: #FFF;
}

.tabs-controls ul li a.selected {
	background: #FFF;
	border-radius: 28px;
	color: #5785C7;
}

.tabs .tab {
	padding: 40px;
	background: #E8ECF2;
}

.tabs .tab-intro {
	width: 80%;
	margin: 0 auto 50px;
	padding: 16px 0 0;
	font-size: 18px;
	line-height: 28px;
}

.tabs .tab-intro p {
	margin: 0 0 30px;
}

.tab-box {
	margin: 40px 0 0;
	padding: 40px;
	background: #FFF;
	text-align: left;	
	border: 1px solid #D1DCE5;
}

.tab-box h2 {
	text-align: center;
	margin: 40px 0 40px;
	padding-top: 50px;
	font-size: 18px;
	letter-spacing: 3px;
	border-top: 1px solid #D2DCE5;
}

.tab-box h2:first-child {
	margin-top: 0;
	padding-top: 0;
	border: 0;
}

.tab-box ul {
	list-style: none;
	margin: 0;
	padding: 10px 0;
	width: 100%;
	overflow: hidden;
	font-size: 20px;
	line-height: 24px;
}

.tab-box ul li {
	float: left;
	box-sizing: border-box;
	width: 50%;	
	margin: 0;
	padding: 8px 10px;
}

.tab-box ul li a {
	font-weight: 800;
}



/* -- Footer -- */


footer {
	background: #5785C7;
	padding: 40px 5px 50px;
	text-align: center;
	cursor: default;
	-webkit-font-smoothing: antialiased;
}

footer a {
	color: #FFF;
}

footer a:hover {
	color: #FFF;
}

#footer-nav {
	padding: 25px 0;	
}

#footer-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 20px;
	line-height: 28px;
}

#footer-nav ul li {
	display: inline;
	margin: 0 2%;
	padding: 0;
}

#footer-nav a {
	border-bottom: 2px solid transparent;
	transition: border-color .5s;
}

#footer-nav a:hover {
	border-bottom: 2px solid #FFF;
}

#footer-nav-sub {
	padding: 20px 0;	
}

#footer-nav-sub ul {
	list-style: none;
	margin: 0;
	padding: 0;
	font-weight: 500;
	font-size: 16px;
	line-height: 20px;
}

#footer-nav-sub ul li {
	display: inline;
	margin: 0 1.2%;
	padding: 0;
}

#footer-nav-sub a {
	border-bottom: 2px solid transparent;
	transition: border-color .5s;
}

#footer-nav-sub a:hover {
	border-bottom: 2px solid #FFF;
}

#footer-phone-email {
	display: inline-block;
	padding-bottom: 30px;
	font-size: 18px;
	color: #FFF;
	background-size: 15px 15px;	
}

#footer-phone-email .phone {
	padding-left: 22px;
	background: url(../images/common/icon-phone.png) left 4px no-repeat;
	background-size: 15px 15px;	
}

#footer-phone-email .email {
	padding-left: 22px;
	margin-left: 20px;
	background: url(../images/common/icon-email.png) left 7px no-repeat;
	background-size: 15px 11px;
}

#footer-social {
	width: 100%;
	padding: 10px 0 15px;
	overflow: hidden;
}

#footer-social a {
	display: inline-block;
	box-sizing: border-box;
	width: 60px;
	height: 60px;
	margin: 0 10px;
	border-radius: 50%;
	border: 2px solid transparent;
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: center center;
	transition: border-color .5s;
}

#footer-social a:hover {
	border-color: #FFF;
}

#footer-social a span {
	display: none;
}

#footer-social a.facebook {
	background-image: url(../images/common/social-facebook.svg);
}

#footer-social a.instagram {
	background-image: url(../images/common/social-instagram.svg);
}

#footer-social a.twitter {
	background-image: url(../images/common/social-twitter.svg);
}

#footer-credit {
	font-size: 12px;
}