@import url('//fonts.googleapis.com/css?family=Montserrat:400,700');
@import url('//fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic');

/*
	font-family: 'Montserrat', sans-serif;
	font-family: 'Arial', sans-serif;
*/

body {
	background: #333333;
	color: #363636;
	font-family: 'Arial', sans-serif;
	font-size: 14px;
	font-weight: 300;
	margin: 0;
	overflow-y: scroll;
	overflow-x: hidden;
	padding: 90px 0 0 0;
}

.ss-section-wrap p,
.ss-section-wrap ul,
.ss-section-wrap ol,
.ss-section-wrap table,
.ss-section-wrap td,
.ss-section-wrap .ss-content-block {
	font-size: 14px;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Arial', sans-serif;
	font-weight: 700;
	line-height: 100%;
	margin: 0 0 10px 0;
	padding: 0;
}

h1 {
	color: #ffffff;
	font-size: 100px;
	margin: 0;
	text-transform: uppercase;
}

/*
	color: #1172BA;
	font-size: 50px;
*/

h2 {
	color: #1172BA;
	font-size: 38px;
	/* text-transform: uppercase; */
}

h3, 
h2.title {
	color: #363636;
	font-size: 22px;
	text-transform: none;
}

h4 {
	font-size: 18px;
}

h5 {
	color: #1172BA;
	font-size: 18px;
}

h6 {
	color: #1172BA;
	font-size: 16px;
	font-weight: 400;
}

.h-sentence-case {
	text-transform: none;
}

a {
	color: #1172BA;
	outline: none;
	text-decoration: none;
}

a:hover { 
	color: #808080;
	text-decoration: underline;
}

a img { border: 0; }

p {
	line-height: 24px;
	margin: 0 0 15px 0;
	padding: 0;
}

strong {
	font-weight: 600;
}

.hr {
    border-bottom: 1px solid #cccccc;
    margin: 5px 0 15px;
}

.hr hr {
	display: none;
}

table p {
	margin: 0;
}

.mobile-only { display: none; }

@media (min-width: 550px) {
	.ss-content-block.col-1 {
		margin-left: 0.9%;
		margin-right: 0.9%;
	}
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Header ---------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.header {
	background: #ffffff;
	box-shadow: 0 0 15px rgba(0,0,0,0.45);
	-moz-box-shadow: 0 0 15px rgba(0,0,0,0.45);
	-webkit-box-shadow: 0 0 15px rgba(0,0,0,0.45);
	font-size: 13px;
	height: 90px;
	left: 0;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 20;
}

.header-upper {
	padding: 0 80px;
}

.header-upper:after {
	clear: both;
	content: '';
	display: table;
}

.header .logo {
	display: block;
	float: left;
	margin: 15px 0 0 0;
	transition: all .15s linear;
	-webkit-transition: all .15s linear;
	-moz-transition: all .15s linear;
	-o-transition: all .15s linear;
	width: 60px;
}

.header .logo img {
	transition: all .15s linear;
	-webkit-transition: all .15s linear;
	-moz-transition: all .15s linear;
	-o-transition: all .15s linear;
	max-width: 100%;
}


/* ---------------------------------------------------------------------------------------------------------- */
/* Nav Toggle ----------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
.nav-toggle {
	display: none;
}


/* ---------------------------------------------------------------------------------------------------------------------- */
/* Primary Navigation --------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------------------- */
.primary-navigation-wrap {
	float: right;
	font-family: 'Montserrat', sans-serif;
	margin: 0;
	z-index: 0;
}

.primary-navigation-wrap ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.primary-navigation-wrap > ul {
}

.primary-navigation-wrap > ul > li {
	float: left;
	position: relative;
}

@media screen and (min-width: 1024px) {
	.primary-navigation-wrap > ul > li:after {
		background: #fff;
		bottom: 0;
		content: '';
		left: 0;
		position: absolute;
		right: 0;
		top: 0;
		z-index: 3;
	}
}

.primary-navigation-wrap > ul > li > a {
	color: #717171;
	display: block;
	height: 90px;
	line-height: 90px;
	padding: 0 20px;
	position: relative;
	text-align: right;
	text-decoration: none;
	text-transform: uppercase;
	z-index: 4;
}

.primary-navigation-wrap > ul > li.sub {
	padding-right: 10px;
}

.primary-navigation-wrap > ul > li.sub > a {
	background: #fff url(/images/icons/gray-arrow-down.svg) 100% 50% no-repeat;
	background-size: 10px auto;
}

.primary-navigation-wrap > ul > li.sub > a {
	cursor: default;
}

.primary-navigation-wrap > ul > li:hover,
.primary-navigation-wrap > ul > li.selected {
}

.primary-navigation-wrap > ul > li:hover > a,
.primary-navigation-wrap > ul > li.selected > a {
	color: #1172BA;
}

.primary-navigation-wrap > ul > li.sub:hover > a,
.primary-navigation-wrap > ul > li.sub.selected > a {
	background-image: url(/images/icons/blue-arrow-down.svg);
}

/* drop level 1 */
.primary-navigation-wrap > ul > li > ul {
	background: #1172BA;
	padding: 15px 0;
}
@media screen and (min-width: 1024px) {
	.primary-navigation-wrap > ul > li > ul {
		box-shadow: 0 0 10px rgba(0,0,0,0.4);
		opacity: 0;
		visibility: hidden;
		margin-top: -15px;
		position: absolute;
		-webkit-transition: all 0.2s ease;
		transition: all 0.2s ease;
		width: 184px;
		z-index: 2;
	}

	.primary-navigation-wrap > ul > li:hover > ul {
		opacity: 1;
		margin: 0;
		visibility: visible;
	}

	.primary-navigation-wrap > ul > li > ul > li {
	}
}

.primary-navigation-wrap > ul > li > ul > li a {
	color: #fff;
	display: block;
	padding: 8px 20px;
	position: relative;
}

.primary-navigation-wrap > ul > li > ul > li.sub > a {
	background: url(/images/icons/small-white-arrow-right.png) 95% 50% no-repeat;
	background-size: 5px auto;
}

.primary-navigation-wrap > ul > li > ul li:hover > a,
.primary-navigation-wrap > ul > li > ul li.selected > a {
	color: #c4e3ff;
	text-decoration: none;
}

.primary-navigation-wrap > ul > li > ul li:hover > a:before,
.primary-navigation-wrap > ul > li > ul li.selected > a:before {
	background: #c4e3ff;
	bottom: 8px;
	content: '';
	position: absolute;
	top: 8px;
	left: 9px;
	width: 2px;
}

/* drop level 2 */
.primary-navigation-wrap > ul > li > ul > li > ul {
	background: #0E5C95;
	padding: 15px 0;
}

@media screen and (min-width: 1024px) {
	.primary-navigation-wrap > ul > li > ul > li.sub:hover > a {
		background-color: #0E5C95;
	}
	
	.primary-navigation-wrap > ul > li > ul > li > ul {
		box-shadow: 0 0 10px rgba(0,0,0,0.4);
		box-sizing: border-box;
		left: 184px;
		opacity: 0;
		min-height: 100%;
		visibility: hidden;
		position: absolute;
		-webkit-transition: all 0.2s ease;
		transition: all 0.2s ease;
		top: 0;
		z-index: 1;
		width: 184px;
	}

	.primary-navigation-wrap > ul > li > ul > li:hover > ul {
		opacity: 1;
		margin: 0;
		visibility: visible;
	}
}


/* ---------------------------------------------------------------------------------------------------------------------- */
/* Header Footer -------------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------------------- */
.header-footer {
	position: absolute;
	bottom: 20px;
	text-align: center;
	left: 0;
	right: 0;
}

.header-footer .copyright {
	color: #616161;
	font-family: 'Montserrat', sans-serif;
	font-size: 11px;
	margin: 20px 0 0 0;
}


/* ---------------------------------------------------------------------------------------------------------------------- */
/* Inside Page ---------------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------------------- */
.middle-content {
	background: #ffffff;
	min-height: 100%;
	transform: translate3d(0, 0, 0);
}

.pt-page-ontop {
    z-index: 3;
}

.page-banner {
	display: none;
}

.banner-override {
	background-color: #1172BA;
	background-size: cover;
	height: 300px;
	line-height: 300px;
	text-align: center;
}

.banner-override .inner {
}

.banner-override .heading {
	display: inline-block;
	vertical-align: middle;
}

.banner-override .heading h1 {
	font-size: 24px;
	margin-bottom: 20px;
}

.banner-override .heading h1.single,
.banner-override .heading h2 {
	color: #ffffff;
	font-size: 100px;
	margin: 0;
}

.inside-page {
	padding: 45px;
	margin: 0 auto;
	max-width: 1300px;
}

#breadcrumbs {
	display: none;
}

.main-content {
	padding-bottom: 100px;
}

.main-content table {
	margin-bottom: 15px;
}

.heading-wrap {
	background: #525252;
	background-position: 50% 100%;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}

.heading-wrap .wrapper {
	height: 119px;
	position: relative;
	z-index: 2;
}

.section-heading {
	background: rgba(0,0,0,0.6);
	bottom: 0;
	color: #ffffff;
	font-size: 30px;
	line-height: 30px;
	font-weight: 700;
	left: 0;
	min-width: 350px;
	padding: 10px;
	position: absolute;
}

.heading-wrap img {
	display: none;
	width: 100%;
}


/* ---------------------------------------------------------------------------------------------------------------------- */
/* Left Navigation ------------------------------------------------------------------------------------------------------ */
/* ---------------------------------------------------------------------------------------------------------------------- */
/* first level */
.left-nav > ul {
	list-style: none;
	margin: 0;
	padding: 30px 0 0 0;
}


.left-nav > ul > li {
	background: none;
	margin-bottom: 1px;
	padding: 0;
}

.left-nav a {
	color: #ffffff;
	display: block;
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
	padding: 10px 10px;
	text-decoration: none;
	text-transform: uppercase;
}

.left-nav li.sub > a {
	background: url(/images/icons/white-plus.png) 98% 50% no-repeat;
}

.left-nav li:hover,
.left-nav li.selected {
	background: #800d0d;
}

.left-nav > ul > li > a {
	
}

.left-nav > ul > li.sub > a {

}

/* second level */
.left-nav > ul > li > ul {
	display: none;
	list-style: none;
	margin: 0;
	padding: 0;
}

.left-nav > ul > li.selected > ul {
	display: block;
}

.left-nav > ul > li.selected > ul > li > a {
	font-size: 12px;
	padding-left: 30px;
}

.left-nav > ul > li.selected > ul > li.last a {

}

.left-nav > ul > li.selected > ul > li.selected > a,
.left-nav > ul > li.selected > ul > li > a:hover {
	background: #710404;
}

/* third level */
.left-nav > ul > li.selected > ul > li > ul {
	display: none;
	list-style: none;
	margin: 0;
	padding: 0;
}

.left-nav > ul > li.selected > ul > li.selected > ul {
	display: block;
}

.left-nav > ul > li.selected > ul > li > ul > li > a {
	padding-left: 45px;
	text-transform: none;
}

.left-nav > ul > li.selected > ul > li > ul > li.last a {
}

.left-nav > ul > li.selected > ul > li > ul > li.selected > a,
.left-nav > ul > li.selected > ul > li > ul > li a:hover {
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Main Content Side Bar ------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.right-side h1,
.main-content.has-side-boxes,
.blog-left-column {
	width: 67.32673267326733%;
}

.side-boxes,
.blog-right-column {
	float: right;
	width: 26.43564356435644%;
}

.blog-left-column .button.negmt {
	margin: 10px 10px 0 0;
}

.blog-right-column h3 {
	font-size: 18px;
}

.side-box {
	background: #f8f8f8;
	border: none;
	border-bottom: 1px solid #1172BA;
	border-top: 1px solid #1172BA;
	font-size: 12px;
	margin: 0 0 30px 0;
	padding: 25px 15px;
}

.side-box cite {
	padding: 20px;
	font-size: 150%;
}

.side-box img {
	width: 100% !important;
	height: auto !important;
}

.side-box h3.side-box-heading {
	display: none;
}

.side-box p {
	line-height: 20px;
	margin: 0 0 15px 0;
}

.side-box .button {
	display: block;
	margin-bottom: -15px;
	padding-left: 5px;
	padding-right: 5px;
	text-align: center;
}

.side-boxes .side-box .button:hover {

}

.side-boxes .side-box .slideshow {

}

.side-boxes .side-box .slideshow .slide {

}

.side-box .slideshow .slide h2 {
	display: none;
}

.side-box .slideshow .slide img {
	width: 100%;
}

.side-boxes .content-box-list li {
	background: none;
	border-bottom: 1px solid #bfbfbf;
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.side-boxes .content-box-list li a {
	background: none;
	color: #252525;
	font-size: 14px;
}

.side-boxes .content-box-list li a .date {
	background: none;
	color: #252525;
    display: block;
    float: none;
    font-size: 10px;
    margin: 0;
    height: auto;
    min-height: 1px;
    line-height: 10px;
    padding: 0;
    text-align: left;
    width: auto;
}

.side-boxes .content-box-list li a .date strong {
	display: inline-block;
	padding-left: 8px;
	font-weight: 300;
}

.side-boxes .content-box-list li a .title {
	color: #1172BA;
    font-size: 16px;
	font-weight: 700;
	padding: 0;
}

.side-boxes .content-box-list li a .abstract {
	display: block;
}

.side-boxes .content-box-list li a .see-details {
	display: none;
}

.side-box .button {
	display: block;
	text-align: center;
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Footer ---------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.footer {
	background: #8e8e8e;
	color: #ffffff;
	font-family: 'Montserrat', sans-serif;
	font-size: 11px;
	padding: 22px;
	text-align: right;
}

.footer a {
	color: #ffffff;
	text-decoration: underline;
}

.footer a:hover {
	color: #1172BA;
}

.footer .footer-logo-glyphs {
	display: none;
}

.footer .social-media-wrap {
	float: left;
}

.footer .social-media-wrap ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer .social-media-wrap ul li {
	display: inline-block;
}

.footer .social-media-wrap ul li a {
	display: block;
	height: 30px;
	margin-right: 7px;
	width: 30px;
}
.footer .social-media-wrap ul li a img {
	height: 30px;
}

.footer .social-media-wrap ul li.twitter a {
	margin-right: 15px;
	width: 37px;
}

.footer .social-media-wrap ul li:hover a {
	opacity: .6;
	filter: alpha(opacity=60);
}

.footer p {
	display: inline-block;
	line-height: 11px;
	margin: 0 0 0 8px;
	padding: 0;
	vertical-align: middle;
}




/* ----------------------------------------------------------------------------------------------------------------------- */
/* Buttons --------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.button,
.small-action-button {
	background: #1172BA;
	border: 0;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	color: #ffffff;
	cursor: pointer;
	display: inline-block;
	font-family: 'Montserrat', sans-serif;
	font-size: 12px;
	font-weight: 700;
	height: auto;
	letter-spacing: 1.5px;
	line-height: 12px;
	padding: 16px 24px;
	text-transform: uppercase;
	text-align: center;
	transition: all .10s linear;
	-webkit-transition: all .10s linear;
	-moz-transition: all .10s linear;
	-o-transition: all .10s linear;
}

.button:hover,
.small-action-button:hover {
	background: #003c73;
	color: #ffffff;
	opacity: 1;
}

.small-action-button {
	font-size: 10px;
	line-height: 10px;
	padding: 6px 15px;
	white-space: nowrap;
}

.list-items li .read-more-wrap {
	width: 120px;
	text-align: right;
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Pager ----------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.upper-pager {
	text-align: right;
	float: right;
	margin: 0 0 0 0;
	height: 35px;
}

.lower-pager {
	float: right;
}

.page-buttons {
	float: right;
	height: 20px;
	padding: 0;
}

.page-count {
	color: #2b2c2b;
	float: left;
	font-size: 12px;
	height: 23px;
	line-height: 23px;
	padding: 0 10px 0 0;
	text-transform: uppercase;
}

.pager, 
.pager-prev, 
.pager-next,
form.category-and-window ul.time-window-options li a {
	background: #1172BA;
	border: 0;
	color: #ffffff;
	display: block;
	float: left;
	font-size: 12px;
	height: 23px;
	line-height: 23px;
	margin: 0 0 0 3px;
	padding: 0 8px;
	text-decoration: none;
}

.pager:hover, 
.pager-prev:hover, 
.pager-next:hover,
.pager.on,
form.category-and-window ul.time-window-options li.selected a, form.category-and-window ul.time-window-options li:hover a {
	background: #1172ba;
	border: 0;
	color: #ffffff;
	text-decoration: none;
}

.pager-next, .pager-prev {
	background: #1172BA;
	font-size: 10px;
	text-transform: uppercase;
}

.search-page-form-wrap .text-search-wrap .submit {
	background: #1172BA;
	border: 0;
	color: #ffffff;
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Homepage -------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.homepage {
	position: relative;
	z-index: 3;
}

.homepage .box-1 {
	position: relative;
}

.homepage .box-1 .arrow-wrap {
	display: none;
}

.homepage .box-1,
.homepage .box-1 .marquee-stage,
.homepage .box-1 .marquee-stage .slide {
	background-size: cover;
	background-position: 50% 100%;
	background-repeat: no-repeat;
	color: #ffffff;
	height: 640px;
	line-height: 640px;
	overflow: hidden;
	text-align: center;
}

.homepage .box-1 .marquee-stage {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
}

.homepage .box-1 .marquee-stage .slide {
	width: 100%;
}

.homepage .box-1 .marquee-stage .slide .image {
	display: none;
}

.homepage .box-1 .marquee-stage .slide > .wrapper {
	display: inline-block;
	vertical-align: middle;
	max-width: 840px;
	line-height: 100px;
}

.homepage .box-1 .marquee-stage .slide h2 {
	color: #ffffff;
	font-size: 100px;
	line-height: 100px;
	margin: 0;
	padding: 0;
	text-transform: uppercase;
}

.homepage .box-1 .marquee-stage .slide .caption {
	font-size: 20px;
	font-weight: 400;
	line-height: 24px;
	margin: 0;
}

.homepage .box-1 .marquee-stage-navigation-wrap {
	display: none;
}

.homepage .box-2 {
	padding: 55px 45px;
	text-align: center;
}

.homepage .box-2 h2 {
	color: #1172BA;
	font-size: 50px;
}

.homepage .box-2 p {
	font-size: 16px;
	line-height: 30px;
	margin-left: auto;
	margin-right: auto;
	max-width: 940px;
}

.homepage .lower {
	background: #932828 url(/images/template/gray-gravelly-background.jpg);
	background-size: cover;
	padding: 45px 0 90px 0;
}

.homepage .box-3 {
	position: relative;
}

.homepage .box-3 .arrow-wrap {
	height: 101px;
	line-height: 100%;
	margin-top: -50px;
	position: absolute;
	right: 0;
	top: 50%;
	z-index: 12;
}

.homepage .box-3 .arrow-wrap a {
	background: #ffffff url(/images/icons/black-arrow-left.png) 50% 50% no-repeat;
	display: block;
	height: 50px;
	opacity: .6;
	filter: alpha(opacity=60);
	width: 42px;
	text-indent: -9999px;
}

.homepage .box-3 .arrow-wrap a.next-arrow {
	background-image: url(/images/icons/black-arrow-right.png);
	margin-top: 1px;
}

.homepage .box-3 .arrow-wrap a:hover {
	opacity: .8;
	filter: alpha(opacity=80);
}

.homepage .box-3,
.homepage .box-3 .image-stage-2,
.homepage .box-3 .image-stage-2 .slide {
	background: none !important;
	height: 420px;
	line-height: 420px;
	overflow: hidden;
}

.homepage .box-3 .image-stage-2 {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
}

.homepage .box-3 .image-stage-2 .slide {
	width: 100%;
}

.homepage .box-3 .image-stage-2 .slide .image {
	background-size: cover;
	background-position: 50% 100%;
	background-repeat: no-repeat;
	bottom: 0;
	position: absolute;
	right: 0;
	top: 0;
	width: 50%;
}

.homepage .box-3 .image-stage-2 .slide > .wrapper {
	background: #f1f1f1;
	border-bottom: 1px solid #1172BA;
	border-top: 1px solid #1172BA;
	bottom: 0;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	left: 0;
	position: absolute;
	text-align: left;
	top: 0;
	width: 50%;
}

.homepage .box-3 .image-stage-2 .slide .caption {
	display: inline-block;
	font-size: 23px;
	font-style: italic;
	line-height: 35px;
	margin: 0;
	padding: 0 45px;
	vertical-align: middle;
}

.homepage .box-3 .image-stage-2 .slide .caption strong {
	display: inline-block;
	margin-top: 20px;
	font-size: 14px;
	font-style: normal;
	line-height: 18px;
}

.homepage .box-3 .image-stage-2-navigation-wrap {
	display: none;
}	

.homepage .box-4 {
	font-family: 'Montserrat', sans-serif;
	padding: 65px 45px 128px 45px;
	text-align: center;
}

.homepage .box-4 h3 {
	color: #1172BA;
	font-size: 38px;
	max-width: 820px;
	margin: 0 auto 60px auto;
	text-transform: uppercase;
}

.homepage-technology-blocks {
	list-style: none;
	margin: 0;
	padding: 0;
}

.homepage-technology-blocks li {
	float: left;
	width: 20%;
}

.homepage-technology-blocks li a {
	border-right: 1px solid #1172BA;
	color: #363636;
	display: block;
	position: relative;
	text-align: center;
	text-decoration: none;
}

.homepage-technology-blocks li a .wrap {
	display: block;
}

.homepage-technology-blocks li:last-child a { border: 0; }
.homepage-technology-blocks li.last a { border: 0; }

.homepage-technology-blocks li a .image {
	display: block;
	height: 120px;
	line-height: 120px;
	margin-bottom: 25px;
	text-decoration: none;
	-webkit-transition: all .15s linear;
	-moz-transition: all .15s linear;
	-o-transition: all .15s linear;
}

.homepage-technology-blocks li a:hover .image {
    -ms-transform: rotate(-10deg); /* IE 9 */
    -webkit-transform: rotate(-10deg)); /* Chrome, Safari, Opera */
    transform: rotate(-10deg);
}

.homepage-technology-blocks li a .image img {
	display: inline-block;
	transition: all .15s linear;
	-webkit-transition: all .15s linear;
	-moz-transition: all .15s linear;
	-o-transition: all .15s linear;
	vertical-align: bottom;
	width: auto !important;
	height: auto !important;
}

.homepage-technology-blocks li a:hover .image img {
    -ms-transform: scale(1.10); /* IE 9 */
    -webkit-transform: scale(1.10); /* Chrome, Safari, Opera */
    transform: scale(1.10);
}

.homepage-technology-blocks li a .heading {
	display: block;
	margin: 0 auto;
	max-width: 150px;
	padding-bottom: 20px;
}

.homepage-technology-blocks li a .overlay {
	background: rgba(47,47,47,0.75);
	color: #ffffff;
	bottom: 0;
	left: 15px;
	line-height: 195px;
	opacity: 0;
	filter: alpha(opacity=0);
	position: absolute;
	right: 15px;
	top: 0;
	transition: all .15s linear;
	-webkit-transition: all .15s linear;
	-moz-transition: all .15s linear;
	-o-transition: all .15s linear;
}

.homepage-technology-blocks li a:hover .overlay {
	opacity: 1;
	filter: alpha(opacity=100);
}

.homepage-technology-blocks li a .overlay .text {
	color: #ffffff;
	display: inline-block;
	line-height: 18px;	
	margin-top: 50px;
	opacity: 0;
	filter: alpha(opacity=0);
	text-transform: uppercase;
	transition: all .15s linear;
	-webkit-transition: all .15s linear;
	-moz-transition: all .15s linear;
	-o-transition: all .15s linear;
	vertical-align: middle;
}

.homepage-technology-blocks li a:hover .overlay .text {
	margin: 0;
	opacity: 1;
	filter: alpha(opacity=100);
}

.homepage .box-5 {
}

.homepage .box-5 h3 { 
	color: #1172BA;
	font-size: 38px;
	margin: 0 auto 60px auto;
	padding: 0 45px;
	text-transform: uppercase;
	text-align: center;
}

.homepage-projects-grid {
	list-style: none;
	margin: 0;
	padding: 0;
}

.homepage-projects-grid li {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	float: left;
	margin-bottom: 16px;
	width: 33.33333333%;
}

.homepage-projects-grid li:nth-child(3n+1) {
	padding-right: 8px;
}
.homepage-projects-grid li:nth-child(3n+3) {
	padding-left: 8px;
}
.homepage-projects-grid li:nth-child(3n+2) {
	padding-left: 8px;
	padding-right: 8px;
}

.homepage-projects-grid li a {
	display: block;
	overflow: hidden;
	position: relative;
}

.homepage-projects-grid li a .image {
	background-size: cover;
	display: block;
	transition: all .15s linear;
	-webkit-transition: all .15s linear;
	-moz-transition: all .15s linear;
	-o-transition: all .15s linear;
}

.homepage-projects-grid li a:hover .image {
    -ms-transform: scale(1.14); /* IE 9 */
    -webkit-transform: scale(1.14); /* Chrome, Safari, Opera */
    transform: scale(1.14);
	-webkit-filter: blur(5px);
	-moz-filter: blur(5px);
	-o-filter: blur(5px);
	-ms-filter: blur(5px);
	filter: blur(5px);
}

.homepage-projects-grid li a .image img {
	opacity: 0;
	filter: alpha(opacity=0);
	width: 100%;
}

.homepage-projects-grid li a:hover .image img {

}

.homepage-projects-grid li a .overlay {
	background: rgba(47,47,47,0.75);
	bottom: 15px;
	left: 15px;
	line-height: 210px;
	opacity: 0;
	filter: alpha(opacity=0);
	position: absolute;
	right: 15px;
	text-align: center;
	transition: all .15s linear;
	-webkit-transition: all .15s linear;
	-moz-transition: all .15s linear;
	-o-transition: all .15s linear;
	top: 15px;
}

.homepage-projects-grid li a:hover .overlay {
	opacity: 1;
	filter: alpha(opacity=100);
}

.homepage-projects-grid li a .overlay .caption {
	color: #ffffff;
	display: inline-block;
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 22px;
	margin-top: 75px;
	max-width: 250px;
	opacity: 0;
	filter: alpha(opacity=0);
	text-transform: uppercase;
	transition: all .15s linear;
	-webkit-transition: all .15s linear;
	-moz-transition: all .15s linear;
	-o-transition: all .15s linear;
	vertical-align: middle;
}

.homepage-projects-grid li a:hover .overlay .caption {
	margin-top: 0;
	opacity: 1;
	filter: alpha(opacity=100);
}

.homepage .box-6 {
}

#twitter-box {
	background: url(/images/icons/twitter-bird.png) 50% 0 no-repeat;
	margin-top: 50px;
	padding: 100px 0 20px 0;
}

#twitter-feed {
	font-size: 14px;
	line-height: 26px;
	padding: 0 25px;
}

#twitter-feed #twitter-preloader {
	background: #eeeeee;
	min-height: 200px;
	position: relative;
}

#twitter-feed .twitter-article {
	border-right: 1px solid #1172BA;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	float: left;
	padding: 0 10px;
	width: 33.33333%;
}

#twitter-feed .twitter-article.first {
	padding-left: 0;
}

#twitter-feed .twitter-article.last {
	border-right: 0;
	padding-right: 0;
}

#twitter-feed .twitter-article .inner {
	background: #eeeeee;
	padding: 25px;
}

#twitter-feed .twitter-article .retweet-indicator {
	background: url(/images/icons/retweet.png) 0 50% no-repeat;
	font-family: 'Montserrat', sans-serif;
	font-size: 10px;
	padding-left: 24px;
}


#twitter-feed .twitter-article .profile-link-and-time {
	font-family: 'Montserrat', sans-serif;
}

#twitter-feed .twitter-article .profile-link-and-time a {

}

#twitter-feed .twitter-article .profile-link-and-time a:hover {

}

#twitter-feed .twitter-article .profile-link-and-time .tweet-time {

}

#twitter-feed .twitter-article .profile-link-and-time .tweet-time a {

}

#twitter-feed .twitter-article .profile-link-and-time .tweet-time a:hover {

}

#twitter-feed .twitter-article .tweet {

}

#twitter-feed .twitter-article .tweet a {

}

#twitter-feed .twitter-article .tweet a:hover {

}

/********************* NEW HOMEPAGE **********************/

.page-index .banner-override {
	display: none;
}
.page-index .main-content {
	padding-bottom: 0;
}
.page-index .inside-page {
	margin: 0;
	max-width: none;
	padding: 0;
}
.page-index .homepage-gallery .col-1 {
	margin: 0;
}
.page-index .homepage-gallery .inline-gallery-wrap .slide {
	z-index: 0;
}
.page-index .homepage-gallery .inline-gallery-wrap .slide:before {
	background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,58%) 100%);
	bottom: 0;
	content: '';
	display: block;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1;
}
.page-index .homepage-gallery .inline-gallery-wrap .slide .caption {
	background-image: none;
	box-shadow: none;
	color: #fff;
	display: block !important;
	height: auto !important;
	margin: 0 0 60px !important;
	padding: 0 60px !important;
	text-align: center;
	z-index: 2;
}
.page-index .homepage-gallery .inline-gallery-wrap .slide .caption p {
	font-size: 21px;
	font-weight: 500;
}
.page-index .homepage-gallery .inline-gallery-wrap .slide .caption h1 {
	font-size: 44px;
	letter-spacing: 1.76px;
	line-height: 122%;
	margin: 0 auto;
	max-width: 1100px;
	padding-bottom: 10px;
}
.page-index .homepage-gallery .inline-gallery-wrap .slide .caption h1 small {
	font-size: 21px;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 100%;
	text-transform: none;
}
.page-index .homepage-gallery .embedded-gallery .slide .ss-youtube-vimeo-player {
	background-color: #000;
	bottom: 0;
	left: 0;
	overflow: hidden;
	position: absolute;
	pointer-events: none;
	height: 100vh !important;
	right: 0;
	top: 0;
} 

.page-index .homepage-gallery .embedded-gallery .slide .ss-youtube-vimeo-player iframe {
	left: 50%;
	max-width: none;
	height: 100vh;
    opacity: 1 !important;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100vw;
}

@media (min-aspect-ratio: 16/9) {
	.page-index .homepage-gallery .embedded-gallery .slide .ss-youtube-vimeo-player iframe { 
		/* height = 100 * (9 / 16) = 56.25 */
		min-height: 56.25vw;
	}
}

@media (max-aspect-ratio: 16/9) {
	.page-index .homepage-gallery .embedded-gallery .slide .ss-youtube-vimeo-player iframe { 
		/* width = 100 / (9 / 16) = 177.777777 */
		width: 177.78vh;
	}
}

.page-index .homepage-gallery .slide .ss-youtube-vimeo-player .play-button, 
.page-index .homepage-gallery .slide .ss-youtube-vimeo-player .play-button:before {
	display: none !important;
}
.page-index .intro-section {
	padding: 80px 60px 100px;
}
.page-index .intro-section .col-1 {
	margin: 0 auto;
	max-width: 1200px;
}
.page-index .intro-section .col-1 h2,
.page-index .benefit-statement-section .col-2 h2 {
	line-height: 127%;
}
.page-index .testimonials-slider-section .col-1 {
	flex: none;
	margin: 0;
	width: 100%;
}
.page-index .testimonials-slider-section .content-box-list.testimonials {
	display: none;
}
.page-index .testimonials-slider .slick-prev, .page-index .testimonials-slider .slick-next {
	background: #ffffff url(/images/icons/black-arrow-left.png) 50% 50% no-repeat;
	border: none;
	display: block;
	filter: alpha(opacity=60);
	height: 50px;
	opacity: .8;
	position: absolute;
	right: 0;
	text-indent: -9999px;
	top: 50%;
	transform: translateY(-50%);
	width: 42px;
}
.page-index .testimonials-slider .slick-prev {
	background: #ffffff url(/images/icons/black-arrow-left.png) 50% 50% no-repeat;
	margin-top: -30px;
	z-index: 10;
}
.page-index .testimonials-slider .slick-next {
	background: #ffffff url(/images/icons/black-arrow-right.png) 50% 50% no-repeat;
	margin-top: 30px;
}
.page-index .testimonials-slider .slick-prev:hover, .page-index .testimonials-slider .slick-next:hover {
	opacity: 1;
}
.page-index .testimonials-slider .slide h2 {
	display: none;
}
.page-index .testimonials-slider .slide .responsive-grid-layout-row.two-column {
	display: flex;
	margin: 0;
	min-height: 460px;
	position: relative;
}
.page-index .testimonials-slider .slide .responsive-grid-layout-row.two-column .col.first {
	background-color: #F1F1F1;
	display: flex;
	flex: 1;
	flex-direction: column;
	justify-content: center;
	margin: 0;
	padding: 80px;
	width: 50%;
}
.page-index .testimonials-slider .slide .responsive-grid-layout-row.two-column .col.first h4 {
	color: transparent;
	display: flex;
	flex-direction: column;
}
.page-index .testimonials-slider .slide .responsive-grid-layout-row.two-column .col.first p {
	font-family: 'Arial', sans-serif;
	font-size: 23px;
	font-weight: 400;
	font-style: italic;
	line-height: 173%;
}
.page-index .testimonials-slider .slide .responsive-grid-layout-row.two-column .col.first h4 .name {
	color: #363636;
	font-family: 'Arial', sans-serif;
	font-size: 14px;
	font-weight: 700;
}
.page-index .testimonials-slider .slide .responsive-grid-layout-row.two-column .col.first h4 .title,
.page-index .testimonials-slider .slide .responsive-grid-layout-row.two-column .col.first h4 .company {
	color: #363636;
	font-family: 'Arial', sans-serif;
	font-size: 14px;
	font-weight: 400;
	margin-top: -15px;
}
.page-index .testimonials-slider .slide .responsive-grid-layout-row.two-column .col.last {
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: cover;
	display: block;
	flex: 1;
}
.page-index .testimonials-slider .slide .responsive-grid-layout-row.two-column .col.last p img {
	display: none;
}
.page-index .sharing-stories-section .internal-page-inline-slideshow-wrap .arrow-wrap,
.page-index .sharing-stories-section .internal-page-inline-slideshow-wrap .slide.placeholder {
	display: none !important;
}
.page-index .sharing-stories-section .internal-page-inline-slideshow-wrap .slideshow {
	display: flex;
	flex: 0;
	flex-wrap: wrap;
	justify-content: space-between;
	height: 68vw !important;
	max-height: 1100px;
	width: auto;
}
.page-index .sharing-stories-section .internal-page-inline-slideshow-wrap .slide {
	display: block !important;
	height: calc(100% / 3 - 20px);
	margin-bottom: 20px;
	opacity: 1 !important;
	position: relative !important;
	width: calc(100% / 3 - 10px);
}
.page-index .quick-facts-section {
	padding-top: 120px;
}
.page-index .quick-facts-section .ss-section-wrap-inner .col-5 {
	margin: 0;
	position: relative;
	width: calc(100% / 6);
}
.page-index .quick-facts-section .ss-section-wrap-inner .col-5:after {
	background-color: #DEDEDE;
	display: inline-block;
	height: 320px;
	position: absolute;
	top: 0;
	width: 1px;
}
.page-index .benefit-statement-section {
	position: relative;
}
.page-index .benefit-statement-section .ss-section-wrap-inner {
	display: flex;
}
.page-index .benefit-statement-section .ss-image-block {
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: cover;
}
.page-index .benefit-statement-section .ss-image-block img {
	display: none;
}
.page-index .benefit-statement-section .col-2 {
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 0;
	min-height: 600px;
	padding: 100px;
	width: 50%;
}
.page-index .benefit-statement-section .col-2 h2 {
	margin-bottom: 30px;
}
.page-index .benefit-statement-section .col-2 p {
	font-size: 18px;
	line-height: 177%;
}
.page-index .sharing-stories-section {
	padding: 100px 0 0;
}
.page-index .sharing-stories-section .col-1:last-child {
	margin: 0;
}
.page-index .sharing-stories-section .internal-page-inline-slideshow-wrap .slide {
	overflow: hidden;
}
.page-index .sharing-stories-section .internal-page-inline-slideshow-wrap .slide .caption {
	align-items: center;
	backdrop-filter: blur(10px);
	background-color: rgba(0,0,0,60%);
	bottom: 20px;
	color: #fff;
	display: flex;
	flex-direction: column;
	font-family: 'Montserrat', sans-serif;
	font-size: 20px;
	font-weight: 400;
	justify-content: center;
	left: 20px;
	letter-spacing: 2.4px;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	right: 20px;
	text-align: center;
	text-transform: uppercase;
	top: 20px;
	transition: opacity 0.3s ease;
}
.page-index .sharing-stories-section .internal-page-inline-slideshow-wrap .slide:hover .caption {
	opacity: 1;
	padding: 15px;
}
.page-index .sharing-stories-section .internal-page-inline-slideshow-wrap .slide .image-wrap {
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100px;
	min-height: 420px;
	position: relative;
	transition: transform 0.3s ease;
}
.page-index .sharing-stories-section .internal-page-inline-slideshow-wrap .slide:hover .image-wrap {
	transform: scale(1.3);
}
.page-index .sharing-stories-section .internal-page-inline-slideshow-wrap .slide .image-wrap a {
	bottom: 0;
	display: block;
	height: 100%;
	left: 0;
	right: 0;
	top: 0;
}
.page-index .sharing-stories-section .internal-page-inline-slideshow-wrap .slide .image-wrap a img {
	display: none;
}
.page-index .sharing-stories-section .internal-page-inline-slideshow-wrap .slide .caption .readmore-txt {
	bottom: 70px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2.4px;
	position: absolute;
}

/* MOBILE ************************************************/

@media (max-width: 1300px) {
	.page-index .quick-facts-section .ss-section-wrap-inner {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}
	.page-index .quick-facts-section .ss-section-wrap-inner .col-5 {
		width: 250px;
	}
}
@media (max-width: 1150px) {
	.page-index .sharing-stories-section .internal-page-inline-slideshow-wrap .slideshow {
		height: fit-content !important;
		max-height: none;
	}
	.page-index .sharing-stories-section .internal-page-inline-slideshow-wrap .slide {
		max-height: 300px;
		width: 100%;
	}
}
@media (max-width: 1024px) {
	.page-index .homepage-gallery {
		margin-top: -60px;
	}
	.page-index .homepage-gallery .inline-gallery-wrap .slide {
		height: 100vh;
	}
	.page-index .homepage-gallery .inline-gallery-wrap .slide .caption h1 {
		font-size: 36px;
		letter-spacing: 0;
		line-height: 100%;
	}
	.page-index .testimonials-slider .slide .responsive-grid-layout-row.two-column {
		flex-direction: column;
	}
	.page-index .testimonials-slider .slide .responsive-grid-layout-row.two-column .col.first,
	.page-index .testimonials-slider .slide .responsive-grid-layout-row.two-column .col.last {
		box-sizing: content-box;
		min-height: 400px;
		padding: 30px;
		width: calc(100% - 60px);
	}
	.page-index .testimonials-slider .slide .responsive-grid-layout-row.two-column .col.first p {
		font-size: 16px;
	}
	.page-index .benefit-statement-section .ss-section-wrap-inner {
		flex-direction: column;
	}
	.page-index .benefit-statement-section .ss-section-wrap-inner .col-2 {
		width: 100%;
	}
	.page-index .quick-facts-section .col-1:first-child,
	.page-index .sharing-stories-section .col-1:first-child {
		padding-left: 30px;
		padding-right: 30px;
	}
	.page-index .sharing-stories-section .internal-page-inline-slideshow-wrap .slide .caption {
		height: fit-content;
		opacity: 1;
		padding: 15px;
		top: auto;
	}
	.page-index .sharing-stories-section .internal-page-inline-slideshow-wrap .slide .caption .readmore-txt {
		bottom: 15px;
	}
}
@media (max-width: 500px) {
	.page-index .quick-facts-section {
		padding-top: 30px;
	}
	.page-index .quick-facts-section .ss-section-wrap-inner .col-5:after {
		display: none;
	}
	.page-index .benefit-statement-section .ss-section-wrap-inner .col-2 {
		padding: 30px;
	}
}

/*********************************************************/


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Job Board ------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
form.category-and-window .text-search-wrap .submit {
	background: #1172BA;
	color: #ffffff;
}

form.category-and-window .text-search-wrap .submit:hover {
	background: #003c73;
	color: #ffffff;
}

.job-board-items .list-item .expand {
	background-image: url(/images/icons/blue-arrow-down.png);
}

.job-board-items .list-item .expand.on {
	background-image: url(/images/icons/blue-arrow-up.png);
}


.job-board-items .list-item .heading {
	height: auto;
	line-height: 100%;
	padding: 10px;
}

.job-board-items .list-item .heading h2.title {
	line-height: 16px;
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* News ------------------------------------------------------------------------------------------------------------------ */
/* ----------------------------------------------------------------------------------------------------------------------- */
.rss-link-wrap {
	display: none;
}

.list-items li .content {
	max-width: 100%;
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Contact Form ---------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
input, select, textarea {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
    max-width: 100%;
}

form .field-wrap input,
form .field-wrap select,
form .field-wrap textarea {
	background: #ffffff;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	border: 1px solid #cecece;
    min-width: 85%;
    padding: 5px;
}

.good-alert.fixed, .bad-alert.fixed {
	z-index: 99;
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Galleries ------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.embedded-gallery .prev-arrow, 
.embedded-gallery .next-arrow {
	background: #ffffff url(/images/icons/black-arrow-left.png) 50% 50% no-repeat;
	display: block;
	height: 50px;
	left: 0;
	margin-top: -25px;
	opacity: .6;
	filter: alpha(opacity=60);
	width: 42px;
	text-indent: -9999px;
	top: 50%;
}

.embedded-gallery .next-arrow {
	background-image: url(/images/icons/black-arrow-right.png);
	left: auto;
	right: 0;
}

.embedded-gallery .prev-arrow:hover,
.embedded-gallery .next-arrow:hover {
	opacity: 1;
	filter: alpha(opacity=100);
}

.embedded-gallery-nav-wrapper {
	display: none;
}

.embedded-gallery .stage {
	border: 0;
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Preloader ------------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
#preloader-wrap {
	background: #000000;
	opacity: .5;
	filter: alpha(opacity=50);
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	z-index: 9999;
	display: none;
}
.preloader {
  border-radius:100%;
  position: absolute;
  left: 50%; 
  top: 50%;
  margin: -10px 0 0 -10px;
  opacity: 0.5;
  filter: alpha(opacity=10);
  height:20px;
  width:20px;
  -webkit-animation:loader infinite 4s;
     -moz-animation:loader infinite 4s;
          animation:loader infinite 4s;
  box-shadow:15px 15px #ffffff,
    -15px 15px #ffffff,
    -15px -15px #ffffff,
    15px -15px #ffffff;
    index:9999;
}


@-webkit-keyframes loader {
  0%,100% {
      box-shadow:15px 15px #ffffff,
        -15px 15px #ffffff,
        -15px -15px #ffffff,
        15px -15px #ffffff;
  }
  25% {
      box-shadow:-15px 15px #ffffff,
        -15px -15px #ffffff,
        15px -15px #ffffff,
        15px 15px #ffffff;
  }
  50% {
      box-shadow:-15px -15px #ffffff,
        15px -15px #ffffff,
        15px 15px #ffffff,
        -15px 15px #ffffff;
  }
  75% {
      box-shadow:15px -15px #ffffff,
        15px 15px #ffffff,
        -15px 15px #ffffff,
        -15px -15px #ffffff;
  }
}

@-moz-keyframes loader {
  0%,100% {
      box-shadow:15px 15px #ffffff,
        -15px 15px #ffffff,
        -15px -15px #ffffff,
        15px -15px #ffffff;
  }
  25% {
      box-shadow:-15px 15px #ffffff,
        -15px -15px #ffffff,
        15px -15px #ffffff,
        15px 15px #ffffff;
  }
  50% {
      box-shadow:-15px -15px #ffffff,
        15px -15px #ffffff,
        15px 15px #ffffff,
        -15px 15px #ffffff;
  }
  75% {
      box-shadow:15px -15px #ffffff,
        15px 15px #ffffff,
        -15px 15px #ffffff,
        -15px -15px #ffffff;
  }
}

@keyframes loader {
  0%,100% {
      box-shadow:15px 15px #ffffff,
        -15px 15px #ffffff,
        -15px -15px #ffffff,
        15px -15px #ffffff;
  }
  25% {
      box-shadow:-15px 15px #ffffff,
        -15px -15px #ffffff,
        15px -15px #ffffff,
        15px 15px #ffffff;
  }
  50% {
      box-shadow:-15px -15px #ffffff,
        15px -15px #ffffff,
        15px 15px #ffffff,
        -15px 15px #ffffff;
  }
  75% {
      box-shadow:15px -15px #ffffff,
        15px 15px #ffffff,
        -15px 15px #ffffff,
        -15px -15px #ffffff;
  }
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Animations ------------------------------------------------------------------------------------------------------------ */
/* ----------------------------------------------------------------------------------------------------------------------- */
.pt-page-moveToLeftFade {
	-webkit-animation: moveToLeftFade .7s ease both;
	animation: moveToLeftFade .7s ease both;
}

@-webkit-keyframes moveToLeftFade {
	from { }
	to { opacity: 0.3; -webkit-transform: translateX(-100%); }
}
@keyframes moveToLeftFade {
	from { }
	to { opacity: 0.3; -webkit-transform: translateX(-100%); transform: translateX(-100%); }
}

.pt-page-fade {
	-webkit-animation: fade .7s ease both;
	animation: fade .7s ease both;
}

@-webkit-keyframes fade {
	from { }
	to { opacity: 0.3; }
}
@keyframes fade {
	from { }
	to { opacity: 0.3; }
}

.pt-page-moveFromRight {
	-webkit-animation: moveFromRight .6s ease both;
	animation: moveFromRight .6s ease both;
}

@-webkit-keyframes moveFromRight {
	from { -webkit-transform: translateX(100%); }
}
@keyframes moveFromRight {
	from { -webkit-transform: translateX(100%); transform: translateX(100%); }
}

.pt-page-scaleDown {
	-webkit-animation: scaleDown .7s ease both;
	animation: scaleDown .7s ease both;
}


@-webkit-keyframes scaleDown {
	from { }
	to { opacity: 0; -webkit-transform: scale(.8); }
}
@keyframes scaleDown {
	from { }
	to { opacity: 0; -webkit-transform: scale(.8); transform: scale(.8); }
}


.embedded-gallery .stage { 
	background: #000000;
	overflow: hidden;
}

.embedded-gallery,
.embedded-gallery .stage,
.embedded-gallery .stage .slide,
.embedded-gallery .stage .slide .image,
.embedded-gallery .stage .slide .image img {
	max-height: none !important;
}

.embedded-gallery .stage .slide {
	bottom: 0;
}

.embedded-gallery .stage .slide .image img {
	display: block;
	margin: 0 auto;
	width: 100%;
}

.embedded-gallery .stage .slide .image.portrait {
  display: block;
  width: 100%;
  position: relative;
  height: 100%;
  /* padding: 60% 0 0 0; */
  overflow: hidden;
}

.embedded-gallery .stage .slide .image.portrait img {
  position: absolute;
  display: block;
  max-width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: 0 auto;
  width: auto;
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Toggle More ----------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.toggle-more-link a {
	background: url(/images/icons/toggle-plus.png) 0% 45% no-repeat;
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	padding-left: 14px;
	text-decoration: none;
	text-transform: uppercase;
}

.toggle-more-link a:hover {
	text-decoration: underline;
}

.toggle-more-link.selected a {
	background-image: url(/images/icons/toggle-minus.png);
}

.toggle-more-content {
	display: none;
	line-height: 24px;
	margin-bottom: 10px;
	padding: 10px 0;
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Custom Template -> Quick Stat Block ----------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */

.quick-stat-block {
	color: #363636;
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: fit-content;
	margin: 0 auto;
	max-width: 200px;
	padding: 60px;
	position: relative;
	text-align: center;
	text-decoration: none !important;
}
.quick-stat-block * {
	transform: translateY(40px);
	transition: transform 0.3s ease;
}
.quick-stat-block img {
	background-color: transparent;
	border: none;
	height: 70px !important;
	margin: 0 auto;
	width: 90px !important;
}
.quick-stat-block big {
	color: #1172ba;
	font-family: 'Montserrat', sans-serif;
	font-size: 5em;
	font-weight: 700;
	margin: 20px auto 25px;
}
.quick-stat-block strong {
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	font-weight: bold;
	margin: 20px auto 15px;
}
.quick-stat-block .hover-text {
	opacity: 0;
	overflow: visible;
	transform: translateY(-40px);
	transition: opacity 0.3s ease, transform 0.3s ease;
}
.quick-stat-block:hover * {
	transform: translateY(0);
}
.quick-stat-block:hover .hover-text {
	opacity: 1;
	transform: translateY(0);
}

/* MOBILE ******************************************************************************************************************/

@media (max-width: 1024px) {
	.quick-stat-block * {
		transform: translateY(0);
	}
	.quick-stat-block .hover-text {
		opacity: 1;
		transform: translateY(0);
	}
}
@media (max-width: 500px) {
	.quick-stat-block {
		padding: 30px;
	}
}

/* ----------------------------------------------------------------------------------------------------------------------- */
/* Link Image Grid Styles ------------------------------------------------------------------------------------------------ */
/* ----------------------------------------------------------------------------------------------------------------------- */
.image-grid-link-items .gutter-sizer {
	width: 0;
}

.image-grid-link-items .element-item, 
.image-grid-link-items .grid-sizer,
.image-grid-link-items li {
	box-sizing: border-box;
	margin-bottom: 0;
	padding: 14px;
	width: 25%;
}

.image-grid-link-items .list-item.image-link-grid-item {
	display: block;
	position: relative;
}

.image-grid-link-items .list-item.image-link-grid-item img {
	aspect-ratio: 1.2;
	max-width: none;
	object-fit: cover;
	width: 100%;
}	

.image-grid-link-items .list-item.image-link-grid-item .title-link-wrap {
	display: none;
}

.image-grid-link-items .list-item.image-link-grid-item .content-wrap {
	color: #fff;
	bottom: 10px;
	font-family: 'Montserrat', sans-serif;
	font-size: 10px;
	font-weight: 300;
	left: 10px;
	padding: 15px 20px;
	position: absolute;
	right: 10px;
	text-transform: uppercase;
}

.image-grid-link-items .list-item.image-link-grid-item .content-wrap:before {
	background: #1172ba url(/images/icons/plus.svg) calc(100% - 20px) 50% no-repeat;
	background-size: 10px auto;
	bottom: 0;
	content: '';
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
	width: 0;
	z-index: 0;
}

.image-grid-link-items .list-item.image-link-grid-item:hover .content-wrap:before {
	opacity: 1;
	width: 100%;
}

.image-grid-link-items .list-item.image-link-grid-item .content-wrap p {
	line-height: 140%;
	margin: 0;
	opacity: 0;
	position: relative;
	-webkit-transition: opacity 0.1s linear;
	transition: opacity 0.1s linear;
	z-index: 1;
}

.image-grid-link-items .list-item.image-link-grid-item:hover .content-wrap p {
	-webkit-transition: opacity 0.3s linear;
	transition: opacity 0.3s linear;
	-webkit-transition-delay: 0.3s;
	transition-delay: 0.3s;
	opacity: 1;
}

.image-grid-link-items .list-item.image-link-grid-item .content-wrap strong {
	font-size: 12px;
}

@media screen and (max-width: 1150px) {
	.image-grid-link-items .element-item, 
	.image-grid-link-items .grid-sizer,
	.image-grid-link-items li {
		width: calc(100% / 3);
	}	
}

@media screen and (max-width: 1024px) {
	.image-grid-link-items .list-item.image-link-grid-item .content-wrap:before {
		opacity: 1;
		width: 100%;
	}

	.image-grid-link-items .list-item.image-link-grid-item .content-wrap p {
		opacity: 1;
	}
}

@media screen and (max-width: 800px) {
	.image-grid-link-items .element-item, 
	.image-grid-link-items .grid-sizer,
	.image-grid-link-items li {
		width: 50%;
	}	
}

@media screen and (max-width: 550px) {
	.image-grid-link-items .element-item, 
	.image-grid-link-items .grid-sizer,
	.image-grid-link-items li {
		width: 100%;
	}	
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Team Overlay Styles --------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.sosimple-underlay {
	opacity: .8;
}

.sosimple-overlay.leadership {
	padding: 0;
	width: 100% !important;
}

.sosimple-overlay.leadership .main-content {
	padding: 0;
}

.sosimple-overlay.leadership .sosimple-overlay-close {
	background-image: url(/images/icons/black-x.svg);
	background-size: 14px auto;
	height: 14px;
	width: 14px;
}

.sosimple-overlay.leadership h1 {
	display: none;
}

.sosimple-overlay.leadership .ss-content-block p:last-child {
	margin: 0;
}

.sosimple-overlay.leadership .ss-content-block.col-3 {
	margin: 0;
	width: 100%;
}

.sosimple-overlay.leadership .ss-content-block.col-3 img {
	display: block;
}

.sosimple-overlay.leadership .ss-content-block.col-2-3 {
	box-sizing: border-box;
	margin: 0 25px;
	padding: 25px 0;
	width: calc(100% - 50px);
}

@media screen and (max-width: 550px) {
	.sosimple-overlay {
		left: 10px;
		right: 10px;
		margin: 0 !important;
		width: auto !important;
	}
}

@media screen and (min-width: 550px) {
	.sosimple-overlay.leadership {
		left: 50%;
		max-width: 550px;
	}	
}

@media screen and (min-width: 818px) {
	.sosimple-overlay.leadership {
		max-width: 768px;
	}

	.sosimple-overlay.leadership .ss-content-block.col-3 {
		width: calc(100% * 1/3 - 2px);
	}

	.sosimple-overlay.leadership .ss-content-block.col-2-3 {
		margin: 0 45px;
		padding-top: 45px;
		width: calc(100% * 2/3 - 90px);
	}
}

@media screen and (min-width: 1074px) {
	.sosimple-overlay.leadership {
		max-width: 1024px;
	}

	.sosimple-overlay.leadership .ss-content-block.col-2-3 {
		margin: 0 50px;
		padding-top: 60px;
		width: calc(100% * 2/3 - 100px);
	}
}


@media screen and (min-width: 1410px) {
	.sosimple-overlay.leadership {
		max-width: 1320px;
	}
}


/* ----------------------------------------------------------------------------------------------------------------------- */
/* Video Overlay Styles -------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------------------------------------------------- */
.no-records-indicator {
	display: none;
}

.overlay-link {
	background: #000;
	display: inline-block;
	position: relative;
}

.overlay-link:before {
    border: 15px solid transparent;
    border-left: 22px solid #fff;
    border-right: 0;
    content: '';
    left: calc(50% + 2px);
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
	transition: transform 0.2s ease;
    z-index: 1;
}

.overlay-link:after {
	border-radius: 100%;
	border: 1px solid #fff;
	content: '';
	height: 75px;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	transition: background-color 0.2s ease;
	width: 75px;
	z-index: 1;
}

.overlay-link:hover:after {
	background-color: rgba(255,255,255,0.1);
}

.overlay-link img {
	display: block;
	opacity: 0.7;
}

.sosimple-overlay.video {
	padding: 0;
}

.sosimple-overlay.video iframe {
	display: block;
}

.sosimple-overlay.video .sosimple-overlay-close {
	background-color: #fff;
	background-size: 15px auto;
	background-position: 50% 50%;
	height: 30px;
	right: 0;
	top: -30px;
	width: 30px;
}