/*------>>> TABLE OF CONTENTS <<<-------
    - MASTHEAD
    - HERO
    - PRIMARY CONTENT
    - CALLOUTS
    - CARDS
    - CARD GRID
    - CONTENT BLOCKS
    - MEDIA BLOCKS
    - PANELS
    - SPLIT PANELS
    - TIMELINE
    - BREAKOUT
    - LOGO CAROUSEL
    - CHART (Comparison Chart)
    - FLOW CHART
    - EMPOWEREN FORMS
    - ETC
    - COLOPPHON
*/


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


/*---> Navigation Utility Bar <---*/
.masthead {
    position:relative;
    background:var(--color-white);
    z-index:10000;
}
.branding-link--for-masthead {
	margin-top:0.875rem;
	margin-bottom:0.875rem;
	max-width:150px;
}
.masthead__utility-list {
	margin:0 -0.625rem; /*- Pull to override the column padding -*/
    display:flex;
	position:relative;
	z-index:2;
	list-style: none;
}
.masthead__utility-list-item {
}
.masthead__utility-list-item::before {
    display:none; /* Reset from base li styles */
}
.masthead__utility-list-button {
    border-radius:0;
    cursor:pointer;
}
.masthead__utility-list-button,
.masthead__utility-list-link {
	padding:0.75rem 1.125rem;
	display:-webkit-flex;
	display:flex;
	-webkit-align-items:center;
	align-items:center;
	-webkit-justify-content:center;
	justify-content:center;
	font-weight:700;
	font-size:0.938rem;
	color:var(--color-white);
    text-transform:uppercase;
	line-height:1.25;
}
.masthead__utility-list-button,
.masthead__utility-list-button:is(:hover, :active, :focus, :focus-visible) {
	background:transparent;
}
.masthead__utility-list-link:is(:active, :focus, :focus-visible) {
	text-decoration:none;
}
.masthead__utility-list-button:hover,
.masthead__utility-list-link:hover {
	color:var(--color-secondary);
}
.masthead__utility-list-button:is(:focus, :focus-visible),
.masthead__utility-list-link:is(:focus, :focus-visible) {
	outline:0;
	border:0;
	color:var(--color-secondary);
    -webkit-box-shadow:none;
	-moz-box-shadow:none;
    box-shadow:none;
}
.masthead__utility-list-button:active,
.masthead__utility-list-link:active {
	color:var(--color-secondary-dark);
	-webkit-box-shadow:none;
	-moz-box-shadow:none;
    box-shadow:none;	
}
.masthead__utility-list-icon {
	fill:var(--color-base);
	pointer-events:none;
	vertical-align:middle;
	transition:all 200ms ease-in-out;
    -webkit-transition:all 200ms ease-in-out;
}
.masthead__utility-list-link:is(:hover, :active) .masthead__utility-list-icon,
.masthead__utility-list-button:is(:hover, :active) .masthead__utility-list-icon {
    fill:var(--color-secondary);
}
.masthead__utility-list-link:is(:focus, :focus-visible) .masthead__utility-list-icon,
.masthead__utility-list-button:is(:focus, :focus-visible) .masthead__utility-list-icon {
    fill:var(--color-secondary-dark);
}
.masthead__utility-list-overflow {
	display:none;
	color:inherit;
	white-space:nowrap;
}
/* Filled Link */
.masthead__utility-list-link--filled,
.masthead__utility-list-link--filled:is(:hover, :active, :focus, :focus-visible) {
	color:var(--color-white);
}
.masthead__utility-list-link--filled,
.masthead__utility-list-link--filled:is(:focus,:focus-visible) {
    background:var(--color-secondary);
}
.masthead__utility-list-link--filled:is(:hover, :active) {
    background:var(--color-secondary);
}
.masthead__utility-list-icon--for-filled,
.masthead__utility-list-link--filled:is(:hover, :active, :focus, :focus-visible) .masthead__utility-list-icon--for-filled {
    fill:var(--color-white);
}
/*- Nav Slide Animation Sticky Header -*/
@-webkit-keyframes navSlide {
	0% {
		-webkit-transform:translateY(-100%);
		transform:translateY(-100%);
	}

	100% {
		-webkit-transform:translateY(0);
		transform:translateY(0);
	}
}
@keyframes navSlide {
	0% {
		-webkit-transform:translateY(-100%);
		transform:translateY(-100%);
	}

	100% {
		-webkit-transform:translateY(0);
		transform:translateY(0);
	}
}
@media all and (min-width:1024px) {
	.masthead > .row > .columns:nth-of-type(2)::before {
		display:none;
	}
	.branding-link--for-masthead {
		margin-left:0;
        margin-right:0;
        width:150px;
	}
	.masthead__utility-list {
		margin:0; /*- Reset negative margining -*/
		justify-content:flex-end;
	}
	.masthead__utility-list-link,
	.masthead__utility-list-button {
		padding:0.375rem 0.625rem;
	}
	.masthead__utility-list-link--filled {
		margin-left:0.625rem;
	}
	.masthead__utility-list-icon {
		margin-right:0.313rem;
	}
	.masthead__utility-list-overflow {
		display:inline-block;
	}	
}
@media all and (min-width:1025px) {
	.masthead--hidden {
        position:absolute;
		top:0;
		left:0;
		right:0;
		will-change:transform;
		transform:translateY(-100%);
		transition:transform 0.3s ease-out;
	}	
	.masthead--stuck {
		position:fixed;
		top:0;
		left:0;
		right:0;
		-webkit-animation:navSlide 0.75s ease-in-out forwards;
		animation:navSlide 0.75s ease-in-out forwards;
		-webkit-box-shadow: 0px 10px 25px 0px rgba(var(--color-black-rgb),0.05);
		-moz-box-shadow: 0px 10px 25px 0px rgba(var(--color-black-rgb),0.05);
		box-shadow: 0px 10px 25px 0px rgba(var(--color-black-rgb),0.05);		
	}
}
/*- Search Modal -*/
.search-modal {
    background-color:rgba(var(--color-black-rgb), 0.85);
    border:none;
    display:none;
    max-width:100%;
    visibility:hidden;
    z-index:10005;
}
.search-modal.is-active {
    display:block;
    height:100%;
    max-height:100%;
    position:fixed;
	left:0;
    right:0;
    top:0;
    overflow:auto;
    visibility:visible;
    -webkit-overflow-scrolling:touch;
}
.search-modal__wrap {
	margin:0 auto;
	position:absolute;
	left:0;
	right:0;
	top:50%;
	-webkit-transform:translateY(-50%);
	transform:translateY(-50%);
}
.search-modal__logo {
    position:relative;
    margin:0 auto;
	display:block;
	width:90%;
	max-width:425px;
    left:0;
    right:0;
}
.search-modal__logo svg,
.search-modal__logo img {
	display:block;
	width:100%;
	height:auto;
}
.search-modal__form {
    width:90%;
	max-width:1000px;
	margin:0 auto;
	padding-top:0.313rem;
}
.search-modal__form::after {
	content:"";
	clear:both;
	display:table;
  }
.search-modal__label {
    display:block;
    color:#fff;
    margin:0.625rem 0;
}
.search-modal__form .search-modal__input {
	width:calc(100% - 195px); /* 175 + 20px = 195 | 20px distance between input and submit */
	height:50px;
	float:left;
    border-radius:0;
}
.search-modal__button[type="submit"] {
	margin:0;
	padding:0;
	width:175px;
	height:50px;
	float:right;
    border-radius:0;
}
.search-modal__close {
    background-color:var(--color-secondary);
    border-radius:0;
    width:3.125rem;
    height:3.125rem;
    position:absolute;
    top:0;
	right:0;
	font-size:1.5rem;
	color:var(--color-white);
	transition:all 200ms ease-in-out;
	-webkit-transition:all 200ms ease-in-out;
	cursor:pointer;
}
.search-modal__close:is(:hover, :active) {
	background-color:var(--color-secondary-dark);
}
.search-modal__close:active {
	background-color:var(--color-secondary-dark);
    -webkit-box-shadow:inset 0 0 0 2px var(--color-secondary-dark), inset 0 0 0 4px var(--color-white);
	-moz-box-shadow:inset 0 0 0 2px var(--color-secondary-dark), inset 0 0 0 4px var(--color-white);
    box-shadow:inset 0 0 0 2px var(--color-secondary-dark), inset 0 0 0 4px var(--color-white);
}
.search-modal__close:is(:focus, :focus-visible) {
    background-color:var(--color-secondary);
	border:0;
	outline:0;
    -webkit-box-shadow:inset 0 0 0 2px var(--color-secondary), inset 0 0 0 4px var(--color-white);
	-moz-box-shadow:inset 0 0 0 2px var(--color-secondary), inset 0 0 0 4px var(--color-white);
    box-shadow:inset 0 0 0 2px var(--color-secondary), inset 0 0 0 4px var(--color-white);
}
.search-modal__close-icon {
	color:inherit;
	font-size:inherit;
	position:absolute;
	left:0;
	right:0;
	top:50%;
	-webkit-transform:translateY(-50%);
	transform:translateY(-50%);
}
/*- Empoweren Search Results Page -*/
#search, #Go {
    margin-bottom:1.625rem !important;
}
#search {
    width:calc(100% - 185px);
	float: left;
}
#Go {
    width:175px;
	float:left;
	margin-left:0.625rem !important;
}
.siteSearch li {
	margin-bottom:1.563rem;
}
#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 var(--color-primary);
	margin:0 0.313rem 0.625rem;
	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:700 !important;
}
.search_current,
.search_page {
	width:25px;
}
/*---> Navigation Utility Bar Compact <---*/
.masthead--compact > .row > .columns:nth-of-type(2)::before {
	display:none;
	background:transparent;
	width:0;
	height:0;
}
.masthead__utility-list--compact {
    height:100%;
}
.masthead__utility-list-button--compact {
	width:50px;
}
.masthead__utility-list-link--compact {

}
.masthead__utility-list-button--compact,
.masthead__utility-list-link--compact {
	position:relative;
	height:100%;
    min-height:60px;
}
.masthead__utility-list-icon--for-compact {
    position:absolute;
    inset:0;
    margin:auto;
}
.masthead__utility-list-overflow--for-compact {
	font-weight:700;
	background:inherit;
    display:flex;
    align-items:center;
	position:absolute;
	top:0;
	right:100%;
	height:100%;
	margin:0;
	max-width:0;
	overflow:hidden;
	-webkit-transition:all 0.1s cubic-bezier(0.25,0.46,0.45,0.94);
	-o-transition:all 0.1s cubic-bezier(0.25,0.46,0.45,0.94);
	transition:all 0.1s cubic-bezier(0.25,0.46,0.45,0.94);
}
.masthead__utility-list-link--compact:hover .masthead__utility-list-overflow--for-compact {
    max-width:500px;
    padding:0 0 0 1rem;
    -webkit-transition:all 0.1s cubic-bezier(0.25,0.46,0.45,0.94);
    -o-transition:all 0.1s cubic-bezier(0.25,0.46,0.45,0.94);
    transition:all 0.1s cubic-bezier(0.25,0.46,0.45,0.94);
}
@media (min-width: 1024px) {
	.masthead__utility-list--compact {
		margin:0 -0.625rem;
	}
    .masthead__utility-list-icon--for-compact {
        position:relative;
        margin-right:0.313rem;
    }
    .masthead__utility-list-button--compact {
        width:auto;
    }
    .masthead__utility-list-button--compact,
    .masthead__utility-list-link--compact {
        min-height:35px;
    }
}
/*---> Navigation Ghost <---*/
.masthead--ghost {
	background: linear-gradient(
		hsl(0, 0%, 0%) 0%,
		hsla(0, 0%, 0%, 0.738) 19%,
		hsla(0, 0%, 0%, 0.541) 34%,
		hsla(0, 0%, 0%, 0.382) 47%,
		hsla(0, 0%, 0%, 0.278) 56.5%,
		hsla(0, 0%, 0%, 0.194) 65%,
		hsla(0, 0%, 0%, 0.126) 73%,
		hsla(0, 0%, 0%, 0.075) 80.2%,
		hsla(0, 0%, 0%, 0.042) 86.1%,
		hsla(0, 0%, 0%, 0.021) 91%,
		hsla(0, 0%, 0%, 0.008) 95.2%,
		hsla(0, 0%, 0%, 0.002) 98.2%,
		hsla(0, 0%, 0%, 0) 100%
	);
}
.masthead--ghost:not(.masthead--stuck) {
	position:absolute;
	top:0;
	left:0;
	right:0;
}
.masthead__utility-list-icon--for-ghost {
    fill:var(--color-white);
}
.masthead__utility-list-link--ghost:not(.masthead__utility-list-link--filled) {
	background:transparent;
}
.masthead__utility-list-link--ghost:not(.masthead__utility-list-link--filled):not(:hover, :active, :focus-visible) {
	color:var(--color-white);
}
.masthead__utility-list-link--ghost:not(.masthead__utility-list-link--filled):hover .masthead__utility-list-overflow--for-ghost {
	background:var(--color-white);
	padding-right:1rem;
}
@media all and (min-width:1025px) {
	.masthead--ghost.masthead--stuck {
		background:var(--color-primary);
        -webkit-box-shadow:0px 15px 25px 0px rgba(var(--color-black-rgb),0.25);
        -moz-box-shadow:0px 15px 25px 0px rgba(var(--color-black-rgb),0.25);
        box-shadow:0px 15px 25px 0px rgba(var(--color-black-rgb),0.25);
	}
}


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


/*---> Hero Interior Image <---*/
.hero {
    position:relative;
    /* Set Background color for Hero Messaging ADA Compliance */
    background-color:var(--color-black);
}
.hero__media {
    position:relative;
    /* Remove whitespace */
    line-height:0;
}
.hero__media::after {
    margin-left:auto;
    margin-right:auto;
    display:block;
    width:100%;
    height:200px;
    content:"";
    position:absolute;
    top:0;
    left:0;
    right:0;
	background: linear-gradient(
		hsl(0, 0%, 0%) 0%,
		hsla(0, 0%, 0%, 0.738) 19%,
		hsla(0, 0%, 0%, 0.541) 34%,
		hsla(0, 0%, 0%, 0.382) 47%,
		hsla(0, 0%, 0%, 0.278) 56.5%,
		hsla(0, 0%, 0%, 0.194) 65%,
		hsla(0, 0%, 0%, 0.126) 73%,
		hsla(0, 0%, 0%, 0.075) 80.2%,
		hsla(0, 0%, 0%, 0.042) 86.1%,
		hsla(0, 0%, 0%, 0.021) 91%,
		hsla(0, 0%, 0%, 0.008) 95.2%,
		hsla(0, 0%, 0%, 0.002) 98.2%,
		hsla(0, 0%, 0%, 0) 100%
	);
}
.hero__media > img {
    display:block;
    position:relative;
    width:100%;
}
.hero__content {
    padding-top:3.438rem;
    padding-bottom:3.438rem;
    background-color:var(--color-gray-accent);
    text-align:center;
}
.hero__content--positioned {
    padding-top:0;
	padding-bottom:0;
	background-color:initial;
	position:absolute;
	left:0;
	right:0;
	bottom:40px;
	color:var(--color-white);    
}
.hero__title {
}
.hero__title,
.hero__text {
    color:inherit;
}
@media all and (min-width:768px) {
    .hero__content--positioned {
        bottom:initial;
        top:50%;
		transform:translateY(-50%);
    }
}
@media all and (min-width:1024px) {
    .hero__content {
        color:var(--color-white);
        margin-left:auto;
        margin-right:auto;
        padding-top:initial;
        padding-bottom:initial;
        background-color:transparent;
        position:absolute;
        left:0;
        right:0;
        top:50%;
		transform:translateY(-50%);
    }
}
/*---> Hero Interior Image Set Height <----*/
.hero__media--is-set-height {
	height:235px;
	overflow:hidden;
}
.hero__media--is-set-height > img {
	height:100%;
	-o-object-fit:cover;
	object-fit:cover;
}
@media all and (min-width:768px) {
    .hero__media--is-set-height {
        height:500px;
    }
}
@media all and (min-width:1920px) {
    .hero__media--is-set-height {
        height:auto;
    }
	.hero__media--is-set-height > img {
		width:100%;
		height:auto;
		-o-object-fit:initial;
		object-fit:initial;
	}
}
/*---> Hero Interior Video <---*/
.hero__media--has-video {
	position:relative;
	height:0;
	padding-bottom:26.04%; /* Given a 1920:500 aspect ratio, 500/1920*100 = 26.04 */
	overflow: hidden;
    isolation:isolate;
}
.hero__media--has-video::before {
    margin-left:auto;
    margin-right:auto;
    display:block;
    width:100%;
    height:100%;
    content:"";
    position:absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background:rgba(var(--color-black-rgb), 0.3);
    z-index:1;
}
.hero__media--has-video::after {
    z-index:2;
}
.hero__video {
	width:100%;
	height:100%;
	position:absolute;
	top:0;
	left:0;
}
/*---> Hero Interior Video Set Height <---*/
.hero__media--has-video-set-height {
	height:calc(100vh - 90px);
	padding-bottom:0;
}
.hero__video--is-set-height {
	width:100vw;
	min-width:320vh; /* Given a 1920:600 aspect ratio, 1920/600*100 = 320 */
	height:31.25vw; /* Given a 1920:600 aspect ratio, 600/1920*100 = 31.25 */ 
	min-height:calc(100vh - 90px);
	position:absolute;
	left:50%;
	transform:translateX(-50%);
}
@media all and (min-width:1280px) {
    .hero__media--has-video-set-height {
        height:0;
		padding-bottom:31.25%; /* Given a 1920:500 aspect ratio, 600/1920*100 = 31.25 */
    }
	.hero__video--is-set-height {
		min-height:initial;
		min-width:initial;
		left:0;
		width:100%;
		height:100%;
		transform:translateX(0);
	}
}
/*---> Hero Index Video Set Height <----*/
@media all and (max-width:1279px) {
	.hero__video--is-set-height-for-index {
		min-width:274.285vh; /* Given a 1920:700 aspect ratio, 1920/700*100 = 274.285 */
		height:36.458vw; /* Given a 1920:700 aspect ratio, 700/1920*100 = 36.458 */
	}
}
@media all and (min-width:1280px) {
    .hero__media--has-video-set-height-for-index {
		padding-bottom:36.458%; /* Given a 1920:700 aspect ratio, 700/1920*100 = 36.458 */
    }
}


/************************************
/*----------------------------------
/*  PRIMARY CONTENT
/*----------------------------------
/*************************************/


.main {
}
.main--index {
}
.main--interior {
}
.primary-content {
}
.primary-content--index {
    padding-top:5rem;
    padding-bottom:4rem;
}



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


.callout {
	position:relative;
    margin-bottom:1.25rem;
    /* Set Background color for ADA Compliance */
    background-color:var(--color-black);
    overflow:hidden;
}
.callout:is(:focus, :focus-visible) {
	outline:0;
}
.callout__media {
	position:relative;
	z-index:1;
}
.callout__img {
	display:block;
    width:100%;
}
.callout__link {
	display:block;
	position:relative;
	z-index:2;
}
.callout__link:is(:active, :focus, :focus-visible) {
    text-decoration:none;
}
.callout__link:active {
    -webkit-box-shadow: 0 0 0 2px var(--color-white), 0 0 0 4px var(--color-primary-dark);
	-moz-box-shadow: 0 0 0 2px var(--color-white), 0 0 0 4px var(--color-primary-dark);
	box-shadow: 0 0 0 2px var(--color-white), 0 0 0 4px var(--color-primary-dark);
}
.callout__link:is(:focus, :focus-visible) {
    -webkit-box-shadow: 0 0 0 2px var(--color-white), 0 0 0 4px var(--color-primary);
	-moz-box-shadow: 0 0 0 2px var(--color-white), 0 0 0 4px var(--color-primary);
	box-shadow: 0 0 0 2px var(--color-white), 0 0 0 4px var(--color-primary);
    outline:0;
}
.callout__link::before {
	display:block;
	content:"";
	background: -webkit-linear-gradient(top, rgba(var(--color-black-rgb),1), rgba(var(--color-black-rgb),0));
	background: -moz-linear-gradient(top, rgba(var(--color-black-rgb),1), rgba(var(--color-black-rgb),0));
	background: linear-gradient(to top, rgba(var(--color-black-rgb),1), rgba(var(--color-black-rgb),0));
    height:100%;
    max-height:400px;
	position:absolute;
	left:0;
	right:0;
	bottom:0;
    -webkit-transition:all 350ms cubic-bezier(0.25,0.46,0.45,0.94);
	-o-transition:all 350ms cubic-bezier(0.25,0.46,0.45,0.94);
	transition:all 350ms cubic-bezier(0.25,0.46,0.45,0.94);
	pointer-events:none;
	z-index:3;
}
.callout__link:is(:hover, :active)::before {
    bottom:63px; /* Height of "button" */
}
.callout__body {
    padding-top:1.5rem;
	pointer-events:none;
	position:absolute;
	left:0;
	right:0;
	bottom:0;
	z-index:4;
    isolation:isolate;
}
.callout__title {
	/* Default h6 size. Set size so can use whatever header is appropriate */
	font-size:var(--font-size-h6);
}
.callout__title small {
    font-weight:inherit;
    font-size:var(--font-size-base);
}
.callout__title,
.callout__text,
.callout__link-text  {
	color:var(--color-white);
	padding-left:1.875rem;
	padding-right:1.875rem;
}
.callout__link-text {
    position:relative;
    background-color:var(--color-primary);
    margin:0;
    padding-top:1.125rem;
    padding-bottom:1.125rem;
    /*
        Width of arrow icon = 12px
        Padding right = 1.875rem or 30px
        + 10px for padding between arrow and text
        12 + 30 + 10 = 52px = 3.25rem 
    */
    padding-right:3.25rem;
}
.callout__link-text::after {
    margin:0 auto;
    width:11.67px;
    height:10.23px;
    background:var(--color-white);
    -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11.67 10.23' width='11.67' height='10.23'%3E%3Cpath fill='%23fff' d='M7,10.23l-.71-.71,4.36-4.36L6.29.71l.71-.71,4.36,4.36c.41.41.41,1.09,0,1.5l-4.36,4.36Z' /%3E%3Crect fill='%23fff' y='4.59' width='11.02' height='1' /%3E%3C/svg%3E");
    mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11.67 10.23' width='11.67' height='10.23'%3E%3Cpath fill='%23fff' d='M7,10.23l-.71-.71,4.36-4.36L6.29.71l.71-.71,4.36,4.36c.41.41.41,1.09,0,1.5l-4.36,4.36Z' /%3E%3Crect fill='%23fff' y='4.59' width='11.02' height='1' /%3E%3C/svg%3E");
    content:"";
    position:absolute;
    right:1.875rem;
	top:50%;
	-webkit-transform:translateY(-50%);
	transform:translateY(-50%);
}
.callout__overflow {
	max-height:0;
	overflow:hidden;
	-webkit-transition:max-height 350ms cubic-bezier(0.25,0.46,0.45,0.94);
	-o-transition:max-height 350ms cubic-bezier(0.25,0.46,0.45,0.94);
	transition:max-height 350ms cubic-bezier(0.25,0.46,0.45,0.94);
}
.callout:is(:hover, :active) .callout__overflow {
	max-height:15.625rem;
}


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


.card {
	position:relative;
	background:var(--color-white);
	display:flex;
	flex-direction:column;
	height:calc(100% - 1.25rem);
	margin-bottom:1.25rem;
	isolation:isolate;
    -webkit-box-shadow:0px 15px 25px 0px rgba(var(--color-black-rgb),0.15);
    -moz-box-shadow:0px 15px 25px 0px rgba(var(--color-black-rgb),0.15);
    box-shadow:0px 15px 25px 0px rgba(var(--color-black-rgb),0.15); 
}
.card__head,
.card__main {
	pointer-events:none;
}
.card__head {
	background:var(--color-secondary-dark);
	padding:1.5rem 2rem 0.75rem;
}
.card__title {
	/* Default h6 size. Set size so can use whatever header is appropriate */
	font-size:var(--font-size-h6);
	color:var(--color-white);
}
.card__title:is(h1, h2, h3, h4, h5, h6) small,
.card__title:is(.like-h1, .like-h2, .like-h3, .like-h4, .like-h5, .like-h6) small {
    font-size:var(--font-size-base);
}
.card__main {
	padding:2.5rem 2rem 0;
	display:flex;
	flex-direction:column;
	flex-grow:1;
}
.card__text {
    color:var(--color-base);
}
.card__foot {
	padding:0 2rem 1.5rem;
}
.card__foot,
.card > :last-child.card__foot {
	margin-bottom:0;
}
.card__foot__text {
}
.card__btn {
	position:static;
}
.card__btn::after {
    content:'';
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    z-index:1;
}
/*--> Cards Media <---*/
.card__media {
	pointer-events:none;
}
.card__img {
	display:block;
	width:100%;
}
.card__head--for-media-card {
	background:transparent;
	padding:1.5rem 2rem 0;
}
.card__title--for-media-card {
	color:var(--color-primary);
}
.card__main--for-media-card {
	padding:0 2rem;
}
/*---> Cards Icon <---*/
.card__icon {
    margin-top:2.5rem;
}
.card__title--for-icon-card {
    font-size:1.25rem;
    font-weight:700;
}
/*---> Cards with Icon Link <---*/
.card__icon-link {
	position:static;
    color:inherit;
}
.card__icon-link::after {
    content:'';
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    z-index:1;
}
.card__icon-link:is(:hover) {
    background-color:transparent;
}
.card__icon-link:is(:hover, :active){
    color:var(--color-primary-dark);
}
.card__icon-link:is(:active, :focus, :focus-visible) {
    text-decoration:underline;
}
.card__icon-link:is(:focus, :focus-visible) {
    color:var(--color-primary);
    outline:0;
}
.card__icon-link:is(:hover, :active) .icon-link::before {
    background-color:var(--color-primary-dark);
}
.card__icon-link--alt:is(:hover, :active){
    color:var(--color-secondary-dark);
}
.card__icon-link--alt:is(:focus, :focus-visible) {
    color:var(--color-secondary);
    outline:0;
}
.card__icon-link--alt:is(:hover, :active) .icon-link::before {
    background-color:var(--color-secondary-dark);
}


/************************************
/*----------------------------------
/*  CARD GRID
/*----------------------------------
/*************************************/


.card-grid {
    margin-left:-0.625rem;
    margin-right:-0.625rem;
    display:-ms-flexbox;
    display:flex;
    -ms-flex-flow:row wrap;
    flex-flow:row wrap;
}
.card-grid__item {
    padding:0.625rem;
    position:relative;
    -ms-flex:0 0 50%;
    flex:0 0 50%;
    /* Flex it! */
    display:-ms-flexbox;
    display:flex;
    -ms-flex-flow:row wrap;
    flex-flow:row wrap;
    /* Center Align Content */
    -ms-flex-pack:center;
    justify-content:center;
    /* Middle Align Content */
    -ms-flex-align:center;
    align-items:center;
    isolation:isolate;
    text-align:center;
}
.card-grid__item--double,
.card-grid__item-content {
    -ms-flex:0 0 100%;
    flex:0 0 100%;
}
.card-grid__item-content:not(.card-grid__item-content--intro)::before {
    content:"";
    background-color:rgba(var(--color-primary-dark-rgb), 0.45);
    width:calc(100% - 1.25rem);
    height:calc(100% - 1.25rem);
    position:absolute; /* Position off of .card-grid__item */
    top:0.625rem;
    left:0.625rem;
    z-index:-1;
}
.card-grid__item-content--intro {
    padding-top:1rem;
    padding-bottom:1.875rem;
    color:var(--color-white);
}
.card-grid__title,
.card-grid__text {
    color:inherit;
    display:block;
}
.card-grid__img {
    display:block;
    width:100%;
}
.card-grid__logo {
    max-width:90%;
}
@media all and (min-width:1024px) {
    .card-grid__item {
        -ms-flex:0 0 20%;
        flex:0 0 20%;
    }
    .card-grid__item--double {
        -ms-flex:0 0 40%;
        flex:0 0 40%;
    }    
    .card-grid__item-content--intro {
        padding-top:0;
        padding-bottom:0;
    }
    .large-order-7 {
        -ms-flex-order:7;
        order:7;
    }
    .large-order-8 {
        -ms-flex-order:8;
        order:8;
    }
}


/************************************
/*----------------------------------
/*  CONTENT BLOCKS
/*----------------------------------
/*************************************/


.content-block {
	position:relative;
	background:var(--color-white);
    padding:1rem 2.5rem;
	margin-bottom:1.625rem;
    -webkit-box-shadow:0px 15px 25px 0px rgba(var(--color-black-rgb),0.15);
    -moz-box-shadow:0px 15px 25px 0px rgba(var(--color-black-rgb),0.15);
    box-shadow:0px 15px 25px 0px rgba(var(--color-black-rgb),0.15); 
}
.content-block > :first-child {
    margin-top:1.625rem;
}
.content-block__link {
}
.content-block__link--icon-link {
    padding-right:44px;
}


/************************************
/*----------------------------------
/*  MEDIA BLOCKS
/*----------------------------------
/*************************************/


.media-block {
}
.media-block__media {
    /* Full viewport width for mobile - This pulls the media block media past the 0.625rem padding of the column */
    margin-left:-0.625rem;
    margin-right:-0.625rem;
}
.media-block__img {
    display:block;
    width:100%;
}
.media-block__content {
    padding:3rem 0;
}
.media-block__title {
    /* Default h3 size. Set size so can use whatever header is appropriate */
    font-size:var(--font-size-h3);
}
.media-block__text {
}
@media all and (min-width:1024px) {
    .media-block {
        margin:5rem 0;
    }
    .media-block__content {
        padding:0;
    }
    .media-block__media {
        /* Remove negative margins for desktop */
        margin-left:auto;
        margin-right:auto;
    }
}


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


.panel {
	width:100vw;
	max-width:100vw;
	position:relative;
	left:50%;
	right:50%;
	margin-left:-50vw !important;
	margin-right:-50vw !important;
    isolation:isolate;
	overflow:hidden;
}
.panel:not(.panel--has-img):not(.panel--has-video):not([class*="background"]) {
    background-color:var(--color-gray-accent);
}
.panel > .row,
.panel > .row.expanded,
.panel > .row.collapse {
	margin-left:auto;
	margin-right:auto;	    
}
.panel > .row:not(.expanded, .row--wide) {
	width:100%;
	max-width:var(--row-max-width-px);
	max-width:var(--row-max-width-rem);
}
.panel > .row:not(.expanded).columns {
	margin-left:auto !important;
	margin-right:auto !important;	
	padding-right:0.625rem !important;
	padding-left:0.625rem !important;
}
.panel__media {
    width:100%;
    height:350px;
}
.panel__img {
    display:block;
    width:100%;
    height:100%;
    -o-object-fit:cover;
    object-fit:cover;
}
.panel__img--left {
    object-position:25% 50%;
}
.panel__img--right {
    object-position:75% 50%;
}
.panel__content {
    /*padding:3rem 0;*/
}
.panel__content--left {
}
.panel__content--center {
}
.panel__content--right {
}
.panel__content--card {
    padding:3rem 11% 2rem;
    background-color:var(--color-white);
    -webkit-box-shadow:0px 25px 50px 0px rgba(var(--color-black-rgb),0.15);
    -moz-box-shadow:0px 25px 50px 0px rgba(var(--color-black-rgb),0.15);
    box-shadow:0px 25px 50px 0px rgba(var(--color-black-rgb),0.15);
}
.panel__title {
    /* Default h2 size. Set size so can use whatever header is appropriate */
    font-size:var(--font-size-h2);
}
.panel__title,
.panel__text {
    color:inherit;
}
.panel__text {
}
.panel__content a.color-white {
    /*text-decoration:underline;
    text-decoration-style:dashed;*/
}
@media all and (min-width:1024px) {
    .panel__media {
        height:100%;
        position:absolute;
        top:0;
        bottom:0;
        left:0;
        right:0;
        z-index:-1;
    }
    .panel__img--left,
    .panel__img--right {
        object-position:50% 50%;
    }
    :not(.panel__content--card).panel__content--center {
        text-align:center;
    }
    .panel--has-img {
        color:var(--color-white);
        background-color:var(--color-black);
    }
    .panel__content--card {
        color:var(--color-base);
    }
}
/*---> Panel with Boxes Background <---*/
.panel--bg-boxes-white::before {
    display:block;
    content:"";
    width:100%;
    height:100%;
    pointer-events:none;
    position:absolute;
    bottom:0;
    left:0;
    right:0;
    margin-left:auto;
    margin-right:auto;
    background:url(../images/bg-box-pattern-white-lines.png) bottom center no-repeat;
}
@media all and (min-width:1920px) {
    .panel--bg-boxes-white::before {
        background-size:100% auto;
    }
}
/*---> Panel with Video Background <---*/
.panel--has-video {
}
.panel__media--has-video {
    height:0;
    overflow:hidden;
    padding-bottom:37.5%;
    position:relative;
}
.panel__video {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}
@media all and (min-width:1024px) {
    .panel--has-video {
        color:var(--color-white);
        background-color:var(--color-black);
    }
    .panel__media--has-video {
        height:100%;
		padding-bottom:0;
        position:absolute;
    }
    .panel__video {
        height:37.5vw;
        min-height:100vh;
        width:100vw;
        min-width:266.667vh;
        top:50%;
        left:50%;
        transform:translate(-50%, -50%);
    }
}
/*---> WCS (Software) Panel <---*/
.panel--wcs {
    padding-top:5rem;
}
.panel--wcs::before {
    background-image:url(../images/panels/bg-wcs-1920x985.jpg);
    background-size:cover;    
    background-position:bottom center;
    background-repeat:no-repeat;
    content:"";
    width:100%;
    height:100%;
    position:absolute;
    bottom:0;
    left:0;
    right:0;
    z-index:-1;
}


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


.split-panel {
	width:100vw;
	max-width:100vw;
	position:relative;
	left:50%;
	right:50%;
	margin-left:-50vw !important;
	margin-right:-50vw !important;
	isolation:isolate;
	overflow:hidden;
}
.split-panel__media {
    position:relative;
}
.split-panel__img {
    display:block;
    width:100%;
}
.split-panel__content {
    padding:4rem 0 3rem;
}
.split-panel__title {
    /* Default h2 size. Set size so can use whatever header is appropriate */
    font-size:var(--font-size-h2);
}
.split-panel__title,
.split-panel__text {
    color:inherit;
}
@media all and (min-width:1024px) {
	.split-panel > .row {
		align-items:stretch;
	}
    .split-panel__content {
		padding:10% 0 calc(10% - 1.625rem);
    }
    .split-panel__content > .row > .columns {
        max-width:640px !important;
    }
    .split-panel__content > .row.align-left > .columns {
        padding-left:16.66667%;
    }
    .split-panel__content > .row.align-right > .columns {
        padding-right:16.66667%;
    }
	.split-panel > .row > .columns:nth-of-type(2) { /*Middle Align the Content if Shorter than the image */
		-ms-flex-item-align:center;
		-ms-grid-row-align:center;
		align-self:center;
	}
    .split-panel__media {
		min-height:525px;
		height:100%;
	}
    .split-panel__img {
        height:100%;
        -o-object-fit:cover;
        object-fit:cover;
	}
    .split-panel--stagger {
        margin-top:-6rem;
        margin-bottom:-6rem;
        z-index:-1;
    }   
}
/*---> Split Panel With Video <---*/
.split-panel__media--has-video {
    height:0;
    overflow:hidden;
    padding-bottom:56.25%;/* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
}
.split-panel__iframe {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}
@media all and (min-width:1024px) {
    .split-panel__media--has-video {
        padding-bottom:0;
        padding-top:0;
        margin:0;
        width:100%;
        height:100%;
        min-height:570px;
    }
    .split-panel__iframe {
        width:50vw;
        height:100%;
        min-width:177.778vh;/* Given a 16:9 aspect ratio, 16/9*100 = 177.778 */
        position:absolute;
        top:50%;
        left:50%;
        transform:translate(-50%, -50%);
    }
}


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


.timeline {
    position:relative;
    padding-top:3rem;
    margin-bottom:1.625rem;
}
.timeline::before {
    display:block;
    width:0.250rem;
    height:100%;
    content:'';
    background-color:var(--color-gray-accent-dark);
    position:absolute;
    top:0;
    left:0;
}
.timeline__item {
    position:relative;
    padding-bottom:2rem;
    display:-ms-flexbox;
    display:flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}
.timeline__content,
.timeline__media {
    -ms-flex:0 0 100%;
    flex:0 0 100%;
    max-width:100%;
    padding-left:1.5rem;
    padding-right:1.5rem;
}
.timeline__content {
    position:relative;
}
.timeline__content::before {
    display:block;
    width:0;
    height:0;
    content:'';
    line-height:0; /* Remove whitespace */
    border-bottom:8px solid transparent;
    border-top:8px solid transparent;
    border-left:10px solid var(--color-gray-accent-dark);
    position:absolute;
    top:0.563rem;
    left:0.250rem;
}
.timeline__title {
    /* Default h6 size. Set size so can use whatever header is appropriate */
    font-size:var(--font-size-h6);
    font-weight:bold;
    color:var(--color-secondary);
}
.timeline__text {
}
.timeline__img {
}
@media all and (min-width:1024px) {
    .timeline::before {
        left:50%;
        -webkit-transform:translateX(-50%);
        -ms-transform:translateX(-50%);
        transform:translateX(-50%);
    }
    .timeline__content,
    .timeline__media {
        -ms-flex:0 0 50%;
        flex:0 0 50%;
        max-width:50%;
    }
    .timeline__item--invert {
        -ms-flex-pack:end;
        justify-content:flex-end;
    }
    .timeline__content--invert {
        -ms-flex-order:2;
        order:2;
    }
    .timeline__content--invert::before {
        left:0.125rem;
    }
    .timeline__content:not(.timeline__content--invert)::before {
        border-left:0;
        border-right:10px solid var(--color-gray-accent-dark);
        left:auto;
        right:0.125rem;
    }
    .timeline__media--invert,
    .timeline__content:not(.timeline__content--invert) {
        padding-left:0;
        text-align:right;
    }
    .timeline__content--invert,
    .timeline__media:not(.timeline__media--invert) {
        padding-right:0;
    }
}


/************************************
/*----------------------------------
/*  BREAKOUT
/*----------------------------------
/*************************************/


.breakout {
    display:-ms-flexbox;
    display:flex;
    -ms-flex-flow:row wrap;
    flex-flow:row wrap;
    /* Pull Margin for padding on items */
    margin-right:-0.625rem;
    margin-left:-0.625rem;
    margin-bottom:1.625rem;
}
.breakout__item,
.breakout__media,
.breakout__content {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    text-align:center;
}
.breakout__item {
    padding-right:0.625rem;
    padding-left:0.625rem;
    display:-ms-flexbox;
    display:flex;
    -ms-flex-flow:row wrap;
    flex-flow:row wrap;    
    /* Align Middle Items */
    -ms-flex-align:center;
    align-items:center;
    /* Align Center Items */
    -ms-flex-pack:center;
    justify-content:center;
}
.breakout__item--symbol {
}
.breakout__media,
.breakout__symbol {
    margin-bottom:1rem;
}
.breakout__icon {
}
.breakout__content {   
}
.breakout__text {
}
.breakout__text--lead {
    text-transform:uppercase;
    font-weight:bold;
}
@media all and (max-width:1023px) {
    .breakout__symbol {
        transform:rotate(90deg);
    }
}
@media all and (min-width:1024px) {
    .breakout {
        padding-bottom:3.125rem; /*  Accommodate absolute positioned two lines of text */
    }
    .breakout__item {
        -ms-flex:1 1 0px;
        flex:1 1 0px;
    }
    .breakout__item:not(.breakout__item--symbol) {
        position:relative;
    }
    .breakout__item--symbol {
        -ms-flex:0 0 auto;
        flex:0 0 auto;
    }
    .breakout__content {
        margin-left:auto;
        margin-right:auto;
        position:absolute;
        top:100%;
        left:0;
        right:0;
    }
}



/************************************
/*----------------------------------
/*  LOGO CAROUSEL
/*----------------------------------
/*************************************/


/*- Slider -*/
.js-logo-carousel { /* JS Hook, no styling */
}
.logo-carousel {
    padding-left:0;
    padding-right:0;
    /* This pulls the Carousel past the 0.625rem padding of the column */
    margin-left:-0.625rem;
    margin-right:-0.625rem;
}
.logo-carousel .slick-track {
    display:flex;
	align-items:center;
    justify-content:center;
}
.logo-carousel__item {
    padding-left:1.5rem;
    padding-right:1.5rem;
}
.logo-carousel__link {
    display:flex;
    pointer-events:none;
}
.logo-carousel__link:hover {
    background-color:transparent;
}
.logo-carousel__link:is(:active, :focus, :focus-visible) {
    text-decoration:none;
}
.logo-carousel__link:active {
}
.logo-carousel__link:is(:focus, :focus-visible) {
}
.logo-carousel__logo {
    display:block;
    -webkit-transform:scale(1);
    -ms-transform:scale(1);
    transform:scale(1);
	-webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
}
.logo-carousel__link:hover .logo-carousel__logo {
	-webkit-transform:scale(1.1);
    -ms-transform:scale(1.1);
    transform:scale(1.1);
}
/*- Autoplay Button -*/
.logo-carousel .slick-autoplay-toggle-button {
    left:0.625rem;
}
@media (min-width: 1024px) {
    .logo-carousel__item {
        padding-left:3rem;
        padding-right:3rem;
    }
}


/************************************
/*----------------------------------
/*  CHART
/*----------------------------------
/*************************************/


.chart {
    border-right:1px solid var(--color-base);
    border-bottom:1px solid var(--color-base);
    margin-bottom:1.625rem;
}
.chart__head {
}
.chart__cell {
    padding:1.313rem 0.625rem 0;
    height:100%;
    border-top:1px solid var(--color-base);
    border-left:1px solid var(--color-base);
}
.chart__cell--head {
}
.chart__title,
.chart__subtitle,
.chart__text {
    font-size:var(--font-size-base);
    text-align:center;
    color:inherit;
}
.chart__title,
.chart__subtitle {
    font-weight:700;
}
.chart__img {
    display:block;
    margin:2rem auto 0.5rem;
}
.chart__icon {
    float:left;
    margin-right:0.75rem;
    margin-top:-0.313rem;
}
.chart__icon--chart-body {
    float:none;
    display:block;
    margin:0 auto 0.5rem;
}
.chart__subtitle {
}
.chart.color-white,
.chart.color-white .chart__cell  {
    border-color:rgba(var(--color-white-rgb), 0.5);
}
@media all and (min-width:1024px) {
    .chart__cell {
        padding:2rem 1.5rem 0.5rem;
    }
    .chart__title {
        font-size:var(--font-size-h4);
    }
    .chart__subtitle {
        font-size:var(--font-size-h6);
    }
    .chart__subtitle,
    .chart__text {
        text-align:left;
    }
}


/************************************
/*----------------------------------
/*  FLOW CHART
/*----------------------------------
/*************************************/


.flow-chart {
    margin-bottom:1.625rem;
    padding-left:25px;
    color:var(--color-white);
}
.flow-chart__level {
    position:relative;
    margin-left:-0.625rem;
    margin-right:-0.625rem;
    display:-ms-flexbox;
    display:flex;
    -ms-flex-flow:row wrap;
    flex-flow:row wrap;
    flex-wrap:wrap;
    /* Center Align Items */
    -ms-flex-pack:center;
    justify-content:center;
}
.flow-chart__cell {
    padding:0 0.625rem;
    -ms-flex:0 0 100%;
    flex:0 0 100%;
    max-width:100%;
}
.flow-chart__cell--level1 {
}
.flow-chart__cell--level2 {
}
.flow-chart__cell--level3 {   
}
.flow-chart__head {
    position:relative;
    margin-top:4rem;
    height:90px;
    width:100%;
    font-size:var(--font-size-base);
    line-height:1.2;
    border:1px solid var(--color-white);
}
.flow-chart__head--level1 {
    margin-top:0;
    font-size:var(--font-size-h6);
    background-color:var(--color-white);
    color:var(--color-primary);
    -webkit-box-shadow: 0px 25px 50px 0px rgba(var(--color-black-rgb),0.15);
    -moz-box-shadow: 0px 25px 50px 0px rgba(var(--color-black-rgb),0.15);
    box-shadow: 0px 25px 50px 0px rgba(var(--color-black-rgb),0.15);
}
.flow-chart__title {
    margin-bottom:0;
    padding:0 1rem;
    font-weight:700;
    font-size:inherit;
    color:inherit;
    position:absolute;
    left:0;
    right:0;
    top:50%;
	-webkit-transform:translateY(-50%);
	transform:translateY(-50%);
}
.flow-chart__card {
    position:relative;
    isolation:isolate;
    padding:3rem 1rem 1rem;
    background-color:var(--color-white);
    color:var(--color-primary);
    -webkit-box-shadow: 0px 25px 50px 0px rgba(var(--color-black-rgb),0.15);
    -moz-box-shadow: 0px 25px 50px 0px rgba(var(--color-black-rgb),0.15);
    box-shadow: 0px 25px 50px 0px rgba(var(--color-black-rgb),0.15);
    border:1px solid rgba(var(--color-white-rgb), 0.5);
    margin-top:4rem;
}
.flow-chart__icon {
    display:block;
    margin-bottom:1rem;
}
.flow-chart__text {
    color:inherit;
}
/* Arrows */
.flow-chart__head--level1::after,
.flow-chart__card::after {
    width:15px;
    height:30px;
    background:var(--color-white);
    -webkit-mask-image:url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='a' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' width='15' height='30' viewBox='0 0 24.04 48'%3E%3Cpath d='M11.99,0c-1.1.02-1.99.92-1.97,2.03v38.68l-6.64-6.14c-.8-.76-2.07-.73-2.83.07-.76.8-.73,2.07.07,2.83.02.01.03.03.05.04l11.36,10.51,11.36-10.51c.82-.74.89-2,.15-2.82-.38-.42-.91-.66-1.47-.66-.52,0-1.02.19-1.4.55l-6.64,6.14V2.03C14.04.92,13.16.02,12.05,0c-.02,0-.04,0-.06,0Z' style='stroke-width: 0px;'/%3E%3C/svg%3E");
    mask-image:url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='a' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' width='15' height='30' viewBox='0 0 24.04 48'%3E%3Cpath d='M11.99,0c-1.1.02-1.99.92-1.97,2.03v38.68l-6.64-6.14c-.8-.76-2.07-.73-2.83.07-.76.8-.73,2.07.07,2.83.02.01.03.03.05.04l11.36,10.51,11.36-10.51c.82-.74.89-2,.15-2.82-.38-.42-.91-.66-1.47-.66-.52,0-1.02.19-1.4.55l-6.64,6.14V2.03C14.04.92,13.16.02,12.05,0c-.02,0-.04,0-.06,0Z' style='stroke-width: 0px;'/%3E%3C/svg%3E");
    content:"";
    position:absolute;
    left:1rem;   
}
.flow-chart__head--level1::after {
    top:calc(100% + 1rem);
}
.flow-chart__card::after {
    top:-3rem;
}
/*---> Lines <---*/
/* Vertical */
.flow-chart__head--level2::after,
.flow-chart__head--level3::after,
.flow-chart__card::before {
    content:'';
    width:1px;
    height:calc(100% + 4.125rem);
    background:var(--color-white);
    position:absolute;
    left:-25px;
}
.flow-chart__head--level2::after {
    top:50%;
}
.flow-chart__head--level3::after,
.flow-chart__card::before {
    top:0;
}
.flow-chart__cell--level3:last-of-type .flow-chart__head--level3::after {
    top:calc(-50% - 4.125rem);
}
.flow-chart__cell--level3:last-of-type .flow-chart__card::before {
    display:none;
}
/* Horizontal */
.flow-chart__head--level2::before,
.flow-chart__head--level3::before {
    content:'';
    width:25px;
    height:1px;
    background:var(--color-white);
    position:absolute;
    top:50%;
    left:-25px;
}
@media all and (min-width:1024px) {    
    .flow-chart {
        padding-left:0;
    }
    .flow-chart__cell {
        -ms-flex:0 0 25%;
        flex:0 0 25%;
        max-width:25%;
        text-align:center;
    }    
    .flow-chart__icon {
        margin-left:auto;
        margin-right:auto;
    }    
    .flow-chart__title {
        padding-left:0.5rem;
        padding-right:0.5rem;
    }
    .flow-chart__level--level2 {
        padding-bottom:4rem;
    }
    /* Arrows */    
    .flow-chart__head--level1::after,
    .flow-chart__card::after {
        left:calc(50% - 7px);
    }
    /*---> Lines <---*/
    /* Horizontal (switch from Vertical)*/
    .flow-chart__head--level2::before,
    .flow-chart__head--level3::before {
        width:1px;
        height:4.063rem;
        left:50%;
    }
    .flow-chart__head--level2::before {
        top:100%;
    }
    .flow-chart__head--level3::before {
        top:-4.063rem;
    }
    /* Vertical (switch from Horizontal) */
    .flow-chart__head--level2::after,
    .flow-chart__card::before {
        display:none;
    }
    .flow-chart__head--level3::after {
        width:calc(100% + 1.375rem);
        height:1px;
        left:50%;
    }
    .flow-chart__head--level3::after,
    .flow-chart__cell--level3:last-of-type .flow-chart__head--level3::after {
        top:-4.063rem;
    }
    .flow-chart__cell--level3:last-of-type .flow-chart__head--level3::after {
        left:auto;
        right:50%;
    }
}


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


.cmForm {
}
.formElements h2 {
	/* Resets to match default h2 styling from baseStyles.css */
	font-size:var(--font-size-h2);
	color:var(--color-primary);
	margin-bottom:1.625rem;
}
.formElements h2,
.formElements p,
.form-title,
.form-text {
	text-align:center;
}
.formElements .formRow {
	clear:both;
	margin-left:auto;
	margin-right:auto;
}
.formElements .formRow > ul {
	width:100%;
	padding:0;
	margin:0;
	display:block;
	margin:0;
}
.formElements label, .formElements fieldset legend, #ecomTotal label {
	padding-bottom:0.625rem;
	font-weight:400;
}
.formElements span label {
	font-family:inherit;
	font-size:var(--font-size-base);
    font-weight:400;
    line-height:1;
	color:var(--color-base);
	vertical-align:middle;
	margin:0;
	padding-bottom:0.250rem;
}
.formElements .formRow > ul > li.required > label::after,
.formElements .formRow > ul > li.required legend::after {
	font-family:inherit;	
	font-weight:400;
	font-size:1rem;
	color:#d40000;
}
.formElements .row > ul > li,
.formElements .formRow > ul > li {
	display:block;
	width:100%;
	position:relative;
	margin:0 0 1.25rem 0;
	padding:0;
	text-indent:0;
}
.formElements .row > ul > li::before, .formElements .formRow > ul > li::before {
    display:none;
}
.currentForm input[type="submit"] {
    margin-top:0;
}
li[id^="date_picker"] {
	position:relative;
}
.ui-datepicker-trigger,
.formElements li[id^="date_picker"] .smaller {
	display:none;
}
@media all and (min-width:40rem) { /*- 640px and up -*/
	/*---> Forms [Spacing]  <---*/
	.formElements .formRow ul > li {
		padding-right:0.938rem; 
	}
	.formElements .formRow ul > li:only-child {
		width: 100%;
	}
	.formElements .formRow ul > li:last-child,
	.formElements .formRow ul > li:only-child {
		padding-right:0;
	}
	.formElements .formRow ul > li:nth-last-child(n+2):nth-last-child(-n+2):first-child,
	.formElements .formRow ul > li:nth-last-child(n+2):nth-last-child(-n+2):first-child ~ li {
		width: 50%;
	}
	.formElements .formRow ul > li:nth-last-child(n+3):nth-last-child(-n+3):first-child,
	.formElements .formRow ul > li:nth-last-child(n+3):nth-last-child(-n+3):first-child ~ li {
		width: 33.333%;
	}
	.formElements .formRow ul > li:nth-last-child(n+4):nth-last-child(-n+4):first-child,
	.formElements .formRow ul > li:nth-last-child(n+4):nth-last-child(-n+4):first-child ~ li {
		width: 25%;
	}
	.formElements .formRow ul > li.radio fieldset span,
	.formElements .formRow ul > li.checkbox fieldset span {
		float:left;
	}
	.formElements .formRow ul > li.radio fieldset span:not(:last-of-type),
	.formElements .formRow ul > li.checkbox fieldset span:not(:last-of-type) {
		margin-right:1.5rem;
	}
}


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


.colophon {
    background-color:var(--color-primary);
    color:var(--color-white);
    text-align:center;
}
.branding-link--for-colophon {
    max-width:100%;
	width:265px;
}
.colophon__text {
}
.colophon__text--has-copyright {
    font-size:0.938rem;
}
.colophon__link {
    font-weight:inherit;
    color:inherit;
}
.colophon__link:hover {
}
.social-list--for-colophon {
    margin-bottom:3rem;
    justify-content:center;
}
.social-link--for-colophon {
    background:var(--color-white);
}
.social-link--for-colophon:is(:hover) {
    background:var(--color-secondary);
}
.social-link--for-colophon:is(:active) {
    background:var(--color-secondary-dark);
    -webkit-box-shadow: 0 0 0 2px var(--color-white), 0 0 0 4px var(--color-secondary-dark);
    -moz-box-shadow: 0 0 0 2px var(--color-white), 0 0 0 4px var(--color-secondary-dark);
    box-shadow: 0 0 0 2px var(--color-white), 0 0 0 4px var(--color-secondary-dark);
}
.social-link--for-colophon:is(:focus, :focus-visible) {
    background:var(--color-secondary);
    -webkit-box-shadow: 0 0 0 2px var(--color-white), 0 0 0 4px var(--color-secondary);
    -moz-box-shadow: 0 0 0 2px var(--color-white), 0 0 0 4px var(--color-secondary);
    box-shadow: 0 0 0 2px var(--color-white), 0 0 0 4px var(--color-secondary);
}
.social-link--for-colophon:not(:hover, :active, :focus, :focus-visible) .social-link__icon {
    fill:var(--color-primary);
}
.row--has-colophon-branding {
    position:relative;
}
.row--has-colophon-branding::after {
    content:'';
    display:block;
    height:0;
    line-height:0;
    border-top:1px solid rgba(var(--color-white-rgb), 0.3);
    position:absolute;
    bottom:0;
    left:0.625rem;
    right:0.625rem;
}
@media all and (min-width:1024px) {
    .colophon {
        text-align:left;
    }
	.social-list--for-colophon {
		justify-content:flex-end;
	}
    .social-list--for-colophon {
        margin-bottom:1.625rem;
    }
}