/*------>>> TABLE OF CONTENTS <<<-------
    - CUSTOM RESETS [Building on normalize.css being pulled with Foundation]
    - FOUNDATION RESETS
    - BASE STYLES

/*------->>> COLOR PALETTE <<<-------
	var(--color-primary) - rgb(85, 194, 196) | Primary Color [Teal Blue]
	var(--color-secondary) - rgb(239, 63, 52) | Secondary Color [Red]
	var(--color-tertiary) - rgb(255, 190, 16) | Tertiary Color [Yellow]
	Neutral Colors:
        #F8F6F0 - rgb(248, 246, 240) | Light Tan [Light Tan]
	#F2EFE6 - rgb(242, 239, 230) | Medium Tan [Medium Tan]
	var(--color-base) - rgb(59, 60, 60) | Base Font Color [Off Black, Soft]
	#ffffff - rgb(255,255,255) | White
	#000000 - rgb(0,0,0) | Black

/*------->>> FONT STACKS & TYPOGRAPHY <<<-------
    font-family: var(--font-primary); [Primary Font | 300 400 700]
    font-family: var(--font-secondary); [Secondary Font | 400 700]
*/



/************************************
/*----------------------------------
/* CUSTOM RESETS
/*----------------------------------
/*************************************/


html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    /* Smooth Scrolling for any Anchor Links */
}

html,
html a,
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html,
body {
    height: auto;
    min-height: 100%;
    overflow-x: hidden;
}

body {
    line-height: 1;
    box-sizing: border-box;
    margin: 0;
    overflow-x: hidden;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

::-moz-focus-inner {
    padding: 0;
    border: 0;
}

/*---> Box Model Reset <---*/
*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/*---> Form Resets <---*/
input,
label,
select,
button,
textarea {
    margin: 0;
    display: inline-block;
    vertical-align: middle;
    white-space: normal;
    line-height: 1;
    /* Browsers have different default form fonts */
    font-size: 13px;
    font-family: inherit;
}

/* These elements are usually rendered a certain way by the browser */
button,
input[type=reset],
input[type=button],
input[type=submit],
input[type=checkbox],
input[type=radio],
select {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

input[type=search] {
    -webkit-appearance: textfield;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

::-webkit-search-decoration {
    display: none;
}

button,
input[type="reset"],
input[type="button"],
input[type="submit"] {
    /* Fix IE7 display bug */
    overflow: visible;
    width: auto;
}

::-webkit-file-upload-button {
    padding: 0;
    border: 0;
    background: none;
}

textarea {
    vertical-align: top;
    overflow: auto;
}

select[multiple] {
    vertical-align: top;
}


/************************************
/*----------------------------------
/* FOUNDATION RESETS
/*----------------------------------
/*************************************/

.row {
    max-width: 1170px;
    max-width: 73.125rem;
}

/*---> Reset Card Styling <---*/
.card {
    display: block;
    margin-bottom: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: initial;
    color: inherit;
}

.card> :last-child {
    margin-bottom: inherit;
}

/*---> Reset Button Styling <---*/
.button {
    display: initial;
    vertical-align: initial;
    margin: 0;
    font-family: inherit;
    padding: 0;
    -webkit-appearance: none;
    border: 0;
    border-radius: 0;
    transition: none;
    font-size: inherit;
    line-height: inherit;
    text-align: inherit;
    cursor: inherit;
    background-color: transparent;
    color: inherit;
}

/*---> Reset Callout Styling <---*/
.callout {
    position: relative;
    margin: 0;
    margin-bottom: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background-color: transparent;
    color: inherit;
}

@media all and (min-width:64rem) {

    /*- 1024px and up -*/
    .large-shrink {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        max-width: 100%;
    }

    .large-expand {
        max-width: 100%;
    }
}

/************************************
/*----------------------------------
/* BASE STYLES
/*----------------------------------
/*************************************/


body {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 1rem;
    font-size: 16px;
    color: var(--color-base);
    line-height: 1;
}

/*- Set Vertical Spacing between Block Elements -*/
blockquote,
dl,
figcaption,
form,
h1,
.like-h1,
h2,
.like-h2,
h3,
.like-h3,
h4,
.like-h4,
h5,
.like-h5,
h6,
.like-h6,
hr,
ol,
p,
table,
ul {
    margin-bottom: 1rem;
}

a {
    color: var(--color-primary);
    font-weight: 700;
    transition: all 200ms ease-in-out;
    -webkit-transition: all 200ms ease-in-out;
}

a:hover {
    color: var(--color-primary);
    /* background: #fcf0e3; */
}

a:active {
    color: var(--color-secondary);
}

a:focus,
a:focus-visible {
    color: var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
    outline: 0;
}

p {
    font-size: 1rem;
    line-height: 1.625;
}

blockquote,
blockquote p,
cite {
    font-size: 1rem;
    line-height: 1.625;
    color: var(--color-base);
}

i,
/* Legacy */
em {
    /* Replaces Legacy <i> */
    font-style: italic;
}

strong {
    font-weight: bold;
}

small {
    font-size: 80%;
}

h1,
.like-h1,
h2,
.like-h2,
h3,
.like-h3,
h4,
.like-h4,
h5,
.like-h5,
h6,
.like-h6 {
    line-height: 1.3;
}

h1,
.like-h1 {
    font-size: 3rem;
    font-family: var(--font-secondary);
    font-weight: 400;
    color: var(--color-primary);
}

h2,
.like-h2 {
    font-size: 2.625rem;
    font-family: var(--font-secondary);
    font-weight: 400;
    color: var(--color-base);
}

h3,
.like-h3 {
    font-size: 1.875rem;
    font-family: var(--font-secondary);
    font-weight: 400;
    color: var(--color-base);
}

h4,
.like-h4 {
    font-size: 1.625rem;
    font-weight: 700;
    color: var(--color-base);
}

h5,
.like-h5 {
    font-size: 1.5rem;
}

h6,
.like-h6 {
    font-size: 1.125rem;
}

h1 small,
.like-h1 small,
h2 small,
.like-h2 small,
h3 small,
.like-h3 small,
h4 small,
.like-h4 small,
h5 small,
.like-h5 small,
h6 small,
.like-h6 small {
    /* color: inherit; */
    font-family: var(--font-primary);
    color: var(--color-base);
    font-size: 1rem;
    font-weight: bold;
    line-height: inherit;
    display: block;
    text-transform: uppercase;
    letter-spacing: .1em;
}

ul {
    list-style: none;
}

ul li::before {
    content: "\2022";
    color: var(--sectional-color);
    font-weight: bold;
    display: inline-block;
    width: 1rem;
    margin-left: -1rem;
}

ol {
    list-style: none;
}

ol li {
    counter-increment: step-counter;
}

ol li::marker {
    content: counter(step-counter) ". ";
    color: var(--sectional-color);
    font-weight: bold;
}

label,
fieldset legend {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1;
    color: var(--color-base);
}

/* Should I remove the "form" before the selectors? */
form input[type=text],
form input[type=email],
form input[type=tel],
form textarea,
form select,
select {
    background-color: #fff;
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: 46px;
    margin: 0;
    padding: 0.688rem 0.875rem;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-base);
    border: 2px solid #c4c4c4;
    border-radius: 6px;
    box-shadow: none;
    transition: all 200ms ease-in-out;
    -webkit-transition: all 200ms ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

form textarea {
    height: auto;
}

form select,
select,
form select:focus,
select:focus,
form select:focus-visible,
select:focus-visible {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 998 582'%3E%3Cpath d='M998,83c0,8.67-3.33,16.33-10,23l-466,466c-6.67,6.67-14.33,10-23,10s-16.33-3.33-23-10L10,106C3.33,99.33,0,91.67,0,83s3.33-16.33,10-23L60,10C66.67,3.33,74.33,0,83,0s16.33,3.33,23,10L499,403,892,10c6.67-6.67,14.33-10,23-10s16.33,3.33,23,10l50,50c6.67,6.67,10,14.33,10,23Z'/%3E%3C/svg%3E");
    background-position: right center;
    background-repeat: no-repeat;
    background-size: 12px 7px;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
}

form input[type=text]:focus,
form input[type=email]:focus,
form input[type=tel]:focus,
form textarea:focus,
form select:focus,
select:focus,
form input[type=text]:focus-visible,
form input[type=email]:focus-visible,
form input[type=tel]:focus-visible,
form textarea:focus-visible,
form select:focus-visible,
select:focus-visible {
    background-color: #fff;
    border: 2px solid var(--color-primary);
    outline: 0;
    box-shadow: none;
}

form input[type=radio]:focus,
form input[type=checkbox]:focus,
form input[type=radio]:focus-visible,
form input[type=checkbox]:focus-visible {
    outline: 0;
    border: 0;
    -webkit-box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--color-primary);
    -moz-box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--color-primary);
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--color-primary);
}

form input[type=text]:active,
form input[type=email]:active,
form input[type=tel]:active,
form textarea:active,
form select:active {
    background-color: #fff;
    border: 2px solid var(--color-primary);
    box-shadow: none;
}

form input[type=radio]:active,
form input[type=checkbox]:active {
    outline: 0;
    border: 0;
    -webkit-box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--color-primary);
    -moz-box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--color-primary);
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--color-primary);
}

form input[type=radio],
form input[type=checkbox] {
    margin: 0 0.313rem 0.250rem 0;
}

/***********************

	The submit and button styling should match the button styling selected from the SuperTemplate - Adjust border-radius etc

***********************/
input[type="submit"],
button,
input[type="button"] {
    display: inline-block;
    width: auto;
    padding: 1rem 1.813rem;
    margin: 0;
    position: relative;
    background-color: var(--color-base);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    text-align: center;
    border: 0;
    border-radius: 30px;
    box-shadow: none;
    cursor: pointer;
    /* transition: all 200ms ease-in-out;
    -webkit-transition: all 200ms ease-in-out; */
}

button,
input[type="button"] {
    background-color: var(--color-base);
}

input[type="submit"]:hover {
    background-color: #A2A3A3;
    color: #fff;
}

input[type="submit"]:active {
    background-color: var(--color-primary);
    color: #fff;
}

input[type="submit"]:focus,
input[type="submit"]:focus-visible {
    background-color: var(--color-primary);
    border: 0;
    outline: 0;
    color: #fff;
    -webkit-box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--color-primary);
    -moz-box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--color-primary);
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--color-primary);
}

button:hover,
input[type="button"]:hover {
    background-color: #142742;
    color: #fff;
}

button:active,
input[type="button"]:active {
    background-color: #08101b;
    color: #fff;
}

button:focus,
button:focus-visible,
input[type="button"]:focus,
input[type="button"]:focus-visible {
    border: 0;
    outline: 0;
    background-color: var(--color-primary);
    color: #fff;
    -webkit-box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--color-primary);
    -moz-box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--color-primary);
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--color-primary);
}


/* BUTTON WITH NORMAL LINK STYLE */

button.simple-link {
    color: var(--color-primary);
    background: none;
    padding: 0;
    font-weight: 700;
    transition: all 200ms ease-in-out;
    -webkit-transition: all 200ms ease-in-out;
}

button.simple-link:hover {
    color: var(--color-base);
    /* background: #fcf0e3; */
}

button.simple-link:active {
    color: var(--color-base);
}

button.simple-link:focus,
button.simple-link:focus-visible {
    color: var(--color-primary);
    /* border-bottom: 2px solid var(--color-primary); */
    outline: 0;
    box-shadow: none;
    -webkit-box-shadow: none;
    border: none;
    border-radius: 0px;
}
/*---> Video Play Button <---*/
.has-play-btn {
	display:inline-block;
	line-height:0;
	position:relative;
	background-color:#fff;
	isolation:isolate;
}
.has-play-btn:is(:active, :focus-visible) {
	text-decoration:none;
}
.has-play-btn img {
    opacity:0.55;
    transition:all 200ms ease-in-out;
    -webkit-transition:all 200ms ease-in-out;
	z-index:1;
}
.has-play-btn:is(:hover, :active, :focus-visible) img {
    opacity:1;
}
.has-play-btn::before {
	display:block;
	width:125px;
	height:125px;
	background:rgba(255,255,255, 0.35);
	content:"";
	position:absolute;
	left:50%;
	top:50%;
	-webkit-transform:translate(-50%,-50%);
	transform:translate(-50%,-50%);
	border-radius:100%;
	overflow:hidden;
    transition:all 200ms ease-in-out;
    -webkit-transition:all 200ms ease-in-out;
	z-index:2;
}
.has-play-btn:is(:hover, :active)::before {
	background:rgba(255,255,255, 0.87);
}
.has-play-btn:active::before {
    -webkit-box-shadow: 0 0 0 2px var(--color-primary);
	-moz-box-shadow: 0 0 0 2px var(--color-primary);
	box-shadow:0 0 0 2px var(--color-primary);
}
.has-play-btn:is(:focus, :focus-visible)::before {
    outline:0;
}
.has-play-btn:is(:focus-visible)::before {
    -webkit-box-shadow: 0 0 0 2px var(--color-secondary);
	-moz-box-shadow: 0 0 0 2px var(--color-secondary);
	box-shadow: 0 0 0 2px var(--color-secondary);
}
.has-play-btn::after {
	display:block;
	width:106px;
	height:106px;
	content:"";
	background:#fff;
	-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 106.23 106.23' width='106' height='106'%3E%3Cg%3E%3Cpath d='M80.7,50.58l-39.18-22.62c-1.4-.81-3.19-.33-4,1.07-.26.44-.39.95-.39,1.46v45.24c0,1.62,1.31,2.93,2.93,2.93.51,0,1.02-.14,1.46-.39l39.18-22.62c1.4-.81,1.88-2.6,1.07-4-.26-.45-.63-.81-1.07-1.07'/%3E%3Cpath d='M53.12,106.23C23.78,106.23,0,82.45,0,53.12,0,23.78,23.78,0,53.11,0c29.33,0,53.12,23.78,53.12,53.11h0c-.03,29.32-23.79,53.08-53.11,53.12M53.12,1.64C24.68,1.64,1.64,24.68,1.64,53.11s23.05,51.48,51.48,51.48,51.48-23.05,51.48-51.48c-.03-28.42-23.06-51.45-51.48-51.48'/%3E%3C/g%3E%3C/svg%3E%0A");
	mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 106.23 106.23' width='106' height='106'%3E%3Cg%3E%3Cpath d='M80.7,50.58l-39.18-22.62c-1.4-.81-3.19-.33-4,1.07-.26.44-.39.95-.39,1.46v45.24c0,1.62,1.31,2.93,2.93,2.93.51,0,1.02-.14,1.46-.39l39.18-22.62c1.4-.81,1.88-2.6,1.07-4-.26-.45-.63-.81-1.07-1.07'/%3E%3Cpath d='M53.12,106.23C23.78,106.23,0,82.45,0,53.12,0,23.78,23.78,0,53.11,0c29.33,0,53.12,23.78,53.12,53.11h0c-.03,29.32-23.79,53.08-53.11,53.12M53.12,1.64C24.68,1.64,1.64,24.68,1.64,53.11s23.05,51.48,51.48,51.48,51.48-23.05,51.48-51.48c-.03-28.42-23.06-51.45-51.48-51.48'/%3E%3C/g%3E%3C/svg%3E%0A");
	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;
	z-index:3;
}
.has-play-btn:is(:hover, :active)::after {
    background:var(--color-primary);
}
.has-play-btn:is(:focus-visible)::after {
    background:var(--color-secondary);
}

/************************************
/*----------------------------------
/* NAVIGATION UTILITY BAR
/*----------------------------------
/*************************************/

.svg-container {
    /*- Should this move to baseStyle.css?? -*/
    position: absolute;
    height: 0;
}

.masthead {
    position: relative;
    background: #fff;
    z-index: 10000;
    box-shadow: 0px 10px 25px 0px rgba(0,0,0,0.15)
}

.masthead>.row>.columns:nth-of-type(2) {
    position: relative;
}

.masthead>.row>.columns:nth-of-type(2):before {
    background: #f5f5f5;
    margin: 0 auto;
    content: "";
    width: 100vw;
    height: 100%;
    position: absolute;
    top: 0;
    left: -50vw;
    right: -50vw;
    z-index: -1;
}

.masthead-branding-link {
    display: block;
    margin: 0.938rem auto;
    width: 100%;
    max-width: 195px;
}

.masthead-branding-link svg {
    display: block;
    width: 100%;
    height: auto;
    transition: all 200ms ease-in-out;
    -webkit-transition: all 200ms ease-in-out;
}

.masthead-branding-link .logo-empoweren-icon-svg01 {
    fill: var(--color-base);
}

.masthead-branding-link .logo-empoweren-icon-svg02 {
    fill: url(#radial-gradient-one);
}

.masthead-branding-link:hover {
    background: transparent;
    /* Reset from base link styling */
}

.masthead-branding-link:hover .logo-empoweren-icon-svg01,
.masthead-branding-link:hover .logo-empoweren-icon-svg02 {
    fill: #ba5b0a;
}

.masthead-branding-link:active {
    background: transparent;
}

.masthead-branding-link:active .logo-empoweren-icon-svg01,
.masthead-branding-link:active .logo-empoweren-icon-svg02 {
    fill: #9a4b08;
}

.masthead-branding-link:focus,
.masthead-branding-link:focus-visible {
    background: transparent;
    border: 0;
    outline: 0;
    /* -webkit-box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--color-primary);
    -moz-box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--color-primary);
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--color-primary); */
}

.masthead-utility-list {
    margin: 0 -0.625rem;
    /*- Pull to override the column padding -*/
    display: flex;
}

.masthead-utility-item {}

.masthead-utility-item:before {
    display: none;
    /* Reset from base li styles */
}

.masthead-utility-link {
    height: 100%;
    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: 400;
}

.masthead-utility-link,
.masthead-utility-link:focus,
.masthead-utility-link:focus-visible {
    color: var(--color-primary);
    /* base font color */
}

.masthead-utility-link:hover,
.masthead-utility-link:active,
.masthead-utility-link:focus,
.masthead-utility-link:focus-visible {
    background: transparent;
    border: 0;
}

.masthead-utility-link:focus,
.masthead-utility-link:focus-visible {
    outline: 0;
    border: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.has-phone .masthead-utility-link {
    color: #fff;
}

.has-phone .masthead-utility-link,
.has-phone .masthead-utility-link:focus,
.has-phone .masthead-utility-link:focus-visible {
    background: var(--color-primary);
}

.has-phone .masthead-utility-link:hover {
    background: var(--color-base);
}

.has-phone .masthead-utility-link:active {
    background: var(--color-primary);
}

.has-phone .masthead-utility-icon,
.has-phone .masthead-utility-link:hover .masthead-utility-icon,
.has-phone .masthead-utility-link:active .masthead-utility-icon,
.has-phone .masthead-utility-link:focus .masthead-utility-icon,
.has-phone .masthead-utility-link:focus-visible .masthead-utility-icon {
    fill: #fff;
}

.masthead-utility-button {
    background: transparent;
    padding: 0.75rem 1.125rem;
    font-size: 0;
    font-weight: 400;
    color: var(--color-base);
    /* base font color */
    line-height: 1.6;
    /* match the line height of the links */
    border-radius: 0;
    cursor: pointer;
}

.masthead-utility-button,
.masthead-utility-button:focus,
.masthead-utility-button:focus-visible {
    color: var(--color-base);
}

.masthead-utility-button:hover,
.masthead-utility-button:active {
    background: transparent;
}

.masthead-utility-button:hover {
    color: var(--color-primary);
}

.masthead-utility-button:active {
    color: var(--color-base);
}

.masthead-utility-button:focus,
.masthead-utility-button:focus-visible {
    background: transparent;
    outline: 0;
    border: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.masthead-utility-icon {
    fill: var(--color-base);
    pointer-events: none;
    vertical-align: middle
}

.masthead-utility-button:hover .masthead-utility-icon {
    fill: var(--color-primary);
}

.masthead-utility-button:active .masthead-utility-icon {
    fill: var(--color-base);
}

.masthead-utility-overflow {
    display: none;
}

/*- 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;
    }

    .masthead-branding-link {
        margin: 0;
        max-width: 255px;
    }

    .masthead-utility-list {
        margin: 0;
        /*- Reset negative margining -*/
        justify-content: flex-end;
    }

    .masthead-utility-link,
    .masthead-utility-button {
        padding: 0.250rem 0.625rem;
    }

    .has-phone .masthead-utility-link {
        margin-left: 0.625rem;
    }

    .masthead-utility-button {
        font-size: 1rem;
    }

    .masthead-utility-icon {
        margin-right: 0.313rem;
    }

    .masthead-utility-button .masthead-utility-icon {
        margin-top: -0.188rem;
    }

    .masthead-utility-overflow {
        display: inline-block;
    }
}

@media all and (min-width:1025px) {
    .masthead-hidden {
        will-change: transform;
        transform: translateY(-134px);
        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;
    }
}

/*- Search Modal -*/
.search-modal {
    /* background-color: rgba(29, 34, 46, 0.85); */
    /* #1d222e base font color */
    background-color: rgb(255 255 255 / 90%);
    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 {
    display: block;
    width: 100%;
    height: auto;
}

.search-modal-logo .logo-empoweren-icon-svg01 {
    fill: #fff;
}

.search-modal-logo .logo-empoweren-icon-svg02 {
    fill: url(#radial-gradient-one);
}

.search-form {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    height: 55px;
    padding-top: 0.313rem;
    padding-bottom: 0.313rem;
}

.search-label {
    display: block;
    color: #fff;
    margin: 0.625rem 0;
}

.search-form .search-input {
    width: calc(100% - 195px);
    /* 175 + 20px = 195 | 20px distance between input and submit */
    height: 50px;
    float: left;
    border-radius: 0;
}

.search-button[type="submit"] {
    margin: 0;
    padding: 0;
    width: 175px;
    height: 50px;
    float: right;
    border-radius: 0;
}

.search-close {
    background-color: var(--color-primary);
    border-radius: 0;
    width: 3.125rem;
    height: 3.125rem;
    position: absolute;
    top: 0;
    right: 0;
    transition: all 200ms ease-in-out;
    -webkit-transition: all 200ms ease-in-out;
    cursor: pointer;
}

.search-close:hover {
    background-color: var(--color-base);
}

.search-close:active {
    background: var(--color-primary);
}

.search-close:focus,
.search-close:focus-visible {
    background: var(--color-primary);
    border: 0;
    outline: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.search-close-icon {
    color: #ffffff;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

/*- Empoweren Search Results Page -*/
#search,
#Go {
    margin-bottom: 1rem !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 #dd6c0d;
    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;
}

/*- Primary Navigation -*/
.primary-nav {
    display: block;
    margin: 0 -0.625rem;
    /*- Pull to override the column padding -*/
    position: relative;
}


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

.hero-index {
    position: relative;
    height: 575px;
    overflow: hidden;
}

.hero-index-heading {
    margin: 0 auto;
    position: absolute;
    left: 32px;
    right: 32px;
    top: 50%;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    text-align: left;
    z-index: 100;
}

.hero-index-content {
    /*- This is placed 40px from the bottom in the comp with the slider arrows middle aligned to the content...but the content isn't part of the slider, so this is impossible.  Moved content to be middle aligned -*/
    margin: 0 auto;
    position: absolute;
    left: 32px;
    right: 32px;
    top: 50%;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    text-align: left;
}

.hero-index-title {
    font-size: 3.438rem;
    color: var(--color-base);
    font-family: var(--font-primary);
    font-weight: 300;
    text-transform: uppercase;
    line-height: 48px;
    letter-spacing: 4.4px;
    display: flex;
    flex-flow: wrap;
    margin-bottom: .5rem;
}

.hero-index-subtitle {
    font-size: 1.5rem;
    font-family: var(--font-primary);
    font-weight: 300;
    text-transform: uppercase;
}

@media all and (min-width:64rem) {
    .hero-index-subtitle {
        font-size: 1.75rem;
        margin-bottom: 0;
    }
}

.hero-yellow-circle {
    font-size: 1.125rem;
    letter-spacing: 1.8px;
    background-color: var(--color-tertiary);
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    height: 33px;
    width: 33px;
    border-radius: 100%;
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--color-tertiary);
}

.hero-index-text {
    font-size: 1.4rem;
    text-transform: uppercase;
    line-height: 26px;
}

.hero-index-title span {
    letter-spacing: 0;
}

@media all and (min-width:660px) {
    .hero-yellow-circle {
        margin-right: 105px;
    }
}

@media all and (min-width:768px) {
    .hero-index-title {
        /* font-size: 6.563rem; */
        /* letter-spacing: 7.35px;
        line-height: 83px; */
        font-size: 4.063rem;
        line-height: 60px;
        margin-bottom: 1rem;
    }

    .hero-yellow-circle {
        font-size: 2.25rem;
        margin-left: 18px;
        margin-right: 0px;
        height: 66px;
        width: 66px;
        box-shadow: 0 0 0 2px #fff, 0 0 0 6px var(--color-tertiary);
        letter-spacing: 3.6px;
    }

    /* .hero-index-title::before {
        content: "";
        background: url('../images/hero-yellow-circle.svg') no-repeat;
        height: 79px;
        width: 79px;
        display: block;
        position: relative;
        transform: translate(-50%, 0%);
        -webkit-transform: translate(-50%, 0%);
        left: 81%;
        top: 0%;
        z-index: 0;
    } */

    .hero-index-text {
        color: var(--color-base);
        font-size: 2.5rem;
        line-height: 40px;
        font-weight: 300;
    }

    .hero-index-heading {
        margin: 0 auto;
        position: absolute;
        left: 41px;
        right: 41px;
        top: 0%;
        -webkit-transform: translateY(84%);
        transform: translateY(84%);
        text-align: left;
        z-index: 100;
    }

    .hero-index-content {
        /*- This is placed 40px from the bottom in the comp with the slider arrows middle aligned to the content...but the content isn't part of the slider, so this is impossible.  Moved content to be middle aligned -*/
        margin: 0 auto;
        position: absolute;
        left: 44px;
        right: 44px;
        top: 50%;
        -webkit-transform: translateY(-20%);
        transform: translateY(-20%);
        text-align: left;
    }
}

.index-title {
    font-size: 3rem;
    flex-direction: column;
}

@media all and (min-width:1024px) {
    .index-title {
        font-size: 3rem;
        flex-direction: row;
    }
}

/*---> Slider <---*/
.js-hero-slider {
    /*- JS Hook, NO STYLING -*/
}

.hero-slider {
    width: 100%;
    margin: 0;
    position: relative;
    padding: 0;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 575px;
}

.hero-slide-img {
    display: block;
    margin: 0 auto;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    max-width: none;
    -o-object-fit: cover;
    object-fit: cover;
}

.hero-slider .slider-track {
    transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
}

/*- Arrows -*/
.hero-slider .slick-prev,
.hero-slider .slick-next {
    background: transparent;
    display: block;
    padding: 0;
    width: 44px;
    height: 44px;
    border-radius: 0;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(30%);
    transform: translateY(30%);
    cursor: pointer;
    color: transparent;
    box-shadow: none;
    z-index: 1;
    transition: all 200ms ease-in-out;
    -webkit-transition: all 200ms ease-in-out;
}

.hero-slider .slick-prev:focus,
.hero-slider .slick-prev:focus-visible,
.hero-slider .slick-next:focus,
.hero-slider .slick-next:focus-visible {
    -webkit-box-shadow: 0 0 0 2px var(--color-primary);
    -moz-box-shadow: 0 0 0 2px var(--color-primary);
    box-shadow: 0 0 0 2px var(--color-primary);
    outline: 0;
}

.hero-slider .slick-prev {
    left: 0;
}

.hero-slider .slick-next {
    right: 0;
}

.hero-slider .slick-prev:before,
.hero-slider .slick-next:before {
    margin: 0 auto;
    display: block;
    width: 10px;
    height: 18px;
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='18' viewBox='0 0 9.15 16'%3E%3Cpath d='M8.82,8.76L1.97,15.67c-.44,.44-1.15,.44-1.58,0-.44-.44-.44-1.15,0-1.58L6.44,7.98,.33,1.92c-.44-.44-.44-1.15,0-1.58,.44-.44,1.15-.44,1.58,0l6.91,6.85c.22,.22,.33,.5,.33,.79s-.11,.57-.33,.79' style='fill: %2355C2C4;'/%3E%3C/svg%3E");
    position: absolute;
    left: 50%;
    top: 50%;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.hero-slider .slick-prev:hover:before,
.hero-slider .slick-next:hover:before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='18' viewBox='0 0 9.15 16'%3E%3Cpath d='M8.82,8.76L1.97,15.67c-.44,.44-1.15,.44-1.58,0-.44-.44-.44-1.15,0-1.58L6.44,7.98,.33,1.92c-.44-.44-.44-1.15,0-1.58,.44-.44,1.15-.44,1.58,0l6.91,6.85c.22,.22,.33,.5,.33,.79s-.11,.57-.33,.79' style='fill: %233B3C3C;'/%3E%3C/svg%3E");
}

.hero-slider .slick-prev:active:before,
.hero-slider .slick-next:active:before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='18' viewBox='0 0 9.15 16'%3E%3Cpath d='M8.82,8.76L1.97,15.67c-.44,.44-1.15,.44-1.58,0-.44-.44-.44-1.15,0-1.58L6.44,7.98,.33,1.92c-.44-.44-.44-1.15,0-1.58,.44-.44,1.15-.44,1.58,0l6.91,6.85c.22,.22,.33,.5,.33,.79s-.11,.57-.33,.79' style='fill: %233B3C3C;'/%3E%3C/svg%3E");
}

.hero-slider .slick-prev:before {
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(180deg);
    transform: translate(-50%, -50%) rotate(180deg);
}

.hero-slider .slick-next:before {
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.hero-slider .slick-prev.slick-disabled:before,
.hero-slider .slick-next.slick-disabled:before {
    opacity: 0.5;
}

/*- Autoplay Button -*/
.hero-slider .slick-autoplay-toggle-button {
    display: block;
    padding: 0;
    width: 44px;
    height: 44px;
    position: absolute;
    bottom: 1.25rem;
    left: 0.625rem;
    background: transparent !important;
    border: 3px solid #fff;
    border-radius: 100%;
    transition: all 200ms ease-in-out;
    -webkit-transition: all 200ms ease-in-out;
    z-index: 1;
}

.hero-slider .slick-autoplay-toggle-button:hover {
    border-color: var(--color-primary);
}

.hero-slider .slick-autoplay-toggle-button:active {
    box-shadow: 0;
    border: 3px solid var(--color-base);
}

.hero-slider .slick-autoplay-toggle-button:focus,
.hero-slider .slick-autoplay-toggle-button:focus-visible {
    -webkit-box-shadow: 0 0 0 2px var(--color-primary);
    -moz-box-shadow: 0 0 0 2px var(--color-primary);
    box-shadow: 0 0 0 2px var(--color-primary);
    border: 3px solid #fff;
    outline: 0;
}

.hero-slider .slick-pause-icon,
.hero-slider .slick-play-icon {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 0;
    color: transparent;
}

.hero-slider .slick-play-icon:after {
    /* Play Icon */
    display: block;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 330 330' width='20' height='20'%3E%3Cpath d='M37.728,328.12c2.266,1.256,4.77,1.88,7.272,1.88c2.763,0,5.522-0.763,7.95-2.28l240-149.999c4.386-2.741,7.05-7.548,7.05-12.72c0-5.172-2.664-9.979-7.05-12.72L52.95,2.28c-4.625-2.891-10.453-3.043-15.222-0.4C32.959,4.524,30,9.547,30,15v300C30,320.453,32.959,325.476,37.728,328.12z' fill='%23ffffff' /%3E%3C/svg%3E") center center no-repeat;
    content: "";
    width: 30px;
    height: 30px;
    position: absolute;
    left: calc(50% + 0.188rem);
    top: calc(50% + 0.063rem);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    transition: all 200ms ease-in-out;
    -webkit-transition: all 200ms ease-in-out;
}

.hero-slider .slick-pause-icon:after {
    /* Pause Icon */
    display: block;
    background: url("data:image/svg+xml,%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 312 422' width='14' height='20'%3E%3Cpath d='m20.16,0C9.03,0,0,9.03,0,20.16v381.68c0,11.13,9.03,20.16,20.16,20.16h65.68c11.13,0,20.16-9.03,20.16-20.16V20.16c0-11.13-9.03-20.16-20.16-20.16,0,0-65.68,0-65.68,0Zm206,0c-11.13,0-20.16,9.03-20.16,20.16v381.68c0,11.13,9.03,20.16,20.16,20.16h65.68c11.13,0,20.16-9.03,20.16-20.16V20.16c0-11.13-9.03-20.16-20.16-20.16h-65.68Z' fill='%23fff' /%3E%3C/svg%3E") center center no-repeat;
    content: "";
    width: 30px;
    height: 30px;
    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;
}

.hero-slider .slick-autoplay-toggle-button:hover .slick-play-icon:after {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 330 330' width='20' height='20'%3E%3Cpath d='M37.728,328.12c2.266,1.256,4.77,1.88,7.272,1.88c2.763,0,5.522-0.763,7.95-2.28l240-149.999c4.386-2.741,7.05-7.548,7.05-12.72c0-5.172-2.664-9.979-7.05-12.72L52.95,2.28c-4.625-2.891-10.453-3.043-15.222-0.4C32.959,4.524,30,9.547,30,15v300C30,320.453,32.959,325.476,37.728,328.12z' fill='%2355C2C4' /%3E%3C/svg%3E") center center no-repeat;
}

.hero-slider .slick-autoplay-toggle-button:hover .slick-pause-icon:after {
    background: url("data:image/svg+xml,%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 312 422' width='14' height='20'%3E%3Cpath d='m20.16,0C9.03,0,0,9.03,0,20.16v381.68c0,11.13,9.03,20.16,20.16,20.16h65.68c11.13,0,20.16-9.03,20.16-20.16V20.16c0-11.13-9.03-20.16-20.16-20.16,0,0-65.68,0-65.68,0Zm206,0c-11.13,0-20.16,9.03-20.16,20.16v381.68c0,11.13,9.03,20.16,20.16,20.16h65.68c11.13,0,20.16-9.03,20.16-20.16V20.16c0-11.13-9.03-20.16-20.16-20.16h-65.68Z' fill='%2355C2C4' /%3E%3C/svg%3E") center center no-repeat;
}

.hero-slider .slick-autoplay-toggle-button:active .slick-play-icon:after {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 330 330' width='20' height='20'%3E%3Cpath d='M37.728,328.12c2.266,1.256,4.77,1.88,7.272,1.88c2.763,0,5.522-0.763,7.95-2.28l240-149.999c4.386-2.741,7.05-7.548,7.05-12.72c0-5.172-2.664-9.979-7.05-12.72L52.95,2.28c-4.625-2.891-10.453-3.043-15.222-0.4C32.959,4.524,30,9.547,30,15v300C30,320.453,32.959,325.476,37.728,328.12z' fill='%2355C2C4' /%3E%3C/svg%3E") center center no-repeat;
}

.hero-slider .slick-autoplay-toggle-button:active .slick-pause-icon:after {
    background: url("data:image/svg+xml,%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 312 422' width='14' height='20'%3E%3Cpath d='m20.16,0C9.03,0,0,9.03,0,20.16v381.68c0,11.13,9.03,20.16,20.16,20.16h65.68c11.13,0,20.16-9.03,20.16-20.16V20.16c0-11.13-9.03-20.16-20.16-20.16,0,0-65.68,0-65.68,0Zm206,0c-11.13,0-20.16,9.03-20.16,20.16v381.68c0,11.13,9.03,20.16,20.16,20.16h65.68c11.13,0,20.16-9.03,20.16-20.16V20.16c0-11.13-9.03-20.16-20.16-20.16h-65.68Z' fill='%2355C2C4' /%3E%3C/svg%3E") center center no-repeat;
}

/*- Screen Reader -*/
.hero-slider .slick-sr-only {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    border: 0;
}

@media all and (min-width:768px) {

    .hero-index,
    .hero-slide {
        height: 700px;
    }
}

@media all and (min-width:1170px) {

    .hero-slider .slick-prev,
    .hero-slider .slick-autoplay-toggle-button {
        left: calc(50% - 575px);
        /* Given an 1170 max row width, 1170/2 = 585, leaving room for 10px padding to edge, 585-10 = 575 */
    }

    .hero-slider .slick-next {
        right: calc(50% - 575px);
        /* Given an 1170 max row width, 1170/2 = 585, leaving room for 10px padding to edge, 585-10 = 575 */
    }

    .hero-slider .slick-autoplay-toggle-button {
        bottom: 2.875rem;
    }
}

@media all and (min-width:1920px) {

    .hero-index,
    .hero-slide {
        /* height: auto; */
    }

    .hero-slide-img {
        position: relative;
        width: 100%;
        height: auto;
        min-height: none;
        max-height: none;
        top: auto;
        left: auto;
        right: auto;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

/************************************
/*----------------------------------
/* BUTTON PILL
/*----------------------------------
/*************************************/


.btn {
    display: inline-block;
    width: auto;
    padding: 1rem 1.813rem;
    margin: 0;
    position: relative;
    background: var(--color-base);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 30px;
    cursor: pointer;
    transition: all 200ms ease-in-out;
    -webkit-transition: all 200ms ease-in-out;
}

.btn:hover {
    background: #A2A3A3;
    color: #fff;
}

.btn:active {
    background: var(--color-base);
    color: #fff;
}

.btn:focus,
.btn:focus-visible {
    -webkit-box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--color-base);
    -moz-box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--color-base);
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--color-base);
    background: var(--color-base);
    border: 1px solid transparent;
    color: #fff;
    outline: 0;
}

.btn-large {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

.btn-ghost {
    background: transparent;
}

.btn-ghost:hover {
    background: var(--color-primary);
    color: var(--color-base);
}

.btn-ghost:not(:hover):not(:active) {
    color: var(--color-base);
    border-color: var(--color-primary);
}

.btn-ghost:focus,
.btn-ghost:focus-visible {
    background: #ffffff;
    -webkit-box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px var(--color-primary);
    -moz-box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px var(--color-primary);
    box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px var(--color-primary);
    color: var(--color-base);
    border: 1px solid var(--color-primary);
}

.btn-ghost.btn-secondary:hover {
    background: var(--color-secondary);
    color: var(--color-white);
}

.btn-ghost.btn-secondary:not(:hover):not(:active) {
    color: var(--color-base);
    border-color: var(--color-secondary);
}

.btn-ghost.btn-secondary:focus,
.btn-ghost.btn-secondary:focus-visible {
    border: 1px solid var(--color-secondary);
}

.btn-ghost.btn-tertiary:hover {
    background: var(--color-tertiary);
}

.btn-ghost.btn-tertiary:not(:hover):not(:active) {
    color: var(--color-base);
    border-color: var(--color-tertiary);
}

.btn-ghost.btn-tertiary:focus,
.btn-ghost.btn-tertiary:focus-visible {
    border: 1px solid var(--color-tertiary);
}

.btn-alt:not(.btn-ghost) {
    background: #1c365c;
}

.btn-alt:hover {
    background: #142742;
}

.btn-alt:active {
    background: #08101b;
}

.btn-alt:focus,
.btn-alt:focus-visible {
    -webkit-box-shadow: 0 0 0 2px #fff, 0 0 0 4px #1c365c;
    -moz-box-shadow: 0 0 0 2px #fff, 0 0 0 4px #1c365c;
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #1c365c;
    background: #1c365c;
}

.btn-alt.btn-ghost:not(:hover):not(:active) {
    color: #1c365c;
    border-color: #1c365c;
}

.btn-alt.btn-ghost:not(:hover):not(:active):not(:focus):not(:focus-visible) {
    background: transparent;
}

.btn-alt.btn-ghost:focus,
.btn-alt.btn-ghost:focus-visible {
    background: #E7EBEE;
    -webkit-box-shadow: 0 0 0 2px #E7EBEE, 0 0 0 4px #1c365c;
    -moz-box-shadow: 0 0 0 2px #E7EBEE, 0 0 0 4px #1c365c;
    box-shadow: 0 0 0 2px #E7EBEE, 0 0 0 4px #1c365c;
}

.btn-alt.btn-ghost:hover {
    color: var(--color-white);
}


/************************************
/*----------------------------------
/* ICON CALLOUT
/*----------------------------------
/*************************************/

.icon-callout-link:hover .icon-callout {
    box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.05);
}

.icon-callout {
    position: relative;
}

.icon-callout-title.icon-callout-link {
    position: static;
}

.icon-callout-title.icon-callout-link:hover {
    color: var(--color-base);
}

.icon-callout-title.icon-callout-link::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.icon-callout-title.icon-callout-link:hover::after {
    box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.05);
}

.icon-callout {
    text-align: center;
    max-width: 275px;
    margin-left: auto;
    margin-right: auto;
}

.icon-callout-title {
    /* Default h6 size. Set size so can use whatever header is appropriate */
    font-size: 1.375rem;
    color: var(--color-base);
}

.icon-callout-text {}

.icon-callout-text.has-icon {}

.icon-callout-icon {
    width: auto;
    height: auto;
    /* Keep all the icons the same height to stack properly */
    max-height: 58px;
}

.icon-callout-circle {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width: 100px;
    height: 100px;
    border-radius: 100%;
    flex-shrink: 0;
}

.icon-callout-circle-yellow {
    background: var(--color-tertiary);
    box-shadow: 0 0 0 2px #fff, 0 0 0 11px var(--color-tertiary);
}

.icon-callout-circle-red {
    background: var(--color-secondary);
    box-shadow: 0 0 0 2px #fff, 0 0 0 10px var(--color-secondary);
}

.icon-callout-circle-blue {
    background: var(--color-primary);
    box-shadow: 0 0 0 2px #fff, 0 0 0 10px var(--color-primary);
}

.icon-callout-circle-black {
    background: var(--color-base);
    box-shadow: 0 0 0 2px #fff, 0 0 0 10px var(--color-base);
}

.icon-callout-circle .icon-callout-icon {
    /* Keep all the icons the same height to fit properly */
    max-height: 53px;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

/************************************
/*----------------------------------
/* SPLIT PANEL
/*----------------------------------
/*************************************/

.split-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;
}

.split-panel-media {
    position: relative;
}

.split-panel-img {
    display: block;
    width: 100%;
}

.split-panel-content {
    padding: 3rem 0;
}

.split-panel-title {
    /* Default h4 size. Set size so can use whatever header is appropriate */
    font-size: 2.625rem;
    font-family: var(--font-secondary);
    font-weight: 400;
}

@media all and (min-width:1024px) {
    .split-panel-content {
        padding: 10% 0 calc(10% - 1rem);
        position: relative;
        z-index: 1;
    }

    .split-panel>.row {
        align-items: stretch;
    }

    .panel-pseudo-yellow::before {
        border-radius: 100%;
        background-color: var(--color-tertiary);
        content: "";
        height: 232px;
        width: 232px;
        display: block;
        position: absolute;
        transform: translate(-62%, -50%);
        -webkit-transform: translate(-62%, -50%);
        box-shadow: 0 0 0 2px #fff, 0 0 0 17px var(--color-tertiary);
        left: 50%;
        top: 50%;
        z-index: 0;
    }

    .panel-pseudo-red::before {
        border-radius: 100%;
        background-color: var(--color-secondary);
        content: "";
        height: 232px;
        width: 232px;
        display: block;
        position: absolute;
        transform: translate(-38%, -50%);
        -webkit-transform: translate(-38%, -50%);
        box-shadow: 0 0 0 2px #fff, 0 0 0 17px var(--color-secondary);
        left: 50%;
        top: 50%;
        z-index: 0;
    }

    .panel-pseudo-blue::before {
        border-radius: 100%;
        background-color: var(--color-primary);
        content: "";
        height: 232px;
        width: 232px;
        display: block;
        position: absolute;
        transform: translate(-62%, -50%);
        -webkit-transform: translate(-62%, -50%);
        box-shadow: 0 0 0 2px #fff, 0 0 0 17px var(--color-primary);
        left: 50%;
        top: 50%;
        z-index: 0;
    }

    .split-panel-content>.row>.columns {
        max-width: 585px !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 {
        margin: 0;
        -o-object-fit: cover;
        object-fit: cover;
        height: 100%;
    }
}
@media all and (min-width:1170px) { /* Row Max Width */
    /* If perfection is the goal, then this needs to be hard coded, percentages mess up after row max width */
    .split-panel-content > .row.align-left > .columns {
        padding-left:115px;
    }
    .split-panel-content > .row.align-right > .columns {
        padding-right:115px;
    }
}

/************************************
/*----------------------------------
/* FORM
/*----------------------------------
/*************************************/
.form {
    position: relative;
}

.form--interior {
    background-color: var(--color-lt-accent);
}

@media all and (min-width:1024px) {
    .form-demo {
        height: 1000px;
    }

    .form-demo--shadowed {
        box-shadow: 0px 13px 12px #0000000D;
    }

    .form .row.align-center {
        transform: translate(0%, -50%);
        -webkit-transform: translate(0%, -50%);
        position: relative;
        top: 50%;
        z-index: 10;
        left: 0;
    }

    .index-form .index-form--content {
        background: #ffffff;
        /* backdrop-filter: blur(4px); */
        border-radius: 30px;
        /* box-shadow: 0px 0px 5px var(--color-base); */
    }

    .interior-form {
        position: relative;
        z-index: 10;
    }

    .interior-form .interior-form--content {
        background: #F8F6F0;
        /* backdrop-filter: blur(4px); */
        border-radius: 2%;
        /* box-shadow: 0px 0px 5px var(--color-base); */
    }

    .form-ipad::before {
        content: "";
        background: url("../images/ipad-img-example.png") no-repeat right;
        height: 800px;
        width: 800px;
        display: block;
        position: absolute;
        transform: translate(-12%, -100%);
        -webkit-transform: translate(-12%, -100%);
        left: 0%;
        top: 100%;
        z-index: 0;
    }

    .form-computer::before {
        content: "";
        background: url("../images/kind-form-graphic.png") no-repeat right;
        height: 800px;
        width: 800px;
        display: block;
        position: absolute;
        transform: translate(-12%, -100%);
        -webkit-transform: translate(-12%, -100%);
        left: 0%;
        top: 100%;
        z-index: 0;
    }

    .form-circles::after {
        content: "";
        background: url("../images/three-primary-circles.png") no-repeat right;
        height: 635px;
        width: 399px;
        display: block;
        position: absolute;
        transform: translate(-62%, -50%);
        -webkit-transform: translate(-62%, -50%);
        left: 100%;
        top: 50%;
        z-index: 0;
    }
}




/************************************
/*----------------------------------
/* TESTIMONIAL SLIDER
/*----------------------------------
/*************************************/

.carousel-block {
    position: relative;
    background: #F8F6F0;
    width: 100vw;
    max-width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    z-index: 100;
    padding: 40px 0;
}

.carousel-block>.row {
    margin-left: auto;
    margin-right: auto;
}

.carousel-block-intro {
    padding-bottom: 1rem;
}

.carousel-block-title {
    /* Default h4 size. Set size so can use whatever header is appropriate */
    font-size: 2.313rem;
}

.carousel-block-text {}

/*- Slider -*/
.js-carousel {
    /* JS Hook, no styling */
}

.carousel {
    padding-bottom: 40px;
}

.carousel .slick-loading .slick-list {
    background: #fff url('../images/ajax-loader.gif') center center no-repeat;
}

/* .carousel .slick-list {
    overflow: visible;
} */

.carousel .slick-track {
    display: flex;
    align-items: stretch;
}

.carousel .slick-slide {
    height: auto;
}

.carousel .slick-slide div {
    height: 100%;
}

.carousel-slide {
    padding: 0.5rem 0.625rem 2rem;
}

.carousel-slide-quote {
    background: #fff;
    padding: 3.125rem 1.563rem 1.563rem 1.563rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    -webkit-box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.05);
    transition: all 200ms ease-in-out;
    -webkit-transition: all 200ms ease-in-out;
}

.carousel-slide-quote:before {
    display: block;
    width: 44px;
    height: 33px;
    margin: 0 0 1.5rem;
    content: "";
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 43.54 32.73' width='43.54' height='32.73'%3E%3Cpath d='M31.61,14.76c4.93-.49,9.32,3.11,9.81,8.04,.36,3.66-1.54,7.17-4.81,8.86-8.48,4.38-16.2-5.63-14.49-13.92C23.91,7.85,32.28,.5,42.32,0h.99c.13,0,.23,.1,.23,.23v1.84c0,.13-.11,.23-.23,.24-5.4,1.16-11.35,6.56-11.7,12.46' fill='%2355C2C4' /%3E%3Cpath d='M9.72,14.76c4.93-.49,9.32,3.11,9.81,8.04,.36,3.66-1.54,7.17-4.81,8.86C6.24,36.04-1.48,26.03,.24,17.74,2.03,7.86,10.39,.5,20.43,0h.99c.13,0,.23,.1,.23,.23v1.84c0,.12-.11,.22-.23,.24-5.4,1.16-11.35,6.56-11.7,12.46' fill='%2355C2C4' /%3E%3C/svg%3E") center center no-repeat;
}

.carousel-slide-quote p {
    font-size: 1.375rem;
}

.carousel-slide-quote cite {
    margin-top: auto;
}

.carousel-slide-quote cite:before {
    display: none;
}

.carousel-slide-quote cite strong {
    display: block;
    text-transform: uppercase;
}

/*- Arrows -*/
.carousel .slick-prev,
.carousel .slick-next {
    background: transparent;
    display: block;
    padding: 0;
    width: 52px;
    height: 52px;
    border: 1px solid var(--color-primary);
    border-radius: 100%;
    position: absolute;
    bottom: 0;
    cursor: pointer;
    color: transparent;
    box-shadow: none;
    z-index: 1;
    transition: all 200ms ease-in-out;
    -webkit-transition: all 200ms ease-in-out;
}

.carousel .slick-prev:hover,
.carousel .slick-next:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.carousel .slick-prev:active,
.carousel .slick-next:active {
    background: #ba5b0a;
    border-color: #ba5b0a;
}

.carousel .slick-prev:focus,
.carousel .slick-prev:focus-visible,
.carousel .slick-next:focus,
.carousel .slick-next:focus-visible {
    -webkit-box-shadow: 0 0 0 2px #fff, 0 0 0 4px #dd6c0c;
    -moz-box-shadow: 0 0 0 2px #fff, 0 0 0 4px #dd6c0c;
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #dd6c0c;
    outline: 0;
}

.carousel .slick-prev {
    left: 0.625rem;
}

.carousel .slick-next {
    left: 78px;
}

.carousel .slick-prev:before,
.carousel .slick-next:before {
    margin: 0 auto;
    display: block;
    width: 10px;
    height: 16px;
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9.15' height='16' viewBox='0 0 9.15 16'%3E%3Cpath d='M8.82,8.76L1.97,15.67c-.44,.44-1.15,.44-1.58,0-.44-.44-.44-1.15,0-1.58L6.44,7.98,.33,1.92c-.44-.44-.44-1.15,0-1.58,.44-.44,1.15-.44,1.58,0l6.91,6.85c.22,.22,.33,.5,.33,.79s-.11,.57-.33,.79' style='fill: %2355C2C4;'/%3E%3C/svg%3E");
    position: absolute;
    left: 50%;
    top: 50%;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.carousel .slick-prev:hover:before,
.carousel .slick-next:hover:before,
.carousel .slick-prev:active:before,
.carousel .slick-next:active:before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9.15' height='16' viewBox='0 0 9.15 16'%3E%3Cpath d='M8.82,8.76L1.97,15.67c-.44,.44-1.15,.44-1.58,0-.44-.44-.44-1.15,0-1.58L6.44,7.98,.33,1.92c-.44-.44-.44-1.15,0-1.58,.44-.44,1.15-.44,1.58,0l6.91,6.85c.22,.22,.33,.5,.33,.79s-.11,.57-.33,.79' style='fill: %23fff;'/%3E%3C/svg%3E");
}

.carousel .slick-prev:before {
    -webkit-transform: translate(-50%, -50%) rotate(180deg);
    transform: translate(-50%, -50%) rotate(180deg);
}

.carousel .slick-next:before {
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.carousel .slick-prev.slick-disabled:before,
.carousel .slick-next.slick-disabled:before {
    opacity: 0.5;
}

/* Affiliates Band */
.affiliates-band {
    pointer-events: none;
}

/* Slick Slider */
.js-slick-slider button {
    display: none !important;
}

.slick-track {
    display: flex;
    align-items: center;
    text-align: -webkit-center;
}

.slick-slide {
    width: 230px;
}

@media (min-width: 1024px) {
    .slick-slide {
        width: 300px;
    }

    .consulting .slick-slide {
        width: 450px;
    }
}

/*- Screen Reader -*/
.carousel .slick-sr-only {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    border: 0;
}

@media all and (min-width:1024px) {
    .carousel-block {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .carousel-block-intro {
        /* Pad bottom so will middle align to cards */
        padding-bottom: 70px;
    }

    .carousel .slick-list {
        overflow: hidden;
    }

    .carousel-slide:not(.slick-active) .carousel-slide-quote {
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }
}

@media all and (min-width:1170px) {
    .has-carousel-block-intro {
        /* Column class large-4 or 33.33333% */
        display: flex;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        -ms-flex-pack: end;
        justify-content: flex-end;
        /*
			Based off of 1170 as max row width
			33.33333% of 1170 = 390px
			50% of 1170 = 585px
		*/
        -ms-flex: 0 0 calc((390px) + (50vw - 585px));
        flex: 0 0 calc((390px) + (50vw - 585px));
        max-width: calc((390px) + (50vw - 585px));
    }

    .carousel-block-intro {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 370px;
    }

    .has-carousel-block-carousel {
        /* Column class large-8 or 66.66667% */
        /*
			Based off of 1170 as max row width
			66.66667% of 1170 = 780px
			50% of 1170 = 585px
		*/
        -ms-flex: 0 0 calc((780px) + (50vw - 585px));
        flex: 0 0 calc((780px) + (50vw - 585px));
        max-width: calc((780px) + (50vw - 585px));
    }
}

/************************************
/*----------------------------------
/* ONLY ONE TESTIMONIAL
/*----------------------------------
/*************************************/
.only-one-testimonial .slick-autoplay-toggle-button {
    display: none !important;
}



/************************************
/*----------------------------------
/* OVATION SLIDER
/*----------------------------------
/*************************************/


.ovation-slider { /*- ul class */
/* Left pad 42px to accommdate previous button + 10px space whitespace */
    padding-left:42px;
/* Right pad 42px to accommdate next button + 10px space whitespace */
    padding-right:42px;
/* Bottom pad 54px to accommodate play/pause button + 10px whitespace
    padding-bottom:3.375rem; */
}
.ovation-slider > div { /* Accessible Slick writes in an empty wrapper div around the .slick-slide */
    /* Remove Whitespace */
    line-height:0;
}
.ovation-slider .slider-track {
}
.ovation-slider .slick-track {
    transition:all 1s cubic-bezier(0.7, 0, 0.3, 1);
    align-items:flex-start;
}
.ovation__slide {
    position:relative;
    margin:0;
}
/*- Naviation Buttons -*/
.ovation-slider .slick-prev,
.ovation-slider .slick-next {
    background: transparent;
    display: block;
    padding: 0;
    width: 32px;
    height: 32px;
    border: 1px solid var(--color-primary);
    border-radius: 100%;
    position: absolute;
	top:calc(50% - 2.5rem);
	-webkit-transform:translateY(-50%);
	transform:translateY(-50%);
    cursor: pointer;
    color: transparent;
    box-shadow: none;
    z-index: 1;
    transition: all 200ms ease-in-out;
    -webkit-transition: all 200ms ease-in-out;
}
.ovation-slider .slick-prev:hover,
.ovation-slider .slick-next:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
}
.ovation-slider .slick-prev:active,
.ovation-slider .slick-next:active {
    -webkit-box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--color-primary);
}
.ovation-slider .slick-prev:focus-visible,
.ovation-slider .slick-next:focus-visible {
    -webkit-box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--color-secondary);
    -moz-box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--color-secondary);
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--color-secondary);
    outline: 0;
}
.ovation-slider .slick-prev {
    left:0;
}
.ovation-slider .slick-next {
    right:0;
}
.ovation-slider .slick-prev:before,
.ovation-slider .slick-next:before {
    margin: 0 auto;
    display: block;
    width: 10px;
    height: 16px;
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9.15' height='16' viewBox='0 0 9.15 16'%3E%3Cpath d='M8.82,8.76L1.97,15.67c-.44,.44-1.15,.44-1.58,0-.44-.44-.44-1.15,0-1.58L6.44,7.98,.33,1.92c-.44-.44-.44-1.15,0-1.58,.44-.44,1.15-.44,1.58,0l6.91,6.85c.22,.22,.33,.5,.33,.79s-.11,.57-.33,.79' style='fill: %2355C2C4;'/%3E%3C/svg%3E");
    position: absolute;
    left: 50%;
    top: 50%;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}
.ovation-slider .slick-prev:hover:before,
.ovation-slider .slick-next:hover:before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9.15' height='16' viewBox='0 0 9.15 16'%3E%3Cpath d='M8.82,8.76L1.97,15.67c-.44,.44-1.15,.44-1.58,0-.44-.44-.44-1.15,0-1.58L6.44,7.98,.33,1.92c-.44-.44-.44-1.15,0-1.58,.44-.44,1.15-.44,1.58,0l6.91,6.85c.22,.22,.33,.5,.33,.79s-.11,.57-.33,.79' style='fill: %23fff;'/%3E%3C/svg%3E");
}
.ovation-slider .slick-prev:before {
    -webkit-transform: translate(-50%, -50%) rotate(180deg);
    transform: translate(-50%, -50%) rotate(180deg);
}
.ovation-slider .slick-next:before {
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.ovation-slider .slick-prev.slick-disabled:before,
.ovation-slider .slick-next.slick-disabled:before {
    opacity: 0.5;
}
/* Slide Content */
.ovation__blockquote {
    text-align:center;
}
.ovation__blockquote::before {
    display:none;
}
.ovation__blockquote p {
}
.ovation__blockquote cite {
    font-size:24px;
    font-weight:400;
    line-height:1.4;
    margin-bottom:1rem;
}
.ovation__blockquote cite strong {
    font-size:26px;
    font-weight:700;
    text-transform:none;
}
.ovation__profile-img {
    display:block;
    margin:0.5rem auto 1rem;
    border-radius:100%;
    box-shadow:0px 3px 15px 0px rgba(0,0,0,0.10);  
}
@media all and (min-width:640px) {
    .ovation-slider { /*- ul class */
    /* Left pad 52px to accommdate previous button + 10px space whitespace */
        padding-left:62px;
    /* Right pad 52px to accommdate next button + 10px space whitespace */
        padding-right:62px;
    }
    /*- Naviation Buttons -*/
    .ovation-slider .slick-prev,
    .ovation-slider .slick-next {
        width: 52px;
        height: 52px;
    }   
}


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

.card {
    position: relative;
    background: #fff;
    display: flex;
    flex-direction: column;
    height: calc(100% - 1.25rem);
    margin-bottom: 1.25rem;
    /* text-align: left; */
    -webkit-box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.05);
    z-index: 1;
    border-radius: 10px;
}

.card-media,
.card-head,
.card-main {
    pointer-events: none;
}

.card-media {
    border-radius: 10px 10px 0 0;
    /* overflow: hidden; */
}

.card-media-img {
    display: block;
    width: 100%;
}

.card-media--has-icon {
    position: relative;
    z-index: 1;
}

.card-media--has-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-color: var(--color-base);
    mix-blend-mode: multiply;
    opacity: .68;
}
.card-media__icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 5;
    /* fill: var(--color-white); */
    border-radius: 100%;
    background-color: transparent;
    transition: all 200ms ease-in-out;
}
.card-media__icon .ico-circle {
    fill: none;
}
.card:hover:has(.btn) .card-media__icon {
    background-color: var(--color-primary);
}
.card:hover:has(.btn-secondary) .card-media__icon {
    background-color: var(--color-secondary);
}
.card:hover:has(.btn-tertiary) .card-media__icon {
    background-color: var(--color-tertiary);
}

.card-head {
    padding: 1.5rem 1rem 0;
}

.card-title {
    /* Default h6 size. Set size so can use whatever header is appropriate */
    font-size: 1.5rem;
}

.card-main {
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    /* justify-content: flex-end; */
}

.card-text {}

.card-foot {
    padding: 0 1rem 1.5rem;
    margin-top: auto;
}

.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;
}


/************************************
/*----------------------------------
/* 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;
    /* text-align: center; */
}

.card-title--for-media-card {
    color: inherit;
    /* text-align: center; */
}

.card-main--for-media-card {
    padding: 0 2rem;
}


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

.icon-cards .card-text {
    /* text-align: center; */
}

.icon-cards .card-main {
    justify-content: flex-start;
}

/* .card__icon {
    margin-top:2.5rem;
}
.card__circle {
    display:block;
    position:relative;
    margin-top:2.5rem;
    margin-left:auto;
    margin-right:auto;
    width:100px;
    height:100px;
    border-radius:100%;
    background:var(--color-primary);
}
.card__icon--for-circle {
    position:absolute;
    inset:0;
    margin:auto;
} */


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

.cmForm {}

.formElements h2 {
    /* Resets to match default h2 styling from baseStyles.css */
    font-size: 3.313rem;
    color: var(--color-base);
    margin-bottom: 1rem;
}

.formElements h2,
.formElements p:not([class]),
.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: 1rem;
    font-weight: 400;
    line-height: 1;
    color: var(--color-base);
    /* Base Font Color */
    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;
}

.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: 100%;
}

.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: 100%;
}

.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: 100%;
}

#form-5036 .formErrors:last-of-type {
    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;
    }
}


/************************************
/*----------------------------------
/* FOOTER
/*----------------------------------
/*************************************/

.svg-container {
    /*- Should this move to baseStyle.css?? -*/
    position: absolute;
    height: 0;
}

.colophon {}

.colophon-branding-link {
    display: block;
    width: 100%;
    max-width: 265px;
    margin: 0 auto;
}

.colophon-branding-link svg {
    display: block;
    width: 100%;
    height: auto;
    fill: var(--color-base);
    transition: all 200ms ease-in-out;
    -webkit-transition: all 200ms ease-in-out;
}

.colophon-branding-link:hover {
    background: transparent;
    /* Reset from base link styling */
}

.colophon-branding-link:hover svg {
    fill: #ba5b0a;
}

.colophon-branding-link:active {
    background: transparent;
}

.colophon-branding-link:active svg {
    fill: #9a4b08;
}

.colophon-branding-link:focus,
.colophon-branding-link:focus-visible {
    background: transparent;
    border: 0;
    outline: 0;
    -webkit-box-shadow: 0 0 0 2px #fff, 0 0 0 4px #dd6c0c;
    -moz-box-shadow: 0 0 0 2px #fff, 0 0 0 4px #dd6c0c;
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #dd6c0c;
}

.colophon-title {
    margin-top: 2.750rem;
    /* Default h6 size. Set size so can use whatever header is appropriate */
    font-size: 1.4rem;
    font-weight: 700;
}

.colophon-text {
    font-size: 0.875rem;
}

.colophon-link {
    font-weight: inherit;
    color: inherit;
}

.colophon-link:hover {}

.colophon-footer {
    margin-top: 1rem;
    padding: 3.750rem 0 2.750rem;
    text-align: center;
    border-top: 1px solid rgba(29, 34, 46, 0.15);
}

.utility-list {
    /* Should this be part of utlity styles? */
    margin-left: 0;
}

.utility-list-item:not(:last-of-type) {
    margin-bottom: 0.5rem;
}

.utility-list-item:before {
    display: none;
}

.social-list {
    /* Should this be part of utlity styles? */
    margin: 1.750rem 0;
    display: flex;
    list-style: none;
    justify-content: center;
}

.social-list-item {
    line-height: 1;
}

.social-list-item:not(:last-of-type) {
    margin-right: 0.625rem;
}

.social-list-item:before {
    display: none;
}

.social-link {
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background: var(--color-base);
    position: relative;
}

.social-link svg {
    fill: #fff;
    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: var(--color-primary);
}

.social-link:active {
    background: var(--color-base);
}

.social-link:focus,
.social-link:focus-visible {
    background: var(--color-base);
    border: 0;
    outline: 0;
    -webkit-box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--color-primary);
    -moz-box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--color-primary);
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--color-primary);
}

.colophon-form .currentForm {
    position: relative;
}

.colophon-form .formElements .formRow>ul>li {
    margin-bottom: 0;
}

.colophon-form .cmForm input[type=email] {
    width: calc(100% - 95px);
    border-right: 0;
    /*border-radius:30px 0 0 30px; This will make it "pill" to match submit*/
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
}

.colophon-form #form-5036 input[type="submit"] {
    width: 95px;
    height: 46px;
    padding: 0.938rem 0;
    /* Adjust padding to match height of Email Input */
    position: absolute;
    bottom: 0;
    right: 0;
    /*border-radius:0 30px 30px 0; This will make it "pill" */
    border-radius: 0 25px 25px 0;
    background-color: var(--color-primary);
}

.colophon-form .cmForm input[type="submit"]:hover {
    background-color: var(--color-base);
}

@media all and (min-width:1024px) {
    .colophon-footer {
        text-align: left;
    }

    .colophon-text.has-copyright {}

    .colophon-branding-link {
        margin-left: 0;
        margin-right: 0;
    }

    .social-list {
        justify-content: flex-end;
        margin: 0;
    }
}

@media all and (min-width:64.063rem) {

    /*- Should this move to baseStyle.css?? -*/
    a[href^="tel"] {
        pointer-events: none;
    }
}




/************************************
/*----------------------------------
/* HANDLE
/*----------------------------------
/*************************************/

.handle {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 9999;
    background: #f6f6f6;
    max-width: 400px;
    -webkit-box-shadow: 0 -4px 16px -4px rgba(0, 0, 0, 0.35);
    box-shadow: 0 -4px 16px -4px rgba(0, 0, 0, 0.35);
}

.handle__header {
    background: #ce2a31;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 1rem 0;
    cursor: pointer;
}

.handle__title {
    color: #fff;
    margin: 0;
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 0.25rem;
    max-height: 0;
    overflow: hidden;
}

.handle__subtitle {
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.875rem;
}

.handle__close {
    position: absolute;
    top: 0;
    right: 0;
    height: 30px;
    width: 30px;
    color: #fff;
    background: #941e24;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -o-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.handle__body {
    padding: 0 1rem;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -o-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}


/************************************
/*----------------------------------
/* DRAWER FORM
/*----------------------------------
/*************************************/


.js-drawer {
    /*- JS Hook, No Styling -*/
}

.js-drawer-toggle {
    /*- JS Hook, No Styling -*/
}

.drawer {
    display: block;
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 0;
    z-index: 99999;
    pointer-events: none;
}

.drawer>.row>.columns {
    background: #fff;
    -webkit-box-shadow: 0px 12px 16px 0px rgba(0, 0, 0, 0.19);
    box-shadow: 0px 12px 16px 0px rgba(0, 0, 0, 0.19);
    pointer-events: initial;
}

.drawer-container {
    border: 2px solid var(--color-secondary);
}

.drawer-toggle {
    padding: 0.313rem 0;
    background: var(--color-secondary);
    background: -webkit-linear-gradient(to bottom, var(--color-secondary) 0%, var(--color-secondary) 100%);
    background: -moz-linear-gradient(to bottom, var(--color-secondary) 0%, var(--color-secondary) 100%);
    background: linear-gradient(to bottom, var(--color-secondary) 0%, var(--color-secondary) 100%);
    -webkit-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -o-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    z-index: 100;
}

.drawer-toggle:not(.is-active):hover {
    background: var(--color-base);
    background: -webkit-linear-gradient(to bottom, var(--color-base) 0%, var(--color-base) 100%);
    background: -moz-linear-gradient(to bottom, var(--color-base) 0%, var(--color-base) 100%);
    background: linear-gradient(to bottom, var(--color-base) 0%, var(--color-base) 100%);
}

.drawer-title {
    font-size: 1.875rem;
    font-family: var(--font-secondary);
    margin: 0;
    color: #fff;
    text-align: center;
    transition: all 200ms ease-in-out;
    -webkit-transition: all 200ms ease-in-out;
    z-index: 1;
}

.drawer-form {
    margin: 0;
    padding: 0 0.5rem;
    max-height: 0;
    overflow: hidden;
    background: rgba(59, 60, 60, 0.90);
    -webkit-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -o-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.drawer-form form {
    margin: 0;
}

.drawer-form form input[type=submit] {
    margin: 0 -2.5rem !important;
    padding: 1.5rem 0;
    width: calc(100% + 5rem);
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--color-secondary);
    background: -webkit-linear-gradient(to bottom, var(--color-secondary) 0%, #0096C4 100%);
    background: -moz-linear-gradient(to bottom, var(--color-secondary) 0%, #0096C4 100%);
    background: linear-gradient(to bottom, var(--color-secondary) 0%, #0096C4 100%);
    -webkit-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 0;
}

.drawer-form form input[type=submit]:hover {
    top: 0;
    background: var(--color-primary);
    background: -webkit-linear-gradient(to bottom, var(--color-primary) 0%, #554174 100%);
    background: -moz-linear-gradient(to bottom, var(--color-primary) 0%, #554174 100%);
    background: linear-gradient(to bottom, var(--color-primary) 0%, #554174 100%);
}

/*- Active States -*/
.drawer.is-active .drawer-toggle {
    background: var(--color-secondary);
}

.drawer.is-active .drawer-title,
.drawer.is-active .drawer-title small {
    color: #fff !important;
}

.drawer.is-active .drawer-form {
    max-height: 1500px;
}

.drawer-close {
    display: none;
}

.js-drawer.is-active .drawer-close {
    display: block;
}

.drawer-close {
    position: absolute;
    top: 0px;
    right: 0px;
    background: #D6261B;
    border: none;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 0px;
    margin-top: 0.5rem;
    font-weight: 400;
}


@media all and (min-width:640px) {
    .drawer-toggle {
        padding: 0.688rem 0;
    }

    .drawer-container {
        min-width: 420px;
    }

    .drawer-form {
        padding: 0 2rem;
    }
}


/************************************
/*----------------------------------
/* INTERIOR SPLIT HERO
/*----------------------------------
/*************************************/


.hero {
    position: relative;
    background: #F2EFE6;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -ms-flex-align: center;
    align-items: center;
    z-index:103;
}
.hero--fancy {
    background: #F2EFE6 url(../images/bg-fancy-swirls-001.jpg) center center no-repeat;
    background-size:cover;
}

.hero-media,
.hero-content {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%
}

.hero-media>img {
    display: block;
    width: 100%;
}

.hero-content {
    padding: 3.438rem 0;
}

.hero-title {
    font-size: 3rem;
    color: var(--color-primary);
}
.hero-text {
    font-size:1.625rem;
    line-height:1.5;
}
.hero-bread-crumbs {}

@media all and (min-width:1024px) {
    .hero {
        -ms-flex-pack:end;
        justify-content:flex-end;
    }

    .hero-media,
    .hero-content {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    }

    .hero-content {
        padding: 0;
        max-width: 585px;
		-ms-flex-order:1;
		order:1;
    }

    .hero-media {
        height: 545px;
		-ms-flex-order:2;
		order:2;
    }

    .hero-media>img {
        width: auto;
        height: auto;
        min-width: 100%;
        min-height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        object-position:0 50%;
    }
}

@media all and (min-width:1920px) {

    /* Is this an unnecessary reset?  I think yes....*/
    .hero-media {
        height: auto;
    }

    .hero-media>img {
        width: 100%;
        min-height: initial;
        -o-object-fit: initial;
        object-fit: initial;
    }
}

/************************************
/*----------------------------------
/* HOME HERO REDO - BASED ON SUPERTEMPLATE HERO INDEX IMAGE SET HEIGHT
/*----------------------------------
/*************************************/

/* .hero {
    position:relative;
    background-color:var(--color-black);
} */
.hero--index {
    display: block;
    padding-bottom: 220px;
    background-color: #ffffff;
}

.hero__media {
    position: relative;
    /* Remove whitespace */
    line-height: 0;
}

.hero__media::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100px;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,1+65,1+100 */
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 65%, rgba(255, 255, 255, 1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.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); */
    background: none transparent;
    /* text-align: center; */
}

.hero__content--positioned {
    padding-top: 0;
    padding-bottom: 60px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    /* background-color:initial; */
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    /* color:var(--color-white);     */
    z-index: 1;
}

.hero--striped {
    position: relative;
    justify-content: center;
    background: none transparent;
    text-align: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.hero__content--positioned::after, .hero--striped::after {
    content: '';
    display: block;
    height: 1rem;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/var(--color-tertiary)+0,ffbe10+32,ef3f34+33,ef3f34+65,55c2c4+66,55c2c4+100 */
    background: linear-gradient(to right, rgba(255, 190, 16, 1) 0%, rgba(255, 190, 16, 1) 33.32%, rgba(239, 63, 52, 1) 33.33%, rgba(239, 63, 52, 1) 66.65%, rgba(85, 194, 196, 1) 66.66%, rgba(85, 194, 196, 1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    z-index: -1;
}

.hero__title {
    font-size: 2.750rem;
}

.hero__title,
.hero__text {
    color: inherit;
}

.bread-crumbs::before {
    display: none;
}

@media all and (min-width:1024px) {
    .hero--striped {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .hero__content--positioned {
        bottom: 0;
        top: 0;
        transform: translateY(0);
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 0;
        display: flex;
        align-items: center;
    }

    .hero__content--positioned::before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        /* width: 50%; */
        width: 60%;
        z-index: -1;
        /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&1+0,1+35,0+100 */
        background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, .8) 80%, rgba(255, 255, 255, 0) 100%);
        /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    }

    .hero__content--positioned::after {
        bottom: auto;
        top: 100%;
    }
    .hero--index {
        padding-bottom: 0;
    }

    .hero__media::after {
        display: none;
    }

    .hero__content {
        margin-left: auto;
        margin-right: auto;
        padding-top: initial;
        padding-bottom: initial;
        background-color: transparent;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        transform: translateY(0);
        display: flex;
        align-items: center;
    }
}

.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__media--is-set-height-for-index {
    /* height:575px; */
    height: 375px;
}


nav.breadcrumb {
    padding: 1rem 0;
}

nav.breadcrumb ol {
    font-size: 0;
    /* Fix whitespace for li */
}

nav.breadcrumb ol li {
    line-height: 1.625;
}

nav.breadcrumb ol li:not(:last-child)::after {
    content: "\00A0\003E\00A0";
}

nav.breadcrumb ol li,
nav.breadcrumb ol li a {
    font-size: 1rem;
    font-weight: 400;
}

nav.breadcrumb ol li,
/* Inherit hover color from baseStyles.css */
nav.breadcrumb ol li a:not(:hover):not(:active):not(:focus):not(:focus-visible) {
    color: var(--color-base);
}

nav.breadcrumb ol li:last-of-type a {
    font-weight: 700;
}



/************************************
/*----------------------------------
/* PUFF SLIDER
/*----------------------------------
/*************************************/

.puff-block {
    /* padding:3.5rem 0.625rem 2.5rem; */
    /* Full viewport width for mobile - This pulls the puff block past the 0.625rem padding of the column */
    margin-left: -0.625rem;
    margin-right: -0.625rem;
}

.puff-block-intro {
    text-align: center;
}

.puff-block-title {
    position: relative;
    /* Default h4 size. Set size so can use whatever header is appropriate */
    font-size: 2.313rem;
}

.puff-block-title:before {
    display: block;
    width: 44px;
    height: 33px;
    margin: 0 auto 1.5rem;
    content: "";
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 43.54 32.73' width='43.54' height='32.73'%3E%3Cpath d='M31.61,14.76c4.93-.49,9.32,3.11,9.81,8.04,.36,3.66-1.54,7.17-4.81,8.86-8.48,4.38-16.2-5.63-14.49-13.92C23.91,7.85,32.28,.5,42.32,0h.99c.13,0,.23,.1,.23,.23v1.84c0,.13-.11,.23-.23,.24-5.4,1.16-11.35,6.56-11.7,12.46' fill='%23dd6c0c' /%3E%3Cpath d='M9.72,14.76c4.93-.49,9.32,3.11,9.81,8.04,.36,3.66-1.54,7.17-4.81,8.86C6.24,36.04-1.48,26.03,.24,17.74,2.03,7.86,10.39,.5,20.43,0h.99c.13,0,.23,.1,.23,.23v1.84c0,.12-.11,.22-.23,.24-5.4,1.16-11.35,6.56-11.7,12.46' fill='%23dd6c0c' /%3E%3C/svg%3E") center center no-repeat;
}

.puff-slide .columns.small-10 {
    background-color: #F2EFE6;
    padding: 35px;
}

/*- Slider -*/
.js-puff-slider {
    /* JS Hook, no styling */
}

.puff-slider {}

.puff-slide {
    text-align: left;
}

.puff-slider .slick-loading .slick-list {
    background: #fff url('../images/ajax-loader.gif') center center no-repeat;
}

.puff-slider .slider-track {
    transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
}

/*---> Arrows <---*/
.puff-slider .slick-prev,
.puff-slider .slick-next {
    display: block;
    padding: 0;
    width: 44px;
    height: 44px;
    border-radius: 0;
    position: absolute;
    top: calc(50% - 0.5rem);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    cursor: pointer;
    color: transparent;
    box-shadow: none;
    z-index: 1;
    transition: all 200ms ease-in-out;
    -webkit-transition: all 200ms ease-in-out;
}

.puff-slider .slick-prev,
.puff-slider .slick-next,
.puff-slider .slick-prev:hover,
.puff-slider .slick-next:hover {
    background: transparent;
}

.puff-slider .slick-prev:focus,
.puff-slider .slick-prev:focus-visible,
.puff-slider .slick-next:focus,
.puff-slider .slick-next:focus-visible {
    -webkit-box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--color-primary);
    -moz-box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--color-primary);
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--color-primary);
    outline: 0;
}

.puff-slider .slick-prev {
    left: 0;
}

.puff-slider .slick-next {
    right: 0;
}

.puff-slider .slick-prev:before,
.puff-slider .slick-next:before {
    margin: 0 auto;
    display: block;
    width: 10px;
    height: 16px;
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9.15' height='16' viewBox='0 0 9.15 16'%3E%3Cpath d='M8.82,8.76L1.97,15.67c-.44,.44-1.15,.44-1.58,0-.44-.44-.44-1.15,0-1.58L6.44,7.98,.33,1.92c-.44-.44-.44-1.15,0-1.58,.44-.44,1.15-.44,1.58,0l6.91,6.85c.22,.22,.33,.5,.33,.79s-.11,.57-.33,.79' style='fill: %2355C2C4;'/%3E%3C/svg%3E");
    position: absolute;
    left: 50%;
    top: 50%;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.puff-slider .slick-prev:hover:before,
.puff-slider .slick-next:hover:before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9.15' height='16' viewBox='0 0 9.15 16'%3E%3Cpath d='M8.82,8.76L1.97,15.67c-.44,.44-1.15,.44-1.58,0-.44-.44-.44-1.15,0-1.58L6.44,7.98,.33,1.92c-.44-.44-.44-1.15,0-1.58,.44-.44,1.15-.44,1.58,0l6.91,6.85c.22,.22,.33,.5,.33,.79s-.11,.57-.33,.79' style='fill: %233B3C3C;'/%3E%3C/svg%3E");
}

.puff-slider .slick-prev:active:before,
.puff-slider .slick-next:active:before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9.15' height='16' viewBox='0 0 9.15 16'%3E%3Cpath d='M8.82,8.76L1.97,15.67c-.44,.44-1.15,.44-1.58,0-.44-.44-.44-1.15,0-1.58L6.44,7.98,.33,1.92c-.44-.44-.44-1.15,0-1.58,.44-.44,1.15-.44,1.58,0l6.91,6.85c.22,.22,.33,.5,.33,.79s-.11,.57-.33,.79' style='fill: %233B3C3C;'/%3E%3C/svg%3E");
}

.puff-slider .slick-prev:before {
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(180deg);
    transform: translate(-50%, -50%) rotate(180deg);
}

.puff-slider .slick-next:before {
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.puff-slider .slick-prev.slick-disabled:before,
.puff-slider .slick-next.slick-disabled:before {
    opacity: 0.5;
}

/*- Autoplay Button -*/
.puff-slider .slick-autoplay-toggle-button {
    display: block;
    padding: 0;
    width: 44px;
    height: 44px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: transparent !important;
    border: 3px solid var(--color-primary);
    border-radius: 100%;
    transition: all 200ms ease-in-out;
    -webkit-transition: all 200ms ease-in-out;
    z-index: 1;
}

.frontline-slider .puff-slider .slick-autoplay-toggle-button {
    visibility: hidden;
}

.puff-slider .slick-autoplay-toggle-button:hover {
    border-color: var(--color-secondary);
}

.puff-slider .slick-autoplay-toggle-button:active {
    box-shadow: 0;
    border: 3px solid var(--color-secondary);
}

.puff-slider .slick-autoplay-toggle-button:focus,
.puff-slider .slick-autoplay-toggle-button:focus-visible {
    -webkit-box-shadow: 0 0 0 2px var(--color-primary);
    -moz-box-shadow: 0 0 0 2px var(--color-primary);
    box-shadow: 0 0 0 2px var(--color-primary);
    border: 3px solid var(--color-primary);
    outline: 0;
}

.puff-slider .slick-pause-icon,
.puff-slider .slick-play-icon {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    color: transparent;
}

.puff-slider .slick-play-icon:after {
    /* Play Icon */
    display: block;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 330 330' width='20' height='20'%3E%3Cpath d='M37.728,328.12c2.266,1.256,4.77,1.88,7.272,1.88c2.763,0,5.522-0.763,7.95-2.28l240-149.999c4.386-2.741,7.05-7.548,7.05-12.72c0-5.172-2.664-9.979-7.05-12.72L52.95,2.28c-4.625-2.891-10.453-3.043-15.222-0.4C32.959,4.524,30,9.547,30,15v300C30,320.453,32.959,325.476,37.728,328.12z' fill='%2355C2C4' /%3E%3C/svg%3E") center center no-repeat;
    content: "";
    width: 30px;
    height: 30px;
    position: absolute;
    left: calc(50% + 0.188rem);
    top: calc(50% + 0.063rem);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    transition: all 200ms ease-in-out;
    -webkit-transition: all 200ms ease-in-out;
}

.puff-slider .slick-pause-icon:after {
    /* Pause Icon */
    display: block;
    background: url("data:image/svg+xml,%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 312 422' width='14' height='20'%3E%3Cpath d='m20.16,0C9.03,0,0,9.03,0,20.16v381.68c0,11.13,9.03,20.16,20.16,20.16h65.68c11.13,0,20.16-9.03,20.16-20.16V20.16c0-11.13-9.03-20.16-20.16-20.16,0,0-65.68,0-65.68,0Zm206,0c-11.13,0-20.16,9.03-20.16,20.16v381.68c0,11.13,9.03,20.16,20.16,20.16h65.68c11.13,0,20.16-9.03,20.16-20.16V20.16c0-11.13-9.03-20.16-20.16-20.16h-65.68Z' fill='%2355C2C4' /%3E%3C/svg%3E") center center no-repeat;
    content: "";
    width: 30px;
    height: 30px;
    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;
}

.puff-slider .slick-autoplay-toggle-button:hover .slick-play-icon:after {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 330 330' width='20' height='20'%3E%3Cpath d='M37.728,328.12c2.266,1.256,4.77,1.88,7.272,1.88c2.763,0,5.522-0.763,7.95-2.28l240-149.999c4.386-2.741,7.05-7.548,7.05-12.72c0-5.172-2.664-9.979-7.05-12.72L52.95,2.28c-4.625-2.891-10.453-3.043-15.222-0.4C32.959,4.524,30,9.547,30,15v300C30,320.453,32.959,325.476,37.728,328.12z' fill='%23EF3F34' /%3E%3C/svg%3E") center center no-repeat;
}

.puff-slider .slick-autoplay-toggle-button:hover .slick-pause-icon:after {
    background: url("data:image/svg+xml,%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 312 422' width='14' height='20'%3E%3Cpath d='m20.16,0C9.03,0,0,9.03,0,20.16v381.68c0,11.13,9.03,20.16,20.16,20.16h65.68c11.13,0,20.16-9.03,20.16-20.16V20.16c0-11.13-9.03-20.16-20.16-20.16,0,0-65.68,0-65.68,0Zm206,0c-11.13,0-20.16,9.03-20.16,20.16v381.68c0,11.13,9.03,20.16,20.16,20.16h65.68c11.13,0,20.16-9.03,20.16-20.16V20.16c0-11.13-9.03-20.16-20.16-20.16h-65.68Z' fill='%23EF3F34' /%3E%3C/svg%3E") center center no-repeat;
}

.puff-slider .slick-autoplay-toggle-button:active .slick-play-icon:after {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 330 330' width='20' height='20'%3E%3Cpath d='M37.728,328.12c2.266,1.256,4.77,1.88,7.272,1.88c2.763,0,5.522-0.763,7.95-2.28l240-149.999c4.386-2.741,7.05-7.548,7.05-12.72c0-5.172-2.664-9.979-7.05-12.72L52.95,2.28c-4.625-2.891-10.453-3.043-15.222-0.4C32.959,4.524,30,9.547,30,15v300C30,320.453,32.959,325.476,37.728,328.12z' fill='%23EF3F34' /%3E%3C/svg%3E") center center no-repeat;
}

.puff-slider .slick-autoplay-toggle-button:active .slick-pause-icon:after {
    background: url("data:image/svg+xml,%3Csvg id='Layer_1' data-name='Layer 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 312 422' width='14' height='20'%3E%3Cpath d='m20.16,0C9.03,0,0,9.03,0,20.16v381.68c0,11.13,9.03,20.16,20.16,20.16h65.68c11.13,0,20.16-9.03,20.16-20.16V20.16c0-11.13-9.03-20.16-20.16-20.16,0,0-65.68,0-65.68,0Zm206,0c-11.13,0-20.16,9.03-20.16,20.16v381.68c0,11.13,9.03,20.16,20.16,20.16h65.68c11.13,0,20.16-9.03,20.16-20.16V20.16c0-11.13-9.03-20.16-20.16-20.16h-65.68Z' fill='%23EF3F34' /%3E%3C/svg%3E") center center no-repeat;
}

/*- Screen Reader -*/
.puff-slider .slick-sr-only {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    border: 0;
}

@media all and (min-width:768px) {
    .puff-block {
        /* padding:7rem 0.625rem 6rem; */
    }
}

@media all and (min-width:1024px) {
    .puff-block {
        /* padding:10rem 0 9rem; */
        /* Remove negative margins for desktop */
        margin-left: auto;
        margin-right: auto;
    }
}

/************************************
/*----------------------------------
/* MENU PROGRAMS
/*----------------------------------
/*************************************/
.menu-programs .icon-callout-circle {
    width: 147px;
    height: 147px;
}

.menu-programs .icon-callout-icon {
    max-height: 90px;
}


/************************************
/*----------------------------------
/* BLOCKQUOTE
/*----------------------------------
/*************************************/

blockquote,
blockquote p,
cite {
    color: var(--color-base);
}

blockquote::before {
    display: block;
    width: 44px;
    height: 33px;
    margin: 0 0 1.5rem;
    content: "";
    background: var(--sectional-quote-image);
}

blockquote p {
    font-size: 1rem;
}

blockquote cite {
    margin-top: auto;
    font-weight: 700;
}

blockquote cite:before {
    display: none;
}

blockquote cite strong {
    display: block;
    text-transform: uppercase;
}

/************************************
/*----------------------------------
/* Brands
/*----------------------------------
/*************************************/
.img-link {
    display: inline-block;
    line-height: 0;
    -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;
}

.img-link img {
    max-width: 200px;
}

@media all and (min-width:768px) {
    .img-link img {
        max-width: 200px;
    }
}

/************************************
/*----------------------------------
/* PROGRAM FEATURES
/*----------------------------------
/*************************************/

.icon-boxes .flex-container {
    gap: 30px;
    flex-direction: column;
}

.icon-boxes .flex-container.background-mediumtan {
    box-shadow: 0px 10px 25px #0000000D;
}

.panel-laptop .split-panel-img {
    object-position: right;
}

.icon-boxes .icon-callout-circle {
    margin: 0 auto;
}

.gray-icon-panel .flex-container {
    flex-direction: column;
    gap: 30px;
}

@media all and (min-width:768px) {
    .icon-boxes .flex-container {
        flex-direction: row;
    }

    .gray-icon-panel .flex-container {
        flex-direction: row;
    }
}

/************************************
/*----------------------------------
/* OUR TEAM FILTER
/*----------------------------------
/*************************************/

.filter-buttons {
    gap: 10px;
}

/************************************
/*----------------------------------
/* 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 h4 size. Set size so can use whatever header is appropriate */
    font-size: 2.313rem;
}

.media-block-text {}

@media all and (min-width:1024px) {
    .media-block {
        margin: 2rem 0;
    }

    .media-block-content {
        padding: 0;
    }

    .media-block-media {
        /* Remove negative margins for desktop */
        margin-left: auto;
        margin-right: auto;
    }
}


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

.timeline {
    position: relative;
    padding-top: 3rem;
    margin-bottom: 1rem;
}

.timeline::before {
    display: block;
    width: 0.250rem;
    height: 100%;
    content: '';
    background-color: var(--color-primary);
    position: absolute;
    top: 0;
    left: 0;
}

.timeline.module__timeline::before {
    background-color: var(--color-base);
}

.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-base);
    position: absolute;
    top: 0.563rem;
    left: 0.250rem;
}

.timeline__title {
    /* Default h6 size. Set size so can use whatever header is appropriate */
    font-size: 1.125rem;
    font-weight: bold;
    color: var(--color-base);
}

.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-base);
        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;
    }
}


/************************************
/*----------------------------------
/* TIMELINE BUBBLE
/*----------------------------------
/*************************************/
.timeline__content--has-plot::before {
    display: none;
}

.timeline__plot {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    background: #ffffff;
    position: relative;
    left: -2rem;
    margin-bottom: 2rem;
    border: 0.250rem solid var(--color-primary);
    border-radius: 100%;
}

.timeline__plot::after {
    display: block;
    width: 0;
    height: 0;
    content: '';
    line-height: 0;
    /* Remove whitespace */
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid var(--color-base);
    position: absolute;
    top: calc(100% + 0.188rem);
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.plot__number {
    margin-bottom: 0;
    /* Set size so can use whatever header is appropriate */
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--color-base);
}

.plot__icon {
    max-width: 80%;
    max-height: 80%;
}

@media all and (min-width:1024px) {

    .timeline__content--has-plot,
    .timeline__media--for-plot {
        padding-top: 28px;
    }

    .timeline__content--has-plot:not(.timeline__content--invert) {
        padding-right: 80px;
    }

    .timeline__content--has-plot.timeline__content--invert {
        padding-left: 80px;
    }

    .timeline__plot {
        margin-bottom: initial;
        position: absolute;
        top: 0;
        right: -45px;
        left: initial;
    }

    .timeline__plot:not(.timeline__plot--invert) {
        left: initial;
        right: -45px;
    }

    .timeline__plot--invert {
        left: -45px;
    }

    .timeline__plot::after {
        border-bottom: 8px solid transparent;
        border-top: 8px solid transparent;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .timeline__plot:not(.timeline__plot--invert)::after {
        border-right: 10px solid var(--color-primary);
        left: -21px;
    }

    .timeline__plot.border-teal:not(.timeline__plot--invert)::after {
        border-right: 10px solid var(--color-primary);
        left: -21px;
    }

    .timeline__plot.border-red:not(.timeline__plot--invert)::after {
        border-right: 10px solid var(--color-secondary);
        left: -21px;
    }

    .timeline__plot.border-yellow:not(.timeline__plot--invert)::after {
        border-right: 10px solid var(--color-tertiary);
        left: -21px;
    }

    .timeline__plot--invert::after {
        border-left: 10px solid var(--color-primary);
        left: initial;
        right: -21px;
    }

    .timeline__plot--invert.border-teal::after {
        border-left: 10px solid var(--color-primary);
        left: initial;
        right: -21px;
    }

    .timeline__plot--invert.border-red::after {
        border-left: 10px solid var(--color-secondary);
        left: initial;
        right: -21px;
    }

    .timeline__plot--invert.border-yellow::after {
        border-left: 10px solid var(--color-tertiary);
        left: initial;
        right: -21px;
    }

    .timeline__media--for-plot:not(.timeline__media--invert) {
        padding-left: 80px;
    }

    .timeline__media--for-plot.timeline__media--invert {
        padding-right: 80px;
    }
}

.module__timeline .plot__number {
    font-size: 1.125rem;
    text-align: center;
}

/************************************
/*----------------------------------
/* LOGO BAND
/*----------------------------------
/*************************************/

.img-link {
    display: inline-block;
    line-height: 0;
    -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;
}

.img-link,
.img-link:hover,
.img-link:active,
.img-link:focus,
.img-link:focus-visible {
    background: transparent;
    border: 0;
}

.img-link:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.img-link:active {
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.img-link:focus,
.img-link:focus-visible {
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}



/* WP card slider */


/*- Slider -*/
.js-news-slider {
    /* JS Hook, no styling */
}

.news-slider {
    /* ul */
    margin-bottom: 0;
    padding: 0 0 3rem 0;
}

.news-slider .slick-loading .slick-list {
    background: #fff url('../images/ajax-loader.gif') center center no-repeat;
}

.news-slider .slick-list {}

.news-slider .slick-track {
    display: -ms-flexbox;
    display: flex;
    align-items: stretch;
}

.news-slider .slick-slide {
    height: auto;
    margin-top: 0.5rem;
    /* Accommodate Shadow */
    margin-bottom: 0.75rem;
    /* Accommodate Shadow */
}

.news-slider .slick-slide div {
    height: 100%;
    display: -ms-flexbox;
    display: flex;
    align-items: stretch;
}

.news-slider .slick-slide div li {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

/*- Arrows -*/
.news-slider .slick-prev,
.news-slider .slick-next {
    background: transparent;
    display: block;
    padding: 0;
    width: 52px;
    height: 52px;
    border: 1px solid #8d9096;
    border-radius: 100%;
    position: absolute;
    bottom: 0;
    cursor: pointer;
    font-size: 0;
    color: transparent;
    box-shadow: none;
    z-index: 1;
    transition: all 200ms ease-in-out;
    -webkit-transition: all 200ms ease-in-out;
}

.news-slider .slick-prev:hover,
.news-slider .slick-next:hover {
    background: #dd6c0c;
    border-color: #dd6c0c;
}

.news-slider .slick-prev:active,
.news-slider .slick-next:active {
    background: #ba5b0a;
    border-color: #ba5b0a;
}

.news-slider .slick-prev:focus,
.news-slider .slick-prev:focus-visible,
.news-slider .slick-next:focus,
.news-slider .slick-next:focus-visible {
    -webkit-box-shadow: 0 0 0 2px #fff, 0 0 0 4px #dd6c0c;
    -moz-box-shadow: 0 0 0 2px #fff, 0 0 0 4px #dd6c0c;
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #dd6c0c;
    outline: 0;
}

.news-slider .slick-prev {
    left: 0.625rem;
}

.news-slider .slick-next {
    left: 78px;
}

.news-slider .slick-prev:before,
.news-slider .slick-next:before {
    margin: 0 auto;
    display: block;
    width: 10px;
    height: 16px;
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9.15' height='16' viewBox='0 0 9.15 16'%3E%3Cpath d='M8.82,8.76L1.97,15.67c-.44,.44-1.15,.44-1.58,0-.44-.44-.44-1.15,0-1.58L6.44,7.98,.33,1.92c-.44-.44-.44-1.15,0-1.58,.44-.44,1.15-.44,1.58,0l6.91,6.85c.22,.22,.33,.5,.33,.79s-.11,.57-.33,.79' style='fill: %23dd6c0c;'/%3E%3C/svg%3E");
    position: absolute;
    left: 50%;
    top: 50%;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}

.news-slider .slick-prev:hover:before,
.news-slider .slick-next:hover:before,
.news-slider .slick-prev:active:before,
.news-slider .slick-next:active:before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9.15' height='16' viewBox='0 0 9.15 16'%3E%3Cpath d='M8.82,8.76L1.97,15.67c-.44,.44-1.15,.44-1.58,0-.44-.44-.44-1.15,0-1.58L6.44,7.98,.33,1.92c-.44-.44-.44-1.15,0-1.58,.44-.44,1.15-.44,1.58,0l6.91,6.85c.22,.22,.33,.5,.33,.79s-.11,.57-.33,.79' style='fill: %23fff;'/%3E%3C/svg%3E");
}

.news-slider .slick-prev:before {
    -webkit-transform: translate(-50%, -50%) rotate(180deg);
    transform: translate(-50%, -50%) rotate(180deg);
}

.news-slider .slick-next:before {
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.news-slider .slick-prev.slick-disabled:before,
.news-slider .slick-next.slick-disabled:before {
    opacity: 0.5;
}

/*- Screen Reader -*/
.news-slider .slick-sr-only {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    border: 0;
}

@media all and (min-width:640px) {}


/* Partneres and Integrations page */

table thead th,
table tbody td:not(:first-of-type) {
    text-align: center;
}


/*---> Accordion <---*/
.accordion {
    margin-bottom: 1rem;
}

.accordion-item:first-child> :first-child,
.accordion-item:last-child> :last-child,
:last-child:not(.is-active)>.accordion-title {
    border-radius: 0;
}

.accordion-item:not(:last-child) {
    margin-bottom: 0.625rem;
}

.accordion-title {
    padding: 1.25rem 1.5rem;
    /*  Width of +/- Symbol = 50px
        Padding Left of +/- Symbol = 1.5rem = 24px
        White Space Right of +/- Symbol = 0.625rem = 10px
        50px + 24px + 10px = 84px
    */
    padding-right: 84px;
    font-family: var(--color-base);
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.3;
    transition: all 200ms ease-in-out;
    -webkit-transition: all 200ms ease-in-out;
}

.accordion-title,
.accordion-title:is(:focus) {
    color: var(--color-base);
}

.accordion-title,
:last-child:not(.is-active)>.accordion-title {
    border: 0;
}

.accordion-title,
.accordion-title:is(:hover, :active, :focus, :focus-visible) {
    background-color: #F8F6F0;
}

.accordion-title:is(:hover, :active) {
    color: var(--color-primary);
}

.accordion-title:is(:focus-visible) {
    color: var(--color-primary);
}

.accordion-title:is(:active, :focus, :focus-visible) {
    text-decoration: none;
    /* Reset from base link styling */
}

.accordion-title::before {
    display: none;
    /* Remove Foundation's +/- Symbol */
}

.accordion-title::after {
    content: "+";
    background-color: var(--color-base);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: calc(100% - 1.25rem);
    max-height: 50px;
    position: absolute;
    right: 0.625rem;
    top: 0.625rem;
    color: #ffffff;
    text-align: center;
    transition: all 200ms ease-in-out;
    -webkit-transition: all 200ms ease-in-out;
}

.is-active>.accordion-title::after {
    content: "\2013";
}

.is-active .accordion-title:is(:hover, :active)::after,
.accordion-title:is(:hover, :active)::after {
    background-color: var(--color-primary);
}

.is-active .accordion-title::after,
.accordion-title:is(:focus-visible)::after {
    background-color: var(--color-primary);
}

.accordion-content {
    background-color: transparent;
    padding: 1rem 0 0.313rem 0;
    border: 0;
}

:last-child>.accordion-content:last-child {
    border-bottom: 0;
}

.tabs {
    background-color: #F8F6F0;
    border: 10px solid #F8F6F0;
    border-bottom: 0;
}

.tabs-title>a {
    background-color: #F8F6F0;
    padding: 1.25rem 1.5rem;
    /* border-left:7px solid var(--color-base); */
    font-family: var(--font-primary);
    font-size: var(--font-size-h6);
    font-weight: 400;
    line-height: 1.3;
}

.tabs-title>a,
.tabs-title>a[aria-selected="true"],
.tabs-title>a:is(:focus) {
    color: var(--color-base);
}

.tabs-title>a[aria-selected="true"],
.tabs-title>a:is(:hover, :focus, :focus-visible) {
    background-color: #ffffff;
}

.tabs-title>a[aria-selected="true"],
.tabs-title>a:is(:focus-visible) {
    border-color: var(--color-primary);
}

.tabs-title>a:is(:hover, :active) {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.tabs-title>a:is(:focus-visible) {
    color: var(--color-primary);
}

.tabs-title>a:is(:active, :focus-visible) {
    /* text-decoration:none;Reset from base link styling */
}

.tabs-content {
    margin-bottom: 1rem;
    color: var(--color-base);
    border: 10px solid #F8F6F0;
    border-top: 0;
}

.tabs-panel {
    padding: 1.5rem 1.5rem 0.313rem;
}

/* new style */

.tabs {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
}

.tabs::after,
.tabs::before {
    display: none;
}

.tabs-title {
    flex-grow: 1;
}

.tabs-title>a {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    text-align: center;
    font-weight: 700;
}

.tabs-title.is-active {
    position: relative;
}

/* tab 1 */
.tabs-title>a#tab1 {
    background-color: var(--color-base);
    color: #ffffff;
    border-left: 3px solid var(--color-base);
    border-top: 3px solid var(--color-base);
    border-right: 3px solid var(--color-base);
    border-bottom: none;
}

.tabs-title.is-active>a#tab1 {
    background-color: #ffffff;
    color: var(--color-base);
    border-left: 3px solid var(--color-base);
    border-top: 3px solid var(--color-base);
    border-right: 3px solid var(--color-base);
    border-bottom: none;
}

.tabs-title.is-active>a#tab1:is(:hover, :active) {
    background-color: #fff;
    color: var(--color-base);
    border-left: 3px solid var(--color-base);
    border-top: 3px solid var(--color-base);
    border-right: 3px solid var(--color-base);
    border-bottom: none;
}

.tabs-title>a#tab1:is(:hover, :active) {
    background-color: var(--color-base);
    color: #ffffff;
    /* border: none; */
}

.tabs-title.is-active>a#tab1::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: white;
    z-index: 2;
    border-left: 3px solid var(--color-base);
    border-right: 3px solid var(--color-base);
}

/* tab 2 */
.tabs-title>a#tab2 {
    background-color: var(--color-primary);
    color: #ffffff;
    border-left: 3px solid var(--color-primary);
    border-top: 3px solid var(--color-primary);
    border-right: 3px solid var(--color-primary);
    border-bottom: none;
}

.tabs-title.is-active>a#tab2 {
    background-color: #ffffff;
    color: var(--color-base);
    border-left: 3px solid var(--color-primary);
    border-top: 3px solid var(--color-primary);
    border-right: 3px solid var(--color-primary);
    border-bottom: none;
}

.tabs-title.is-active>a#tab2:is(:hover, :active) {
    background-color: #fff;
    color: var(--color-primary);
    border-left: 3px solid var(--color-primary);
    border-top: 3px solid var(--color-primary);
    border-right: 3px solid var(--color-primary);
    border-bottom: none;
}

.tabs-title>a#tab2:is(:hover, :active) {
    background-color: var(--color-primary);
    color: #ffffff;
    /* border: none; */
}

.tabs-title.is-active>a#tab2::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: white;
    z-index: 2;
    border-left: 3px solid var(--color-primary);
    border-right: 3px solid var(--color-primary);
}

/* tab 3 */
.tabs-title>a#tab3 {
    background-color: var(--color-secondary);
    color: #ffffff;
    border-left: 3px solid var(--color-secondary);
    border-top: 3px solid var(--color-secondary);
    border-right: 3px solid var(--color-secondary);
    border-bottom: none;
}

.tabs-title.is-active>a#tab3 {
    background-color: #ffffff;
    color: var(--color-base);
    border-left: 3px solid var(--color-secondary);
    border-top: 3px solid var(--color-secondary);
    border-right: 3px solid var(--color-secondary);
    border-bottom: none;
}

.tabs-title.is-active>a#tab3:is(:hover, :active) {
    background-color: #fff;
    color: var(--color-secondary);
    border-left: 3px solid var(--color-secondary);
    border-top: 3px solid var(--color-secondary);
    border-right: 3px solid var(--color-secondary);
    border-bottom: none;
}

.tabs-title>a#tab3:is(:hover, :active) {
    background-color: var(--color-secondary);
    color: #ffffff;
    /* border: none; */
}

.tabs-title.is-active>a#tab3::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: white;
    z-index: 2;
    border-left: 3px solid var(--color-secondary);
    border-right: 3px solid var(--color-secondary);
}

/* tab 4 */
.tabs-title>a#tab4 {
    background-color: var(--color-tertiary);
    color: #ffffff;
    border-left: 3px solid var(--color-tertiary);
    border-top: 3px solid var(--color-tertiary);
    border-right: 3px solid var(--color-tertiary);
    border-bottom: none;
}

.tabs-title.is-active>a#tab4 {
    background-color: #ffffff;
    color: var(--color-base);
    border-left: 3px solid var(--color-tertiary);
    border-top: 3px solid var(--color-tertiary);
    border-right: 3px solid var(--color-tertiary);
    border-bottom: none;
}

.tabs-title.is-active>a#tab4:is(:hover, :active) {
    background-color: #fff;
    color: var(--color-tertiary);
    border-left: 3px solid var(--color-tertiary);
    border-top: 3px solid var(--color-tertiary);
    border-right: 3px solid var(--color-tertiary);
    border-bottom: none;
}

.tabs-title>a#tab4:is(:hover, :active) {
    background-color: var(--color-tertiary);
    color: #ffffff;
    /* border: none; */
}

.tabs-title.is-active>a#tab4::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: white;
    z-index: 2;
    border-left: 3px solid var(--color-tertiary);
    border-right: 3px solid var(--color-tertiary);
}

.tabs-title>a:is(:hover, :active) {
    background-color: var(--color-base);
}

[aria-labelledby="tab1"] {
    border: 3px solid var(--color-base);
}

[aria-labelledby="tab2"] {
    border: 3px solid var(--color-primary);
}

[aria-labelledby="tab3"] {
    border: 3px solid var(--color-secondary);
}

[aria-labelledby="tab4"] {
    border: 3px solid var(--color-tertiary);
}


/* FORM CHECKBOX TWO COLUMNS */
#checkbox-67708 fieldset span {
    display: flex;
    align-items: flex-start;
}

@media all and (min-width: 64rem) {

    #checkbox-67708 fieldset {
        display: flex;
        flex-wrap: wrap;
    }

    #checkbox-67708 fieldset span {
        margin-bottom: 10px;
        margin-right: 0;
        flex: 0 0 50%;
        padding-right: 1.5rem;
    }
}


/* PANELS */
.panel {
    width: 100vw;
    max-width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    isolation: isolate;
    background: #F8F6F0;
    overflow: hidden;
}
.panel.has-drop-shadow {
    z-index:101;
}
.panel--has-img {
    background:#fff;
}

.panel>.row,
.panel>.row.expanded {
    margin-left: auto;
    margin-right: auto;
}

.panel>.row:not(.expanded) {
    width: 100%;
    max-width: 1170px;
    max-width: 73.125rem;
}

.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: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;    
}

.panel__img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.panel__content {
    /*padding:3rem 0;*/
}

.panel__content--left {}

.panel__content--center {}

.panel__content--right {}

.panel__title {
    font-size: 1.625rem;
}

.panel__title,
.panel__text {
    color: inherit;
}

.panel__text {}

@media all and (min-width:1024px) {

}

.primary-content {
    padding-top: 2rem;
}
@media all and (min-width:64rem) {
    .primary-content {
        padding-top: 3rem;
    }
}

/*Stats*/
.stats {
}
.stats__title {
    font-size:5rem;
    color:var(--color-primary);
}
.stats__text {
    font-size:125%;
    line-height:1.5;
}
.stats:has(.stats__title + .stats__text) .stats__title {
    margin-bottom:0;
}

/* Plateful Graphic */
.plateful-graphic {
    text-align: center;
}
.plateful-graphic__banner {
    position: relative;
}
.content-padding-left, .content-padding-right {
	padding-left: .625rem;
	padding-right: .625rem;
}
@media all and (min-width: 64rem) {
	.content-padding-left {
		padding-left: calc(((100vw - var(--row-max-width-rem)) / 2) + 10px);
	}	
	.content-padding-right {
		padding-right: calc(((100vw - var(--row-max-width-rem)) / 2) + 10px);
	}	
}
@media all and (min-width: 1368px) {
    .plateful-graphic__banner {
        margin-bottom: -175px;
    }
}