/*------>>> TABLE OF CONTENTS <<<-------
    - MASTHEAD | Document Header
	- HERO
	- MAIN
	- PANELS [Forced Full width content]
    - CTA GRID
	- CTAs [Calls to Attention, some linked, some not]
	- CALLOUTS [some linked, some not]
	- CARDS
	- MEDIA BLOCK
	- CONTENT BLOCK
	- VIDEO BLOCK
	- ACCORDION
	- SLIDERS
	- MIX IT UP SORTER
	- TIMELINE
	- LIGHTBOX GALLERY
	- EMPOWEREN FORMS
	- EMPOWEREN NEWS
    - EMPOWEREN CAREERS
	- EMPOWEREN SEARCH RESULTS
    - NEWS BANNER
	- COUNTDOWN
	- STYLE GUIDE
	- COLOPHON | Document Footer
		
/*------->>> COLOR PALETTE <<<-------
	#001E5C - rgb(0,30,92) | Primary Color [Blue Medium]
	#1b314a - rgb(27,49,74) | Secondary Color [Blue Dark, Base Font Color]
	#4ca5d8 - rgb(76,165,216) | Tertiary Color [Blue Light]
	#a62639 - rgb(166,38,57) | Accent Color  [Red]
	#d2e8f5 - rgb(210,232,245) | Support Color [Blue Lightest]
	#f5f5f5 - rgb(245,245,245) | Gray
	
/*------->>> FONT STACKS & TYPOGRAPHY <<<-------
    font-family: 'Karla', sans-serif; [Primary Font | 400 & 700]

*/

/************************************
/*----------------------------------
/* ALERT
/*----------------------------------
/*************************************/

.alert {
	background:#a62639;
	position:relative;
	height:60px;
	z-index:10001;
}
.alert-messaging {
	text-align:center;
	position:absolute;
	left:0;
	right:0;
	top:50%;
	-webkit-transform:translateY(-50%);
	transform:translateY(-50%);
}
.alert-text {
	margin:0;
	line-height:1.3;
}
.alert-link {
	display:block;
	font-size:1.125rem;
	font-weight:700;
}
.alert-link,
.alert-link:hover {
	color:#fff;
	background:transparent;
}
.alert-link-title {
	display:block;
	font-size:1rem;
	text-transform:uppercase;
}





/************************************
/*----------------------------------
/* MASTHEAD
/*----------------------------------
/*************************************/

.masthead {
	position:absolute;
	z-index:10000;
	top:75px;
	left:0;
	right:0;
}
.masthead-branding-link {
	display:block;
	max-width:100%;
	padding:0.625rem;
}
.masthead-branding-link:hover {
	background:transparent;
}
.masthead-stuck {
	background: #001e5c;
	position: fixed;
	top:0;
	-webkit-box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.08);
	box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.08);
	-webkit-animation: navSlide 0.75s ease-in-out forwards;
	animation: navSlide 0.75s ease-in-out forwards;
}
.masthead.has-no-top-spacing {
	top:0 !important;
}


/************************************
/*----------------------------------
/* HERO
/*----------------------------------
/*************************************/

.hero {
	display:block;
	position:relative;
	margin:0;
	padding:0;
	width:100%;
	height:250px;
	overflow:hidden;
	z-index:400;	
} 
.hero:before {
	display:block;
	background: #0d1a26;
	background: -webkit-linear-gradient(to top, rgba(255,255,255,0) 0%, #0D1A26 100%);
	background: -moz-linear-gradient(to top, rgba(255,255,255,0) 0%, #0D1A26 100%);
	background: linear-gradient(to top, rgba(255,255,255,0) 0%, #0D1A26 100%);

	content:"";
	width:100%;
	height:125px;
	position:absolute;
	top:0;
	left:0;
	right:0;
	z-index:470;
	pointer-events:none;
} 
.hero img {
	display: block;
	position: absolute;
	top:0;
	left: 50%;
	-webkit-transform: translate3d(-50%,0,0);
	transform: translate3d(-50%,0,0);
	width: auto;
	height:100%;
	max-width: none;
	margin: 0 auto;
}
.hero-messaging {
	margin:0 auto;
	text-align:center;
	position:absolute;
	left:0;
	right:0;
	bottom:0;
	z-index:465;
}
.hero-messaging-title,
.hero-messaging-text {
	margin:0.5rem 0;
}
.hero-messaging-title {
	font-size:1.875rem;
	font-weight:700;
	line-height:1;
}
.hero-messaging-text {
	display:inline-block;
	padding:1rem 1.750rem;
	background:rgba(27,49,74,0.9);
	font-size:1.25rem;
	font-weight:400;
	text-transform:uppercase;
	line-height:1;
}
.hero-messaging-text.has-badge {
	display:block;
	text-align:center;
	padding:0;
	background:transparent;	
}
.hero-messaging-text.has-badge svg {
	max-width:125px;
}
.hero-messaging-text.has-badge img {
	position:relative;
	width:100%;
	height:auto;
	top:auto;
	bottom:auto;
	left:auto;
	right:auto;
	-webkit-transform: translateY(0);
	transform: translateY(0);
	max-width:125px;
}

.hero-video {
	height:calc(100vh - 90px);
	max-height:500px;
}
.hero-video iframe {
	height: 33.62vw; /* Given a 1047:352 aspect ratio, 352/1047*100 = 56.25 */
	min-height: 100%;
	min-width: 100%;
	position: absolute;
	left: 50%;
	top:0;
	transform: translateX(-50%);
	width: 297.45vh; /* Given a 1047:352 aspect ratio, 1047/352*100 = 297.45 */
}
.hero-index.hero-video:after {
	display:block;
	content:"";
	background:rgba(13,26,38,0.40);
	position:absolute;
	top:0;
	left:0;
	bottom:0;
	right:0;
	pointer-events:none;
	z-index:412;
}


/************************************
/*----------------------------------
/* MAIN
/*----------------------------------
/*************************************/

.main {
	z-index:500;
}
.main-interior {
	padding-bottom:3.125rem;
}
.primary-content {
}
.primary-content-index {
	text-align:center;
}
.page-title {
}
.page-title-index {
	color:#1B314A;
}
.page-title-index small {
	color:#4BA7C0;
}
.page-title-index.has-bottom-border:after {
	margin:0 auto;
	right:0;
}
.primary-content img.float-right {
	margin-left:0.625rem;
}
.primary-content img.float-left {
	margin-right:0.625rem;;
}
.primary-content img.float-right,
.primary-content img.float-left {
	margin-top:0.625rem;
} 
.primary-content img.float-right,
.primary-content img.float-left,
.primary-content img.position-center {
	margin-bottom:0.625rem;
}
.primary-content img.position-center {
	display:block;
}
.secondary-content {
}

/************************************
/*----------------------------------
/* PANELS
/*----------------------------------
/*************************************/

.panel {
	width:100vw;
	max-width:100vw;
	position:relative;
	left:50%;
	right:50%;
	margin-left:-50vw !important;
	margin-right:-50vw !important;
	z-index:100;
	overflow:hidden;
}
/*- If our panel does not have a background color class, then give it a gray background -*/
.panel:not([class*="background"]) {
	background-color:#f5f5f5;
}
.panel > .row:not(.expanded) {
	max-width:1170px !important;
	max-width:73.125rem !important;
	margin-left:auto;
	margin-right:auto;	
}
.panel > .row:not(.expanded).columns {
	margin-left:auto !important;
	margin-right:auto !important;	
	padding-right:0.625rem !important;
	padding-left:0.625rem !important;
}
.panel-bg-img {
	display: block;
	position: absolute;
	left:50%;
	top:50%;
	-webkit-transform:translate(-50%, -50%);
	transform:translate(-50%, -50%);
	width: auto;
	min-height: 100%;
	min-width: 100%;
	max-width: none;
	margin: 0 auto !important;
	z-index:-1;
}
.panel--index-01 {
    padding-top:10rem;
    padding-bottom:4rem;
}
/* New Pattern 2/27/23 EAE */
.split-panel {
}
.split-panel-row {
	display:-ms-flexbox;
	display:flex;
	-ms-flex-flow:row wrap;
	flex-flow:row wrap;
}
.split-panel-column {
	position:relative;
	overflow:hidden;
	-ms-flex:0 0 100%;
	flex:0 0 100%;
	max-width:100%;
}
.split-panel-content {
	padding:2rem 0.625rem;
}
@media all and (min-width:1024px) {
	.split-panel-row {
		-ms-flex-align:stretch;
		align-items:stretch;
	}
	.split-panel-column {
		-ms-flex:0 0 50%;
		flex:0 0 50%;
	}
	.split-panel-column .panel-bg-img {
		left:auto;
		right:0;
		-webkit-transform:translateY(-50%);
		transform:translateY(-50%);
		margin: 0 !important;
	}
	.split-panel-content {
		max-width:575px;
		padding:3rem 2rem;
	}
	.split-panel-column {
		display:-ms-flexbox;
		display:flex;
		-ms-flex-flow:row wrap;
		flex-flow:row wrap;
		/*-ms-flex-align:center;
		align-items:center;*/
	}
	.split-panel-column:first-of-type {
		-ms-flex-pack:end;
		justify-content:flex-end;
	}
}


/************************************
/*----------------------------------
/* CTA GRID
/*----------------------------------
/*************************************/


.cta-grid {
    background: linear-gradient(
        to right,
        #a62639 0%,
        #a62639 50%,
        #d2e8f5 50%,
        #d2e8f5 100%
    );
}
.cta-grid__list {
    max-width:1170px;
    max-width:73.125rem;
    margin-left:auto;
    margin-right:auto;
    display:-ms-flexbox;
    display:flex;
    -ms-flex-flow:row wrap;
    flex-flow:row wrap;
}

.cta-grid__item {
    padding-left:1.25rem;
    padding-right:1.25rem;
    -ms-flex:0 0 100%;
    flex:0 0 100%;
    /* Flex it */
    display:-ms-flexbox;
    display:flex;
    -ms-flex-flow:row wrap;
    flex-flow:row wrap;
    /* Middle Align Items */
    -ms-flex-align:center;
    align-items:center;
    /* Center Align Items */ 
    -ms-flex-pack:center;
    justify-content:center;
    /* Position relative to position link */
    position:relative;
	isolation:isolate;
}
.cta-grid__item--01 {
    background-color:#a62639;
    color:#fff;
}
.cta-grid__item--02 {
    background-color:#d2e8f5;
}
.cta-grid__item--03 {
    background-color:#b7d7ea;
}
.cta-grid__item--04 {
    background-color:#d2e8f5;
}
.cta-grid__link {
    margin-right:0.5rem;
	position:static;
    color:inherit; 
}
.cta-grid__link:hover {
    background-color:transparent;
}
.cta-grid__link::after {
    background-color:rgba(0,0,0,0);
    content:'';
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    z-index:-1;
    transition:all 200ms ease-in-out;
    -webkit-transition:all 200ms ease-in-out;
}
.cta-grid__link:hover::after {
    background-color:rgba(0,0,0,0.1);
}
.cta-grid__icon {
}
.cta-grid__text {
    font-weight:700;
    font-size:0.938rem;
    letter-spacing:0.01em;
    text-transform:uppercase;
    pointer-events:none; 
}
@media all and (min-width:1024px) {
    .cta-grid__item {
        padding-left:0;
        padding-right:0;
        -ms-flex:1 1 0px;
        flex:1 1 0px;
    }     
    .cta-grid__link {
        min-width:initial;   
    } 
}


/************************************
/*----------------------------------
/* CTAS
/*----------------------------------
/*************************************/

.ctas {
}
.ctas--index {
    position:relative;
    margin-bottom:-145px;
    z-index:101;
}
.cta {
	display:block;
	position:relative;
    background:#D2E8F5;
    background:linear-gradient(to bottom, #d3e8f5 0%, #FFFFFF 50%);    
	-webkit-box-shadow:0px 6px 18px 0px rgba(0,0,0,0.16);
	-moz-box-shadow:0px 6px 18px 0px rgba(0,0,0,0.16);
	box-shadow:0px 6px 18px 0px rgba(0,0,0,0.16);
	z-index:100;
}
.cta-link {
	display:block;
	position:absolute;
	top:0;
	left:0;
	bottom:0;
	right:0;
	z-index:110;
}
.cta-link,
.cta-link:hover {
	background:transparent;
}
.cta-head {
	position:relative;
	width:100%;
	z-index:105;
}
.cta-title {
    margin:0;
    padding-top:0.75rem;
    text-align:center;
    color:#1b314a;
}
.cta-media {
	position:relative;
	width:100%;
	height:172px;
	z-index:105;
}
.cta-icon {
	display:block;
	max-width:100%;
	max-height:100%;
	margin:0 auto;
	position:absolute;
	left:0;
	right:0;
	top:50%;
	-webkit-transform:translateY(-50%);
	transform:translateY(-50%);
}
.cta-foot {
	display:block;
	width:100%;
	height:48px;
	position:relative;
	background:#4CA5D8;
	z-index:105;
    transition:all 200ms ease-in-out;
    -webkit-transition:all 200ms ease-in-out;
}
.cta:hover .cta-foot {
	background:#a62639;
}
.cta-btn {
    text-transform:uppercase;
	color:#fff;
	font-weight:600;
	margin:0;
	padding:0;
	position:absolute;
	left:0.625rem;
	right:0.625rem;
	top:50%;
	-webkit-transform:translateY(-50%);
	transform:translateY(-50%);
	line-height:1.2;
	text-align:center;
    transition:all 200ms ease-in-out;
    -webkit-transition:all 200ms ease-in-out;
}


/************************************
/*----------------------------------
/* CALLOUTS
/*----------------------------------
/*************************************/


.callouts {

}
.callout {
	position:relative;
	background:#1b314a;
	display: flex;
	flex-direction: column;
	min-height: calc(100% - 1.5rem);
	transition:all 200ms ease-in-out;
	-webkit-transition:all 200ms ease-in-out;
	z-index:100;
}
.callout-link {
	display:block;
	width:100%;
	height:100%;
	position:absolute;
	top:0;
	left:0;
	bottom:0;
	right:0;
	z-index:110;
}
.callout-link,
.callout-link:hover,
.callout-link:focus,
.callout:hover .callout-link {
	background:transparent;
}
.callout-media {
	position:relative;
	z-index:105;
}
.callout-media-img {
	display:block;
	width:100%;
}
.callout-foot {
	position:relative;
	height:90px;
	text-align:center;
	transition:all 200ms ease-in-out;
	-webkit-transition:all 200ms ease-in-out;
	z-index:105;
}
.callout-foot-title {
	color:#fff;
	margin:0 auto;
	position:absolute;
	left:0;
	right:0;
	top:50%;
	-webkit-transform:translateY(-50%);
	transform:translateY(-50%);
	transition:all 200ms ease-in-out;
	-webkit-transition:all 200ms ease-in-out;
}
.callout-foot.background-white .callout-foot-title {
	color:#1b314a;
}
.callout-foot-title small {
	color:#4ca5d8;
}
.callout:hover {
	z-index:200;
	-webkit-box-shadow: 10px 25px 30px 0px rgba(0,0,0,0.30);
	-moz-box-shadow: 10px 25px 30px 0px rgba(0,0,0,0.30);
	box-shadow: 10px 25px 30px 0px rgba(0,0,0,0.30);
}
.callout:hover .callout-foot {
	background:#101F31;
}
.callout:hover .callout-foot.background-white {
	background:#4ca5d8;
}
.callout:hover .background-white .callout-foot-title,
.callout:hover .background-white .callout-foot-title small  {
	color:#fff;
}
/*---> Callout Grid <---*/
.callout-grid { /* Row class */
}
.callout-grid-item {
	display:block;
	position:relative;
	overflow:hidden;
	-webkit-box-shadow: 10px 25px 30px 0px rgba(0,0,0,0.30);
	-moz-box-shadow: 10px 25px 30px 0px rgba(0,0,0,0.30);
	box-shadow: 10px 25px 30px 0px rgba(0,0,0,0.30);
	z-index:100;
}
.callout-grid-item:before {
	display:block;
	content:"";
	width:100%;
	height:100%;
	background:rgba(20,40,58,0.75);
	position:absolute;
	top:0;
	left:0;
	right:0;
	pointer-events:none;
	z-index:102;
	-webkit-transition: all 350ms linear 50ms;
	transition: all 350ms linear 50ms;
}
.callout-grid-item:after {
	display:block;
	content:"";
	width:100%;
	height:100%;
	background-image: -moz-linear-gradient(top, rgba(0,30,92,0.85) 0%, rgba(166,38,57,0.85) 100%);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(0,30,92,0.85)), color-stop(100, rgba(166,38,57,0.85)));
	background-image: -webkit-linear-gradient(top, rgba(0,30,92,0.85) 0%, rgba(166,38,57,0.85) 100%);
	background-image: linear-gradient(to bottom, rgba(0,30,92,0.85) 0%, rgba(166,38,57,0.85) 100%);
	position:absolute;
	bottom:-100%;
	left:0;
	right:0;
	pointer-events:none;
	z-index:102;
	-webkit-transition: all 350ms linear 50ms;
	transition: all 350ms linear 50ms;
}
.callout-grid-item-link {
	position:absolute;
	top:0;
	left:0;
	bottom:0;
	right:0;
	z-index:100;
}
.callout-grid-item-img {
	display:block;
	width:100%;
	position:relative;
	pointer-events:none;
	z-index:101;
}
.callout-grid-item-content {
	margin:0 auto;
	padding:0 1.563rem;
	position:absolute;
	left:0;
	right:0;
	top:50%;
	-webkit-transform:translateY(-50%);
	transform:translateY(-50%);
	pointer-events:none;
	z-index:105;
	-webkit-transition: all 350ms linear 50ms;
	transition: all 350ms linear 50ms;
}
.callout-grid-item-icon {
	display:block;
	max-height:91px;
	margin:0 auto;
	transform: scale(1);
	-webkit-transition: all 350ms linear 50ms;
	transition: all 350ms linear 50ms;
}
.callout-grid-item-title {
	margin:0.5rem 0 0 0;
	font-size:1.5rem;
	font-weight:600;
	color:#fff;
	text-align:center;
	-webkit-transition: all 350ms linear 50ms;
	transition: all 350ms linear 50ms;
}
.callout-grid-item-text,
.callout-grid-item-list {
	margin:0;
	font-size:0.875rem;
	color:#fff;
	line-height:1.3;
	max-height:0;
    -webkit-transition: height 350ms linear, opacity 350ms linear 50ms;
    transition: height 350ms linear, opacity 350ms linear 50ms;
	overflow:hidden;
}
.callout-grid-item-text ul {
    margin-top: .15rem;
    margin-bottom: 0;
}
.callout-grid-item-list {
	list-style: none;
	padding:0;
}
.callout-grid-item-list-item {
	position: relative;
	margin:0;
	padding-left:0.875rem;
}
.callout-grid-item-list-item:last-of-type {
	margin-bottom:0;
}
.callout-grid-item-list-item:before {
	display:inline-block;
	position:absolute;
	top:0.563rem;
	left:0;	
	width:3px;
	height:3px;
	content:"";
	background:#fff;
	border-radius:100%;
}
.callout-grid-btn {
	width:43px;
	height:43px;
	background:#4ca5d8;
	font-size:1.563rem;
	color:#fff;
	text-align:center;
	line-height:43px;
	border-radius:0;
	position:absolute;
	top:100%;
	right:0;
	z-index:107;
	-webkit-transition: all 350ms linear 50ms;
	transition: all 350ms linear 50ms;
}
/*- Hovers -*/
.callout-grid-item:hover:before {
	top:-100%;
}
.callout-grid-item:hover:after {
	bottom:0;
}
.callout-grid-item:hover .callout-grid-item-icon {
	transform: scale(0.5);
}
.callout-grid-item:hover .callout-grid-item-title {
	margin-top:-1.5rem;
}
.callout-grid-item:hover .callout-grid-item-text,
.callout-grid-item:hover .callout-grid-item-list {
	max-height:1000px;
}
.callout-grid-item:hover .callout-grid-btn {
	top:0;
}


/************************************
/*----------------------------------
/* CARDS
/*----------------------------------
/*************************************/

.card {
	position:relative;
	background:#fff;
	display: flex;
	flex-direction: column;
	min-height:100%;
	-webkit-box-shadow: 10px 25px 30px 0px rgba(0,0,0,0.13);
	-moz-box-shadow: 10px 25px 30px 0px rgba(0,0,0,0.13);
	box-shadow: 10px 25px 30px 0px rgba(0,0,0,0.13);
	transition:all 200ms ease-in-out;
	-webkit-transition:all 200ms ease-in-out;
	z-index:100;
}
.card-link {
	display:block;
	width:100%;
	height:100%;
	position:absolute;
	top:0;
	left:0;
	bottom:0;
	right:0;
	z-index:110;
}
.card-link,
.card-link:hover,
.card-link:focus,
.card:hover .card-link {
	background:transparent;
}
.card-media {
	position:relative;
	z-index:105;
}
.card-media-img {
	display:block;
	width:100%;
}
.card-link[data-open^="video"] + .card-media:after {
	margin:0 auto;
	width:80px;
	height:80px;
	content:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 80'%3E%3Cg transform='translate(0 -0.135)'%3E%3Cg transform='translate(0 0.135)' fill='none' stroke='%23fff' stroke-width='1'%3E%3Ccircle cx='40' cy='40' r='40' stroke='none'/%3E%3Ccircle cx='40' cy='40' r='39.5' fill='none'/%3E%3C/g%3E%3Cpath d='M18.5,0,37,32H0Z' transform='translate(59.5 21.5) rotate(90)' fill='%23fff'/%3E%3C/g%3E%3C/svg%3E");
	position:absolute;
	left:0;
	right:0;
	top:50%;
	-webkit-transform:translateY(-50%);
	transform:translateY(-50%);
}
.card-body {
	position:relative;
	padding:0.625rem 0.5rem;
	display: flex;
	flex-direction: column;	
	flex-grow:1;
	z-index:105;
}
.card-body  > * {
	margin: 0.75rem 0 0 0;
}
.card-body:nth-last-child(2) {
	margin-bottom: 0.75rem;
}
.card-body > ul {
	margin-bottom:0.875rem;
}
.card-foot {
	position:relative;
	padding:0.5rem;
	text-align:center;
	background:#1B314A;
	transition:all 200ms ease-in-out;
	-webkit-transition:all 200ms ease-in-out;
	z-index:105;
}
.card-foot--alt {
	background:#A62639;
}
.card-foot-text {
	margin:0;
	color:#fff;
	text-transform:uppercase;
}
.card:hover {
	z-index:200;
	-webkit-box-shadow: 10px 25px 30px 0px rgba(0,0,0,0.30);
	-moz-box-shadow: 10px 25px 30px 0px rgba(0,0,0,0.30);
	box-shadow: 10px 25px 30px 0px rgba(0,0,0,0.30);
}
.card:hover .card-foot {
	background:#A62639;
}
.card-foot--alt {
	background:#A62639;
}
.card:hover .card-foot--alt {
	background:#1B314A;
}

/*- Offset Card -*/
.offset-card {
	margin:0 -0.625rem;
	padding-left:1.25rem;
	padding-right:1.25rem;	
}
.offset-card,
.offset-card-content,
.offset-card-media {
	position:relative;
}
.offset-card:before {
	display:block;
	content:"";
	background:#001E5C;
	width:100%;
	height:100%;
	position:absolute;
	top:0;
	left:0;
	-webkit-box-shadow: 10px 25px 30px 0px rgba(0,0,0,0.30);
	-moz-box-shadow: 10px 25px 30px 0px rgba(0,0,0,0.30);
	box-shadow: 10px 25px 30px 0px rgba(0,0,0,0.30);
}
.offset-card .row {
	margin:0 auto;
}
.offset-card-title {
	color:#fff;
}
.offset-card-title small {
	color:#4BA7C0;
}
.offset-card-text {
	color:#fff;
}
/*- Summary Card -*/
.summary-card {
	margin:1.5rem 0;
	-webkit-box-shadow:10px 25px 30px 0px rgba(0,0,0,0.30);
	-moz-box-shadow:10px 25px 30px 0px rgba(0,0,0,0.30);
	box-shadow:10px 25px 30px 0px rgba(0,0,0,0.30);
}
.summary-blurb,
.summary-stats {
	padding:2rem;
}
.summary-blurb {
	background:#001E5C;
}
.summary-stats {
	background:#f5f5f5;
}
.stats-section {
	display:-ms-flexbox;
	display:flex;
	-ms-flex-flow:row wrap;
	flex-flow:row wrap;
	/*- Middle Align Items -*/
	-ms-flex-align:center;
	align-items:center;
}
.stats-icon {
	padding-right:0.625rem;
	-ms-flex: 0 0 23.3%;
	flex: 0 0 23.3%;
	max-width:70px;
	height:auto;
}
.stats-title {
	-ms-flex:1 1 0px;
	flex:1 1 0px;
	padding-left:0.625rem;
	font-size:1.750rem;
	font-weight:700;
	color:#001E5C;
	text-transform:uppercase;
}
.stats-title small {
	font-size:1.188rem;
	color:#001E5C;
	line-height:1.2;
	margin:0.313rem 0;
}


/************************************
/*----------------------------------
/* MEDIA BLOCK
/*----------------------------------
/*************************************/


.media-block {
}
.media-block-media {
	position: relative;
}
.media-block-media-link {
	display:block;
	width:100%;
	height:100%;
}
.media-block-media-link.has-video {
	position:relative;
}
.media-block-media-link.has-video:after {
	margin:0 auto;
	width:80px;
	height:80px;
	content:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 80'%3E%3Cg transform='translate(0 -0.135)'%3E%3Cg transform='translate(0 0.135)' fill='none' stroke='%23fff' stroke-width='1'%3E%3Ccircle cx='40' cy='40' r='40' stroke='none'/%3E%3Ccircle cx='40' cy='40' r='39.5' fill='none'/%3E%3C/g%3E%3Cpath d='M18.5,0,37,32H0Z' transform='translate(59.5 21.5) rotate(90)' fill='%23fff'/%3E%3C/g%3E%3C/svg%3E");
	position:absolute;
	left:0;
	right:0;
	top:50%;
	-webkit-transform:translateY(-50%);
	transform:translateY(-50%);
}
.media-block-img {
	display:block;
	width:100%;
}
.media-block-content {
	position:relative;
}


/************************************
/*----------------------------------
/* CONTENT BLOCK
/*----------------------------------
/*************************************/

.content-block {
	position:relative;
	height:100%;
	padding:0.5rem 2.188rem;
}
/*- If our content block does not have a background color class, then give it a light blue [Accent Color] background -*/
.content-block:not([class*="background"]) {
	background:#d2e8f5;
}
.content-block-number {
	position:relative;
	margin:-55px auto 1.5rem auto;
	width:100px;
	height:100px;
	border:10px solid white;
	border-radius:100%;
}
/*- If our content block number does not have a background color class, then give it a green [secondary Color] background -*/
.content-block-number:not([class*="background"]) {
	background:#4CA5D8;
}
.content-block-number-text {
	margin:0 auto;
	position:absolute;
	left:0;
	right:0;
	top:50%;
	-webkit-transform:translateY(-50%);
	transform:translateY(-50%);
	font-family:'Karla', sans-serif;
	font-size:2.25rem;
	color:#fff;
	text-align:center;
	line-height:1;
}
.content-block-number-text small {
	display:block;
	font-size:0.75rem;
	font-weight:600;
	text-transform:uppercase;
}
.content-block-text {
}

/************************************
/*----------------------------------
/* VIDEO BLOCK
/*----------------------------------
/*************************************/

.video-block {
    position: relative;
    height:650px;
    color: #fff;
}
.video-block .video-block-link {
	position:absolute;
	top:0;
	left:0;
	bottom:0;
	right:0;
	z-index:1;
}

.video-block-video.flex-container {
    position: relative;
    padding-bottom: 0;
    padding-top: 0;
    margin: 0;
    width: 100%;
    height:650px;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}
.video-block-video.flex-container iframe {
	width: 100vw;
	height: 56.25vw;  /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */ 
	min-height: 100vh;
	min-width: 177.77vh;  /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */	
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
a.has-logo:before {
	margin:0 auto;
	width:auto;
	height:auto;
	content:url(../images/logo-jarrell.png);
	position:absolute;
	left:0;
	right:0;
	top:calc(50% - 3.5rem);
	-webkit-transform:translateY(-50%);
	transform:translateY(-50%);
	text-align:center;
}
a.has-video.has-logo:after {
	top:calc(50% + 3.5rem);
}


/************************************
/*----------------------------------
/* ACCORDIONS
/*----------------------------------
/*************************************/

.accordion {
    margin:1.5rem 0;
    background:transparent;
}
.accordion-item:first-child > :first-child,
.accordion-item:last-child > :last-child {
    border-radius:0;
}
.accordion-item:not(:last-child) {
	margin-bottom:1.5rem;
}
.accordion-item {
}
.accordion-title {
	padding:1.25rem 55px 1.25rem 1rem;
	background:#1b314a;
	border:0;
	color:#fff;
	font-family:'Karla', sans-serif;
	font-size:1.125rem;
	font-weight:700;
    line-height:1.3;
	text-decoration:none;
	z-index:100;
	transition:all 200ms ease-in-out;
    -webkit-transition:all 200ms ease-in-out;
}
.accordion-title:hover,
.accordion-title:focus,
.accordion-title:focus-visible {
	background:#001e5c;
	color:#fff;
	outline:0;
}
:last-child:not(.is-active) > .accordion-title {
    border-bottom:0;
    border-radius:0;
}
.accordion-title::before {
	margin-top:0;
	content: '+';
    position: absolute;
    right:1.313rem;
	top:calc(50% - 0.125rem);
	-webkit-transform:translateY(-50%);
	transform:translateY(-50%);
	font-family:'Karla', sans-serif;
	font-weight:400;
	font-size:2rem;
	color:#fff;
	z-index:2;
	transition:all 200ms ease-in-out;
    -webkit-transition:all 200ms ease-in-out;
}
.is-active > .accordion-title::before {
	content: '\2013';
}
.accordion-title:hover::before {
	color:#fff;
}
.accordion-content {
	padding:0;
	border:0;
    background-color:transparent;
    color:#1b314a;
}
:last-child > .accordion-content:last-child {
	border-bottom:0;
}

/************************************
/*----------------------------------
/* SLIDERS
/*----------------------------------
/*************************************/

.js-caption-slider { /*- JS Hook, NO STYLING -*/
}
.caption-slider {
}
.caption-slide {
}
.caption-slide-img {
}
.caption-slide-content {
	margin:0;
	display:block;
	background:rgba(0,0,0,0.70);
	width:100%;
	height:auto;
	position:absolute;
	bottom:0;
	left:0;
	right:0;
	z-index:1020;
}
.caption-slide-text {
	position:relative;
	margin:0.313rem 0 2.25rem 0;
	padding:0 0;
	font-family: 'Montserrat', sans-serif;
	font-weight:400;
	font-size:1.313rem;
	color:#fff;
	text-transform:uppercase;
	text-align:center;
}
.caption-slider .slick-dots {
	bottom:0.75rem;
}
.caption-slider .slick-dots li {
}
.caption-slider .slick-dots button {
	height:15px;
	width:15px;
	background: transparent;
	border:3px solid #fff;
}
.caption-slider .slick-dots button:hover,
.caption-slider .slick-dots .slick-active button {
	background: #fff;
}

/*---> Panel Slider on Index <---*/
.panel-with-slider {
	background:#f5f5f5;
	position:relative;
	z-index: 400;
}
.js-panel-slider { /*- JS Hook, NO STYLING -*/
}
.panel-slider {
	padding-bottom:20px;
}
.panel-slide {
	height:620px;
	z-index:410;
}
.panel-slide:after {
	display:block;
	content:"";
	background:rgba(13,26,38,0.40);
	position:absolute;
	top:0;
	left:0;
	bottom:0;
	right:0;
	pointer-events:none;
	z-index:412;
}
.panel-slide-img {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: -100%;
	right: -100%;
	margin: 0 auto;
	pointer-events: none;
	-webkit-transform: none;
	transform: none;
	-webkit-transform: none;
	transform: none;
	object-fit: cover;
	z-index:411;
}
.panel-slide-messaging {
	text-align:center;
	position:absolute;
	left:0;
	right:0;
	top:50%;
	-webkit-transform:translateY(-50%);
	transform:translateY(-50%);
	z-index:413;
}
.slide-messaging-title {
	line-height:1;
}
.slide-messaging-text {
	display:inline-block;
	padding:1rem 1.750rem;
	background:rgba(27,49,74,0.9);
	font-size:1.25rem;
	font-weight:400;
	text-transform:uppercase;
	line-height:1;	
}
/*- Arrows -*/
.panel-slider-controls {
	position:absolute;
	z-index:475;
	bottom:0;
	left:0;
	right:0;
	text-align:center;
}
.slider-controls-prev, .slider-controls-next {
	display:inline-block;
	background:#a62639;
	padding:0;	
	width:43px;
	height:43px;
	border-radius:0;
	position:relative;
	cursor:pointer;
	color:transparent;
	outline:none;
	box-shadow:none;	
	z-index:1;
	transition:all 200ms ease-in-out;
	-webkit-transition:all 200ms ease-in-out;
}
.slider-controls-prev:hover, .slider-controls-next:hover {
	background:#001e5c;	
}
.slider-controls-prev {
	/*left:0;*/
}
.slider-controls-next {
	/*right:0;*/
}
.slider-controls-prev:before,
.slider-controls-next:before {
	margin:0 auto;
	display:block;
	width:14px;
	height:23px;
	position:absolute;
	top:50%;
	-webkit-transform:translateY(-50%);
	transform:translateY(-50%);
	transition:all 0.5s ease-in-out;
	-webkit-transition:all 0.5s ease-in-out;
}
.slider-controls-prev:before {
	left:13px;
	right:auto;
	content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13.743' height='23.109' viewBox='0 0 13.743 23.109'%3E%3Cpath id='Path_510' data-name='Path 510' d='M530.8-7552.045l-10.54,10.127,10.54,10.855' transform='translate(-518.133 7553.127)' fill='none' stroke='%23fff' stroke-width='3'/%3E%3C/svg%3E");
}
.slider-controls-next:before {
	left:auto;
	right:13px;
	content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13.743' height='23.109' viewBox='0 0 13.743 23.109'%3E%3Cpath id='Path_511' data-name='Path 511' d='M10.54,0,0,10.127,10.54,20.982' transform='translate(11.616 22.027) rotate(180)' fill='none' stroke='%23fff' stroke-width='3'/%3E%3C/svg%3E");
}
.slider-controls-prev:hover:before,
.slider-controls-prev:focus:before,
.slider-controls-next:hover:before,
.slider-controls-next:focus:before {
}
.slider-controls-prev.slick-disabled:before,
.slider-controls-next.slick-disabled:before {
	opacity:0.5;
}



/************************************
/*----------------------------------
/* MIX IT UP SORTER
/*----------------------------------
/*************************************/


.sort-controls { /* Row */
}
.sort-control { /* columns */
	margin-bottom:0.5rem;
}
.sort-btn {
	text-transform:none;
	font-size:1rem;
	background:#001e5c;
	margin:0;
}
.sort-btn:hover {
	background:#1b314a;
}
.sort-btn-reset {
	background:#a62639;
}
.mix-container { /* Row */
}
.mix { /* columns */
}
.sort-btn.mixitup-control-active {
	background:#4ca5d8;
}
.sort-btn.sort-btn-reset.mixitup-control-active {
	background:#a62639;
}

/************************************
/*----------------------------------
/* TIMELINE
/*----------------------------------
/*************************************/


.timeline {
	position:relative;
	margin-top: 50px;
}
.plot-point {
	position:relative;
	margin:1.625rem 0 3rem;
}
.point-left {
}
.point-right {
}
.plot-point-media {
	position:relative;
	max-width:475px;
	margin:0 auto;
}
.plot-point-media-last {
	position:relative;
	max-width:939px;
	margin:0 auto;
}
.plot-point-img {
	display:block;
	width:100%;
}
.plot-point-content {
	max-width:475px;
	margin:0 auto;
	padding-top:0.750rem;
}
.plot-point-content-last {
	max-width: 768px;
	margin:0 auto;
	padding: 40px 0;
}
.plot-point-date {
	background:#fff;
	display:block;
	width:93px;
	height:93px;
	position:absolute;
	top:-3rem;
	right:-0.5rem;
	font-family:"Open Sans", sans-serif;
	font-weight:600;
	font-size:1.25rem;
	color:#BF2926;
	text-align:center;
	letter-spacing:0.135em;
	line-height:93px;
	border-radius:100%;
	border:1px solid #001E5C;
	text-transform: uppercase;
}
.plot-point-paragraph-last {
	margin: 0;
	padding: 1.5rem 0 0;
	background: #fff;
}
.plot-point-last-container {
	background: url("/cmss_files/imagelibrary/timeline/jarrell_timeline-today-mobile.jpg") no-repeat center;
	width: 350px;
	height: 730px;
	margin: 0 auto;
}
.point-plot-icon {
	height: 70px;
}
.icons-row {
	height: 50%;
	align-items: start;
}
.icons-mobile {
	width: 350px;
}
.flex-icons {
	display: flex;
	justify-content: flex-start;
	flex-direction: column;
	text-align: center;
	flex: 0 0 50%;
	max-width: 50%;
	padding: 10px 15px;
}
.icon-text {
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	padding: 0 0%;
	margin: 0 auto;
	line-height: 30px;
}
.icons-top-row {
	margin: 0 !important;
	justify-content: center;
	align-items: center;
}
.icons-bottom-row {
	margin: 0 !important;
	justify-content: center;
	align-items: flex-start;
}
.icons-top-row::after {
	content: "";
	display: block;
	margin: 0 auto;
	height: 90%;
	width: 1px;
	left: 50%;
	position: absolute;
	background-color: #fff;
}
.line-one {
	position: relative;
	height: 730px;
}
.line-one::before {
	content: "";
	display: block;
	height: 1px;
	width: 90%;
	top: 33%;
	left: 5%;
	position: absolute;
	background-color: #fff;
	margin: 0 auto;
}
.line-two::before {
	content: "";
	display: block;
	height: 1px;
	width: 90%;
	left: 5%;
	top: 66%;
	position: absolute;
	background-color: #fff;
	margin: 0 auto;
}
.small-icons {
	height: 730px;
	align-items: center;
}
.timeline-btn-container {
	margin-top: 20px;
}
.timeline-btn {
	padding: 0.625rem 1.875rem;
}


/************************************
/*----------------------------------
/* LIGHTBOX GALLERY
/*----------------------------------
/*************************************/


.lightBoxImgs {
	margin:1.5rem 0;
	z-index:100;
}
.lightBoxImgs img {
	display:block;
	height:100%;
	width:100%;	
	margin:0;
	position:relative;
	top:0;
	opacity:1.0;
	box-shadow:none;
	transition:all 300ms ease-in-out 0s;
}
.lightBoxImgs .lbThumb {
	width:calc(50% - 1.25rem);
	display:inline-block;
	margin:0.625rem;
	border:0;
	background:transparent;
	z-index:105;
}
.lightBoxImgs .lbThumb:nth-child(3n+1) {
	width:calc(100% - 1.313rem);
}
.lightBoxImgs .lbThumb:hover {
	border:0;
	box-shadow:none;
	top:0;
}
.lightBoxImgs .lbThumb:before {
	display:block;
	content:'';
	width:100%;
	height:100%;
	position:absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
	background:rgba(0,30,92,0.6);
	-webkit-transform: scale(0.1);
	-ms-transform: scale(0.1);
	transform: scale(0.1);
	opacity: 0;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	z-index:106;
}
.lightBoxImgs .lbThumb:after {
	display:inline-block;
	content:'View Larger Image';
	font-weight:400;
	font-size:1.125rem;
	text-align:center;
	color:rgba(255,255,255,1);
	line-height:1;
	position:absolute;
	left:0;
	right:0;
	top:50%;
	-webkit-transform:translateY(-50%);
	transform:translateY(-50%);
	-webkit-transform: scale(0.1);
	-ms-transform: scale(0.1);
	transform: scale(0.1);
	opacity: 0;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	z-index:107;
}
.lightBoxImgs .lbThumb:hover:before,
.lightBoxImgs .lbThumb:hover:after {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
	cursor:pointer;
}


/************************************
/*----------------------------------
/* EMPOWEREN FORMS
/*----------------------------------
/*************************************/


.cmForm {
}
.formElements h2 {
	color:#1b314a;
	margin:1.5rem 0;
}
.formElements .formRow {
	clear:both;
	margin-left:auto;
	margin-right:auto;
}
.formElements .formRow > ul {
	width:100%;
	padding:0;
	margin:0;
	display:block;
	margin:0;
}
.formElements .formRow > ul > li.required > label::after,
.formElements .formRow > ul > li.required legend::after {
	font-family:'Karla', sans-serif;	
	font-weight:700;
	font-size:1rem;
	color:#4ca5db;
}
.formElements span label {
	font-family:inherit;
	font-weight:400 !important;
	font-size:inherit;
	color:inherit;
}
form ul li {
	display:block;
	width:100%;
	position:relative;
	margin:0 0 0.875rem 0 !important;
	padding:0 !important;
	text-indent:0;
}
form ul li {
	display:block;
	width:100%;
	position:relative;
	margin:0 0 0.875rem 0 !important;
	padding:0 !important;
	text-indent:0;
}
.currentForm input[type="submit"] {
    margin-top:10px !important;
}

/************************************
/*----------------------------------
/* EMPOWEREN NEWS MANAGER
/*----------------------------------
/*************************************/

[id="allYears"] {
	margin:2rem 0 !important;
}
.newsRow:not(.newsHeader) {
	margin:0 0 1.750rem 0;
}
.newsHeader {
	margin-bottom:1rem;
}
.newsHeader .date, .newsHeader .title {
	color:#5d5d5d;
	font-size:1.125rem;
	line-height:1.125;
}
.short_description, #spanNavText {
	font-size:1rem;
	line-height:1.5;
}
.date {
	font-size:1rem;
}
.short_description {
	padding-bottom:1.750rem;
	border-bottom:1px dotted #CBCBCB;
}
.title {
	font-size:1rem;
	line-height:1.5;
}
.newsRow .title small {
	display:none;
}
#dirNav {
	text-align:center;
	margin:2rem 0;
}
#pagePrev {
	margin-right:0.5rem;
}
#pageNext {
	margin-left:0.5rem;	
}

/************************************
/*----------------------------------
/* EMPOWEREN CAREERS
/*----------------------------------
/*************************************/

/* Career List, list of all job openings */
#careerList {
    margin-bottom:5rem;
}
#careerList *:is(.careerDepartmentName, .careerLocationName) {
    margin:0 0 1.5rem;
    font-size:1.25rem;
    font-weight:700;
    color:#1b314a;
    letter-spacing:0.01em;
	line-height:1;
}
#careerList .careerLocationName {
    font-size:2rem;
    color:#1b314a;
    font-weight:400;
    text-align:center;
	line-height:1;
    padding-bottom:1.5rem;
    border-bottom:3px solid #f5f5f5;
}
#careerList .careerDepartmentName {
    font-size:1.563rem;
    font-weight:400;
    color:#4ca5d8;
}
#careerList *:is(.careerLocationName, .careerDepartmentName),
#careerList *:is(.careerLocationName, .careerDepartmentName) a {
    font-weight:500;
}
#careerList > ul {
    list-style:none;
    margin:0 0 3rem;
    padding:0;
}
#careerList > ul li {
    margin-bottom:1.5rem;
}
#careerList > ul li a {
    font-size:1.25rem;
    font-weight:500;
}
/* Job Details Page */
#divCareerDisplay {
    padding-bottom:3rem;
}
#divCareerDisplay table {
    width:100%;
    margin:0;
    border-collapse:separate;
}
#divCareerDisplay table td {
    vertical-align:middle;
    padding:0.625rem;
}
#divCareerDisplay tr:nth-child(even) {
    background:#fff;
}
#divCareerDisplay tr:nth-child(odd) {
    background:#f5f5f5;
}
#divCareerDisplay .tdCareerLeft {
    font-weight:bold;
    width:145px;
}
/* Form */
#divCareerResume {
    padding:0;
    width:100%;
    float:none;
    border:0;
    border-radius:0;
}
#divCareerResumeHeader {
    margin:0 0 1.5rem;
	font-family:'Karla', sans-serif;
	line-height:1;
    font-size:2rem;
    font-weight:400;
    color:#4ca5d8;
	line-height:1;
    text-align:left;
}
#formCareerResume {
}
#formCareerResume table tr:first-of-type {
    display:none;
}
#formCareerResume table tr:nth-child(even),
#formCareerResume table tr:nth-child(odd){ 
    background:transparent;
}
#formCareerResume .tdCareerLeft {
    padding:0;
    width:15px;
    text-align:left;
    vertical-align:top;
}
#formCareerResume .tdCareerLeft,
#formCareerResume .required {
    line-height:1;
} 
#formCareerResume .required {
    font-weight:500;
    font-size:1rem;
    color:#d40000;
}
#formCareerResume table td {
    padding:0 0 0.625rem 0;
}
#formCareerResume .infieldLabel {
    padding-bottom:0.313rem;
    position:static;
    top:initial;
    left:initial;
	font-family:'Karla', sans-serif;
	font-size:1rem;
    font-weight:600;
    line-height:1;
	color:#1b314a;
    opacity:1 !important;
}
#formCareerResume .inputDiv:has(.inputStateText) {
    padding-right:0.625rem;
}
#formCareerResume input[type=text] {
    width:100% !important;
}
#formCareerResume input[type=file] {
    margin-bottom:0.313rem;
}
#formCareerResume input[type="file"]::file-selector-button {
    margin-right:0.313rem !important;
}
/* Details */
#divCareerDisplay#divCareerDisplay .resumeHeader {
    margin-bottom:1.5rem;
    padding:0;
	font-family:'Karla', sans-serif;
    font-size:1.563rem;
    font-weight:400;
    color:#1b314a;
	line-height:1;
    border-bottom:0;
}
@media all and (min-width:768px) {
    #divCareerResume {
        width:calc(50% - 0.625rem);
        float:right;
    }
    #divCareerDisplay#divCareerDisplay > table {
        width:calc(50% - 0.625rem);
        float:left;
    }
}
@media all and (min-width:1024px) {
    #divCareerResume {
		width:calc(33.333% - 0.625rem);
    }
    #divCareerDisplay#divCareerDisplay > table {
		width:calc(66.667% - 0.625rem);
    }
}



/************************************
/*----------------------------------
/* EMPOWEREN SEARCH RESULTS
/*----------------------------------
/*************************************/

#search, #Go {
    margin-bottom:1rem !important;
}
#search {
    width:calc(100% - 185px);
	float: left;
}
#Go {
    width:175px;
	float:left;
	margin-left:0.625rem !important;
	padding:0.813rem 0;
}
.siteSearch { /*- OL class for search results -*/
	line-height:1.3;
	list-style: none;
	padding:0;
}
.siteSearch li {
	padding-bottom:1.563rem;
}
.search_link {
	font-family: 'Montserrat', sans-serif;
	font-size:0.875rem;
	font-weight:400;
}
.search_discription {
}
.search_file_name {
	font-size:85%;
	font-style:italic;
}
#search_prev_next {
	display:flex;
	justify-content:flex-start;
	flex-wrap:wrap;
	padding:0 0 2.5rem 0;
	width:100%;
}
.search_previous,
.search_next,
.search_current,
.search_page {
	display:inline-block;
	height:25px;
	text-align:center;
	line-height:25px;
	border:1px solid #4ba7c0;
	margin:0 0.313rem 0.625rem;
	font-family: 'Montserrat', sans-serif;
	font-size:0.875rem;
	font-weight:400;
}
.search_previous,
.search_next {
	border:0;
	text-transform:uppercase;
}
.search_current,
.search_current:hover,
.search_page:hover {
	font-weight:600 !important;
}
.search_current,
.search_page {
	width:25px;
}


/************************************
/*----------------------------------
/* NEWS BANNER
/*----------------------------------
/*************************************/

.news-banner {
    padding-top:0.75rem;
    padding-bottom:0.75rem;
    background-color:#d2e8f5;
}
.news-banner p {
    margin-top:0;
    margin-bottom:0;
    line-height:1.33;
}
.news-banner p,
.news-banner .btn {
    font-size:0.938rem;
}
.news-banner .btn {
    margin-top:0.313rem;
    padding:0.5rem 0.75rem;
}
@media all and (min-width:640px) {    
    .news-banner p {
        font-size:1rem;
        line-height:1.625;
    }
    .news-banner .btn {
        font-size:1.125rem;
        padding:0.625rem 0;
        margin-top:0;
        width:100%;
        max-width:150px;
    }
}


/************************************
/*----------------------------------
/* COUNTDOWN
/*----------------------------------
/*************************************/


.countdown {
	position:relative;
	background:#a62639;
	z-index:415;
}
.has-ticker {
	position:relative;
}
.has-ticker::after {
	display:block;
	margin:0 auto;
	background:rgba(0,0,0,0.15);
	width:calc(100% - 2rem);
	height:2px;
	content:'';
	position:absolute;
	left:0;
	right:0;
	top:100%;
}
.countdown-ticker {
	text-align:center;
	margin:0.813rem 0;
}
.countdown-ticker-number {
	font-size:70px;
	font-weight:700;
	color:#fff;
}
.countdown-ticker-text {
	margin-top:0;
	margin-bottom:0;
	font-size:24px;
	font-weight:700;
	color:#fff;
	text-transform:uppercase;
	line-height:1.25;
}
.countdown-message {
	margin:0.813rem 0;
	padding:0 0.313rem;
	text-align:center;
}
.countdown-message-text {
	margin-top:0;
	margin-bottom:0;
	font-size:20px;
	color:#fff;
	/*text-transform:uppercase;*/
	line-height:1.25;
}
@media all and (min-width:1024px) {
	.countdown {
		margin-top:-100px;
	}
	.has-ticker::after {
		width:2px;
		height:calc(100% - 2rem);
		left:auto;
		top:50%;
		-webkit-transform:translateY(-50%);
		transform:translateY(-50%);
	}
	.countdown-message {
		padding-left:30px;
		text-align:left;
	}
	.countdown-message-text {
		/*max-width:625px;*/
	}	
}




/************************************
/*----------------------------------
/* STYLE GUIDE
/*----------------------------------
/*************************************/

.style-guide {
}
.style-guide-anchor {
	padding:0.063rem 0;
	width:100vw;
	max-width:100vw;
    position:relative;
    left:50%;
    right:50%;
	margin:2rem -50vw !important;
	z-index:600;
	background-color:#f5f5f5;
}
.style-guide-anchor > .row {
	max-width:1170px !important;
	max-width:73.125rem !important;
	margin-left:auto !important;
	margin-right:auto !important;
}
.style-guide-anchor h2 {
	color:#1b314a;
}
.anchor {
	margin:0;
	display:block;
	width:35px;
	height:35px;
	position:absolute;
	right:0.625rem;
	top:50%;
	-webkit-transform:translateY(-50%);
	transform:translateY(-50%);
	border-radius:100%;
	line-height:35px;
	background:#4ca5d8;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
	transition: all 0.3s linear;
	z-index:1;
}
.anchor svg {
	margin-top:0.375rem;
	fill:#fff;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.anchor:hover {
	background:#001e5c;
}
.example {
	margin:1.5rem 0;
	padding:1.875rem 0.938rem;
	position:relative;
	border:1px solid rgb(9,51,89,0.25);
	box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.26);
}
.colors {
}
.colors .box {
	margin:1.5rem 0;
	background:#fff;
	border:1px solid rgb(9,51,89,0.25);
	box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.26);
}
.colors .box div {
	width:100%;
	padding:0.313rem 0;
}
.colors .box div h6 {
	font-size:1.25rem;
	font-weight:400;
}


/************************************
/*----------------------------------
/* COLOPHON
/*----------------------------------
/*************************************/


.colophon {
	background:#001E5C;
	text-align:center;
}
.colophon-text {
	color:#fff;
	font-size:0.875rem;
}
.colophon-title {
	font-size:0.938rem;
	letter-spacing:initial;
}
.colophon-text,
.colophon-title {
	margin:0.313rem 0;
}
.colophon-text + .colophon-title {
	margin-top:1rem;
}
.colophon-text.has-cta {
	font-size:1.5rem;
	font-weight:700;
}
.colophon-link {
	color:inherit;
}
.colophon-link:hover {
	background:transparent;
	border-bottom:1px solid;
}
.colophon-badge {
	max-width:100px;
	display:inline-block;
}
.colophon-badge:not(:last-of-type) {
	margin-right:0.313rem;
}
.social-link {
	position:relative;
	display:inline-block;
	width:30px;
	height:30px;
	border-radius:100%;
	background:#fff;
	text-align:center;
	margin-top:0.125rem;
}
.social-link:not(:last-of-type) {
	margin-right:0.313rem;
}
.social-link svg {
	fill:#1b314a;
	width:17px;
	height:17px;
	position:absolute;
	left:50%;
	top:50%;
	-webkit-transform:translate(-50%, -50%);
	transform:translate(-50%, -50%);
	transition:all 200ms ease-in-out;
    -webkit-transition:all 200ms ease-in-out;
}
.social-link:hover {
	background:#4ba7c0;
}
.social-link:hover svg {
	fill:#1b314a;
}
.colophon-ctas {
	position:relative;
}
.colophon-ctas:before {
	margin:0 auto;
	width:100vw;
	height:50px;
	content:"";
	background:#fff;
	position:absolute;
	top:0;
	left:-50vw;
	right:-50vw;
}
.colophon .has-copyright {
	position:relative;
}
.colophon .has-copyright:before {
	display:block;
	content:"";
	background:rgba(255,255,255,0.3);
	width:100vw;
	height:1px;
	position:absolute;
	top:0;
	left:50%;
	-webkit-transform:translateX(-50%);
	transform:translateX(-50%);
}