  /**
* @file
* CSS output file
*
* Combine all theme scss into a single CSS file
*/
/**
* Variables
* Contains global variables available to the theme.
*/
/*
weights and styles:
400: Regular | Italiic
500: Medium | Italiic
600: Semibold
700: Bold | Italic
*/
/*
weights and styles:
800: Black | Italiic
*/
/*
weights and styles:
400: Normal/Ernie
*/
/**
* Mixins
* Contains global SCSS mixins
*/
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
	outline: 1px solid;
	outline-offset: 2px;
	-webkit-transition: none;
	-o-transition: none;
	transition: none;
	outline-color: #FFFFFF;
}

/**
* Animations
* Contains all keyframe animations in use on the site.
*/
/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
========================================================================== */
/**
* 1. Correct the line height in all browsers.
* 2. Prevent adjustments of font size after orientation changes in
*    IE on Windows Phone and in iOS.
*/
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

html {
	line-height: 1.15; /* 1 */
	-ms-text-size-adjust: 100%; /* 2 */
	-webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
========================================================================== */
/**
* Remove the margin in all browsers (opinionated).
*/
body {
	margin: 0;
}

/**
* Add the correct display in IE 9-.
*/
article,
aside,
footer,
header,
nav,
section {
	display: block;
}

/**
* Correct the font size and margin on `h1` elements within `section` and
* `article` contexts in Chrome, Firefox, and Safari.
*/
h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

/* Grouping content
========================================================================== */
/**
* Add the correct display in IE 9-.
* 1. Add the correct display in IE.
*/
figcaption, .vid-inline__caption,
figure,
main {
	/* 1 */
	display: block;
}

/**
* Add the correct margin in IE 8.
*/
figure {
	margin: 1em 40px;
}

/**
* 1. Add the correct box sizing in Firefox.
* 2. Show the overflow in Edge and IE.
*/
hr {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box; /* 1 */
	height: 0; /* 1 */
	overflow: visible; /* 2 */
}

/**
* 1. Correct the inheritance and scaling of font size in all browsers.
* 2. Correct the odd `em` font sizing in all browsers.
*/
pre {
	font-family: monospace, monospace; /* 1 */
	font-size: 1em; /* 2 */
}

/* Text-level semantics
========================================================================== */
/**
* 1. Remove the gray background on active links in IE 10.
* 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
*/
a {
	background-color: transparent; /* 1 */
	-webkit-text-decoration-skip: objects; /* 2 */
}

/**
* 1. Remove the bottom border in Chrome 57- and Firefox 39-.
* 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
*/
abbr[title] {
	border-bottom: none; /* 1 */
	text-decoration: underline; /* 2 */
	-webkit-text-decoration: underline dotted;
	-moz-text-decoration: underline dotted;
	text-decoration: underline dotted; /* 2 */
}

/**
* Prevent the duplicate application of `bolder` by the next rule in Safari 6.
*/
b,
strong {
	font-weight: inherit;
}

/**
* Add the correct font weight in Chrome, Edge, and Safari.
*/
b,
strong {
	font-weight: bolder;
}

/**
* 1. Correct the inheritance and scaling of font size in all browsers.
* 2. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp {
	font-family: monospace, monospace; /* 1 */
	font-size: 1em; /* 2 */
}

/**
* Add the correct font style in Android 4.3-.
*/
dfn {
	font-style: italic;
}

/**
* Add the correct background and color in IE 9-.
*/
mark {
	background-color: #FFFF00;
	color: #000000;
}

/**
* Add the correct font size in all browsers.
*/
small {
	font-size: 80%;
}

/**
* Prevent `sub` and `sup` elements from affecting the line height in
* all browsers.
*/
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/* Embedded content
========================================================================== */
/**
* Add the correct display in IE 9-.
*/
audio,
video {
	display: inline-block;
}

/**
* Add the correct display in iOS 4-7.
*/
audio:not([controls]) {
	display: none;
	height: 0;
}

/**
* Remove the border on images inside links in IE 10-.
*/
img {
	border-style: none;
}

/**
* Hide the overflow in IE.
*/
svg:not(:root) {
	overflow: hidden;
}

/* Forms
========================================================================== */
/**
* 1. Change the font styles in all browsers (opinionated).
* 2. Remove the margin in Firefox and Safari.
*/
button,
input,
optgroup,
select,
textarea {
	font-family: sans-serif; /* 1 */
	font-size: 100%; /* 1 */
	line-height: 1.15; /* 1 */
	margin: 0; /* 2 */
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	border-radius: 0;
}

select::-ms-expand {
	display: none;
}

/**
* Show the overflow in IE.
* 1. Show the overflow in Edge.
*/
button,
input {
	/* 1 */
	overflow: visible;
	border-radius: 0;
}

/**
* Remove the inheritance of text transform in Edge, Firefox, and IE.
* 1. Remove the inheritance of text transform in Firefox.
*/
button,
select {
	/* 1 */
	text-transform: none;
}

/**
* 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
*    controls in Android 4.
* 2. Correct the inability to style clickable types in iOS and Safari.
*/
button,
html [type=button],
[type=reset],
[type=submit] {
	-webkit-appearance: none; /* 2 */
	cursor: pointer;
}

/**
* Remove the inner border and padding in Firefox.
*/
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/**
* Restore the focus styles unset by the previous rule.
*/
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

/**
* Correct the padding in Firefox.
*/
fieldset {
	padding: 0.35em 0.75em 0.625em;
}

/**
* 1. Correct the text wrapping in Edge and IE.
* 2. Correct the color inheritance from `fieldset` elements in IE.
* 3. Remove the padding so developers are not caught out when they zero out
*    `fieldset` elements in all browsers.
*/
legend {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box; /* 1 */
	color: inherit; /* 2 */
	display: table; /* 1 */
	max-width: 100%; /* 1 */
	padding: 0; /* 3 */
	white-space: normal; /* 1 */
}

/**
* 1. Add the correct display in IE 9-.
* 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
*/
progress {
	display: inline-block; /* 1 */
	vertical-align: baseline; /* 2 */
}

/**
* Remove the default vertical scrollbar in IE.
*/
textarea {
	overflow: auto;
}

/**
* 1. Add the correct box sizing in IE 10-.
* 2. Remove the padding in IE 10-.
*/
[type=checkbox],
[type=radio] {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box; /* 1 */
	padding: 0; /* 2 */
}

/**
* Correct the cursor style of increment and decrement buttons in Chrome.
*/
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
	height: auto;
}

/**
* 1. Correct the odd appearance in Chrome and Safari.
* 2. Correct the outline style in Safari.
*/
[type=search] {
	-webkit-appearance: textfield; /* 1 */
	outline-offset: -2px; /* 2 */
}

/**
* Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
*/
[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
* 1. Correct the inability to style clickable types in iOS and Safari.
* 2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
	-webkit-appearance: button; /* 1 */
	font: inherit; /* 2 */
}

/* Interactive
========================================================================== */
/*
* Add the correct display in IE 9-.
* 1. Add the correct display in Edge, IE, and Firefox.
*/
details,
menu {
	display: block;
}

/*
* Add the correct display in all browsers.
*/
summary {
	display: list-item;
}

/* Scripting
========================================================================== */
/**
* Add the correct display in IE 9-.
*/
canvas {
	display: inline-block;
}

/**
* Add the correct display in IE.
*/
template {
	display: none;
}

/* Hidden
========================================================================== */
/**
* Add the correct display in IE 10-.
*/
[hidden] {
	display: none;
}

/**
* @file
* Typography
* Base typography for the theme
*/
h1 {
	font-size: 42px;
	font-size: 2.625rem;
	font-weight: 800;
	line-height: 1;
	font-family: acumin-pro-condensed, sans-serif;
	font-style: normal;
}
@media (min-width: 700px) {
	h1 {
		font-size: 48px;
		font-size: 3rem;
		line-height: 1.2;
	}
}
@media (min-width: 1025px) {
	h1 {
		font-size: 72px;
		font-size: 4.5rem;
		line-height: 1.1;
	}
}

h2 {
	margin: 48px 0 16px;
	font-size: 28px;
	font-size: 1.75rem;
	line-height: 1;
	font-family: acumin-pro-condensed, sans-serif;
	font-style: normal;
	font-weight: 800;
}
@media (min-width: 700px) {
	h2 {
		margin: 64px 0 24px;
		font-size: 42px;
		font-size: 2.625rem;
	}
}
@media (min-width: 1025px) {
	h2 {
		margin: 80px 0 32px;
		font-size: 54px;
		font-size: 3.375rem;
	}
}

h3, .story-carousel__header h2 {
	margin: 35px 0 16px;
	font-size: 24px;
	font-size: 1.5rem;
	font-weight: 800;
	line-height: 1.3;
	font-family: acumin-pro-condensed, sans-serif;
	font-style: normal;
}
@media (min-width: 700px) {
	h3, .story-carousel__header h2 {
		margin: 64px 0 24px;
		font-size: 36px;
		font-size: 2.25rem;
	}
}
@media (min-width: 1025px) {
	h3, .story-carousel__header h2 {
		margin: 80px 0 32px;
		font-size: 42px;
		font-size: 2.625rem;
		line-height: 1;
	}
}

h4, .genimglist__title h3, .genimglist__title .story-carousel__header h2, .story-carousel__header .genimglist__title h2 {
	margin: 35px 0 16px;
	font-size: 21px;
	font-size: 1.3125rem;
	font-weight: 800;
	line-height: 1.3;
	font-family: acumin-pro-condensed, sans-serif;
	font-style: normal;
}
@media (min-width: 700px) {
	h4, .genimglist__title h3, .genimglist__title .story-carousel__header h2, .story-carousel__header .genimglist__title h2 {
		margin: 64px 0 24px;
		font-size: 28px;
		font-size: 1.75rem;
	}
}
@media (min-width: 1025px) {
	h4, .genimglist__title h3, .genimglist__title .story-carousel__header h2, .story-carousel__header .genimglist__title h2 {
		margin: 80px 0 32px;
		font-size: 38px;
		font-size: 2.375rem;
		line-height: 1;
	}
}

h5, .featured3up__caption h3, .featured3up__caption .story-carousel__header h2, .story-carousel__header .featured3up__caption h2, .alert__content h2 {
	margin: 35px 0 16px;
	font-size: 18px;
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.3;
	font-family: "acumin-pro", sans-serif;
	font-style: normal;
}
@media (min-width: 700px) {
	h5, .featured3up__caption h3, .featured3up__caption .story-carousel__header h2, .story-carousel__header .featured3up__caption h2, .alert__content h2 {
		margin: 64px 0 24px;
		font-size: 22px;
		font-size: 1.375rem;
		line-height: 1.2;
	}
}
@media (min-width: 1025px) {
	h5, .featured3up__caption h3, .featured3up__caption .story-carousel__header h2, .story-carousel__header .featured3up__caption h2, .alert__content h2 {
		margin: 80px 0 32px;
		font-size: 24px;
		font-size: 1.5rem;
		line-height: 1.3;
	}
}

h6 {
	margin: 35px 0 16px;
	font-size: 16px;
	font-size: 1rem;
	font-weight: 800;
	line-height: 1.3;
	font-family: acumin-pro-condensed, sans-serif;
	font-style: normal;
}
@media (min-width: 700px) {
	h6 {
		margin: 64px 0 24px;
		font-size: 18px;
		font-size: 1.125rem;
		line-height: 1;
	}
}
@media (min-width: 1025px) {
	h6 {
		margin: 80px 0 32px;
		font-size: 20px;
		font-size: 1.25rem;
		line-height: 1.25;
	}
}

.script {
	font-size: 18px;
	font-size: 1.125rem;
	line-height: 0.9;
	font-weight: 600;
	font-family: adobe-handwriting-ernie, sans-serif;
	font-style: normal;
}
@media (min-width: 700px) {
	.script {
		font-size: 28px;
		font-size: 1.75rem;
	}
}
@media (min-width: 1025px) {
	.script {
		font-size: 36px;
		font-size: 2.25rem;
	}
}

body {
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.5rem;
	font-weight: 500;
}
@media (min-width: 700px) {
	body {
		line-height: 1.625rem;
	}
}
@media (min-width: 1025px) {
	body {
		font-size: 18px;
		font-size: 1.125rem;
		line-height: 1.6rem;
		font-weight: 500;
	}
}

p {
	margin: 0 0 1em;
}
p:empty {
	display: none;
}

strong {
	font-weight: 700;
}

ul {
	padding-left: 1.25rem;
	margin: 1rem 0;
	list-style: none;
}
ul > li {
	padding-left: 1.875rem;
	margin: 0 0 1rem 0;
	list-style-position: inside;
	position: relative;
}
ul > li ul, ul > li ol {
	margin: 1rem 0 0;
}
ul > li:before {
	content: "";
	width: 9px;
	height: 9px;
	border: 3px solid #046A38;
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 0.39em;
}
@media (min-width: 1025px) {
	ul > li:before {
		top: 0.45em;
	}
}

ol {
	padding-left: 1.25rem;
	margin: 1rem 0;
	counter-reset: item;
	list-style-type: none;
}
ol > li:before {
	content: counter(item) ".";
	counter-increment: item;
	color: #046A38;
	font-weight: 700;
	margin-right: 0.875rem;
}
ol > li {
	display: block;
	padding-left: 6px;
	margin: 0 0 1rem 0;
	list-style-position: inside;
}
ol > li ol {
	margin: 1rem 0 0;
	padding-left: 20px;
}
ol > li ul {
	margin: 1rem 0 0;
}

/**
* Base theme styles
* This file contains theme base styles.
*
* For example:
* - WYSIWYG styles and layouts
* - Images and Videos
* - Tables
*/
html {
	font-size: 16px;
}
@media (min-width: 1025px) {
	html {
		font-size: 16px;
	}
}

div:focus,
thead:focus {
	outline: 2px solid #000000;
	outline-offset: 4px;
}

body {
	font-family: "acumin-pro", sans-serif;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	font-size: 16px;
	font-size: 1rem;
	line-height: 24px;
	font-weight: 400;
}
@media (min-width: 700px) {
	body {
		line-height: 26px;
		font-weight: 500;
	}
}
@media (min-width: 1025px) {
	body {
		font-size: 18px;
		font-size: 1.125rem;
		line-height: 29px;
	}
	body.sticky-header {
		display: unset;
	}
}
body.js-fixed {
	overflow: hidden;
}

html,
body {
	overflow-x: clip;
	scroll-behavior: smooth;
}
html.main-menu-active,
body.main-menu-active {
	overflow: hidden;
}

@media (min-width: 700px) {
	.wysiwyg p, .wysiwyg h1, .wysiwyg h2, .wysiwyg h3, .wysiwyg h4, .wysiwyg h5, .wysiwyg h6, .wysiwyg ol, .wysiwyg ul, .wysiwyg form {
		max-width: 690px;
	}
}

@media (min-width: 1025px) {
	nav.section-nav + div.container .wysiwyg {
		padding-left: 87px;
	}
	nav.section-nav + div.container .wysiwyg ol, nav.section-nav + div.container .wysiwyg ul {
		padding-left: 100px;
		margin-left: -87px;
	}
}
@media (min-width: 1025px) {
	nav.section-nav + div.container .wysiwyg figure.img-inline--full {
		margin-left: -80px;
	}
}
@media (min-width: 1025px) {
	nav.section-nav + div.container .wysiwyg .vid-inline--full {
		margin-left: -80px;
	}
}
@media (min-width: 1025px) {
	nav.section-nav + div.container .wysiwyg .quote--full {
		margin-left: -80px;
	}
}
@media (min-width: 1025px) {
	nav.section-nav + div.container .wysiwyg .table-block__wrapper {
		margin-left: -80px;
	}
}

* > p:last-child,
* > ul:last-child,
* > ol:last-child {
	margin-bottom: 0;
}

.visually-hidden {
	border: 0;
	height: 1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	clip: rect(1px, 1px, 1px, 1px);
}

a.skip-link {
	position: absolute;
	left: 0;
	top: 0;
	color: #000000;
}
a.skip-link.visually-hidden {
	border: 0;
	height: 1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	clip: rect(1px, 1px, 1px, 1px);
}
a.skip-link.visually-hidden:active, a.skip-link.visually-hidden:focus {
	position: static !important;
	clip: auto;
	height: auto;
	width: auto;
	overflow: auto;
}
a.skip-link.visually-hidden:focus {
	background-color: #FFFFFF;
	padding: 3px 10px;
	position: absolute !important;
	z-index: 10000;
}

.float-right {
	float: right;
}

.float-left {
	float: left;
}

a {
	cursor: pointer;
	font-weight: 700;
	text-decoration: none;
	-webkit-transition: 300ms ease;
	-o-transition: 300ms ease;
	transition: 300ms ease;
	color: #046A38;
	position: relative;
}
a:not(.cta, .alert__cta, .last-word-wrap, .parent-page, .main-menu__link, .logo-link):before {
	content: "";
	position: absolute;
	width: 100%;
	height: 1px;
	left: 0;
	bottom: 2px;
	background-color: #046A38;
	-webkit-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}
a:hover {
	color: #003F12;
}
a:hover:before {
	background-color: #003F12;
	bottom: -1px;
}
a:focus {
	outline: 2px solid #000000;
	outline-offset: 2px;
}
a.cta--button-primary {
	display: block;
	color: #FFFFFF;
	border-radius: 0.5rem;
	background-color: #003F12;
	font-weight: 800;
	max-width: -webkit-fit-content;
	max-width: -moz-fit-content;
	max-width: fit-content;
	-webkit-transition: 300ms all ease;
	-o-transition: 300ms all ease;
	transition: 300ms all ease;
	font-family: acumin-pro-condensed, sans-serif;
	font-size: 1rem;
	line-height: 1.3;
	padding: 11px 18px;
}
a.cta--button-primary:hover {
	background-color: #A4FFBF;
	color: #003F12;
}
a.cta--button-primary:focus {
	outline: 2px solid #000000;
	outline-offset: 2px;
}
@media (min-width: 700px) {
	a.cta--button-primary {
		font-size: 1.111rem;
		line-height: 1;
		padding: 16px 24px;
	}
}
@media (min-width: 1025px) {
	a.cta--button-primary {
		font-size: 2rem;
		line-height: 1;
		padding: 24px 48px;
	}
}
a.cta--button-secondary {
	display: block;
	color: #FFFFFF;
	background-color: #27003F;
	font-weight: 800;
	max-width: -webkit-fit-content;
	max-width: -moz-fit-content;
	max-width: fit-content;
	-webkit-transition: 300ms all ease;
	-o-transition: 300ms all ease;
	transition: 300ms all ease;
	font-family: acumin-pro-condensed, sans-serif;
	font-size: 1rem;
	line-height: 1.3;
	padding: 11px 18px;
}
a.cta--button-secondary:hover {
	background-color: #CBE2FF;
	color: #27003F;
}
a.cta--button-secondary:focus {
	outline: 2px solid #FFFFFF;
	outline-offset: 2px;
}
@media (min-width: 700px) {
	a.cta--button-secondary {
		font-size: 1.111rem;
		line-height: 1;
		padding: 16px 24px;
	}
}
@media (min-width: 1025px) {
	a.cta--button-secondary {
		font-size: 2rem;
		line-height: 1;
		padding: 24px 48px;
	}
}
a.cta--button-arrow {
	position: relative;
	display: inline-block;
	font-weight: 600;
	font-family: "acumin-pro", sans-serif;
	color: #003F12;
	border: 1px solid #A4FFBF;
	background-color: #A4FFBF;
	border-radius: 8px;
	padding: 8px 40px 11px 16px;
	font-size: 14px;
	font-size: 0.875rem;
	line-height: 18px;
}
a.cta--button-arrow:after {
	content: "";
	display: inline-block;
	vertical-align: middle;
	position: absolute;
	bottom: 13px;
	right: 13px;
	margin: 0 0 0 3px;
	background-image: url("data:image/svg+xml,%3Csvg width='22' height='14' viewBox='0 0 22 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.0287 0L22 7.03333L15.0287 14H11.8758L17.586 8.26667H0V5.76667H17.586L11.8758 0H15.0287Z' fill='%23003F12'/%3E%3C/svg%3E");
	background-size: cover;
}
a.cta--button-arrow:hover {
	color: #A4FFBF;
	background-color: #003F12;
	border-color: #003F12;
}
a.cta--button-arrow:hover:after {
	background-image: url("data:image/svg+xml,%3Csvg width='22' height='14' viewBox='0 0 22 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.0287 0L22 7.03333L15.0287 14H11.8758L17.586 8.26667H0V5.76667H17.586L11.8758 0H15.0287Z' fill='%23A4FFBF'/%3E%3C/svg%3E");
}
a.cta--button-arrow:after {
	bottom: 14px;
	width: 17px;
	height: 11px;
}
@media (min-width: 700px) {
	a.cta--button-arrow {
		padding: 9px 50px 11px 16px;
		font-size: 18px;
		font-size: 1.125rem;
		line-height: 23px;
	}
	a.cta--button-arrow:after {
		width: 19px;
		height: 12px;
	}
}
@media (min-width: 1025px) {
	a.cta--button-arrow {
		padding: 9px 45px 11px 16px;
		font-size: 24px;
		font-size: 1.5rem;
		line-height: 24px;
	}
	a.cta--button-arrow:after {
		width: 22px;
		height: 14px;
	}
}

.cta--button-submit {
	display: block;
	color: #FFFFFF;
	border-radius: 0.5rem;
	background-color: #003F12;
	font-weight: 800;
	max-width: -webkit-fit-content;
	max-width: -moz-fit-content;
	max-width: fit-content;
	-webkit-transition: 300ms all ease;
	-o-transition: 300ms all ease;
	transition: 300ms all ease;
	font-family: acumin-pro-condensed, sans-serif;
	font-size: 1rem;
	line-height: 1.3;
	padding: 11px 18px;
}
.cta--button-submit:hover {
	background-color: #A4FFBF;
	color: #003F12;
}
.cta--button-submit:focus {
	outline: 2px solid #000000;
	outline-offset: 2px;
}
@media (min-width: 700px) {
	.cta--button-submit {
		font-size: 1.111rem;
		line-height: 1;
		padding: 16px 24px;
	}
}
@media (min-width: 1025px) {
	.cta--button-submit {
		font-size: 2rem;
		line-height: 1;
		padding: 24px 48px;
	}
}

a.arrow-icon {
	display: inline-block;
}
a.arrow-icon span.last-word:after {
	content: "";
	position: absolute;
	right: -5px;
	bottom: 3px;
	width: 16px;
	height: 15px;
	background-image: url("data:image/svg+xml,%3Csvg width='30' height='22' viewBox='0 0 30 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.4936 0L30 11.0524L20.4936 22H16.1943L23.9809 12.9905H0V9.0619H23.9809L16.1943 0H20.4936Z' fill='%23A4FFBF'/%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
}
@media (min-width: 700px) {
	a.arrow-icon span.last-word:after {
		right: -7px;
		bottom: 2px;
		width: 22px;
		height: 20px;
	}
}
@media (min-width: 1025px) {
	a.arrow-icon span.last-word:after {
		right: -15px;
		bottom: 8px;
		width: 24px;
		height: 21px;
	}
}
a.arrow-icon:hover span.last-word:after {
	background-image: url("data:image/svg+xml,%3Csvg width='30' height='22' viewBox='0 0 30 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.4936 0L30 11.0524L20.4936 22H16.1943L23.9809 12.9905H0V9.0619H23.9809L16.1943 0H20.4936Z' fill='%23FFFFFF'/%3E%3C/svg%3E");
}

a span.last-word {
	white-space: nowrap;
	position: relative;
	padding-right: 25px;
}

.page-header {
	position: relative;
}

@media (min-width: 1025px) {
	.section-nav {
		max-width: 330px;
		width: 25%;
		margin-top: 1.5rem;
		float: left;
		position: -webkit-sticky;
		position: sticky;
		top: 0;
	}
	.section-nav + .container {
		width: 75%;
		float: right;
		padding: 0 40px;
	}
	.section-nav + .container .narrow-block {
		margin-left: 0 !important;
		margin-right: 0 !important;
		max-width: 100%;
	}
}
@media (min-width: 1201px) {
	.section-nav {
		width: 330px;
	}
	.section-nav + .container {
		padding: 0 80px 0 40px;
		width: calc(100% - 330px);
	}
}

#main {
	position: relative;
}
#main > .content-wrapper::after {
	content: "";
	display: block;
	width: 100%;
	clear: both;
}

.quote {
	padding: 0;
	margin: 3rem 0;
	/* Top Border */
	/* Right Border */
	/* Bottom Border */
	/* Left Border */
	/*- Top Border Animation -*/
	/*- Right Border Animation -*/
	/*- Bottom Border Animation -*/
	/*- Left Border Animation -*/
}
.quote.border-animate {
	position: relative;
	-webkit-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.quote.border-animate .circle:after {
	opacity: 0;
}
.quote.border-animate.js-active .circle:after {
	opacity: 1;
	-webkit-transition: all 300ms;
	-o-transition: all 300ms;
	transition: all 300ms;
}
.quote.border-animate:before {
	display: block;
	content: "";
	width: 0;
	height: 0;
	position: absolute;
	top: 0;
	border-radius: 0 10px 0 0;
	border-top: solid 2px #27003F;
}
@media (min-width: 1025px) {
	.quote.border-animate:before {
		border-top: solid 3px #27003F;
	}
}
.quote.border-animate:after {
	display: block;
	content: "";
	width: 0;
	height: 0;
	position: absolute;
	right: 0;
	top: 5px;
	border-radius: 10px;
	border-right: solid 2px #27003F;
}
@media (min-width: 1025px) {
	.quote.border-animate:after {
		border-right: solid 3px #27003F;
	}
}
.quote.border-animate > div:before {
	display: block;
	content: "";
	width: 0;
	height: 0;
	position: absolute;
	right: 5px;
	bottom: 0;
	border-radius: 10px;
	border-bottom: solid 2px #27003F;
}
@media (min-width: 1025px) {
	.quote.border-animate > div:before {
		border-bottom: solid 3px #27003F;
	}
}
.quote.border-animate > div:after {
	display: block;
	content: "";
	width: 0;
	height: 0;
	position: absolute;
	left: 0;
	bottom: 5px;
	border-radius: 10px;
	border-left: solid 2px #27003F;
}
@media (min-width: 1025px) {
	.quote.border-animate > div:after {
		border-left: solid 3px #27003F;
	}
}
.quote.border-animate.js-active:before {
	width: 100%;
	left: 0;
	height: 20px;
	border-radius: 10px;
	-webkit-transition: width 0.2s ease-out, height 0.02s 0.18s;
	-o-transition: width 0.2s ease-out, height 0.02s 0.18s;
	transition: width 0.2s ease-out, height 0.02s 0.18s;
}
.quote.border-animate.js-active:after {
	-webkit-animation: 0.2s 0.2s expanddown forwards;
	animation: 0.2s 0.2s expanddown forwards;
}
.quote.border-animate.js-active > div:before {
	-webkit-animation: 0.2s 0.4s expandleft forwards;
	animation: 0.2s 0.4s expandleft forwards;
}
.quote.border-animate.js-active > div:after {
	-webkit-animation: 0.2s 0.6s expandup forwards;
	animation: 0.2s 0.6s expandup forwards;
}
@-webkit-keyframes expanddown {
	from {
		width: 1px;
		height: 0;
		position: absolute;
		right: 0;
		top: 6px;
		border-radius: 0;
		border-right: solid 3px #27003F;
	}
	90% {
		width: 1px;
		height: calc(100% - 5px);
		border-radius: 0;
		top: 5px;
	}
	to {
		height: 100%;
		width: 20px;
		top: 0;
		border-radius: 10px;
	}
}
@keyframes expanddown {
	from {
		width: 1px;
		height: 0;
		position: absolute;
		right: 0;
		top: 6px;
		border-radius: 0;
		border-right: solid 3px #27003F;
	}
	90% {
		width: 1px;
		height: calc(100% - 5px);
		border-radius: 0;
		top: 5px;
	}
	to {
		height: 100%;
		width: 20px;
		top: 0;
		border-radius: 10px;
	}
}
@-webkit-keyframes expandleft {
	from {
		width: 0;
		height: 0;
		position: absolute;
		right: 5px;
		bottom: 0;
		border-radius: 0;
		border-right: solid 3px #27003F;
	}
	90% {
		width: calc(100% - 6px);
		height: 1px;
		border-radius: 0;
		right: 5px;
	}
	to {
		height: 100%;
		width: 100%;
		right: 0;
		border-radius: 10px;
	}
}
@keyframes expandleft {
	from {
		width: 0;
		height: 0;
		position: absolute;
		right: 5px;
		bottom: 0;
		border-radius: 0;
		border-right: solid 3px #27003F;
	}
	90% {
		width: calc(100% - 6px);
		height: 1px;
		border-radius: 0;
		right: 5px;
	}
	to {
		height: 100%;
		width: 100%;
		right: 0;
		border-radius: 10px;
	}
}
@-webkit-keyframes expandup {
	from {
		width: 0;
		height: 0;
		position: absolute;
		right: 0;
		bottom: 5px;
		border-radius: 0;
		border-left: solid 3px #27003F;
	}
	90% {
		width: 0;
		height: calc(100% - 5px);
		border-radius: 0;
		bottom: 5px;
	}
	to {
		height: 100%;
		width: 20px;
		bottom: 0;
		border-radius: 10px;
	}
}
@keyframes expandup {
	from {
		width: 0;
		height: 0;
		position: absolute;
		right: 0;
		bottom: 5px;
		border-radius: 0;
		border-left: solid 3px #27003F;
	}
	90% {
		width: 0;
		height: calc(100% - 5px);
		border-radius: 0;
		bottom: 5px;
	}
	to {
		height: 100%;
		width: 20px;
		bottom: 0;
		border-radius: 10px;
	}
}
.quote.js-active .quote__copy::after {
	opacity: 1;
	-webkit-transition: all 300ms;
	-o-transition: all 300ms;
	transition: all 300ms;
}
@media (min-width: 1025px) {
	.quote {
		margin: 5rem 0;
	}
}
.quote > div {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: reverse;
	-webkit-flex-direction: column-reverse;
	-moz-box-orient: vertical;
	-moz-box-direction: reverse;
	-ms-flex-direction: column-reverse;
	flex-direction: column-reverse;
	padding: 20px;
}
@media (min-width: 700px) {
	.quote > div {
		padding: 32px;
	}
}
@media (min-width: 1025px) {
	.quote > div {
		padding: 40px 35px;
	}
}
.quote__copy {
	font-size: 16px;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.4;
	color: #27003F;
}
@media (min-width: 700px) {
	.quote__copy {
		font-size: 18px;
		font-size: 1.125rem;
	}
}
@media (min-width: 1025px) {
	.quote__copy {
		font-size: 24px;
		font-size: 1.5rem;
	}
}
.quote__copy:before {
	display: block;
	content: "";
	width: 30px;
	height: 10px;
	background: white;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
}
@media (min-width: 700px) {
	.quote__copy:before {
		width: 50px;
	}
}
.quote__copy:after {
	display: block;
	content: "";
	background: white;
	border: solid 2px #27003F;
	border-radius: 100px;
	height: 10px;
	width: 10px;
	position: absolute;
	top: -4px;
	right: -6px;
	z-index: 2;
	opacity: 0;
}
@media (min-width: 700px) {
	.quote__copy:after {
		height: 15px;
		width: 15px;
		right: -8px;
	}
}
@media (min-width: 1025px) {
	.quote__copy:after {
		height: 18px;
		width: 18px;
		right: -10px;
		border: solid 3px #27003F;
	}
}
.quote__footer {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 1rem;
}
.quote__attr {
	font-weight: 600;
	margin-right: 16px;
	position: relative;
}
.quote__attr:after {
	content: "";
	position: absolute;
	top: 0.2em;
	right: -8px;
	width: 1.5px;
	height: 16px;
	background-color: #27003F;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

figure {
	margin: 0;
	position: relative;
	border-radius: 8px;
	overflow: hidden;
}
figure a {
	color: #A4FFBF;
}
figure a:before {
	background-color: #A4FFBF !important;
}
figure a:focus {
	outline-color: #FFFFFF;
}
figure a:hover {
	color: #FFFFFF;
}
figure a:hover:before {
	background-color: #FFFFFF;
}
figure img {
	border-radius: 8px;
	position: absolute;
	min-height: 100%;
}
figure > figcaption, figure > .vid-inline__caption {
	position: absolute;
	color: #FFFFFF;
	font-size: 14px;
	font-size: 0.875rem;
	line-height: 1.313rem;
	font-weight: 500;
	font-style: italic;
	padding: 30px 17px 17px;
	z-index: 2;
	width: 100%;
}
figure > figcaption:before, figure > .vid-inline__caption:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 200%;
	background: -o-linear-gradient(90.38deg, rgba(0, 0, 0, 0.65) 12.85%, rgba(0, 0, 0, 0) 68.65%);
	background: linear-gradient(359.62deg, rgba(0, 0, 0, 0.65) 12.85%, rgba(0, 0, 0, 0) 68.65%);
	z-index: 1;
	border-radius: 8px;
	z-index: -1;
}
figure > figcaption a, figure > .vid-inline__caption a {
	color: #A4FFBF;
}
figure > figcaption a:before, figure > .vid-inline__caption a:before {
	background-color: #A4FFBF;
}
figure > figcaption a:hover, figure > .vid-inline__caption a:hover {
	color: #FFFFFF;
}
figure > figcaption a:hover:before, figure > .vid-inline__caption a:hover:before {
	background-color: #FFFFFF !important;
}
@media (min-width: 700px) {
	figure:before {
		background: -webkit-gradient(linear, left bottom, left top, color-stop(7.57%, rgba(0, 0, 0, 0.65)), color-stop(23.28%, rgba(0, 0, 0, 0)));
		background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.65) 7.57%, rgba(0, 0, 0, 0) 23.28%);
		background: linear-gradient(0deg, rgba(0, 0, 0, 0.65) 7.57%, rgba(0, 0, 0, 0) 23.28%);
	}
	figure > figcaption, figure > .vid-inline__caption {
		padding: 30px 22px 13px;
	}
	figure.img-inline--float > figcaption, figure.img-inline--float > .vid-inline__caption {
		font-size: 16px;
		font-size: 1rem;
		line-height: 1.5rem;
		padding: 30px 30px 18px;
	}
}
@media (min-width: 1025px) {
	figure > figcaption, figure > .vid-inline__caption {
		font-size: 16px;
		font-size: 1rem;
		line-height: 1.5rem;
		padding: 30px 29px 17px;
	}
}

figcaption, .vid-inline__caption {
	margin: 0.5rem 0 0;
	font-style: italic;
	font-size: 0.75rem;
	bottom: 0;
}

.img-inline--full {
	margin: 2rem 0 3rem;
	position: relative;
}
@media (min-width: 700px) {
	.img-inline--full {
		margin: 3rem 0 4rem;
	}
}
@media (min-width: 1025px) {
	.img-inline--full {
		margin: 3rem 0 6rem;
	}
}
.img-inline--full img {
	width: 100%;
}
.img-inline img {
	-o-object-fit: cover;
	object-fit: cover;
}
.img-inline--float {
	margin: 2rem 0 3rem;
	width: 290px;
}
@media (min-width: 1025px) {
	.img-inline--float {
		width: 320px;
	}
}
.img-inline--float img {
	width: 100%;
}
@media (max-width: 699px) {
	.img-inline--float {
		display: inline-block;
		float: none;
		width: 100%;
	}
}
@media (min-width: 700px) {
	.img-inline--float.float-right {
		margin: 0.5rem 0 2rem 2rem;
	}
}
@media (min-width: 1025px) {
	.img-inline--float.float-right {
		margin: 0.5rem 0 3rem 3rem;
	}
}
@media (min-width: 1200px) {
	.img-inline--float.float-right {
		margin-right: calc(100% - 690px);
	}
}
@media (min-width: 700px) {
	.img-inline--float.float-left {
		margin: 0.5rem 2rem 2rem 0;
	}
}
@media (min-width: 1025px) {
	.img-inline--float.float-left {
		margin: 0.5rem 3rem 3rem 0;
	}
}

.quote.border-animate.js-active:after {
	-webkit-animation: 0.2s 0s expanddown forwards;
	animation: 0.2s 0s expanddown forwards;
}

.quote.border-animate.js-active > div:before {
	-webkit-animation: 0.2s 0.2s expandleft forwards;
	animation: 0.2s 0.2s expandleft forwards;
}

.quote.border-animate.js-active > div:before {
	-webkit-animation: 0.2s 0.4s expandleft forwards;
	animation: 0.2s 0.4s expandleft forwards;
}

.quote.border-animate.js-active > div:after {
	-webkit-animation: 0.2s 0.6s expandup forwards;
	animation: 0.2s 0.6s expandup forwards;
}

.quote.border-animate.js-active:before {
	-webkit-transition: width 0.2s 0.8s ease-out, height 0.02s 0.78s;
	-o-transition: width 0.2s 0.8s ease-out, height 0.02s 0.78s;
	transition: width 0.2s 0.8s ease-out, height 0.02s 0.78s;
}

table {
	clear: both;
	max-width: 100%;
	display: block;
}
table td,
table th {
	text-align: left;
	min-width: 250px;
	padding: 0 20px;
}
table .table-scroller {
	overflow: auto;
	display: block;
	width: 100%;
}
table thead {
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	-ms-overflow-style: none; /* IE and Edge */
	scrollbar-width: none; /* Firefox */
	background-color: #FFFFFF;
	z-index: 100;
	/* Hide scrollbar for Chrome, Safari and Opera */
}
table thead::-webkit-scrollbar {
	display: none;
}

.table-block__wrapper {
	position: relative;
	padding: 0;
	margin: 0 -20px 30px 0;
}
@media (min-width: 700px) {
	.table-block__wrapper {
		margin: 30px 0;
		clear: both;
	}
}
.table-block__prev, .table-block__next {
	font-size: 0;
	line-height: 0;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0;
	width: 46px;
	height: 46px;
	border: none;
	background: none;
	padding: 0;
}
.table-block__prev:after, .table-block__next:after {
	content: "\e901";
	display: inline-block;
	vertical-align: top;
	color: #DE0F0F;
	font-family: "icomoon";
	font-size: 26px;
	line-height: 1;
}
.table-block__prev:focus, .table-block__next:focus {
	outline-color: #000000;
}
.table-block__next {
	left: auto;
	right: 0;
}
@media (min-width: 700px) {
	.table-block__next {
		right: 8px;
	}
}
.table-block__prev:after {
	content: "\e901";
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

#main {
	max-width: 1800px;
	margin: 0 auto;
}

.homepage #main {
	max-width: inherit;
}

/**
* @file
* Print specific styliing
*/
@media print {
	.header,
	.footer {
		display: none;
	}
}
/**
* @file
* Page
*
* Contains styles for page wrapper layout.
*/
.container {
	padding-top: 15px;
	padding-left: 16px;
	padding-right: 16px;
}
@media screen and (min-width: 700px) {
	.container {
		padding-left: 50px;
		padding-right: 50px;
	}
}
@media screen and (min-width: 1025px) {
	.container {
		padding-left: 80px;
		padding-right: 80px;
	}
}

/**
* @file
* Columns
*
* Base styles for all column layouts.
*/
@media (min-width: 700px) {
	.column {
		display: -webkit-box;
		display: -webkit-flex;
		display: -moz-box;
		display: -ms-flexbox;
		display: flex;
	}
}
.column__col {
	margin: 0 0 1.25rem;
}
@media (min-width: 700px) {
	.column__col {
		margin: 0;
		-webkit-box-flex: 0;
		-webkit-flex: 0;
		-moz-box-flex: 0;
		-ms-flex: 0;
		flex: 0;
	}
}
.column__img a {
	display: block;
}
.column__img a:focus {
	outline-color: #FFFFFF;
	outline-offset: -6px;
}
.column__img img {
	width: 100%;
	border-radius: 8px;
}
.column__subtitle {
	margin: 0 0 0.75rem;
	font-weight: 700;
	line-height: 1.5;
	text-transform: capitalize;
}

@media (min-width: 700px) {
	.column--two {
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-moz-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		gap: 1.25rem;
	}
}
@media (min-width: 700px) {
	.column--two .column__col {
		-webkit-flex-basis: 50%;
		-ms-flex-preferred-size: 50%;
		flex-basis: 50%;
	}
}
@media (min-width: 1025px) {
	.column--two .column__col {
		-webkit-flex-basis: 50%;
		-ms-flex-preferred-size: 50%;
		flex-basis: 50%;
	}
}

@media (min-width: 700px) {
	.column--three {
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-moz-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		gap: 1.25rem;
	}
}
@media (min-width: 700px) {
	.column--three .column__col {
		-webkit-flex-basis: calc(33.3333333333% - 6.6666666667px);
		-ms-flex-preferred-size: calc(33.3333333333% - 6.6666666667px);
		flex-basis: calc(33.3333333333% - 6.6666666667px);
	}
}
@media (min-width: 1025px) {
	.column--three .column__col {
		-webkit-flex-basis: calc(33.3333333333% - 16.6666666667px);
		-ms-flex-preferred-size: calc(33.3333333333% - 16.6666666667px);
		flex-basis: calc(33.3333333333% - 16.6666666667px);
	}
}
.column--three.slick-slider {
	display: block;
}

/**
* @file
* Section
*
* Base styles for all section content.
*/
.section {
	margin: 2rem 0;
	padding: 0;
}
@media (min-width: 1025px) {
	.section {
		margin: 3rem 0;
		padding: 0;
	}
}
.section__header h2 {
	margin: 2rem 0 1rem;
	text-transform: capitalize;
}
@media (min-width: 700px) {
	.section__header h2 {
		margin: 64px 0 16px;
	}
}
@media (min-width: 1025px) {
	.section__header h2 {
		margin: 60px 0 16px;
	}
}
.section__intro {
	margin: 1rem 0 2rem;
}
@media (min-width: 1025px) {
	.section__intro {
		margin: 1rem 0 2rem;
	}
}
.section__cta {
	text-align: center;
}

/**
* @file
* Page introduction
*
* Contains styles for page introduction object.
*/
.page-intro {
	/* Top Border */
	/* Right Border */
	/* Bottom Border */
	/* Left Border */
	/*- Top Border Animation -*/
	/*- Right Border Animation -*/
	/*- Bottom Border Animation -*/
	/*- Left Border Animation -*/
	margin: 30px 0;
	padding: 20px;
	font-size: 18px;
	font-size: 1.125rem;
	font-family: acumin-pro-condensed, sans-serif;
	font-style: italic;
	font-weight: 800;
	line-height: 1.4;
	color: #003F12;
	position: relative;
}
.page-intro.border-animate {
	position: relative;
	-webkit-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.page-intro.border-animate .circle:after {
	opacity: 0;
}
.page-intro.border-animate.js-active .circle:after {
	opacity: 1;
	-webkit-transition: all 300ms;
	-o-transition: all 300ms;
	transition: all 300ms;
}
.page-intro.border-animate:before {
	display: block;
	content: "";
	width: 0;
	height: 0;
	position: absolute;
	top: 0;
	border-radius: 0 10px 0 0;
	border-top: solid 2px #046A38;
}
@media (min-width: 1025px) {
	.page-intro.border-animate:before {
		border-top: solid 3px #046A38;
	}
}
.page-intro.border-animate:after {
	display: block;
	content: "";
	width: 0;
	height: 0;
	position: absolute;
	right: 0;
	top: 5px;
	border-radius: 10px;
	border-right: solid 2px #046A38;
}
@media (min-width: 1025px) {
	.page-intro.border-animate:after {
		border-right: solid 3px #046A38;
	}
}
.page-intro.border-animate > div:before {
	display: block;
	content: "";
	width: 0;
	height: 0;
	position: absolute;
	right: 5px;
	bottom: 0;
	border-radius: 10px;
	border-bottom: solid 2px #046A38;
}
@media (min-width: 1025px) {
	.page-intro.border-animate > div:before {
		border-bottom: solid 3px #046A38;
	}
}
.page-intro.border-animate > div:after {
	display: block;
	content: "";
	width: 0;
	height: 0;
	position: absolute;
	left: 0;
	bottom: 5px;
	border-radius: 10px;
	border-left: solid 2px #046A38;
}
@media (min-width: 1025px) {
	.page-intro.border-animate > div:after {
		border-left: solid 3px #046A38;
	}
}
.page-intro.border-animate.js-active:before {
	width: 100%;
	left: 0;
	height: 20px;
	border-radius: 10px;
	-webkit-transition: width 0.2s ease-out, height 0.02s 0.18s;
	-o-transition: width 0.2s ease-out, height 0.02s 0.18s;
	transition: width 0.2s ease-out, height 0.02s 0.18s;
}
.page-intro.border-animate.js-active:after {
	-webkit-animation: 0.2s 0.2s expanddown forwards;
	animation: 0.2s 0.2s expanddown forwards;
}
.page-intro.border-animate.js-active > div:before {
	-webkit-animation: 0.2s 0.4s expandleft forwards;
	animation: 0.2s 0.4s expandleft forwards;
}
.page-intro.border-animate.js-active > div:after {
	-webkit-animation: 0.2s 0.6s expandup forwards;
	animation: 0.2s 0.6s expandup forwards;
}
@keyframes expanddown {
	from {
		width: 1px;
		height: 0;
		position: absolute;
		right: 0;
		top: 6px;
		border-radius: 0;
		border-right: solid 3px #046A38;
	}
	90% {
		width: 1px;
		height: calc(100% - 5px);
		border-radius: 0;
		top: 5px;
	}
	to {
		height: 100%;
		width: 20px;
		top: 0;
		border-radius: 10px;
	}
}
@keyframes expandleft {
	from {
		width: 0;
		height: 0;
		position: absolute;
		right: 5px;
		bottom: 0;
		border-radius: 0;
		border-right: solid 3px #046A38;
	}
	90% {
		width: calc(100% - 6px);
		height: 1px;
		border-radius: 0;
		right: 5px;
	}
	to {
		height: 100%;
		width: 100%;
		right: 0;
		border-radius: 10px;
	}
}
@keyframes expandup {
	from {
		width: 0;
		height: 0;
		position: absolute;
		right: 0;
		bottom: 5px;
		border-radius: 0;
		border-left: solid 3px #046A38;
	}
	90% {
		width: 0;
		height: calc(100% - 5px);
		border-radius: 0;
		bottom: 5px;
	}
	to {
		height: 100%;
		width: 20px;
		bottom: 0;
		border-radius: 10px;
	}
}
.page-intro span.circle:before {
	display: block;
	content: "";
	width: 10px;
	height: 20px;
	background: white;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
@media (min-width: 700px) {
	.page-intro span.circle:before {
		height: 40px;
	}
}
.page-intro span.circle:after {
	display: block;
	content: "";
	background: white;
	border: solid 2px #046A38;
	border-radius: 100px;
	height: 10px;
	width: 10px;
	position: absolute;
	top: -5px;
	left: -3px;
	z-index: 2;
}
@media (min-width: 700px) {
	.page-intro span.circle:after {
		height: 15px;
		width: 15px;
		left: -8px;
		top: -7px;
	}
}
@media (min-width: 1025px) {
	.page-intro span.circle:after {
		height: 18px;
		width: 18px;
		left: -10px;
		top: -9px;
		border: solid 3px #046A38;
	}
}
@media screen and (min-width: 700px) {
	.page-intro {
		margin: 4rem 0;
		padding: 30px 32px;
		font-size: 21px;
		font-size: 1.3125rem;
		line-height: 1.4;
	}
}
@media screen and (min-width: 1025px) {
	.page-intro {
		margin: 4rem 0 5rem;
		font-size: 32px;
		line-height: 45px;
		padding: 48px 45px 48px 48px;
	}
}

.main-header {
	position: relative;
	width: 100%;
	max-width: 100vw;
	z-index: 3001;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition: background-color 0.3s ease, top 0.5s ease, -webkit-transform 0.3s ease;
	transition: background-color 0.3s ease, top 0.5s ease, -webkit-transform 0.3s ease;
	-o-transition: transform 0.3s ease, background-color 0.3s ease, top 0.5s ease;
	transition: transform 0.3s ease, background-color 0.3s ease, top 0.5s ease;
	transition: transform 0.3s ease, background-color 0.3s ease, top 0.5s ease, -webkit-transform 0.3s ease;
	background-color: transparent;
}
.main-header.sticky-header {
	position: -webkit-sticky;
	position: sticky;
	left: 0;
	top: 0;
}
@media (max-width: 1024px) {
	.main-header.sticky-header .main-header__menus {
		height: 100vh !important;
	}
}
@media (max-width: 1024px) {
	.main-header.sticky-header .main-header__menus__inner {
		height: calc(100vh - var(--main-header-height)) !important;
	}
}
.main-header a:focus {
	outline-color: #FFFFFF;
}
@media (min-width: 1025px) {
	.main-header {
		border-bottom: none;
		max-width: 1800px;
		margin: 0 auto;
	}
}
.main-header.sticky-header.header-hidden {
	-webkit-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	transform: translateY(-100%);
}
.main-menu-active .main-header.sticky-header.header-hidden {
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
}
@media (min-width: 1025px) {
	.main-header.sticky-header.header-hidden {
		top: -185px;
		-webkit-transition: top 0.5s ease;
		-o-transition: top 0.5s ease;
		transition: top 0.5s ease;
	}
}
.main-header.sticky-header .main-header__content-holder {
	background-color: #003F12;
}
.main-header.sticky-header:not(.header-hidden):before {
	content: "";
	position: absolute;
	bottom: -1px;
	width: 100%;
	height: 1px;
	background-color: #FFFFFF;
	display: none;
}
@media (min-width: 1025px) {
	.main-header.sticky-header:not(.header-hidden):before {
		display: block;
	}
}
.main-header *::before,
.main-header *::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.main-header ul {
	padding: 0;
	margin: 0;
}
.main-header ul li {
	padding: 0;
	margin: 0;
	list-style: none;
}
.main-header ul li:before {
	display: none;
}
.main-header ul li::marker {
	content: none;
	color: transparent;
}
.main-header a {
	background: none;
	text-decoration: none;
	display: inline-block;
}
.main-header__content-holder {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 1.156rem 1rem;
	background-color: transparent;
}
@media (min-width: 700px) {
	.main-header__content-holder {
		padding: 1.313rem 2.5rem;
	}
}
@media (min-width: 1025px) {
	.main-header__content-holder {
		position: absolute;
		width: 100vw;
		max-width: 1800px;
		padding: 2.438rem 3.125rem 1.688rem;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-moz-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		background-color: transparent;
		-webkit-transition: background-color 0.1s ease;
		-o-transition: background-color 0.1s ease;
		transition: background-color 0.1s ease;
	}
	.main-header__content-holder:after {
		content: "";
		background-color: #003F12;
		opacity: 0;
		position: absolute;
		width: 100vw;
		height: 185px;
		left: 0;
		margin-left: calc(((100vw - 100%) / 2 + var(--scrollbar-width)) * -1);
		top: -18px;
		z-index: -1;
		-webkit-transition: opacity 0.3s ease;
		-o-transition: opacity 0.3s ease;
		transition: opacity 0.3s ease;
	}
}
.main-header__logo {
	width: 100%;
	max-width: 11.4rem;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	margin-right: auto;
	opacity: 1;
	visibility: visible;
	z-index: 999;
	-webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
	-o-transition: opacity 0.3s ease, visibility 0.3s ease;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media (min-width: 700px) {
	.main-header__logo {
		max-width: 12.2rem;
	}
}
@media (min-width: 1025px) {
	.main-header__logo {
		max-width: 27.3rem;
		-webkit-flex-shrink: 1;
		-ms-flex-negative: 1;
		flex-shrink: 1;
		display: -webkit-box;
		display: -webkit-flex;
		display: -moz-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-moz-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-moz-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
}
.search-opened .main-header__logo {
	opacity: 0;
	visibility: hidden;
}
@media (min-width: 700px) {
	.search-opened .main-header__logo {
		opacity: 1;
		visibility: visible;
	}
}
.main-header__logo a {
	display: block;
	color: white;
}
@media (min-width: 1025px) {
	.main-header__logo a {
		display: -webkit-box;
		display: -webkit-flex;
		display: -moz-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-moz-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-moz-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		min-width: 368px;
	}
}
.main-header__logo svg {
	width: 100%;
	height: auto;
}
.main-header__menus {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: url("/_resources/images/banner-image.jpg"), left center, no-repeat;
	background-size: cover;
	z-index: 100;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: 0.3s ease;
	-o-transition: 0.3s ease;
	transition: 0.3s ease;
	padding-top: var(--main-header-height);
}
.main-header__menus__inner {
	overflow-y: auto;
	height: 100%;
}
@media (min-width: 1025px) {
	.main-header__menus__inner {
		position: static;
		display: -webkit-box;
		display: -webkit-flex;
		display: -moz-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-webkit-flex-direction: column-reverse;
		-moz-box-orient: vertical;
		-moz-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
		-webkit-box-align: start;
		-webkit-align-items: flex-start;
		-moz-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		width: 100%;
		overflow-y: visible;
	}
}
@media (min-width: 700px) {
	.main-header__menus {
		padding: 0;
		padding-top: var(--main-header-height);
	}
}
@media (min-width: 1025px) {
	.main-header__menus {
		top: var(--main-header-height);
		background: transparent;
		max-width: calc(100% - 15.8rem);
		-webkit-flex-shrink: 0;
		-ms-flex-negative: 0;
		flex-shrink: 0;
		width: 100%;
		position: static;
		height: auto !important;
		padding: 0.375rem 2rem 0 2rem;
		opacity: 1;
		visibility: visible;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
		z-index: 2;
		overflow: visible;
		-webkit-transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
		transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
		-o-transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
		transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
		transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
	}
}
@media (min-width: 1025px) {
	.search-opened .main-header__menus .secondary-menu {
		opacity: 0;
		visibility: hidden;
	}
}
@media (min-width: 700px) {
	.main-header__menus .main-menu {
		border-top: 1px solid white;
		border-bottom: 1px solid white;
	}
}
@media (min-width: 1025px) {
	.main-header__menus .main-menu {
		border: none;
		position: absolute;
		top: 80px;
		left: -415px;
		display: block;
		width: calc(100vw - 100px);
		border-top: 1px solid white;
		max-width: 1700px;
		margin: 0 50px;
	}
	.main-header__menus .main-menu:before {
		content: "";
		background-color: transparent;
		opacity: 0;
		-webkit-transition: background-color 0.3s ease, opacity 0.3s ease;
		-o-transition: background-color 0.3s ease, opacity 0.3s ease;
		transition: background-color 0.3s ease, opacity 0.3s ease;
	}
}
.main-menu-active .main-header__menus {
	opacity: 1;
	visibility: visible;
	-webkit-transition: 0.3s ease;
	-o-transition: 0.3s ease;
	transition: 0.3s ease;
}
.main-menu-active .main-header__menus li.main-menu__item {
	-webkit-animation: menu_slide 0.3s forwards;
	animation: menu_slide 0.3s forwards;
}
@-webkit-keyframes menu_slide {
	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}
@keyframes menu_slide {
	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}
.main-menu-active .main-header__menus li.main-menu__item:nth-child(1) {
	-webkit-animation-delay: 0.1s;
	animation-delay: 0.1s;
}
.main-menu-active .main-header__menus li.main-menu__item:nth-child(2) {
	-webkit-animation-delay: 0.2s;
	animation-delay: 0.2s;
}
.main-menu-active .main-header__menus li.main-menu__item:nth-child(3) {
	-webkit-animation-delay: 0.3s;
	animation-delay: 0.3s;
}
.main-menu-active .main-header__menus li.main-menu__item:nth-child(4) {
	-webkit-animation-delay: 0.4s;
	animation-delay: 0.4s;
}
.main-menu-active .main-header__menus li.main-menu__item:nth-child(5) {
	-webkit-animation-delay: 0.5s;
	animation-delay: 0.5s;
}
.main-menu-active .main-header__menus li.main-menu__item:nth-child(6) {
	-webkit-animation-delay: 0.6s;
	animation-delay: 0.6s;
}
.main-menu-active .main-header__menus li.main-menu__item:nth-child(7) {
	-webkit-animation-delay: 0.7s;
	animation-delay: 0.7s;
}
.main-menu-active .main-header__menus li.main-menu__item:nth-child(8) {
	-webkit-animation-delay: 0.8s;
	animation-delay: 0.8s;
}
.main-menu-active .main-header__menus li.main-menu__item:nth-child(9) {
	-webkit-animation-delay: 0.9s;
	animation-delay: 0.9s;
}
.main-menu-active .main-header__menus li.main-menu__item:nth-child(10) {
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
}
.main-menu-active .main-header__menus li.main-menu__item:nth-child(11) {
	-webkit-animation-delay: 1.1s;
	animation-delay: 1.1s;
}
.main-menu-active .main-header__menus li.main-menu__item:nth-child(12) {
	-webkit-animation-delay: 1.2s;
	animation-delay: 1.2s;
}
.main-menu-active .main-header__menus li.main-menu__item:nth-child(13) {
	-webkit-animation-delay: 1.3s;
	animation-delay: 1.3s;
}
.main-menu-active .main-header__menus li.main-menu__item:nth-child(14) {
	-webkit-animation-delay: 1.4s;
	animation-delay: 1.4s;
}
.main-menu-active .main-header__menus li.main-menu__item:nth-child(15) {
	-webkit-animation-delay: 1.5s;
	animation-delay: 1.5s;
}
.main-menu-active .main-header__menus li.main-menu__item:nth-child(16) {
	-webkit-animation-delay: 1.6s;
	animation-delay: 1.6s;
}
.main-menu-active .main-header__menus li.main-menu__item:nth-child(17) {
	-webkit-animation-delay: 1.7s;
	animation-delay: 1.7s;
}
.main-menu-active .main-header__menus li.main-menu__item:nth-child(18) {
	-webkit-animation-delay: 1.8s;
	animation-delay: 1.8s;
}
.main-menu-active .main-header__menus li.main-menu__item:nth-child(19) {
	-webkit-animation-delay: 1.9s;
	animation-delay: 1.9s;
}
.main-menu-active .main-header__menus li.main-menu__item:nth-child(20) {
	-webkit-animation-delay: 2s;
	animation-delay: 2s;
}
.main-menu-active .main-header__menus li.main-menu__item:nth-child(1) .submenu {
	top: -32px;
}
.main-menu-active .main-header__menus li.main-menu__item:nth-child(2) .submenu {
	top: -90px;
}
.main-menu-active .main-header__menus li.main-menu__item:nth-child(3) .submenu {
	top: -148px;
}
.main-menu-active .main-header__menus li.main-menu__item:nth-child(4) .submenu {
	top: -206px;
}
.main-menu-active .main-header__menus li.main-menu__item:nth-child(5) .submenu {
	top: -264px;
}
.main-menu-active .main-header__menus li.main-menu__item:nth-child(6) .submenu {
	top: -322px;
}
.main-menu-active .main-header__menus li.main-menu__item:nth-child(7) .submenu {
	top: -380px;
}
.main-menu-active .main-header__menus li.main-menu__item:nth-child(8) .submenu {
	top: -438px;
}
.main-menu-active .main-header__menus li.main-menu__item:nth-child(9) .submenu {
	top: -496px;
}
.main-menu-active .main-header__menus li.main-menu__item:nth-child(10) .submenu {
	top: -554px;
}
.main-header .menus-opener {
	position: relative;
	display: block;
	width: 1.75rem;
	height: 1.75rem;
	background: #A4FFBF;
	border-radius: 2px;
	border: none;
	margin-right: 8px;
	opacity: 1;
	visibility: visible;
	-webkit-transition: background-color 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
	-o-transition: background-color 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
	transition: background-color 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
	z-index: 999;
}
@media (min-width: 700px) {
	.main-header .menus-opener {
		width: 2.75rem;
		height: 2.75rem;
	}
}
@media (min-width: 1025px) {
	.main-header .menus-opener__holder {
		display: none;
	}
}
.main-header .menus-opener:hover {
	background: #FFFFFF;
}
.main-header .menus-opener:hover .icon {
	color: #27003F;
}
.main-header .menus-opener:hover:before, .main-header .menus-opener:hover:after {
	color: #27003F;
}
.main-header .menus-opener .icon {
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	display: block;
	width: 0.875rem;
	border-top: 3px solid black;
	-webkit-transition: border-color 0.3s ease;
	-o-transition: border-color 0.3s ease;
	transition: border-color 0.3s ease;
}
.main-header .menus-opener:before, .main-header .menus-opener:after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	display: block;
	width: 0.875rem;
	border-top: 3px solid black;
	-webkit-transition: border-color 0.3s ease, -webkit-transform 0.3s ease;
	transition: border-color 0.3s ease, -webkit-transform 0.3s ease;
	-o-transition: transform 0.3s ease, border-color 0.3s ease;
	transition: transform 0.3s ease, border-color 0.3s ease;
	transition: transform 0.3s ease, border-color 0.3s ease, -webkit-transform 0.3s ease;
	z-index: 1;
}
.main-header .menus-opener:before {
	-webkit-transform: translate(-50%, calc(-50% + 0.4rem));
	-ms-transform: translate(-50%, calc(-50% + 0.4rem));
	transform: translate(-50%, calc(-50% + 0.4rem));
}
.main-header .menus-opener:after {
	-webkit-transform: translate(-50%, calc(-50% - 0.4rem));
	-ms-transform: translate(-50%, calc(-50% - 0.4rem));
	transform: translate(-50%, calc(-50% - 0.4rem));
}
.main-header .menus-opener.main-menu-active {
	background-color: #FFFFFF;
}
.main-header .menus-opener.main-menu-active:before, .main-header .menus-opener.main-menu-active:after {
	color: #27003F;
	-webkit-transform: translate(-50%, -50%) rotate(-45deg);
	-ms-transform: translate(-50%, -50%) rotate(-45deg);
	transform: translate(-50%, -50%) rotate(-45deg);
}
.main-header .menus-opener.main-menu-active:after {
	-webkit-transform: translate(-50%, -50%) rotate(45deg);
	-ms-transform: translate(-50%, -50%) rotate(45deg);
	transform: translate(-50%, -50%) rotate(45deg);
}
.main-header .menus-opener.main-menu-active .icon {
	border: 0;
	opacity: 0;
}
.main-header .menus-opener.main-menu-active:hover {
	background: #CBE2FF;
}
.search-opened .main-header .menus-opener {
	opacity: 0;
	visibility: hidden;
}
.main-header .main-menu__list {
	position: relative;
	padding: 1rem 0 2rem;
}
@media (max-width: 699px) {
	.main-header .main-menu__list {
		height: auto !important;
	}
}
@media (min-width: 700px) {
	.main-header .main-menu__list {
		padding: 2rem 0.313rem 2rem 1.313rem;
		overflow: hidden;
	}
	.main-header .main-menu__list::before {
		content: "";
		width: 50%;
		position: absolute;
		right: 0;
		top: 0;
		background-color: #FFFFFF;
		height: 100%;
	}
}
@media (min-width: 1025px) {
	.main-header .main-menu__list {
		padding: 0.813rem 0 0;
		display: -webkit-box;
		display: -webkit-flex;
		display: -moz-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-moz-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		overflow: visible;
		height: auto !important;
	}
	.main-header .main-menu__list::before {
		content: none;
	}
}
.main-header .main-menu__list:after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 100%;
	height: 0.063rem;
	background-color: #FFFFFF;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}
@media (min-width: 700px) {
	.main-header .main-menu__list:after {
		display: none;
	}
}
.main-header .main-menu__item {
	position: relative;
	border-left: 1px solid #FFFFFF;
	padding: 14.5px 0 14.5px;
	margin: 0 0 0 3.75rem;
	opacity: 0;
	-webkit-transform: translateX(50%);
	-ms-transform: translateX(50%);
	transform: translateX(50%);
}
@media (min-width: 700px) {
	.main-header .main-menu__item {
		padding: 1rem 0 1rem 0.875rem;
		width: calc(50% - 68px);
	}
}
@media (min-width: 1025px) {
	.main-header .main-menu__item {
		opacity: 1;
		padding: 0 0 1.35rem;
		margin: 0;
		border: none;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
		width: auto;
	}
}
.main-header .main-menu__item::before {
	content: "";
	position: absolute;
	bottom: -5px;
	left: -0.2rem;
	width: 100%;
	height: 2px;
	background-color: #A4FFBF;
	display: none;
	opacity: 0;
	-webkit-transition: opacity 0.3s ease;
	-o-transition: opacity 0.3s ease;
	transition: opacity 0.3s ease;
	z-index: -1;
}
@media (min-width: 1025px) {
	.main-header .main-menu__item::before {
		display: block;
		border-radius: 0;
		border: none;
		left: 0;
		bottom: unset;
		top: 1.688rem;
	}
}
@media (min-width: 1025px) {
	.main-header .main-menu__item:nth-last-child(1):not(:nth-child(1)) .submenu {
		left: auto;
		right: 3.3rem;
	}
}
@media (min-width: 1025px) {
	.main-header .main-menu__item:nth-last-child(2):not(:nth-child(2)) .submenu {
		left: auto;
		right: 0;
	}
}
@media (min-width: 1025px) {
	.main-header .main-menu__item:nth-last-child(1):not(:nth-child(1))::before {
		width: 100%;
		right: 0;
		left: auto;
	}
}
@media (min-width: 1025px) {
	.main-header .main-menu__item:nth-last-child(1):not(:nth-child(1)) .main-menu__link {
		padding-right: 0;
	}
}
@media (min-width: 1025px) {
	.main-header .main-menu__item:nth-last-child(1):not(:nth-child(1)) .submenu {
		right: 0;
	}
}
@media (min-width: 1025px) {
	.main-header .main-menu__item.submenu-show::before {
		opacity: 1;
	}
}
@media (min-width: 1025px) {
	.main-header .main-menu__item.submenu-show .submenu {
		background-color: #046A38;
		top: 3.1rem;
		left: -53px;
		height: -webkit-fit-content !important;
		height: -moz-fit-content !important;
		height: fit-content !important;
		opacity: 1;
		visibility: visible;
		-webkit-transition: opacity 0.3s ease 0.2s, visibility 0.3s ease 0.2s;
		-o-transition: opacity 0.3s ease 0.2s, visibility 0.3s ease 0.2s;
		transition: opacity 0.3s ease 0.2s, visibility 0.3s ease 0.2s;
		-webkit-animation-fill-mode: forwards;
		animation-fill-mode: forwards;
	}
}
.main-header .main-menu__link {
	width: calc(100% - 55px);
	margin: 0;
	padding: 0 0 0 0.875rem;
	font-family: acumin-pro-condensed, sans-serif;
	font-size: 18px;
	font-size: 1.125rem;
	line-height: 1.1;
	font-weight: 800;
	text-transform: uppercase;
	color: #FFFFFF;
	-webkit-transition: color 0.3s ease;
	-o-transition: color 0.3s ease;
	transition: color 0.3s ease;
}
@media (min-width: 700px) {
	.main-header .main-menu__link {
		padding: 0;
	}
}
@media (min-width: 1025px) {
	.main-header .main-menu__link {
		width: -webkit-fit-content;
		width: -moz-fit-content;
		width: fit-content;
		font-size: 24px;
		font-size: 1.5rem;
	}
}
.main-header .main-submenu__opener {
	position: absolute;
	left: -3.438rem;
	top: 0;
	border: none;
	width: 3rem;
	height: 3rem;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	background-color: transparent;
}
@media (min-width: 700px) {
	.main-header .main-submenu__opener {
		right: 0;
		top: -0.5rem;
		width: 3.5rem;
		height: 3.5rem;
	}
}
@media (min-width: 1025px) {
	.main-header .main-submenu__opener {
		display: none;
	}
}
.main-header .main-submenu__opener:before {
	content: "";
	position: absolute;
	top: 1.188rem;
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
	background-image: url("data:image/svg+xml,%3Csvg width='11' height='11' viewBox='0 0 11 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4.49488 4.49998L4.49488 0L6.50509 0.00860612V4.49137L11 4.49998C11 4.50872 11 6.5086 11 6.50002L6.50509 6.50862L6.50509 10.9914L4.49488 11V6.50002L0 6.50862C5.97579e-05 6.51729 0 4.49998 0 4.49137L4.49488 4.49998Z' fill='%23A4FFBF'/%3E%3C/svg%3E");
	background-size: cover;
	background-position: center;
	display: block;
	width: 12px;
	height: 12px;
	-webkit-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
@media (min-width: 700px) {
	.main-header .main-submenu__opener:before {
		top: 1.7rem;
	}
}
.main-header .main-submenu__opener.submenu-opened:before {
	-webkit-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
	transform: rotate(135deg);
}
.main-header .submenu {
	display: none;
	background-color: #FFFFFF;
	padding: 1.5rem 0;
	margin: 1.219rem 0 0 -3.75rem;
}
.main-header .submenu[aria-hidden=true] {
	opacity: 0;
}
.main-header .submenu[aria-hidden=false] {
	opacity: 1;
}
@media (min-width: 700px) {
	.main-header .submenu {
		margin: 0 0 2.8rem;
		top: -32px;
		right: 0;
		-webkit-transform: translateX(100%);
		-ms-transform: translateX(100%);
		transform: translateX(100%);
		position: absolute;
		width: 50vw;
	}
}
@media (min-width: 1025px) {
	.main-header .submenu {
		position: absolute;
		margin: 0;
		opacity: 0;
		visibility: hidden;
		top: 100%;
		width: 26.4rem;
		left: -0.2rem;
		border-top: none;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
		background-color: #003F12;
		-webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
		-o-transition: opacity 0.3s ease, visibility 0.3s ease;
		transition: opacity 0.3s ease, visibility 0.3s ease;
	}
	.main-header .submenu a {
		color: #FFFFFF;
		padding: 0 1.5rem;
		margin-bottom: 0.5rem;
	}
	.main-header .submenu a:focus {
		outline-color: #FFFFFF;
	}
	.main-header .submenu a:hover {
		color: #A4FFBF;
	}
}
.main-header .submenu__item {
	padding: 0.344rem 0;
}
@media (min-width: 1025px) {
	.main-header .submenu__item {
		padding: 0;
	}
	.main-header .submenu__item.submenu__link:first-of-type {
		padding-top: 0;
	}
	.main-header .submenu__item.submenu__link:last-of-type {
		padding-bottom: 0;
	}
}
.main-header .submenu__link {
	width: 100%;
	padding: 0 1rem;
	font-size: 1rem;
	line-height: 1.3;
	font-weight: 500;
	color: #000000;
}
.main-header .submenu__link:before {
	display: none;
}
@media (min-width: 700px) {
	.main-header .submenu__link {
		padding: 0.25rem 3.125rem;
	}
}
@media (min-width: 1025px) {
	.main-header .submenu__link {
		color: #FFFFFF;
		padding: 0.813rem 3.125rem;
		-webkit-transition: none;
		-o-transition: none;
		transition: none;
	}
}
.main-header .submenu__link:hover {
	color: #27003F;
	-webkit-text-decoration: underline 1px;
	-moz-text-decoration: underline 1px;
	text-decoration: underline 1px;
	text-underline-offset: 2px;
	-webkit-text-decoration-skip-ink: none;
	text-decoration-skip-ink: none;
}
.main-header .submenu__link:focus {
	outline-offset: -2px -3px;
	outline-color: #000000;
}
.main-header .secondary-menu {
	padding: 2.9rem 0;
}
@media (min-width: 700px) {
	.main-header .secondary-menu {
		padding: 1.5rem 0;
	}
}
@media (min-width: 1025px) {
	.main-header .secondary-menu {
		padding: 0 39px 0 0;
		margin: 0 0 0 auto;
	}
}
@media (min-width: 700px) {
	.main-header .secondary-menu__list {
		display: -webkit-box;
		display: -webkit-flex;
		display: -moz-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: end;
		-webkit-justify-content: end;
		-moz-box-pack: end;
		-ms-flex-pack: end;
		justify-content: end;
		padding: 0 3.25rem 0 0;
	}
}
@media (min-width: 1025px) {
	.main-header .secondary-menu__list {
		padding: 0 8rem 0 0;
	}
}
.main-header .secondary-menu__item:not(:last-child) {
	margin: 0;
	padding-bottom: 0.75rem;
}
@media (min-width: 700px) {
	.main-header .secondary-menu__item:not(:last-child) {
		margin: 0 1rem 1.3rem 0;
	}
}
@media (min-width: 1025px) {
	.main-header .secondary-menu__item:not(:last-child) {
		position: relative;
		margin: 0 3.55rem 0 0;
		padding: 0;
	}
}
@media (min-width: 1025px) {
	.main-header .secondary-menu__item .submenu {
		left: 0;
	}
}
@media (min-width: 1025px) {
	.main-header .secondary-menu__item:nth-last-child(1):not(:nth-child(1)) .submenu, .main-header .secondary-menu__item:nth-last-child(2):not(:nth-child(2)) .submenu {
		left: auto;
		right: 0;
	}
}
.main-header .secondary-menu__link,
.main-header .secondary-menu .secondary-submenu__opener {
	border: none;
	padding: 0 1.8rem 0 0;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.3;
	margin: 0 0 0.7rem 1rem;
	font-family: "acumin-pro", sans-serif;
	font-weight: 400;
	color: #FFFFFF;
	background: none;
	-webkit-transition: color 0.3s ease, border-color 0.3s ease;
	-o-transition: color 0.3s ease, border-color 0.3s ease;
	transition: color 0.3s ease, border-color 0.3s ease;
	outline-color: #FFFFFF;
}
@media (min-width: 700px) {
	.main-header .secondary-menu__link,
	.main-header .secondary-menu .secondary-submenu__opener {
		margin: 0 0 0.7rem 0;
	}
}
@media (min-width: 1025px) {
	.main-header .secondary-menu__link,
	.main-header .secondary-menu .secondary-submenu__opener {
		margin: 0;
		padding: 0 1.6rem 0.5rem 0;
		font-size: 15px;
		font-size: 0.9375rem;
		line-height: 1.3;
	}
}
.main-header .secondary-menu__link:hover,
.main-header .secondary-menu .secondary-submenu__opener:hover {
	color: #A4FFBF;
}
.main-header .secondary-menu__link:hover:before,
.main-header .secondary-menu .secondary-submenu__opener:hover:before {
	border-color: #A4FFBF;
}
.main-header .secondary-menu__link:before {
	display: none;
}
@media (min-width: 700px) {
	.main-header .secondary-menu__link {
		padding: 0;
	}
}
@media (min-width: 1025px) {
	.main-header .secondary-menu__link {
		padding: 0;
		font-size: 15px;
		font-size: 0.9375rem;
		line-height: 1.3;
	}
}
.main-header .secondary-menu .submenu {
	margin: 0 0 3rem;
	border-width: 0.4rem;
	width: 110%;
}
@media (min-width: 700px) {
	.main-header .secondary-menu .submenu {
		margin: 0 0 2rem;
		right: 0;
		top: 24px;
		height: -webkit-fit-content;
		height: -moz-fit-content;
		height: fit-content;
		padding: 1rem 0;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}
	.main-header .secondary-menu .submenu ul li a {
		padding: 0 1rem;
	}
}
.main-header .secondary-submenu {
	display: none;
	border-width: 0.4rem;
}
@media (min-width: 1025px) {
	.main-header .secondary-submenu {
		position: absolute;
		left: 0;
		top: 100%;
	}
}
.main-header .secondary-submenu__opener {
	display: inline-block;
	position: relative;
}
@media (forced-colors: active) and (prefers-color-scheme: light) {
	.main-header .secondary-submenu__opener {
		background-color: #FFFFFF !important;
	}
}
.main-header .secondary-submenu__opener:before {
	content: "";
	position: absolute;
	top: 0.2rem;
	right: 0.5rem;
	width: 0.6rem;
	height: 0.6rem;
	border-right: 0.15rem solid #FFFFFF;
	border-bottom: 0.15rem solid #FFFFFF;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: top 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease;
	transition: top 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease;
	-o-transition: transform 0.3s ease, top 0.3s ease, background-color 0.3s ease;
	transition: transform 0.3s ease, top 0.3s ease, background-color 0.3s ease;
	transition: transform 0.3s ease, top 0.3s ease, background-color 0.3s ease, -webkit-transform 0.3s ease;
}
@media (min-width: 1025px) {
	.main-header .secondary-submenu__opener:before {
		border-right: 0.13rem solid #FFFFFF;
		border-bottom: 0.13rem solid #FFFFFF;
		width: 0.5rem;
		height: 0.5rem;
		background-color: #003F12;
	}
}
.main-header .secondary-submenu__opener::after {
	content: "";
	position: absolute;
	bottom: -0.4rem;
	right: 0;
	width: 100%;
	height: 1px;
	background-color: #A4FFBF;
}
@media (min-width: 1025px) {
	.main-header .secondary-submenu__opener::after {
		display: block;
		bottom: 6px;
		width: 110%;
	}
}
.main-header .secondary-submenu__opener.submenu-opened:before {
	top: 7px;
	-webkit-transform: rotate(225deg);
	-ms-transform: rotate(225deg);
	transform: rotate(225deg);
}
@media (min-width: 1025px) {
	.main-header .secondary-submenu__opener.submenu-opened::after {
		opacity: 1;
	}
}
.main-header .secondary-submenu__opener.submenu-opened + .submenu {
	opacity: 1;
	visibility: visible;
	width: 110%;
	right: 0;
	top: 24px;
	padding: 1rem 0;
	border-radius: 0 0 8px 8px;
}
.main-header .search-submit-button {
	color: #000000;
	position: absolute;
	right: -2.3rem;
	top: 1.45rem;
	-webkit-transition: right 0.3s ease, color 0.3s ease;
	-o-transition: right 0.3s ease, color 0.3s ease;
	transition: right 0.3s ease, color 0.3s ease;
	z-index: 10;
}
@media (min-width: 1025px) {
	.main-header .search-submit-button {
		top: 41px;
		right: -32px;
		-webkit-transition: right 0.3s ease;
		-o-transition: right 0.3s ease;
		transition: right 0.3s ease;
	}
}
.search-opened .main-header .search-submit-button {
	right: -1.25rem;
}
@media (min-width: 1025px) {
	.search-opened .main-header .search-submit-button {
		right: -22px;
		background-size: cover;
		top: 41px;
	}
}
.main-header .search__opener, .main-header .search__submit {
	height: 1.75rem;
	width: 1.75rem;
	background-color: #A4FFBF;
	-webkit-transition: background-color 0.3s ease;
	-o-transition: background-color 0.3s ease;
	transition: background-color 0.3s ease;
	border: none;
	border-radius: 2px;
	padding: 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
@media (min-width: 700px) {
	.main-header .search__opener, .main-header .search__submit {
		width: 2.75rem;
		height: 2.75rem;
	}
}
.main-header .search__opener:hover, .main-header .search__submit:hover {
	background-color: #FFFFFF;
}
.main-header .search__opener span,
.main-header .search__opener img, .main-header .search__submit span,
.main-header .search__submit img {
	display: block;
}
.main-header .search__opener {
	position: relative;
	-webkit-transition: none;
	-o-transition: none;
	transition: none;
	z-index: 999;
}
@media (forced-colors: active) {
	.main-header .search__opener {
		background-color: #000000 !important;
	}
	.main-header .search__opener::before, .main-header .search__opener::after {
		border-color: #FFFFFF !important;
	}
}
.main-header .search__opener .search__icon {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	color: #000000;
}
@media (min-width: 1025px) {
	.main-header .search__opener {
		position: absolute;
		-webkit-transition: top 0.3s ease 0.3s, right 0.3s ease, background-color 0.3s ease;
		-o-transition: top 0.3s ease 0.3s, right 0.3s ease, background-color 0.3s ease;
		transition: top 0.3s ease 0.3s, right 0.3s ease, background-color 0.3s ease;
		width: 2.188rem;
		height: 2.188rem;
		right: 50px;
		top: 2.9rem;
	}
}
.search-opened .main-header .search__opener .search__icon {
	display: none;
}
.main-header .search__opener:before, .main-header .search__opener:after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	display: block;
	width: 0.75rem;
	border-top: 1.75px solid;
	background-color: #FFFFFF;
	opacity: 0;
	-webkit-transition: opacity 0.3s ease;
	-o-transition: opacity 0.3s ease;
	transition: opacity 0.3s ease;
	z-index: 1;
}
@media (min-width: 1025px) {
	.main-header .search__opener:before, .main-header .search__opener:after {
		width: 0.75rem;
		border-top: 2px solid;
	}
}
.search-opened .main-header .search__opener {
	background-color: transparent;
	color: white;
	border: 1px solid #FFFFFF;
}
.main-header .search__opener:before, .main-header .search__opener:after {
	-webkit-transform: translate(-50%, -50%) rotate(-45deg);
	-ms-transform: translate(-50%, -50%) rotate(-45deg);
	transform: translate(-50%, -50%) rotate(-45deg);
}
.search-opened .main-header .search__opener:before, .search-opened .main-header .search__opener:after {
	opacity: 1;
}
.main-header .search__opener:after {
	-webkit-transform: translate(-50%, -50%) rotate(45deg);
	-ms-transform: translate(-50%, -50%) rotate(45deg);
	transform: translate(-50%, -50%) rotate(45deg);
}
.main-header .search__form {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: calc(100% - 5rem);
	padding: 1.1rem 0 0 2rem;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
	-o-transition: opacity 0.3s ease, visibility 0.3s ease;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	z-index: 3;
}
@media (min-width: 700px) {
	.main-header .search__form {
		left: unset;
		width: calc(100% - 22rem);
		top: 9px;
		right: 126px;
		padding-top: 0.76rem;
	}
}
@media (min-width: 1025px) {
	.main-header .search__form {
		left: auto;
		width: calc(100% - 43rem);
		padding: 2.2rem 0 0;
	}
}
.search-opened .main-header .search__form {
	opacity: 1;
	visibility: visible;
	-webkit-transition: none;
	-o-transition: none;
	transition: none;
}
.search-opened .main-header .search__form .search__input {
	width: 100%;
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
}
.search-opened .main-header .search__form .search__input::-webkit-input-placeholder {
	color: #FFFFFF;
	-webkit-transition: color 0.3s ease 0.6s;
	transition: color 0.3s ease 0.6s;
}
.search-opened .main-header .search__form .search__input::-moz-placeholder {
	color: #FFFFFF;
	-moz-transition: color 0.3s ease 0.6s;
	transition: color 0.3s ease 0.6s;
}
.search-opened .main-header .search__form .search__input:-ms-input-placeholder {
	color: #FFFFFF;
	-ms-transition: color 0.3s ease 0.6s;
	transition: color 0.3s ease 0.6s;
}
.search-opened .main-header .search__form .search__input::-ms-input-placeholder {
	color: #FFFFFF;
	-ms-transition: color 0.3s ease 0.6s;
	transition: color 0.3s ease 0.6s;
}
.search-opened .main-header .search__form .search__input::placeholder {
	color: #FFFFFF;
	-webkit-transition: color 0.3s ease 0.6s;
	-o-transition: color 0.3s ease 0.6s;
	transition: color 0.3s ease 0.6s;
}
.main-header .search__input {
	display: block;
	border: none;
	border-bottom: 1px solid #A4FFBF;
	background: transparent;
	color: #FFFFFF;
	font-size: 15px;
	font-size: 0.9375rem;
	line-height: 1.3;
	font-family: "acumin-pro", sans-serif;
	font-weight: 500;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: 0;
	padding: 0.25rem 0;
	-webkit-transition: all 0.3s ease 0.3s, outline 0ms 0ms, -webkit-transform 0.3s ease 0.3s;
	transition: all 0.3s ease 0.3s, outline 0ms 0ms, -webkit-transform 0.3s ease 0.3s;
	-o-transition: all 0.3s ease 0.3s, transform 0.3s ease 0.3s, outline 0ms 0ms;
	transition: all 0.3s ease 0.3s, transform 0.3s ease 0.3s, outline 0ms 0ms;
	transition: all 0.3s ease 0.3s, transform 0.3s ease 0.3s, outline 0ms 0ms, -webkit-transform 0.3s ease 0.3s;
	width: 1px;
	margin-left: auto;
	outline-offset: -3px;
	height: 28.5px;
}
@media (forced-colors: active) and (prefers-color-scheme: light) {
	.main-header .search__input {
		background-color: #FFFFFF;
	}
}
.main-header .search__input::-webkit-input-placeholder {
	color: transparent;
	-webkit-transition: color 0.3s ease 0.6s;
	transition: color 0.3s ease 0.6s;
}
.main-header .search__input::-moz-placeholder {
	color: transparent;
	-moz-transition: color 0.3s ease 0.6s;
	transition: color 0.3s ease 0.6s;
}
.main-header .search__input:-ms-input-placeholder {
	color: transparent;
	-ms-transition: color 0.3s ease 0.6s;
	transition: color 0.3s ease 0.6s;
}
.main-header .search__input::-ms-input-placeholder {
	color: transparent;
	-ms-transition: color 0.3s ease 0.6s;
	transition: color 0.3s ease 0.6s;
}
.main-header .search__input::placeholder {
	color: transparent;
	-webkit-transition: color 0.3s ease 0.6s;
	-o-transition: color 0.3s ease 0.6s;
	transition: color 0.3s ease 0.6s;
}
.main-header .search__input:focus {
	-webkit-transition: none;
	-o-transition: none;
	transition: none;
}
@media (min-width: 700px) {
	.main-header .search__input {
		font-size: 16px;
		font-size: 1rem;
		line-height: 1.4;
		padding: 0.55rem 0 0.74rem;
		height: 44px;
	}
}
@media (min-width: 1025px) {
	.main-header .search__input {
		padding: 8px 8px 8px 14px;
		font-size: 15px;
		font-size: 0.9375rem;
		line-height: 1.3;
		height: 36.8px;
	}
}
.main-header .search__submit {
	position: absolute;
	right: -4rem;
	top: 1.125rem;
	-webkit-transition: right 0.3s ease, background-color 0.3s ease, background-color 0.3s ease;
	-o-transition: right 0.3s ease, background-color 0.3s ease, background-color 0.3s ease;
	transition: right 0.3s ease, background-color 0.3s ease, background-color 0.3s ease;
	font-size: 0;
}
@media (min-width: 700px) {
	.main-header .search__submit {
		right: -5.5rem;
		top: 0.7rem;
	}
}
@media (min-width: 1025px) {
	.main-header .search__submit {
		top: 2.3rem;
		right: -2.5rem;
		-webkit-transition: right 0.3s ease;
		-o-transition: right 0.3s ease;
		transition: right 0.3s ease;
		width: 35px;
		height: 35px;
	}
}
.search-opened .main-header .search__submit {
	right: -1.563rem;
}
@media (min-width: 700px) {
	.search-opened .main-header .search__submit {
		right: -2.1rem;
		top: 0.75rem;
	}
}
@media (min-width: 1025px) {
	.search-opened .main-header .search__submit {
		right: -1.9rem;
		top: 2.3rem;
		-webkit-transition: right 0.3s ease;
		-o-transition: right 0.3s ease;
		transition: right 0.3s ease;
		background-image: url("data:image/svg+xml,%3Csvg width='18' height='17' viewBox='0 0 18 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8.04811' cy='8.03639' r='6.34694' stroke='currentColor' stroke-width='2'%3E%3C/circle%3E%3Cline x1='16.2401' y1='15.3867' x2='13.1331' y2='12.2797' stroke='currentColor' stroke-width='2' stroke-linecap='square'%3E%3C/line%3E%3C/svg%3E");
		background-size: 18px;
		background-repeat: no-repeat;
		background-position: center;
	}
}

.main-menu-active .sticky-header {
	position: fixed;
}

@media (min-width: 1025px) {
	.sticky-header .main-header__content-holder:after {
		opacity: 1;
		-webkit-transition: opacity 0.3s ease;
		-o-transition: opacity 0.3s ease;
		transition: opacity 0.3s ease;
	}
	.sticky-header .main-menu:before {
		content: "";
		opacity: 1;
		background-color: #003F12;
		position: absolute;
		width: 100vw;
		height: 80px;
		left: -3px;
		margin-left: calc(((100vw - 100%) / 2 + var(--scrollbar-width)) * -1);
		top: -18px;
		z-index: -1;
		-webkit-transition: opacity 0.3s ease;
		-o-transition: opacity 0.3s ease;
		transition: opacity 0.3s ease;
	}
}

nav.main-menu .medium-sub-menu {
	display: none;
}
@media (min-width: 700px) and (max-width: 1025px) {
	nav.main-menu {
		display: -webkit-box;
		display: -webkit-flex;
		display: -moz-box;
		display: -ms-flexbox;
		display: flex;
	}
	nav.main-menu .main-submenu__opener.submenu-opened:before {
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
	}
	nav.main-menu .main-submenu__opener[aria-expanded=true]:before {
		-webkit-transform: rotate(135deg);
		-ms-transform: rotate(135deg);
		transform: rotate(135deg);
	}
	nav.main-menu > ul.main-menu__list {
		-webkit-box-flex: 1;
		-webkit-flex: 1;
		-moz-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
	}
	nav.main-menu .medium-sub-menu {
		display: block;
		-webkit-box-flex: 1.25;
		-webkit-flex: 1.25;
		-moz-box-flex: 1.25;
		-ms-flex: 1.25;
		flex: 1.25;
		background-color: #FFFFFF;
	}
	nav.main-menu .medium-sub-menu li.submenu__item {
		padding: 0;
		margin: 0;
	}
	nav.main-menu .medium-sub-menu .main-menu__item {
		margin: 0;
		padding: 0;
		border: none;
	}
	nav.main-menu .medium-sub-menu button {
		display: none;
	}
	nav.main-menu .medium-sub-menu button.submenu-opened + div.submenu {
		visibility: visible;
		max-height: initial;
		opacity: 1;
		overflow: scroll;
		padding: 32px 54px;
	}
	nav.main-menu .medium-sub-menu .main-menu__link {
		display: none;
	}
	nav.main-menu .medium-sub-menu .main-menu__list {
		padding: 0;
	}
	nav.main-menu .medium-sub-menu .submenu {
		visibility: hidden;
		position: unset;
		top: 0;
		padding: 0;
		margin: 0;
		width: unset;
		max-height: 0;
		opacity: 0;
		-webkit-transition: opacity 0.3s ease 0s !important;
		-o-transition: opacity 0.3s ease 0s !important;
		transition: opacity 0.3s ease 0s !important;
		overflow: hidden;
	}
	nav.main-menu .medium-sub-menu .submenu__link {
		padding: 0 0 8px 0;
		line-height: 1.4;
	}
}

div.alert--major + header.main-header .main-header__content-holder:after {
	z-index: 1;
	top: 0;
}

.alert {
	color: #FFFFFF;
	display: block;
	top: 0;
	padding: 15px 15px 20px;
	position: relative;
	display: none;
}
@media (min-width: 700px) {
	.alert {
		padding: 25px 50px;
	}
}
@media (min-width: 1025px) {
	.alert {
		padding: 45px 50px;
	}
}
.alert-display {
	padding: 0;
}
.alert-display__content {
	padding: 0 15px;
}
@media (min-width: 700px) {
	.alert-display__content {
		padding: 0 20px;
	}
}
.alert__content h2 {
	margin: 0 0 8px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 12px;
}
@media (min-width: 700px) {
	.alert__content h2 {
		margin: 0;
	}
}
@media (min-width: 700px) {
	.alert__message {
		padding-right: 2rem;
	}
}
.alert__message svg {
	width: 51px;
}
@media (min-width: 700px) {
	.alert__message svg {
		width: 105px;
	}
}
.alert__message svg.lg {
	display: none;
}
@media (min-width: 700px) {
	.alert__message svg.lg {
		display: block;
		float: left;
		margin-right: 40px;
	}
}
@media (min-width: 700px) {
	.alert__message svg.sm {
		display: none;
	}
}
.alert__description {
	margin-bottom: 10px;
}
.alert__icon:before {
	position: absolute;
	display: inline-block;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	left: -2em;
	width: 1.5em;
	height: 1.5em;
	background: url("/assets/icons/error.svg") no-repeat center left;
	background-size: contain;
	content: "";
}
.alert__cta {
	position: relative;
	display: inline-block;
	font-weight: 600;
	font-family: "acumin-pro", sans-serif;
	color: #003F12;
	border: 1px solid #A4FFBF;
	background-color: #A4FFBF;
	border-radius: 8px;
	padding: 8px 40px 11px 16px;
	font-size: 14px;
	font-size: 0.875rem;
	line-height: 18px;
	white-space: nowrap;
}
.alert__cta:after {
	content: "";
	display: inline-block;
	vertical-align: middle;
	position: absolute;
	bottom: 13px;
	right: 13px;
	margin: 0 0 0 3px;
	background-image: url("data:image/svg+xml,%3Csvg width='22' height='14' viewBox='0 0 22 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.0287 0L22 7.03333L15.0287 14H11.8758L17.586 8.26667H0V5.76667H17.586L11.8758 0H15.0287Z' fill='%23003F12'/%3E%3C/svg%3E");
	background-size: cover;
}
.alert__cta:hover {
	color: #A4FFBF;
	background-color: #003F12;
	border-color: #003F12;
}
.alert__cta:hover:after {
	background-image: url("data:image/svg+xml,%3Csvg width='22' height='14' viewBox='0 0 22 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.0287 0L22 7.03333L15.0287 14H11.8758L17.586 8.26667H0V5.76667H17.586L11.8758 0H15.0287Z' fill='%23A4FFBF'/%3E%3C/svg%3E");
}
.alert__cta:after {
	bottom: 14px;
	width: 17px;
	height: 11px;
}
@media (min-width: 700px) {
	.alert__cta {
		padding: 9px 50px 11px 16px;
		font-size: 18px;
		font-size: 1.125rem;
		line-height: 23px;
	}
	.alert__cta:after {
		width: 19px;
		height: 12px;
	}
}
@media (min-width: 1025px) {
	.alert__cta {
		padding: 9px 45px 11px 16px;
		font-size: 24px;
		font-size: 1.5rem;
		line-height: 24px;
	}
	.alert__cta:after {
		width: 22px;
		height: 14px;
	}
}
.alert__cta:focus {
	outline-color: #FFFFFF;
}
.alert--minor {
	background-color: #A4FFBF;
}
.alert--medium {
	background-color: #FFCC66;
}
.alert--major {
	background-color: #003F12!important;
	z-index: 1;
	color: white;
}
.alert .alert-close {
	width: 17px;
	height: 17px;
	position: absolute;
	top: 10px;
	right: 10px;
	background-color: transparent;
	border: 0;
}
@media (min-width: 700px) {
	.alert .alert-close {
		width: 22px;
		height: 22px;
	}
}
@media (min-width: 1025px) {
	.alert .alert-close {
		width: 27px;
		height: 27px;
	}
}
.alert .alert-close:before, .alert .alert-close:after {
	content: "";
	width: 17px;
	height: 17px;
	border-right: 3px solid #FFFFFF;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	position: absolute;
	left: -40%;
	top: -35%;
}
@media (min-width: 700px) {
	.alert .alert-close:before, .alert .alert-close:after {
		width: 22px;
		height: 22px;
	}
}
@media (min-width: 1025px) {
	.alert .alert-close:before, .alert .alert-close:after {
		width: 27px;
		height: 27px;
		border-right: 4px solid #FFFFFF;
	}
}
.alert .alert-close:after {
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	margin-top: 12px;
}
@media (min-width: 700px) {
	.alert .alert-close:after {
		margin-top: 15px;
	}
}
@media (min-width: 1025px) {
	.alert .alert-close:after {
		margin-top: 19px;
	}
}

.table-block__wrapper {
	margin: 3rem -1rem 3rem 0;
	clear: both;
	max-width: 900px;
}
.table-block__wrapper .tablet-controls {
	height: 0;
}
.table-block__wrapper:before {
	content: none;
}
.table-block__wrapper .js-scroll--left .left {
	display: none;
}
.table-block__wrapper .js-scroll--left .right {
	display: block;
}
.table-block__wrapper .js-scroll--right .right {
	display: none;
}
.table-block__wrapper .js-scroll--right .left {
	display: block;
}
.table-block__wrapper .js-scroll--right table,
.table-block__wrapper .js-scroll--left table {
	display: block;
}
.table-block__wrapper .js-scroll--right .table-scroller,
.table-block__wrapper .js-scroll--left .table-scroller {
	overflow: auto;
	width: 100%;
	display: block;
}
@media (min-width: 700px) {
	.table-block__wrapper .js-scroll--right .right,
	.table-block__wrapper .js-scroll--right .left,
	.table-block__wrapper .js-scroll--left .right,
	.table-block__wrapper .js-scroll--left .left {
		display: none;
	}
}
.table-block__holder {
	position: relative;
}
.table-block__holder tbody:before {
	margin-top: 5px;
}
.table-block__holder tbody:after {
	content: none;
}
.table-block__holder thead + tbody {
	border-top: 0;
	padding-top: 0;
}
.table-block__holder thead + tbody:before {
	content: none;
}
.table-block__holder.sticky thead {
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	-ms-overflow-style: none; /* IE and Edge */
	scrollbar-width: none; /* Firefox */
	/* Hide scrollbar for Chrome, Safari and Opera */
}
.table-block__holder.sticky thead::-webkit-scrollbar {
	display: none;
}
.table-block__holder.sticky thead:before {
	margin-top: 5px;
}

table {
	clear: both;
	max-width: 100%;
	min-width: 100%;
	border-collapse: collapse;
	color: #27003F;
	background-color: #FFFFFF;
	border-bottom: 1px solid #27003F;
}
table > thead {
	border-radius: 5px 0 0 0;
}
table > thead th {
	font-weight: 700;
	line-height: 1.5;
	text-align: left;
	padding: 1rem;
	background-color: #27003F;
	color: #FFFFFF;
}
@media (min-width: 700px) {
	table > thead {
		border-radius: 8px 8px 0 0;
	}
	table > thead th:first-of-type {
		padding: 1rem 10px 1rem 3.125rem;
	}
}
table td,
table th {
	text-align: left;
	vertical-align: top;
}
table tbody th {
	padding: 1.5rem 1rem;
	border-bottom: 1px solid #BEBBBB;
}
@media (min-width: 700px) {
	table tbody th {
		padding: 3rem 0.625rem 3rem 3.125rem;
	}
}
table tr:last-child td {
	border-bottom: 1px solid #BEBBBB;
}
table a:focus {
	outline-color: #000000;
}
table td {
	padding: 1.5rem;
	border-bottom: 1px solid #BEBBBB;
}
@media (min-width: 700px) {
	table td {
		padding: 3rem 0.625rem;
	}
}
table a {
	color: #046A38;
}

.table-block__holder.js-scroll--right .table-block__next {
	visibility: visible;
	opacity: 1;
}
.table-block__holder.js-scroll--left .table-block__prev {
	visibility: visible;
	opacity: 1;
}
.table-block__prev, .table-block__next {
	visibility: hidden;
	opacity: 0;
	font-size: 0;
	line-height: 0;
	position: -webkit-sticky;
	position: sticky;
	top: 50%;
	-webkit-transform: translateY(50%);
	-ms-transform: translateY(50%);
	transform: translateY(50%);
	left: -10px;
	width: 47px;
	height: 44px;
	z-index: 1000;
	background-color: #CBE2FF;
	padding: 0;
	border: 1px solid #CBE2FF;
	border-radius: 8px;
	-webkit-transition: background-color 300ms;
	-o-transition: background-color 300ms;
	transition: background-color 300ms;
}
@media (min-width: 700px) {
	.table-block__prev, .table-block__next {
		left: -20px;
		width: 45px;
		height: 45px;
	}
}
@media (min-width: 1025px) {
	.table-block__prev, .table-block__next {
		width: 50px;
		height: 50px;
		left: -58px;
	}
}
@media (max-width: 1024px) {
	.table-block__prev.table-block__next, .table-block__prev.table-block__prev, .table-block__next.table-block__next, .table-block__next.table-block__prev {
		outline-color: #000000;
		outline-offset: -3px;
	}
}
.table-block__prev:hover, .table-block__next:hover {
	background: #FFFFFF;
	border-color: #000000;
}
.table-block__prev:after, .table-block__next:after {
	content: "";
	display: inline-block;
	vertical-align: top;
	width: 10px;
	height: 10px;
	left: 50%;
	border-top: 4px solid #000000;
	border-right: 4px solid #000000;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	line-height: 1;
	margin-left: -3px;
	-webkit-transition: all 300ms;
	-o-transition: all 300ms;
	transition: all 300ms;
}
@media (min-width: 1025px) {
	.table-block__prev:after, .table-block__next:after {
		width: 10px;
		height: 10px;
		margin-left: -1px;
	}
}
.table-block__next {
	left: 100%;
}
@media (min-width: 700px) {
	.table-block__next {
		margin-right: -30px;
	}
}
@media (min-width: 1025px) {
	.table-block__next {
		right: -58px;
		margin-right: -50px;
	}
}
.table-block__prev {
	margin-left: -10px;
}
@media (min-width: 700px) {
	.table-block__prev {
		margin-left: -30px;
	}
}
@media (min-width: 1025px) {
	.table-block__prev {
		margin-left: -50px;
	}
}
.table-block__prev:after {
	-webkit-transform: rotate(-135deg);
	-ms-transform: rotate(-135deg);
	transform: rotate(-135deg);
	margin-left: 3px;
}

/**
* @file
* Accordion
*
* Contains styles for accordion content object.
*/
.accordion button:focus,
.accordion a:focus {
	outline-color: #000000;
}
.accordion__all {
	padding: 0;
	margin: 0 0 1.25rem;
	text-align: left;
}
.accordion__all button {
	position: relative;
	padding: 0 0 0 20px;
	background-color: transparent;
	border: 0;
	color: #046A38;
	font-size: 1em;
	font-weight: 700;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
	-webkit-text-decoration-skip-ink: none;
	text-decoration-skip-ink: none;
	-webkit-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
.accordion__all button.js-disabled {
	opacity: 0.4;
	pointer-events: none;
}
.accordion__expand-all {
	margin-right: 1.2em;
	cursor: pointer;
}
.accordion__expand-all:before, .accordion__expand-all:after {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	background-color: #046A38;
	content: "";
	-webkit-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
.accordion__expand-all:before {
	left: 6px;
	height: 15px;
	border-left: 3px solid #046A38;
}
.accordion__expand-all:after {
	left: 0;
	border-top: 3px solid #046A38;
	width: 15px;
}
@media (min-width: 1025px) {
	.accordion__expand-all {
		margin-right: 2em;
	}
}
.accordion__collapse-all {
	cursor: pointer;
}
.accordion__collapse-all:before, .accordion__collapse-all:after {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	background-color: #046A38;
	content: "";
	-webkit-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
.accordion__collapse-all:after {
	left: 0;
	border-top: 3px solid #046A38;
	width: 15px;
	rotate: 45deg;
	-webkit-transform-origin: 50% 0;
	-ms-transform-origin: 50% 0;
	transform-origin: 50% 0;
}
.accordion__collapse-all:before {
	left: 6px;
	height: 14px;
	border-left: 3px solid #046A38;
	rotate: 45deg;
	-webkit-transform-origin: 50% 0;
	-ms-transform-origin: 50% 0;
	transform-origin: 50% 0;
}
.accordion__item {
	margin: 0 0 1px;
}
.accordion__item:first-child button {
	border-radius: 8px 8px 0 0;
}
.accordion__item:last-child {
	margin: 0;
}
.accordion__item:last-child button {
	border-radius: 0 0 8px 8px;
}
.accordion__item:last-child .accordion__content {
	border-radius: 0 0 8px 8px;
}
.accordion__toggle {
	display: block;
	position: relative;
	padding: 1rem 1rem 1.2rem 3.8rem;
	width: 100%;
	min-height: 68px;
	background: #003F12;
	border-top: 3px solid #003F12;
	border-right: 3px solid #003F12;
	border-bottom: none;
	border-left: 3px solid #003F12;
	color: #FFFFFF;
	cursor: pointer;
	font-weight: 700;
	line-height: 1.5;
	text-align: left;
	-webkit-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
.accordion__toggle:focus {
	outline-width: 2px;
	outline-color: #FFFFFF !important;
	outline-offset: -6px;
}
@media (min-width: 700px) {
	.accordion__toggle {
		padding: 1.4rem 3rem 1.8rem 5.1rem;
		min-height: 5.25rem;
	}
}
@media (min-width: 1025px) {
	.accordion__toggle {
		padding: 1.4rem 3rem 1.8rem 5.2rem;
	}
}
.accordion__toggle.js-expanded {
	background-color: #FFFFFF;
	color: #000000;
	padding-top: 0.7rem;
}
.accordion__toggle.js-expanded:focus {
	outline-color: #000000 !important;
}
.accordion__toggle.js-expanded .accordion__icon {
	background-color: #003F12;
}
.accordion__toggle.js-expanded .accordion__icon:before {
	height: 0;
	border-color: #A4FFBF;
}
.accordion__toggle.js-expanded .accordion__icon:after {
	border-color: #A4FFBF;
}
.accordion__item:first-child .accordion__toggle.js-expanded {
	border-radius: 8px 8px 0 0;
}
.accordion__item .accordion__toggle.js-expanded {
	border-radius: 0;
}
@media (min-width: 700px) {
	.accordion__item .accordion__toggle.js-expanded {
		padding-top: 1.77rem;
	}
}
.accordion__item:last-child .accordion__toggle.js-expanded {
	border-radius: 0;
}
.accordion__icon {
	position: absolute;
	height: 1.75rem;
	width: 1.75rem;
	left: 1.1rem;
	top: 1.975rem;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	background-color: #A4FFBF;
	border-radius: 8px;
	-webkit-transition: 0.3s background-color ease-in-out;
	-o-transition: 0.3s background-color ease-in-out;
	transition: 0.3s background-color ease-in-out;
}
.accordion__icon:hover {
	background-color: #FFFFFF;
}
.accordion__icon:before, .accordion__icon:after {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translateY(-50%) translateX(-50%);
	-ms-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);
	border-color: #003F12;
	content: "";
	-webkit-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
.accordion__icon:before {
	height: 14px;
	border-left: 3px solid #003F12;
}
.accordion__icon:after {
	border-top: 3px solid #003F12;
	width: 14px;
}
@media (min-width: 700px) {
	.accordion__icon {
		width: 2.25rem;
		height: 2.25rem;
		top: 2.47rem;
	}
	.accordion__icon:before {
		height: 14px;
	}
	.accordion__icon:after {
		width: 14px;
	}
}
@media (min-width: 1025px) {
	.accordion__icon {
		left: 1.19em;
		top: 2.35em;
		width: 2.375rem;
		height: 2.375rem;
	}
}
.accordion__content {
	display: none;
	padding: 0.1em 1em 3em 4em;
	border-left: 3px solid #003F12;
	border-right: 3px solid #003F12;
	border-bottom: 3px solid #003F12;
}
.accordion__content .views-element-container {
	width: 100%;
}
.accordion__copy {
	width: 100%;
}
.accordion__copy .table--wysiwyg {
	margin: 0;
	width: 100%;
}
@media (max-width: 699px) {
	.accordion__copy .table--wysiwyg {
		margin: 0 1em;
		width: calc(100% + 2em);
	}
}
.accordion__top {
	position: relative;
	margin: 0;
	padding: 0 0 0 1.5em;
	background: transparent;
	border: 0;
	font-weight: 700;
}
.accordion__top:before {
	position: absolute;
	left: 0;
	top: 50%;
	height: 7px;
	width: 7px;
	content: "";
	border-color: #000000;
	border-style: solid;
	border-width: 3px 0 0 3px;
	-webkit-transform: rotate(45deg) translateY(-50%);
	-ms-transform: rotate(45deg) translateY(-50%);
	transform: rotate(45deg) translateY(-50%);
}

/**
* @file
* Award
*
* Contains styles for Awards in WYSIWYG region.
*/
.award {
	clear: both;
}
.award__item {
	margin: 0 0 1em;
}
.award__title {
	font-weight: 700;
	margin: 0;
}

.featured3up {
	margin: 64px auto 0;
}
@media (min-width: 1800px) {
	.featured3up {
		max-width: 1800px;
		margin: 0 auto;
	}
}
.featured3up__header {
	color: #003F12;
	text-align: center;
}
.featured3up__header span {
	font-family: adobe-handwriting-ernie, sans-serif;
	font-size: 18px;
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 0.9;
}
@media (min-width: 700px) {
	.featured3up__header span {
		font-size: 28px;
		font-size: 1.75rem;
	}
}
@media (min-width: 1025px) {
	.featured3up__header span {
		font-size: 36px;
		font-size: 2.25rem;
	}
}
.featured3up__header .decorative-lines {
	position: relative;
}
.featured3up__header .decorative-lines:before {
	content: "";
	position: absolute;
	width: calc(50% - 90px);
	height: 2px;
	left: 0;
	top: 50%;
	background-color: #003F12;
	border-radius: 8px;
	-webkit-transform: scaleX(0);
	-ms-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transform-origin: right;
	-ms-transform-origin: right;
	transform-origin: right;
	-webkit-transition: all 0.3s ease 0.5s;
	-o-transition: all 0.3s ease 0.5s;
	transition: all 0.3s ease 0.5s;
}
@media (min-width: 700px) {
	.featured3up__header .decorative-lines:before {
		width: calc(50% - 150px);
	}
}
@media (min-width: 1025px) {
	.featured3up__header .decorative-lines:before {
		width: calc(50% - 190px);
		left: -3px;
		height: 3px;
	}
}
.featured3up__header .decorative-lines:after {
	content: "";
	position: absolute;
	width: calc(50% - 90px);
	height: 2px;
	right: 0;
	top: 50%;
	background-color: #003F12;
	border-radius: 8px;
	-webkit-transform: scaleX(0);
	-ms-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transform-origin: right;
	-ms-transform-origin: right;
	transform-origin: right;
	-webkit-transition: all 0.3s 0.2s ease;
	-o-transition: all 0.3s 0.2s ease;
	transition: all 0.3s 0.2s ease;
}
@media (min-width: 700px) {
	.featured3up__header .decorative-lines:after {
		width: calc(50% - 150px);
	}
}
@media (min-width: 1025px) {
	.featured3up__header .decorative-lines:after {
		width: calc(50% - 200px);
		height: 3px;
	}
}
.featured3up__header .circle:after {
	content: "";
	position: absolute;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: 2px solid #003F12;
	background-color: #FFFFFF;
	right: 0;
	top: calc(50% - 7px);
	z-index: 1;
	opacity: 0;
	-webkit-transition: opacity 0.3s ease;
	-o-transition: opacity 0.3s ease;
	transition: opacity 0.3s ease;
}
@media (min-width: 700px) {
	.featured3up__header .circle:after {
		width: 15px;
		height: 15px;
	}
}
@media (min-width: 1025px) {
	.featured3up__header .circle:after {
		width: 18px;
		height: 18px;
		border: 3px solid #003F12;
		top: calc(50% - 11px);
	}
}
@media (min-width: 700px) {
	.featured3up__header h2 {
		margin-bottom: 12px;
	}
}
@media (min-width: 1025px) {
	.featured3up__header h2 {
		margin-bottom: 24px;
	}
}
.featured3up__intro {
	font-size: 18px;
	font-size: 1.125rem;
	color: #003F12;
	font-family: acumin-pro-condensed, sans-serif;
	font-style: italic;
	font-weight: 800;
	line-height: 1.4;
	padding: 20px;
	border: 2px solid #003F12;
	border-radius: 8px;
	margin: 16px 16px 32px;
	position: relative;
	background-color: #FFFFFF;
}
@media (min-width: 700px) {
	.featured3up__intro {
		font-size: 21px;
		font-size: 1.3125rem;
		padding: 48px;
		margin: 18px 20px;
	}
}
@media (min-width: 1025px) {
	.featured3up__intro {
		font-size: 32px;
		font-size: 2rem;
		margin: 44px 80px 60px;
		padding: 64px;
		border: 3px solid #003F12;
	}
}
.featured3up__intro:before {
	content: "";
	position: absolute;
	width: 2px;
	height: calc(50% + 30px);
	left: -18px;
	top: -29px;
	background-color: #003F12;
	border-radius: 0;
	-webkit-transform: scaleY(0);
	-ms-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transform-origin: top;
	-ms-transform-origin: top;
	transform-origin: top;
	-webkit-transition: all 0.3s ease 0.7s;
	-o-transition: all 0.3s ease 0.7s;
	transition: all 0.3s ease 0.7s;
}
@media (min-width: 700px) {
	.featured3up__intro:before {
		height: calc(50% + 35px);
		top: -33px;
		left: -22px;
	}
}
@media (min-width: 1025px) {
	.featured3up__intro:before {
		height: calc(50% + 63px);
		top: -63px;
		left: -86px;
		width: 3px;
	}
}
.featured3up__intro:after {
	content: "";
	position: absolute;
	width: calc(100vw - 30px);
	height: 2px;
	left: -18px;
	top: 50%;
	background-color: #003F12;
	border-radius: 0;
	-webkit-transform: scaleX(0);
	-ms-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transform-origin: left;
	-ms-transform-origin: left;
	transform-origin: left;
	-webkit-transition: all 0.5s ease 1s;
	-o-transition: all 0.5s ease 1s;
	transition: all 0.5s ease 1s;
	z-index: -1;
}
@media (min-width: 700px) {
	.featured3up__intro:after {
		left: -20px;
		width: calc(100vw - 104px);
	}
}
@media (min-width: 1025px) {
	.featured3up__intro:after {
		left: -86px;
		width: calc(100% + 163px);
		height: 3px;
		max-width: 1620px;
	}
}
.featured3up__intro .decorative-lines:before {
	content: "";
	position: absolute;
	width: 2px;
	height: calc(50% + 110px);
	right: -20px;
	top: 50%;
	background-color: #003F12;
	border-radius: 0;
	-webkit-transform: scaleY(0);
	-ms-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transform-origin: top;
	-ms-transform-origin: top;
	transform-origin: top;
	-webkit-transition: all 0.3s ease 1.5s;
	-o-transition: all 0.3s ease 1.5s;
	transition: all 0.3s ease 1.5s;
}
@media (min-width: 700px) {
	.featured3up__intro .decorative-lines:before {
		height: calc(50% + 160px);
		right: -22px;
	}
}
@media (min-width: 1025px) {
	.featured3up__intro .decorative-lines:before {
		height: calc(50% + 283px);
		right: -80px;
		width: 3px;
	}
}
.featured3up .column--three {
	position: relative;
}
.featured3up .column--three:before {
	content: "";
	position: absolute;
	top: 74px;
	right: 0;
	height: 2px;
	width: 100%;
	background-color: #003F12;
	-webkit-transform: scaleY(0);
	-ms-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transform-origin: right;
	-ms-transform-origin: right;
	transform-origin: right;
	-webkit-transition: all 0.3s ease 1.8s;
	-o-transition: all 0.3s ease 1.8s;
	transition: all 0.3s ease 1.8s;
	z-index: -1;
}
@media (min-width: 700px) {
	.featured3up .column--three:before {
		top: 140px;
	}
}
@media (min-width: 1025px) {
	.featured3up .column--three:before {
		top: 220px;
		height: 3px;
		right: 3px;
		width: calc(100% - 14px);
	}
}
.featured3up .column--three:after {
	content: "";
	position: absolute;
	top: 68px;
	left: -8px;
	height: 10px;
	width: 10px;
	background-color: #FFFFFF;
	border: 2px solid #003F12;
	border-radius: 50%;
	opacity: 0;
	-webkit-transition: opacity 0.5s ease 2.1s;
	-o-transition: opacity 0.5s ease 2.1s;
	transition: opacity 0.5s ease 2.1s;
	z-index: -1;
}
@media (min-width: 700px) {
	.featured3up .column--three:after {
		top: 132px;
		height: 15px;
		width: 15px;
	}
}
@media (min-width: 1025px) {
	.featured3up .column--three:after {
		top: 209px;
		width: 18px;
		height: 18px;
		border: 3px solid #003F12;
	}
}
@media (min-width: 700px) {
	.featured3up .column--three {
		display: -ms-grid;
		display: grid;
		-ms-grid-columns: 1fr 7px 1fr 7px 1fr;
		grid-template-columns: 1fr 1fr 1fr;
		gap: 7px;
		padding: 0 20px;
	}
}
@media (min-width: 1025px) {
	.featured3up .column--three {
		padding: 0 80px;
		gap: 20px;
	}
}
.featured3up__item {
	padding: 0 15px;
	position: relative;
}
.featured3up__item:hover img {
	-webkit-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}
@media (min-width: 700px) {
	.featured3up__item {
		display: -webkit-box;
		display: -webkit-flex;
		display: -moz-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-moz-box-orient: vertical;
		-moz-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		padding: 0;
	}
}
.featured3up__image {
	overflow: hidden;
	border-radius: 8px 8px 0 0;
}
.featured3up__image img {
	aspect-ratio: 260/140;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transition: all 300ms;
	-o-transition: all 300ms;
	transition: all 300ms;
}
@media (min-width: 700px) {
	.featured3up__image img {
		aspect-ratio: 179/179;
	}
}
.featured3up__caption {
	font-size: 16px;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.4;
}
.featured3up__caption h3, .featured3up__caption .story-carousel__header h2, .story-carousel__header .featured3up__caption h2 {
	margin: 0;
}
@media (min-width: 700px) {
	.featured3up__caption {
		font-size: 18px;
		font-size: 1.125rem;
	}
}
@media (min-width: 1025px) {
	.featured3up__caption {
		font-size: 24px;
		font-size: 1.5rem;
		line-height: 1.3;
	}
	.featured3up__caption h5, .featured3up__caption .alert__content h2, .alert__content .featured3up__caption h2, .featured3up__caption h3, .featured3up__caption .story-carousel__header h2, .story-carousel__header .featured3up__caption h2 {
		margin: 0 0 16px;
	}
}
.featured3up__content {
	padding: 10px 16px 24px;
	border-top: 2px solid #A4FFBF;
	background-color: #003F12;
	color: #FFFFFF;
	border-radius: 0 0 8px 8px;
}
@media (min-width: 700px) {
	.featured3up__content {
		padding: 24px 24px 13px;
		-webkit-box-flex: 1;
		-webkit-flex: 1;
		-moz-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
	}
}
@media (min-width: 1025px) {
	.featured3up__content {
		padding: 24px 24px 32px;
	}
}
.featured3up__cta span.last-word {
	position: relative;
	padding-right: 0;
}
.featured3up__cta span.last-word:after {
	content: "";
	position: absolute;
	top: calc(50% - 3px);
	right: -23px;
	width: 14px;
	height: 10px;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	background-image: url("data:image/svg+xml,%3Csvg width='14' height='10' viewBox='0 0 14 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.56369 0L14 5.02381L9.56369 10H7.55732L11.1911 5.90476H0V4.11905H11.1911L7.55732 0H9.56369Z' fill='%23A4FFBF'/%3E%3C/svg%3E");
}
@media (min-width: 1025px) {
	.featured3up__cta span.last-word:after {
		width: 20px;
		height: 14px;
		background-size: contain;
		background-repeat: no-repeat;
		top: calc(50% - 4px);
		right: -27px;
	}
}
.featured3up__cta a.last-word-wrap {
	color: #A4FFBF;
	margin-right: 35px;
	font-weight: 600;
	font-size: 14px;
	font-size: 0.875rem;
	line-height: 1.3;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	position: static;
}
.featured3up__cta a.last-word-wrap:hover {
	color: #FFFFFF;
}
.featured3up__cta a.last-word-wrap:hover .last-word:after {
	background-image: url("data:image/svg+xml,%3Csvg width='14' height='10' viewBox='0 0 14 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.56369 0L14 5.02381L9.56369 10H7.55732L11.1911 5.90476H0V4.11905H11.1911L7.55732 0H9.56369Z' fill='%23FFFFFF'/%3E%3C/svg%3E");
}
.featured3up__cta a.last-word-wrap:focus {
	outline-color: #FFFFFF;
}
.featured3up__cta a.last-word-wrap::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: transparent;
}
@media (min-width: 700px) {
	.featured3up__cta a.last-word-wrap {
		font-size: 18px;
		font-size: 1.125rem;
	}
}
@media (min-width: 1025px) {
	.featured3up__cta a.last-word-wrap {
		font-size: 24px;
		font-size: 1.5rem;
	}
}
.featured3up.js-active .featured3up__header .decorative-lines:before {
	-webkit-transform: scaleX(1);
	-ms-transform: scaleX(1);
	transform: scaleX(1);
}
.featured3up.js-active .featured3up__header .decorative-lines:after {
	-webkit-transform: scaleX(1);
	-ms-transform: scaleX(1);
	transform: scaleX(1);
}
.featured3up.js-active .circle:after {
	opacity: 1;
}
.featured3up.js-active .featured3up__intro:before {
	-webkit-transform: scaleY(1);
	-ms-transform: scaleY(1);
	transform: scaleY(1);
}
.featured3up.js-active .featured3up__intro:after {
	-webkit-transform: scaleX(1);
	-ms-transform: scaleX(1);
	transform: scaleX(1);
}
.featured3up.js-active .featured3up__intro .decorative-lines:before {
	-webkit-transform: scaleY(1);
	-ms-transform: scaleY(1);
	transform: scaleY(1);
}
.featured3up.js-active .column--three:before {
	-webkit-transform: scaleX(1);
	-ms-transform: scaleX(1);
	transform: scaleX(1);
}
.featured3up.js-active .column--three:after {
	opacity: 1;
}
@media (min-width: 1025px) {
	.featured3up {
		max-width: 1640px;
	}
}

/**
* @file
* Form
*
* Contains styles for forms in main content region.
*/
.main .form {
	margin: 2rem 0;
}
.main .form .description {
	margin: 0 0 2rem;
}
.main .form__item {
	margin-bottom: 2rem;
}
.main .form__item.form--select {
	position: relative;
	display: inline-block;
	min-width: 280px;
}
.main .form__item.form--select:before {
	content: "";
	position: absolute;
	width: 9px;
	height: 9px;
	bottom: 18px;
	right: 15px;
	border-right: 3px solid;
	border-bottom: 3px solid;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
@media (min-width: 1025px) {
	.main .form__item.form--select:before {
		bottom: 20px;
	}
}
.main .form__item input:not([type=submit],
[type=checkbox],
[type=radio],
[type=button],
[type=reset]),
.main .form__item textarea:not([type=submit],
[type=checkbox],
[type=radio],
[type=button],
[type=reset]) {
	color: #000000;
	background: transparent;
	-webkit-appearance: none;
	border-radius: 0.25rem;
	width: 100%;
	padding: 0.5rem 0.75rem;
	border: 1px solid #27003F;
	line-height: 1.52;
}
.main .form__item select {
	width: 100%;
	color: black;
	border: 1px solid #27003F;
	border-radius: 0.25rem;
	padding: 0.5rem 2.625rem 0.5rem 0.75rem;
	background-color: #FFFFFF;
	line-height: 1.52;
}
.main .form__item textarea {
	width: 100%;
	display: block;
	padding: 0.5rem 0.75rem;
	min-height: 6.25rem;
	border-radius: 0.25rem;
	border: 1px solid #27003F;
}
.main .form__item textarea:focus {
	outline: 2px solid #000000;
	outline-offset: 2px;
}
@media (min-width: 700px) {
	.main .form__item input {
		max-width: 17.5rem;
	}
	.main .form__item select {
		max-width: 17.5rem;
	}
	.main .form__item textarea {
		max-width: 31.25rem;
	}
}
@media (min-width: 1025px) {
	.main .form__item textarea {
		min-height: 7.5rem;
		width: 100%;
		max-width: 39.688rem;
	}
}
.main .form__item:not(.form--fieldset) label {
	display: block;
	font-weight: 700;
	margin-bottom: 0.5rem;
}
.main .form fieldset {
	border: none;
	padding: 0;
	margin: 0 0 1.625rem;
}
.main .form fieldset legend {
	margin-bottom: 0.5rem;
	font-weight: 700;
}
.main .form button:focus,
.main .form input:focus,
.main .form a:focus,
.main .form select:focus,
.main .form textarea:focus {
	outline-color: #000000;
}
.main .form input:focus {
	outline: 2px solid #000000;
	outline-offset: 2px;
}
.main .form input.cta--button-submit {
	border: none;
	border-radius: 0.5rem;
	padding: 0.688rem 0.75rem;
}
@media (min-width: 700px) {
	.main .form input.cta--button-submit {
		padding: 1rem 1.5rem;
	}
}
@media (min-width: 1025px) {
	.main .form input.cta--button-submit {
		padding: 1rem 2rem;
		font-size: 32px;
		font-size: 2rem;
		line-height: 2rem;
	}
}
.main .form .form__checkbox label,
.main .form .form__radio label {
	position: relative;
	padding-left: 1.5rem;
}
.main .form .form__checkbox label:before, .main .form .form__checkbox label:after,
.main .form .form__radio label:before,
.main .form .form__radio label:after {
	content: "";
	position: absolute;
}
.main .form .form__checkbox label:before,
.main .form .form__radio label:before {
	top: 0.1rem;
	left: -0.4rem;
	width: 1rem;
	height: 1rem;
	border: 2px solid #003F12;
	border-radius: 0.25rem;
	background-color: #FFFFFF;
}
.main .form .form__checkbox label:after,
.main .form .form__radio label:after {
	top: 0.5rem;
	left: -1px;
	width: 0.5rem;
	height: 0.2rem;
	border-left: 2px solid #FFFFFF;
	border-bottom: 2px solid #FFFFFF;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	opacity: 0;
}
@media (min-width: 1025px) {
	.main .form .form__checkbox label,
	.main .form .form__radio label {
		padding-left: 1.75rem;
	}
	.main .form .form__checkbox label:before,
	.main .form .form__radio label:before {
		top: 0.1rem;
		left: -0.4rem;
		width: 1.25rem;
		height: 1.25rem;
	}
	.main .form .form__checkbox label:after,
	.main .form .form__radio label:after {
		top: 0.5rem;
		left: -1px;
		width: 0.7rem;
		height: 0.35rem;
	}
}
.main .form .form__checkbox label input[aria-invalid=true] + label:before,
.main .form .form__radio label input[aria-invalid=true] + label:before {
	border: 2px solid #DE0F0F;
}
.main .form .form__checkbox input[aria-invalid=true] + label:before,
.main .form .form__radio input[aria-invalid=true] + label:before {
	border: 2px solid #DE0F0F;
}
.main .form .form__checkbox input:checked + label:before,
.main .form .form__radio input:checked + label:before {
	background: #003F12;
}
.main .form .form__checkbox input:checked + label:after,
.main .form .form__radio input:checked + label:after {
	opacity: 1;
}
.main .form .form__checkbox input:focus,
.main .form .form__radio input:focus {
	outline: 0;
}
.main .form .form__checkbox input:focus + label:before,
.main .form .form__radio input:focus + label:before {
	outline: 2px solid;
	outline-offset: 4px;
	-webkit-transition: none;
	-o-transition: none;
	transition: none;
	outline-color: #000000;
}
.main .form .form__checkbox input,
.main .form .form__radio input {
	opacity: 0;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: 0;
}
.main .form .form__checkbox {
	margin: 0.5rem 0 0.5rem 0.1rem;
}
.main .form .form__radio {
	margin: 0.5rem 0 0.4rem 0.1rem;
}
.main .form .form__radio input {
	opacity: 0;
	width: 1px;
	height: 1px;
	padding: 0;
}
.main .form .form__radio label:before, .main .form .form__radio label:after {
	border-radius: 50%;
}
.main .form .form__radio label:after {
	color: #FFFFFF;
	top: 9px;
	left: -0.5px;
	width: 8px;
	height: 8px;
	border: none;
	border-radius: 100%;
	opacity: 0;
	background-color: #FFFFFF;
}
@media (min-width: 1025px) {
	.main .form .form__radio label:after {
		left: 1.5px;
	}
}
.main .form .form__radio input:checked + label:before {
	width: 0;
	height: 0;
	border: 0.65rem solid #003F12;
	background-color: transparent;
}
@media (min-width: 1025px) {
	.main .form .form__radio input:checked + label:before {
		border: 0.75rem solid #003F12;
	}
}
.main .form .form__radio input:checked + label:after {
	opacity: 1;
}
@media (min-width: 1025px) {
	.main .form {
		margin: 2.55rem 0;
	}
}

/**
* @file
* Generic Block: 2 Column
*
* Styles for Generic Block: 2 Column object.
*/
.gen2col a.arrow-icon span.last-word:after {
	right: -3px;
	bottom: 8px;
	width: 18px;
	height: 13px;
	background-image: url("data:image/svg+xml,%3Csvg width='30' height='22' viewBox='0 0 30 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.4936 0L30 11.0524L20.4936 22H16.1943L23.9809 12.9905H0V9.0619H23.9809L16.1943 0H20.4936Z' fill='%23046A38'/%3E%3C/svg%3E");
}
@media (min-width: 700px) {
	.gen2col a.arrow-icon span.last-word:after {
		right: -14px;
		bottom: 9px;
		width: 25px;
		height: 22px;
	}
}
@media (min-width: 1025px) {
	.gen2col a.arrow-icon span.last-word:after {
		right: -22px;
		bottom: 10px;
		width: 30px;
		height: 24px;
	}
}
.gen2col a.arrow-icon:hover span.last-word:after {
	background-image: url("data:image/svg+xml,%3Csvg width='30' height='22' viewBox='0 0 30 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.4936 0L30 11.0524L20.4936 22H16.1943L23.9809 12.9905H0V9.0619H23.9809L16.1943 0H20.4936Z' fill='%23003F12'/%3E%3C/svg%3E");
}
.gen2col .column__col.scroll-animate {
	opacity: 0;
	-webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
	transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
	-o-transition: transform 0.3s ease, opacity 0.3s ease;
	transition: transform 0.3s ease, opacity 0.3s ease;
	transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
	-webkit-transform: translateY(1.875rem);
	-ms-transform: translateY(1.875rem);
	transform: translateY(1.875rem);
}
.gen2col .column__col.scroll-animate.js-active {
	opacity: 1;
	-webkit-transform: translateY(0rem);
	-ms-transform: translateY(0rem);
	transform: translateY(0rem);
}
@media (min-width: 1025px) {
	.gen2col .column__col.scroll-animate .scroll-animate + .scroll-animate {
		-webkit-transition-delay: 0.3s;
		-o-transition-delay: 0.3s;
		transition-delay: 0.3s;
	}
}
.gen2col .column__img {
	margin-bottom: 1.25rem;
}
.gen2col .column__img a:before {
	display: none;
}
.gen2col .column__img img {
	aspect-ratio: 288/163;
	-o-object-fit: cover;
	object-fit: cover;
}
.gen2col .column__title {
	margin-bottom: 0.375rem;
}
.gen2col .column__title h3, .gen2col .column__title .story-carousel__header h2, .story-carousel__header .gen2col .column__title h2 {
	text-transform: capitalize;
	margin: 0;
}
@media (min-width: 700px) {
	.gen2col .column__img {
		margin-bottom: 2rem;
	}
	.gen2col .column__img img {
		aspect-ratio: 290/165;
	}
	.gen2col .column__title {
		margin-bottom: 0.5rem;
	}
	.gen2col .column__subtitle {
		margin-bottom: 0.5rem;
	}
}
@media (min-width: 1025px) {
	.gen2col .column__img img {
		aspect-ratio: 385/227;
	}
	.gen2col .column__title {
		margin-bottom: 0.75rem;
	}
	.gen2col .column__subtitle {
		margin-bottom: 0.75rem;
	}
	.gen2col .scroll-animate.js-active + .scroll-animate.js-active {
		-webkit-transition-delay: 100ms;
		-o-transition-delay: 100ms;
		transition-delay: 100ms;
	}
}

/**
* @file
* Generic Block: 3 Column
*
* Styles for Generic Block: 3 Column object.
*/
.gen3col a.arrow-icon span.last-word:after {
	right: -3px;
	bottom: 8px;
	width: 18px;
	height: 13px;
	background-image: url("data:image/svg+xml,%3Csvg width='30' height='22' viewBox='0 0 30 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.4936 0L30 11.0524L20.4936 22H16.1943L23.9809 12.9905H0V9.0619H23.9809L16.1943 0H20.4936Z' fill='%23046A38'/%3E%3C/svg%3E");
}
@media (min-width: 700px) {
	.gen3col a.arrow-icon span.last-word:after {
		right: -12px;
		bottom: 10px;
		width: 25px;
		height: 18px;
	}
}
@media (min-width: 1025px) {
	.gen3col a.arrow-icon span.last-word:after {
		right: -22px;
		bottom: 10px;
		width: 30px;
		height: 24px;
	}
}
.gen3col a.arrow-icon:hover span.last-word:after {
	background-image: url("data:image/svg+xml,%3Csvg width='30' height='22' viewBox='0 0 30 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.4936 0L30 11.0524L20.4936 22H16.1943L23.9809 12.9905H0V9.0619H23.9809L16.1943 0H20.4936Z' fill='%23003F12'/%3E%3C/svg%3E");
}
.gen3col .column__col.scroll-animate {
	opacity: 0;
	-webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
	transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
	-o-transition: transform 0.3s ease, opacity 0.3s ease;
	transition: transform 0.3s ease, opacity 0.3s ease;
	transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
	-webkit-transform: translateY(1.875rem);
	-ms-transform: translateY(1.875rem);
	transform: translateY(1.875rem);
}
.gen3col .column__col.scroll-animate.js-active {
	opacity: 1;
	-webkit-transform: translateY(0rem);
	-ms-transform: translateY(0rem);
	transform: translateY(0rem);
}
@media (min-width: 1025px) {
	.gen3col .column__col.scroll-animate .scroll-animate + .scroll-animate {
		-webkit-transition-delay: 0.3s;
		-o-transition-delay: 0.3s;
		transition-delay: 0.3s;
	}
}
.gen3col .column__img {
	margin-bottom: 1.25rem;
}
.gen3col .column__img a:before {
	display: none;
}
.gen3col .column__img img {
	aspect-ratio: 288/256;
	-o-object-fit: cover;
	object-fit: cover;
}
.gen3col .column__title {
	margin-bottom: 0.375rem;
}
.gen3col .column__title h3, .gen3col .column__title .story-carousel__header h2, .story-carousel__header .gen3col .column__title h2 {
	text-transform: capitalize;
	margin: 0;
}
@media (min-width: 700px) {
	.gen3col .column__img {
		margin-bottom: 2.5rem;
	}
	.gen3col .column__img img {
		aspect-ratio: 186/186;
	}
	.gen3col .column__title {
		margin-bottom: 0.5rem;
	}
	.gen3col .column__title h3, .gen3col .column__title .story-carousel__header h2, .story-carousel__header .gen3col .column__title h2 {
		font-size: 28px;
		font-size: 1.75rem;
		line-height: 1.3;
	}
	.gen3col .column__subtitle {
		margin-bottom: 0.5rem;
	}
}
@media (min-width: 1025px) {
	.gen3col .column__img {
		margin-bottom: 2.5rem;
	}
	.gen3col .column__img img {
		aspect-ratio: 186/186;
	}
	.gen3col .column__title {
		margin-bottom: 0.75rem;
	}
	.gen3col .column__title h3, .gen3col .column__title .story-carousel__header h2, .story-carousel__header .gen3col .column__title h2 {
		font-size: 38px;
		font-size: 2.375rem;
		line-height: 1;
	}
	.gen3col .column__subtitle {
		margin-bottom: 0.75rem;
	}
	.gen3col .scroll-animate.js-active + .scroll-animate.js-active {
		-webkit-transition-delay: 100ms;
		-o-transition-delay: 100ms;
		transition-delay: 100ms;
	}
	.gen3col .scroll-animate.js-active + .scroll-animate.js-active + .scroll-animate.js-active {
		-webkit-transition-delay: 200ms;
		-o-transition-delay: 200ms;
		transition-delay: 200ms;
	}
}

/**
* @file
* Generic Block: Image list
*
* Styles for Generic Block: Image list object.
*/
.genimglist__item {
	margin: 0 0 1.25rem;
	background-color: #003F12;
	color: #FFFFFF;
	border-radius: 8px;
}
.genimglist__item.scroll-animate {
	opacity: 0;
	-webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
	transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
	-o-transition: transform 0.3s ease, opacity 0.3s ease;
	transition: transform 0.3s ease, opacity 0.3s ease;
	transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
	-webkit-transform: translateY(1.875rem);
	-ms-transform: translateY(1.875rem);
	transform: translateY(1.875rem);
}
.genimglist__item.scroll-animate.js-active {
	opacity: 1;
	-webkit-transform: translateY(0rem);
	-ms-transform: translateY(0rem);
	transform: translateY(0rem);
}
@media (min-width: 1025px) {
	.genimglist__item.scroll-animate .scroll-animate + .scroll-animate {
		-webkit-transition-delay: 0.3s;
		-o-transition-delay: 0.3s;
		transition-delay: 0.3s;
	}
}
@media (min-width: 700px) {
	.genimglist__item {
		display: -webkit-box;
		display: -webkit-flex;
		display: -moz-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-webkit-flex-direction: row;
		-moz-box-orient: horizontal;
		-moz-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
}
@media (min-width: 1025px) {
	.genimglist__item {
		position: relative;
	}
}
.genimglist__img a {
	display: block;
	overflow: hidden;
	height: 100%;
}
.genimglist__img a:focus {
	outline-color: #FFFFFF;
	outline-offset: -4px;
}
.genimglist__img a::before {
	background-color: transparent;
}
.genimglist__img a:hover img {
	-webkit-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}
.genimglist__img img {
	width: 100%;
	border-radius: 8px 8px 0 0;
	aspect-ratio: 280/211;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transition: all 300ms;
	-o-transition: all 300ms;
	transition: all 300ms;
}
@media (min-width: 700px) {
	.genimglist__img {
		-webkit-box-flex: 0;
		-webkit-flex: 0;
		-moz-box-flex: 0;
		-ms-flex: 0;
		flex: 0;
		-webkit-flex-basis: 40.5%;
		-ms-flex-preferred-size: 40.5%;
		flex-basis: 40.5%;
		margin: 0;
	}
	.genimglist__img img {
		border-radius: 8px 0 0 0;
		aspect-ratio: 244/250;
	}
}
@media (min-width: 1025px) {
	.genimglist__img {
		position: absolute;
		top: 0;
		left: 0;
		height: 100%;
		width: 334px;
	}
	.genimglist__img img {
		aspect-ratio: unset;
		height: 100%;
		border-radius: 8px 0 0 8px;
		width: 334px;
	}
}
.genimglist__content {
	padding: 1.25rem 1.25rem 0;
}
@media (min-width: 700px) {
	.genimglist__content {
		-webkit-box-flex: 0;
		-webkit-flex: 0;
		-moz-box-flex: 0;
		-ms-flex: 0;
		flex: 0;
		-webkit-flex-basis: 59.5%;
		-ms-flex-preferred-size: 59.5%;
		flex-basis: 59.5%;
		padding: 32px 32px 0;
	}
}
@media (min-width: 1025px) {
	.genimglist__content {
		padding: 32px 82px 0 367px;
		-webkit-box-flex: unset;
		-webkit-flex: unset;
		-moz-box-flex: unset;
		-ms-flex: unset;
		flex: unset;
	}
}
.genimglist__title {
	margin: 0 0 1rem;
	text-transform: capitalize;
}
.genimglist__title h3, .genimglist__title .story-carousel__header h2, .story-carousel__header .genimglist__title h2 {
	margin: 0;
}
.genimglist__title a {
	position: relative;
	color: #A4FFBF;
}
.genimglist__title a:hover {
	color: #FFFFFF;
}
.genimglist__title a:focus {
	outline-color: #FFFFFF;
}
@media (min-width: 1025px) {
	.genimglist__title a h4, .genimglist__title a h3, .genimglist__title a .story-carousel__header h2, .story-carousel__header .genimglist__title a h2 {
		font-size: 38px;
		font-size: 2.375rem;
		line-height: 38px;
		color: white;
	}
}
.genimglist__subtitle {
	margin: 0 0 1rem;
	font-weight: 700;
}
@media (min-width: 1025px) {
	.genimglist__subtitle {
		font-size: 18px;
		font-size: 1.125rem;
		line-height: 1.6;
		margin-bottom: 24px;
	}
}
.genimglist__body {
	font-weight: 400;
	line-height: 1.52;
	padding: 0 20px 20px;
}
.genimglist__body a {
	color: #A4FFBF;
	white-space: nowrap;
}
.genimglist__body a:hover {
	color: #FFFFFF;
}
.genimglist__body a:hover::before {
	background-color: #FFFFFF;
}
.genimglist__body a:focus {
	outline-color: #FFFFFF;
}
.genimglist__body a:before {
	background-color: #A4FFBF;
}
.genimglist__body a:hover:after {
	background-color: #A4FFBF;
}
@media (min-width: 700px) {
	.genimglist__body {
		font-weight: 500;
		line-height: 1.6;
		padding: 2rem;
		border-top: 1px solid #BEBBBB;
	}
}
@media (min-width: 1025px) {
	.genimglist__body {
		border-top: none;
		padding: 0 32px 32px 367px;
	}
}

.goal-selector {
	position: relative;
	color: #FFFFFF;
	padding: 48px 0;
}
@media (min-width: 1025px) {
	.goal-selector__section {
		display: -ms-grid;
		display: grid;
		-ms-grid-columns: 1fr 20px 1fr;
		grid-template-columns: 1fr 1fr;
		gap: 20px;
		max-width: 1640px;
		margin: 0 auto;
	}
}
.goal-selector button {
	background-color: transparent;
	border: none;
	color: #FFFFFF;
	padding: 0;
}
.goal-selector .toggle-subfilters {
	width: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	border-radius: 8px;
	border: 1px solid white;
	overflow: hidden;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 100%;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.goal-selector .toggle-subfilters.active {
	border-radius: 8px 8px 0 0;
	background-color: #CBE2FF;
}
.goal-selector .toggle-subfilters.active + div.form__item {
	border-radius: 0 0 8px 8px;
}
@media (min-width: 1025px) {
	.goal-selector .toggle-subfilters.active + div.form__item {
		border-radius: 8px;
	}
}
.goal-selector .toggle-subfilters.active span.icon-wrapper {
	background-color: #CBE2FF;
}
.goal-selector .toggle-subfilters.active .btn-title {
	color: #000000;
}
.goal-selector .toggle-subfilters.active .close-icon:after {
	rotate: 135deg;
	background-image: url("data:image/svg+xml,%3Csvg width='17' height='17' viewBox='0 0 17 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6.94664 6.95452L6.94664 0L10.0533 0.0133004V6.94122L17 6.95452C17.0001 6.96801 17 10.0587 17 10.0455L10.0533 10.0588L10.0533 16.9867L6.94664 17L6.94664 10.0455L0 10.0588C9.23531e-05 10.0722 0 6.95452 0 6.94122L6.94664 6.95452Z' fill='%23000000'/%3E%3C/svg%3E");
}
@media (min-width: 1025px) {
	.goal-selector .toggle-subfilters[aria-selected=true] {
		background-color: #CBE2FF;
		color: #000000;
	}
	.goal-selector .toggle-subfilters[aria-selected=true] .close-icon:after {
		rotate: 67deg;
		opacity: 0;
	}
}
.goal-selector span.icon-wrapper {
	width: 75px;
	height: 100%;
	background-color: #FFFFFF;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 12px 20px;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.goal-selector span.icon-wrapper img {
	min-width: 35px;
}
@media (min-width: 1025px) {
	.goal-selector span.icon-wrapper {
		padding: 20px 30px 22px;
		width: 115px;
	}
	.goal-selector span.icon-wrapper img {
		min-width: 54px;
	}
}
.goal-selector span.btn-title {
	padding: 0 16px;
	text-align: left;
	font-family: acumin-pro-condensed, sans-serif;
	font-weight: 800;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.3;
}
@media (min-width: 1025px) {
	.goal-selector span.btn-title {
		font-size: 20px;
		font-size: 1.25rem;
		line-height: 1.25;
		padding: 0 24px;
	}
}
.goal-selector span.close-icon {
	width: 17px;
	height: 17px;
	margin: 0 20px 0 auto;
	position: relative;
}
.goal-selector span.close-icon:after {
	content: "";
	position: absolute;
	width: 17px;
	height: 17px;
	background-image: url("data:image/svg+xml,%3Csvg width='17' height='17' viewBox='0 0 17 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6.94664 6.95452L6.94664 0L10.0533 0.0133004V6.94122L17 6.95452C17.0001 6.96801 17 10.0587 17 10.0455L10.0533 10.0588L10.0533 16.9867L6.94664 17L6.94664 10.0455L0 10.0588C9.23531e-05 10.0722 0 6.95452 0 6.94122L6.94664 6.95452Z' fill='white'/%3E%3C/svg%3E");
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
@media (min-width: 1025px) {
	.goal-selector span.close-icon {
		margin-left: 0;
	}
}
.goal-selector:before {
	content: "";
	position: absolute;
	width: 100vw;
	height: 100%;
	top: 0;
	left: -16px;
	background-image: url("/_resources/images/mcw-sm.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: #27003F;
	z-index: -1;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
@media (min-width: 700px) {
	.goal-selector:before {
		left: -50px;
		background-image: url("/_resources/images/mcw-md.jpg");
	}
}
@media (min-width: 1025px) {
	.goal-selector:before {
		left: -80px;
		background-image: url("/_resources/images/mcw-lg.jpg");
	}
}
.goal-selector__header h2 {
	margin: 0 0 6px;
	text-align: center;
}
.goal-selector__header span {
	display: block;
	font-family: adobe-handwriting-ernie, sans-serif;
	text-align: center;
	font-weight: 400;
	font-size: 18px;
	font-size: 1.125rem;
	line-height: 0.9;
}
@media (min-width: 700px) {
	.goal-selector__header span {
		font-size: 28px;
		font-size: 1.75rem;
	}
}
@media (min-width: 1025px) {
	.goal-selector__header span {
		font-size: 36px;
		font-size: 2.25rem;
	}
}
.goal-selector__toggle {
	border: 2px solid #CBE2FF;
	border-radius: 8px;
	margin: 40px auto;
	padding: 20px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-moz-box-orient: horizontal;
	-moz-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-moz-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	max-width: 484px;
}
.goal-selector__toggle button {
	font-size: 14px;
	font-size: 0.875rem;
	font-family: acumin-pro-condensed, sans-serif;
	font-weight: 800;
	line-height: 1;
}
.goal-selector__toggle button[aria-current=false] {
	opacity: 0.5;
}
@media (min-width: 700px) {
	.goal-selector__toggle button {
		font-size: 20px;
		font-size: 1.25rem;
	}
}
@media (min-width: 1025px) {
	.goal-selector__toggle button {
		font-size: 24px;
		font-size: 1.5rem;
		line-height: 1.3;
	}
}
@media (min-width: 1025px) {
	.goal-selector__toggle {
		margin: 60px auto;
	}
}
.goal-selector__toggle .toggle-slider {
	width: 100px;
	height: 4px;
	background-color: #CBE2FF;
	position: relative;
	border-radius: 8px;
	margin-top: 5px;
	cursor: pointer;
}
@media (min-width: 700px) {
	.goal-selector__toggle .toggle-slider {
		height: 6px;
	}
}
.goal-selector__toggle .toggle-slider:before {
	content: "";
	position: absolute;
	left: -2px;
	bottom: calc(50% - 7px);
	width: 10px;
	height: 10px;
	border: 2px solid #CBE2FF;
	border-radius: 50%;
	background-color: #27003F;
	z-index: 1;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
@media (min-width: 700px) {
	.goal-selector__toggle .toggle-slider:before {
		width: 15px;
		height: 15px;
		bottom: calc(50% - 10px);
	}
}
@media (min-width: 1025px) {
	.goal-selector__toggle .toggle-slider:before {
		width: 18px;
		height: 18px;
		border: 3px solid #CBE2FF;
		bottom: calc(50% - 12px);
	}
}
@media (min-width: 700px) {
	.goal-selector__toggle .toggle-slider {
		margin-top: 8px;
	}
}
@media (min-width: 1025px) {
	.goal-selector__toggle .toggle-slider {
		margin-top: 14px;
	}
}
.goal-selector__toggle button#goals-btn[aria-current=false] + .toggle-slider:before {
	margin-left: calc(100% - 8px);
}
@media (min-width: 700px) {
	.goal-selector__toggle button#goals-btn[aria-current=false] + .toggle-slider:before {
		margin-left: calc(100% - 14spx);
	}
}
.goal-selector__tabs {
	margin: 40px 0;
	display: none;
}
@media (min-width: 1025px) {
	.goal-selector__tabs {
		display: block;
		-webkit-box-flex: 1;
		-webkit-flex: 1;
		-moz-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
		margin: 0;
	}
}
@media (min-width: 1025px) {
	.goal-selector__tabs__list {
		display: -webkit-box;
		display: -webkit-flex;
		display: -moz-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-moz-box-orient: vertical;
		-moz-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 8px;
	}
}
.goal-selector .form__item {
	display: none;
	background-color: #FFFFFF;
	color: #000000;
	margin: 0;
	border-radius: 0 0 8px 8px;
	padding: 16px 21px 24px;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.52;
}
.goal-selector .form__item h3, .goal-selector .form__item .story-carousel__header h2, .story-carousel__header .goal-selector .form__item h2 {
	display: none;
}
@media (min-width: 1025px) {
	.goal-selector .form__item h3, .goal-selector .form__item .story-carousel__header h2, .story-carousel__header .goal-selector .form__item h2 {
		display: block;
		margin: 0 0 24px;
		padding: 64px 40px 0;
	}
	.goal-selector .form__item p {
		padding: 0 40px;
	}
}
.goal-selector__panels {
	margin: 40px 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 8px;
}
@media (min-width: 1025px) {
	.goal-selector__panels {
		position: relative;
		-webkit-box-flex: 1;
		-webkit-flex: 1;
		-moz-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
		margin: 0;
		gap: 0;
		height: 100%;
	}
	.goal-selector__panels .toggle-subfilters {
		display: none;
	}
	.goal-selector__panels .form__item {
		position: absolute;
		width: 100%;
		height: 100%;
		border-radius: 8px;
		display: -webkit-box;
		display: -webkit-flex;
		display: -moz-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-moz-box-orient: vertical;
		-moz-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		padding: 0;
		overflow: hidden;
	}
	.goal-selector__panels .form__item__wrapper {
		display: -webkit-box;
		display: -webkit-flex;
		display: -moz-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-moz-box-orient: vertical;
		-moz-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		height: 100%;
	}
	.goal-selector__panels .goal-selector__panel__wrapper .form__item {
		display: none;
	}
	.goal-selector__panels .goal-selector__panel__wrapper:first-of-type .form__item {
		display: -webkit-box;
		display: -webkit-flex;
		display: -moz-box;
		display: -ms-flexbox;
		display: flex;
	}
}
.goal-selector .goal-cta.cta {
	position: relative;
	display: inline-block;
	font-weight: 600;
	font-family: "acumin-pro", sans-serif;
	color: #FFFFFF;
	border: 1px solid #27003F;
	background-color: #27003F;
	border-radius: 8px;
	padding: 8px 40px 11px 16px;
	font-size: 14px;
	font-size: 0.875rem;
	line-height: 18px;
}
.goal-selector .goal-cta.cta:after {
	content: "";
	display: inline-block;
	vertical-align: middle;
	position: absolute;
	bottom: 13px;
	right: 13px;
	margin: 0 0 0 3px;
	background-image: url("data:image/svg+xml,%3Csvg width='22' height='14' viewBox='0 0 22 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.0287 0L22 7.03333L15.0287 14H11.8758L17.586 8.26667H0V5.76667H17.586L11.8758 0H15.0287Z' fill='%23FFFFFF'/%3E%3C/svg%3E");
	background-size: cover;
}
.goal-selector .goal-cta.cta:hover {
	color: #27003F;
	background-color: #CBE2FF;
	border-color: #CBE2FF;
}
.goal-selector .goal-cta.cta:hover:after {
	background-image: url("data:image/svg+xml,%3Csvg width='22' height='14' viewBox='0 0 22 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.0287 0L22 7.03333L15.0287 14H11.8758L17.586 8.26667H0V5.76667H17.586L11.8758 0H15.0287Z' fill='%2327003F'/%3E%3C/svg%3E");
}
.goal-selector .goal-cta.cta:after {
	bottom: 14px;
	width: 17px;
	height: 11px;
}
@media (min-width: 700px) {
	.goal-selector .goal-cta.cta {
		padding: 9px 50px 11px 16px;
		font-size: 18px;
		font-size: 1.125rem;
		line-height: 23px;
	}
	.goal-selector .goal-cta.cta:after {
		width: 19px;
		height: 12px;
	}
}
@media (min-width: 1025px) {
	.goal-selector .goal-cta.cta {
		padding: 9px 45px 11px 16px;
		font-size: 24px;
		font-size: 1.5rem;
		line-height: 24px;
	}
	.goal-selector .goal-cta.cta:after {
		width: 22px;
		height: 14px;
	}
}
@media (min-width: 1025px) {
	.goal-selector .goal-cta.cta {
		position: relative;
		display: inline-block;
		font-weight: 600;
		font-family: "acumin-pro", sans-serif;
		color: #27003F;
		border: 1px solid #27003F;
		background-color: #CBE2FF;
		border-radius: 8px;
		padding: 8px 40px 11px 16px;
		font-size: 14px;
		font-size: 0.875rem;
		line-height: 18px;
		margin-left: 85px;
	}
	.goal-selector .goal-cta.cta:after {
		content: "";
		display: inline-block;
		vertical-align: middle;
		position: absolute;
		bottom: 13px;
		right: 13px;
		margin: 0 0 0 3px;
		background-image: url("data:image/svg+xml,%3Csvg width='22' height='14' viewBox='0 0 22 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.0287 0L22 7.03333L15.0287 14H11.8758L17.586 8.26667H0V5.76667H17.586L11.8758 0H15.0287Z' fill='%2327003F'/%3E%3C/svg%3E");
		background-size: cover;
	}
	.goal-selector .goal-cta.cta:hover {
		color: #FFFFFF;
		background-color: #27003F;
		border-color: #27003F;
	}
	.goal-selector .goal-cta.cta:hover:after {
		background-image: url("data:image/svg+xml,%3Csvg width='22' height='14' viewBox='0 0 22 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.0287 0L22 7.03333L15.0287 14H11.8758L17.586 8.26667H0V5.76667H17.586L11.8758 0H15.0287Z' fill='%23FFFFFF'/%3E%3C/svg%3E");
	}
	.goal-selector .goal-cta.cta:after {
		bottom: 14px;
		width: 17px;
		height: 11px;
	}
}
@media (min-width: 1025px) and (min-width: 700px) {
	.goal-selector .goal-cta.cta {
		padding: 9px 50px 11px 16px;
		font-size: 18px;
		font-size: 1.125rem;
		line-height: 23px;
	}
	.goal-selector .goal-cta.cta:after {
		width: 19px;
		height: 12px;
	}
}
@media (min-width: 1025px) and (min-width: 1025px) {
	.goal-selector .goal-cta.cta {
		padding: 9px 45px 11px 16px;
		font-size: 24px;
		font-size: 1.5rem;
		line-height: 24px;
	}
	.goal-selector .goal-cta.cta:after {
		width: 22px;
		height: 14px;
	}
}
.goal-selector .cta-wrapper > img {
	display: none;
}
@media (min-width: 1025px) {
	.goal-selector .cta-wrapper {
		margin-top: auto;
		background-color: #CBE2FF;
		position: relative;
		display: -webkit-box;
		display: -webkit-flex;
		display: -moz-box;
		display: -ms-flexbox;
		display: flex;
		padding: 40px 40px;
	}
	.goal-selector .cta-wrapper > img {
		display: block;
		position: absolute;
		left: 40px;
		width: 54px;
		top: calc(50% - 32px);
	}
}
.goal-selector .interest-section__wrapper {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 10px 1fr;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}
@media (min-width: 700px) {
	.goal-selector .interest-section__wrapper {
		-ms-grid-columns: 1fr 20px 1fr 20px 1fr;
		grid-template-columns: 1fr 1fr 1fr;
		gap: 20px;
	}
}
@media (min-width: 1025px) {
	.goal-selector .interest-section__wrapper {
		-ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
		grid-template-columns: 1fr 1fr 1fr 1fr;
		gap: 20px;
	}
}
.goal-selector .interest-section .img-wrapper {
	aspect-ratio: 200/150;
	position: relative;
	overflow: hidden;
}
.goal-selector .interest-section .img-wrapper img {
	aspect-ratio: 200/150;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	width: 100%;
}
.goal-selector .interest-section span.content {
	padding: 14px;
	color: #000000;
	font-size: 14px;
	font-size: 0.875rem;
	line-height: 1.2;
	border-top: 3px solid #27003F;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
@media (min-width: 700px) {
	.goal-selector .interest-section span.content {
		border-top: 3px solid #27003F;
		font-size: 18px;
		font-size: 1.125rem;
		padding: 18px;
	}
}
@media (min-width: 700px) {
	.goal-selector .interest-section span.content {
		font-size: 22px;
		font-size: 1.375rem;
		padding: 20px;
	}
}
.goal-selector .interest-section__item {
	border-radius: 8px;
	overflow: hidden;
	position: relative;
}
.goal-selector .interest-section a {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	background-color: #CBE2FF;
	position: static;
	z-index: 10;
}
.goal-selector .interest-section a:focus {
	outline-offset: -6px;
}
.goal-selector .interest-section a img {
	position: relative;
	z-index: -1;
}
.goal-selector .interest-section a:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: transparent;
}
.goal-selector .interest-section a:hover {
	background-color: #A4FFBF;
}
.goal-selector .interest-section a:hover .img-wrapper img {
	scale: 1.05;
}
@media (min-width: 1025px) {
	.goal-selector .interest-section {
		max-width: 1640px;
		margin-left: auto;
		margin-right: auto;
	}
}

/**
* @file
* Hero
*
* Contains styles for hero object.
*/
.hero {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	-moz-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	position: relative;
	width: calc(100vw - var(--scrollbar-width));
	background-size: cover;
	z-index: 0;
	background-color: #003F12;
}
.hero.no-image {
	position: unset;
}
.hero.no-image h1 {
	padding: 22px 16px 30px;
}
@media (min-width: 700px) {
	.hero.no-image h1 {
		padding: 22px 50px 34px;
	}
}
@media (min-width: 1025px) {
	.hero.no-image h1 {
		padding: 230px 80px 50px;
	}
}
.hero.no-image img.no-bg-image {
	position: absolute;
	left: 0;
	top: 0;
	margin-top: -65px;
	width: 100%;
	height: calc(100% + 65px);
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: top;
	object-position: top;
	z-index: 0;
}
@media (min-width: 700px) {
	.hero.no-image img.no-bg-image {
		margin-top: -86px;
		height: calc(100% + 86px);
	}
}
@media (min-width: 1025px) {
	.hero.no-image img.no-bg-image {
		margin-top: 0;
		height: 100%;
		margin-left: auto;
		width: 100vw;
		left: 50%;
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		transform: translateX(-50%);
		max-width: 100vw;
	}
}
@media (min-width: 700px) {
	.hero.no-image {
		min-height: unset;
	}
}
@media (min-width: 1025px) {
	.hero.no-image {
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
		min-height: 360px;
	}
}
.hero.has-image {
	position: relative;
	min-height: 303px;
	padding-top: 210px;
	-webkit-transition: padding-top 300ms 400ms;
	-o-transition: padding-top 300ms 400ms;
	transition: padding-top 300ms 400ms;
}
@media (min-width: 700px) {
	.hero.has-image {
		padding-top: 100px;
		min-height: 220px;
	}
}
@media (min-width: 1025px) {
	.hero.has-image {
		padding-top: 350px;
	}
}
.hero.has-image.expanded .section-nav {
	position: relative;
	-webkit-transition: top 300ms 300ms;
	-o-transition: top 300ms 300ms;
	transition: top 300ms 300ms;
	top: -210px;
}
@media (min-width: 700px) {
	.hero.has-image.expanded .section-nav {
		top: -100px;
	}
}
.hero.has-image.expanded .section-nav .section-nav__list {
	margin-bottom: -200px;
}
@media (min-width: 700px) {
	.hero.has-image.expanded .section-nav .section-nav__list {
		margin-bottom: -80px;
	}
}
.hero.has-image.expanded .section-nav + picture img, .hero.has-image.expanded .section-nav + picture:before, .hero.has-image.expanded .section-nav + picture:after {
	opacity: 0;
	-webkit-transition: all 300ms;
	-o-transition: all 300ms;
	transition: all 300ms;
}
.hero.has-image.expanded .section-nav .section-nav__toggle {
	padding: 1.125rem 1rem;
	background: #003F12;
	border-color: #FFFFFF;
	-webkit-transition: all 300ms 300ms, outline 0ms;
	-o-transition: all 300ms 300ms, outline 0ms;
	transition: all 300ms 300ms, outline 0ms;
}
@media (min-width: 700px) {
	.hero.has-image.expanded .section-nav .section-nav__toggle {
		padding: 1.125rem 50px;
	}
}
.hero.has-image picture {
	width: 100%;
	top: -65px;
	bottom: 0;
	position: absolute;
	max-width: calc(100vw - var(--scrollbar-width));
	background-image: url("/_resources/images/banner-image.jpg");
}
.hero.has-image picture:before {
	content: "";
	position: absolute;
	height: 65px;
	width: 100%;
	top: 0;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(27.69%, rgba(0, 0, 0, 0.65)), color-stop(75.6%, rgba(0, 0, 0, 0)));
	background: -o-linear-gradient(top, rgba(0, 0, 0, 0.65) 27.69%, rgba(0, 0, 0, 0) 75.6%);
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.65) 27.69%, rgba(0, 0, 0, 0) 75.6%);
	mix-blend-mode: multiply;
	z-index: 1;
	-webkit-transition: all 300ms 900ms;
	-o-transition: all 300ms 900ms;
	transition: all 300ms 900ms;
}
.hero.has-image picture:after {
	content: "";
	position: absolute;
	height: 271px;
	width: 100%;
	min-height: 100%;
	bottom: 0;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(46.56%, rgba(0, 0, 0, 0)), color-stop(86.44%, rgba(0, 0, 0, 0.65)));
	background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 46.56%, rgba(0, 0, 0, 0.65) 86.44%);
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 46.56%, rgba(0, 0, 0, 0.65) 86.44%);
	mix-blend-mode: multiply;
	-webkit-transition: all 300ms 900ms;
	-o-transition: all 300ms 900ms;
	transition: all 300ms 900ms;
}
.hero.has-image picture img {
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transition: opacity 300ms 900ms;
	-o-transition: opacity 300ms 900ms;
	transition: opacity 300ms 900ms;
}
@media (min-width: 700px) {
	.hero.has-image picture {
		top: -86px;
	}
}
@media (min-width: 1025px) {
	.hero.has-image picture {
		min-height: 500px;
	}
	.hero.has-image picture:before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100vw;
		height: 300px;
		background: -o-linear-gradient(270.24deg, rgba(0, 0, 0, 0.7) 0.21%, rgba(0, 0, 0, 0) 99.79%);
		background: linear-gradient(179.76deg, rgba(0, 0, 0, 0.7) 0.21%, rgba(0, 0, 0, 0) 99.79%);
	}
}
.hero.has-image .section-nav {
	position: relative;
	top: 0;
	-webkit-transition: all 300ms 400ms;
	-o-transition: all 300ms 400ms;
	transition: all 300ms 400ms;
}
@media (min-width: 700px) {
	.hero.has-image .section-nav {
		top: 15px;
	}
}
.hero.has-image .section-nav .section-nav__toggle {
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.3;
	margin: 0;
	text-transform: uppercase;
	border-color: transparent;
	background-color: transparent;
	-webkit-transition: all 300ms 600ms, outline 0ms;
	-o-transition: all 300ms 600ms, outline 0ms;
	transition: all 300ms 600ms, outline 0ms;
}
@media (forced-colors: active) and (prefers-color-scheme: light) {
	.hero.has-image .section-nav .section-nav__toggle {
		background-color: #FFFFFF !important;
	}
}
@media (min-width: 700px) {
	.hero.has-image .section-nav .section-nav__toggle {
		font-size: 20px;
		font-size: 1.25rem;
	}
}
.hero__inner {
	position: relative;
}
.hero__inner:before {
	content: "";
	position: absolute;
	background-image: url("/_resources/images/banner-image.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	width: 100vw;
	height: calc(100% + 65px + 16px);
	top: -81px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: -1;
}
@media (min-width: 700px) {
	.hero__inner:before {
		height: calc(100% + 86px + 16px);
		top: -102px;
	}
}
.hero__inner h1 {
	padding: 0.5rem 0 1.5rem;
	color: #FFFFFF;
	margin: 0;
}
@media (min-width: 1025px) {
	.hero__inner {
		padding: 240px 0 32px;
	}
	.hero__inner h1 {
		padding: 0;
	}
}
.hero h1, .hero h2 {
	position: relative;
	z-index: 1;
	color: #FFFFFF;
	-webkit-align-self: baseline;
	-ms-flex-item-align: baseline;
	align-self: baseline;
}
.hero h1 {
	padding: 0 16px 24px;
	margin: 0;
}
.hero h2 {
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.3;
	margin: 0;
	padding: 0 16px 22px;
	text-transform: uppercase;
}
@media (min-width: 700px) {
	.hero {
		min-height: 300px;
	}
	.hero.has-image {
		margin-bottom: 32px;
	}
	.hero h1 {
		padding: 0 50px 30px;
	}
	.hero h2 {
		font-size: 20px;
		font-size: 1.25rem;
		line-height: 1;
		padding: 0 50px 20px;
	}
}
@media (min-width: 1025px) {
	.hero {
		min-height: 360px;
		margin-bottom: 50px;
		width: calc(100vw - var(--scrollbar-width));
		position: relative;
		left: 50%;
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		transform: translateX(-50%);
	}
	.hero.has-image {
		min-height: 500px;
		margin-bottom: 50px;
	}
	.hero.has-image h1 {
		padding: 0 80px 44px;
		margin: 0 auto;
	}
	.hero h1, .hero h2 {
		max-width: 1800px;
		width: 100%;
		text-align: left;
	}
	.hero h1 {
		padding: 0 80px 30px;
	}
	.hero h2 {
		padding: 0 80px 44px;
	}
}

/**
* @file
* Instagram
*
* Contains styles for instagram object.
*/
.instagram {
	position: relative;
	background-color: #27003F;
	padding: 32px 0;
}
.instagram .scroll-animate .instagram__tile {
	opacity: 0;
	-webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
	transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
	-o-transition: transform 0.3s ease, opacity 0.3s ease;
	transition: transform 0.3s ease, opacity 0.3s ease;
	transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
	-webkit-transform: translateY(1.875rem);
	-ms-transform: translateY(1.875rem);
	transform: translateY(1.875rem);
}
.instagram .scroll-animate.js-active > .instagram__tile.has-loaded {
	opacity: 1;
	-webkit-transform: translateY(0rem);
	-ms-transform: translateY(0rem);
	transform: translateY(0rem);
}
.instagram .scroll-animate.js-active .instagram__tile.has-loaded + .instagram__tile.has-loaded {
	-webkit-transition-delay: 100ms;
	-o-transition-delay: 100ms;
	transition-delay: 100ms;
}
.instagram .scroll-animate.js-active .instagram__tile.has-loaded + .instagram__tile.has-loaded + .instagram__tile.has-loaded {
	-webkit-transition-delay: 200ms;
	-o-transition-delay: 200ms;
	transition-delay: 200ms;
}
@media (min-width: 300px) and (max-width: 1024px) {
	.instagram {
		width: calc(100vw - var(--scrollbar-width));
		position: relative;
		left: 50%;
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		transform: translateX(-50%);
	}
}
@media (min-width: 1025px) {
	.instagram {
		background-color: unset;
	}
	.instagram:before {
		content: "";
		position: absolute;
		top: 0;
		bottom: 0;
		width: 100vw;
		height: 100%;
		left: 50%;
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		transform: translateX(-50%);
		display: block;
		background-color: #27003F;
		margin-left: -18.55%;
		z-index: -2;
	}
}
@media (min-width: 1201px) {
	.instagram:before {
		margin-left: -145px;
	}
}
.instagram__account {
	padding: 0 20px;
}
@media (min-width: 700px) {
	.instagram__account {
		padding: 0 50px;
	}
}
@media (min-width: 1025px) {
	.instagram__account {
		padding: 0;
	}
}
.instagram__feed {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-moz-box-orient: horizontal;
	-moz-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	padding: 0 20px;
	gap: 8px;
}
@media (min-width: 700px) {
	.instagram__feed {
		padding: 0 50px;
	}
}
@media (min-width: 1025px) {
	.instagram__feed {
		padding: 0;
	}
}
.instagram__post-holder span {
	display: none;
}
.instagram__post-holder .instagram__link {
	position: absolute;
	aspect-ratio: 88/88;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	overflow: hidden;
	background-position: center;
	background-size: cover;
	border-radius: 8px;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.instagram__post-holder .instagram__link:before {
	display: none;
}
.instagram__post-holder .instagram__link:focus {
	outline-color: #FFFFFF;
	outline-offset: -5px;
}
.instagram__post-holder .instagram__link:hover {
	-webkit-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
	background-size: cover;
}
.instagram__tile {
	border: 1px solid #FFFFFF;
	border-radius: 8px;
	position: relative;
	aspect-ratio: 1/1;
	width: 100%;
	height: 100%;
	margin-bottom: 0;
	overflow: hidden;
}
.instagram h2 {
	font-size: 42px;
	font-size: 2.625rem;
	line-height: 1;
	text-transform: capitalize;
	margin: 0 0 32px;
	color: #FFFFFF;
}
@media (min-width: 1025px) {
	.instagram h2 {
		font-size: 54px;
		font-size: 3.375rem;
	}
}
.instagram .cta--instagram {
	display: block;
	color: #FFFFFF;
	border-radius: 0.5rem;
	background-color: #003F12;
	font-weight: 800;
	max-width: -webkit-fit-content;
	max-width: -moz-fit-content;
	max-width: fit-content;
	-webkit-transition: 300ms all ease;
	-o-transition: 300ms all ease;
	transition: 300ms all ease;
	font-family: acumin-pro-condensed, sans-serif;
	font-size: 1rem;
	line-height: 1.3;
	padding: 11px 18px;
	background-color: #CBE2FF;
	color: #27003F;
	padding: 14px 15px 14px 50px;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	margin-bottom: 32px;
	border-radius: 8px;
	position: relative;
	font-size: 18px;
	font-size: 1.125rem;
	line-height: 1.3;
	text-transform: capitalize;
	font-family: "acumin-pro", sans-serif;
}
.instagram .cta--instagram:hover {
	background-color: #A4FFBF;
	color: #003F12;
}
.instagram .cta--instagram:focus {
	outline: 2px solid #FFFFFF;
	outline-offset: 2px;
}
@media (min-width: 700px) {
	.instagram .cta--instagram {
		font-size: 1.111rem;
		line-height: 1;
		padding: 16px 24px;
	}
}
@media (min-width: 1025px) {
	.instagram .cta--instagram {
		font-size: 2rem;
		line-height: 1;
		padding: 24px 48px;
	}
}
.instagram .cta--instagram:after {
	content: "";
	position: absolute;
	background-image: url("data:image/svg+xml,%3Csvg width='21' height='22' viewBox='0 0 21 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.5062 2.33064C13.3133 2.33064 13.6457 2.34295 14.7497 2.39218C15.7757 2.4373 16.3297 2.6096 16.699 2.75319C17.1874 2.9419 17.5404 3.17163 17.9056 3.53674C18.275 3.90595 18.5007 4.25465 18.6895 4.74283C18.8331 5.11205 19.0055 5.66997 19.0506 6.69146C19.0999 7.79909 19.1122 8.13139 19.1122 10.9333C19.1122 13.7393 19.0999 14.0716 19.0506 15.1751C19.0055 16.2007 18.8331 16.7546 18.6895 17.1238C18.5007 17.6119 18.2709 17.9648 17.9056 18.3299C17.5363 18.6991 17.1874 18.9247 16.699 19.1134C16.3297 19.257 15.7715 19.4293 14.7497 19.4744C13.6416 19.5236 13.3092 19.536 10.5062 19.536C7.69904 19.536 7.36662 19.5236 6.26265 19.4744C5.23666 19.4293 4.68263 19.257 4.31327 19.1134C3.8249 18.9247 3.47196 18.695 3.1067 18.3299C2.73735 17.9606 2.51163 17.6119 2.32285 17.1238C2.17921 16.7546 2.00684 16.1966 1.9617 15.1751C1.91245 14.0675 1.90014 13.7352 1.90014 10.9333C1.90014 8.12728 1.91245 7.79499 1.9617 6.69146C2.00684 5.66586 2.17921 5.11205 2.32285 4.74283C2.51163 4.25465 2.74145 3.90185 3.1067 3.53674C3.47606 3.16753 3.8249 2.9419 4.31327 2.75319C4.68263 2.6096 5.24077 2.4373 6.26265 2.39218C7.36662 2.34295 7.69904 2.33064 10.5062 2.33064ZM10.5062 0.439453C7.6539 0.439453 7.29685 0.45176 6.17647 0.500989C5.06019 0.550217 4.29275 0.730721 3.62791 0.98917C2.93434 1.25993 2.34747 1.61683 1.76471 2.20347C1.17784 2.78601 0.820793 3.37264 0.549932 4.06184C0.291382 4.73053 0.110807 5.49357 0.0615595 6.60941C0.0123119 7.73346 0 8.09036 0 10.9415C0 13.7926 0.0123119 14.1496 0.0615595 15.2695C0.110807 16.3853 0.291382 17.1525 0.549932 17.8171C0.820793 18.5104 1.17784 19.097 1.76471 19.6795C2.34747 20.2621 2.93434 20.6231 3.6238 20.8897C4.29275 21.1482 5.05609 21.3287 6.17237 21.3779C7.29275 21.4271 7.64979 21.4395 10.5021 21.4395C13.3543 21.4395 13.7114 21.4271 14.8317 21.3779C15.948 21.3287 16.7155 21.1482 17.3803 20.8897C18.0698 20.6231 18.6566 20.2621 19.2394 19.6795C19.8222 19.097 20.1833 18.5104 20.4501 17.8212C20.7086 17.1525 20.8892 16.3894 20.9384 15.2736C20.9877 14.1537 21 13.7968 21 10.9456C21 8.09446 20.9877 7.73756 20.9384 6.61761C20.8892 5.50177 20.7086 4.73463 20.4501 4.07004C20.1915 3.37264 19.8345 2.78601 19.2476 2.20347C18.6648 1.62093 18.078 1.25993 17.3885 0.993272C16.7196 0.734823 15.9562 0.554319 14.8399 0.505091C13.7155 0.45176 13.3584 0.439453 10.5062 0.439453ZM10.5061 5.547C7.52661 5.547 5.10938 7.96329 5.10938 10.9416C5.10938 13.9199 7.52661 16.3362 10.5061 16.3362C13.4856 16.3362 15.9028 13.9199 15.9028 10.9416C15.9028 7.96329 13.4856 5.547 10.5061 5.547ZM10.5061 14.4409C8.57312 14.4409 7.00541 12.8738 7.00541 10.9416C7.00541 9.00939 8.57312 7.44229 10.5061 7.44229C12.4391 7.44229 14.0068 9.00939 14.0068 10.9416C14.0068 12.8738 12.4391 14.4409 10.5061 14.4409ZM16.1164 6.59394C16.8099 6.59394 17.3763 6.03169 17.3763 5.33402C17.3763 4.64044 16.8099 4.0741 16.1164 4.0741C15.4228 4.0741 14.8564 4.63634 14.8564 5.33402C14.8564 6.02759 15.4187 6.59394 16.1164 6.59394Z' fill='%2327003F'/%3E%3C/svg%3E");
	background-size: cover;
	width: 20px;
	height: 20px;
	left: 20px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.instagram .cta--instagram:hover {
	background-color: #FFFFFF;
	color: #27003F;
}
.instagram .cta--instagram:hover:after {
	background-image: url("data:image/svg+xml,%3Csvg width='21' height='22' viewBox='0 0 21 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M10.5062 2.33064C13.3133 2.33064 13.6457 2.34295 14.7497 2.39218C15.7757 2.4373 16.3297 2.6096 16.699 2.75319C17.1874 2.9419 17.5404 3.17163 17.9056 3.53674C18.275 3.90595 18.5007 4.25465 18.6895 4.74283C18.8331 5.11205 19.0055 5.66997 19.0506 6.69146C19.0999 7.79909 19.1122 8.13139 19.1122 10.9333C19.1122 13.7393 19.0999 14.0716 19.0506 15.1751C19.0055 16.2007 18.8331 16.7546 18.6895 17.1238C18.5007 17.6119 18.2709 17.9648 17.9056 18.3299C17.5363 18.6991 17.1874 18.9247 16.699 19.1134C16.3297 19.257 15.7715 19.4293 14.7497 19.4744C13.6416 19.5236 13.3092 19.536 10.5062 19.536C7.69904 19.536 7.36662 19.5236 6.26265 19.4744C5.23666 19.4293 4.68263 19.257 4.31327 19.1134C3.8249 18.9247 3.47196 18.695 3.1067 18.3299C2.73735 17.9606 2.51163 17.6119 2.32285 17.1238C2.17921 16.7546 2.00684 16.1966 1.9617 15.1751C1.91245 14.0675 1.90014 13.7352 1.90014 10.9333C1.90014 8.12728 1.91245 7.79499 1.9617 6.69146C2.00684 5.66586 2.17921 5.11205 2.32285 4.74283C2.51163 4.25465 2.74145 3.90185 3.1067 3.53674C3.47606 3.16753 3.8249 2.9419 4.31327 2.75319C4.68263 2.6096 5.24077 2.4373 6.26265 2.39218C7.36662 2.34295 7.69904 2.33064 10.5062 2.33064ZM10.5062 0.439453C7.6539 0.439453 7.29685 0.45176 6.17647 0.500989C5.06019 0.550217 4.29275 0.730721 3.62791 0.98917C2.93434 1.25993 2.34747 1.61683 1.76471 2.20347C1.17784 2.78601 0.820793 3.37264 0.549932 4.06184C0.291382 4.73053 0.110807 5.49357 0.0615595 6.60941C0.0123119 7.73346 0 8.09036 0 10.9415C0 13.7926 0.0123119 14.1496 0.0615595 15.2695C0.110807 16.3853 0.291382 17.1525 0.549932 17.8171C0.820793 18.5104 1.17784 19.097 1.76471 19.6795C2.34747 20.2621 2.93434 20.6231 3.6238 20.8897C4.29275 21.1482 5.05609 21.3287 6.17237 21.3779C7.29275 21.4271 7.64979 21.4395 10.5021 21.4395C13.3543 21.4395 13.7114 21.4271 14.8317 21.3779C15.948 21.3287 16.7155 21.1482 17.3803 20.8897C18.0698 20.6231 18.6566 20.2621 19.2394 19.6795C19.8222 19.097 20.1833 18.5104 20.4501 17.8212C20.7086 17.1525 20.8892 16.3894 20.9384 15.2736C20.9877 14.1537 21 13.7968 21 10.9456C21 8.09446 20.9877 7.73756 20.9384 6.61761C20.8892 5.50177 20.7086 4.73463 20.4501 4.07004C20.1915 3.37264 19.8345 2.78601 19.2476 2.20347C18.6648 1.62093 18.078 1.25993 17.3885 0.993272C16.7196 0.734823 15.9562 0.554319 14.8399 0.505091C13.7155 0.45176 13.3584 0.439453 10.5062 0.439453ZM10.5061 5.547C7.52661 5.547 5.10938 7.96329 5.10938 10.9416C5.10938 13.9199 7.52661 16.3362 10.5061 16.3362C13.4856 16.3362 15.9028 13.9199 15.9028 10.9416C15.9028 7.96329 13.4856 5.547 10.5061 5.547ZM10.5061 14.4409C8.57312 14.4409 7.00541 12.8738 7.00541 10.9416C7.00541 9.00939 8.57312 7.44229 10.5061 7.44229C12.4391 7.44229 14.0068 9.00939 14.0068 10.9416C14.0068 12.8738 12.4391 14.4409 10.5061 14.4409ZM16.1164 6.59394C16.8099 6.59394 17.3763 6.03169 17.3763 5.33402C17.3763 4.64044 16.8099 4.0741 16.1164 4.0741C15.4228 4.0741 14.8564 4.63634 14.8564 5.33402C14.8564 6.02759 15.4187 6.59394 16.1164 6.59394Z' fill='%2327003F'/%3E%3C/svg%3E");
}
@media (min-width: 700px) {
	.instagram .cta--instagram {
		padding: 13px 16px 11px 51px;
	}
}
@media (min-width: 1025px) {
	.instagram .cta--instagram {
		font-size: 24px;
		font-size: 1.5rem;
		line-height: 1.3;
	}
}
@media (min-width: 1025px) {
	.instagram .scroll-animate.js-active + .scroll-animate.js-active {
		-webkit-transition-delay: 100ms;
		-o-transition-delay: 100ms;
		transition-delay: 100ms;
	}
	.instagram .scroll-animate.js-active + .scroll-animate.js-active + .scroll-animate.js-active {
		-webkit-transition-delay: 200ms;
		-o-transition-delay: 200ms;
		transition-delay: 200ms;
	}
}

.instagram__tile:last-child,
.instagram__tile:nth-child(4) {
	display: none;
}

/**
* @file
* Program List
*
* Styles for Program List display object.
*/
.program-list__item {
	padding: 0.5rem;
	border-bottom: 1px solid #000000;
}
@media (min-width: 700px) {
	.program-list__item {
		display: -webkit-box;
		display: -webkit-flex;
		display: -moz-box;
		display: -ms-flexbox;
		display: flex;
	}
}
.program-list__program {
	-webkit-flex-basis: 60%;
	-ms-flex-preferred-size: 60%;
	flex-basis: 60%;
}

/**
* @file
* Statistic: 3 up feature
*
* Styles for Statistick: 3 up feature object.
*/
@media (min-width: 700px) {
	.stat3up .column--three {
		gap: 0;
		margin: 0 2px;
		display: -ms-grid;
		display: grid;
		-ms-grid-columns: 1fr 0 1fr 0 1fr;
		grid-template-columns: 1fr 1fr 1fr;
	}
}
@media (min-width: 1025px) {
	.stat3up {
		margin: 0 4px;
	}
}
.stat3up .scroll-animate .stat3up__number,
.stat3up .scroll-animate .stat3up__caption {
	opacity: 0;
	-webkit-transform: translateY(30px);
	-ms-transform: translateY(30px);
	transform: translateY(30px);
	-webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
	transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
	-o-transition: transform 0.3s ease, opacity 0.3s ease;
	transition: transform 0.3s ease, opacity 0.3s ease;
	transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}
.stat3up .js-active .stat3up__number,
.stat3up .js-active .stat3up__caption {
	opacity: 1;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
}
.stat3up__image img {
	aspect-ratio: 288/173;
	-o-object-fit: cover;
	object-fit: cover;
}
@media (min-width: 700px) {
	.stat3up__image img img {
		aspect-ratio: 200/121;
	}
}
@media (min-width: 1025px) {
	.stat3up__image img {
		aspect-ratio: 342/172;
	}
}
.stat3up__item {
	text-align: center;
	border: 2px solid #27003F;
	border-radius: 8px;
	overflow: hidden;
	gap: 0;
}
@media (min-width: 700px) {
	.stat3up__item {
		-webkit-box-flex: 1;
		-webkit-flex: 1;
		-moz-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
		display: -webkit-box;
		display: -webkit-flex;
		display: -moz-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-moz-box-orient: vertical;
		-moz-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		margin: 0 -1px;
	}
	.stat3up__item:first-of-type {
		border-radius: 8px 0 0 8px;
	}
	.stat3up__item:nth-of-type(2) {
		border-radius: 0 0 0 0;
	}
	.stat3up__item:nth-of-type(3) {
		border-radius: 0 8px 8px 0;
	}
}
@media (min-width: 1025px) {
	.stat3up__item {
		border: 3px solid #27003F;
		margin: 0 -2px;
	}
	.stat3up__item:nth-of-type(2) {
		margin-left: -1px;
	}
	.stat3up__item:nth-of-type(3) {
		margin-left: -1px;
	}
}
.stat3up__content {
	padding: 24px 16px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	gap: 18px;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #27003F;
}
@media (min-width: 700px) {
	.stat3up__content {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-moz-box-orient: vertical;
		-moz-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		text-align: left;
		padding: 18px;
		gap: 0;
	}
}
@media (min-width: 1025px) {
	.stat3up__content {
		padding: 32px 45px;
	}
}
.stat3up__number {
	font-family: acumin-pro-condensed, sans-serif;
	font-size: 42px;
	font-size: 2.625rem;
	font-weight: 800;
	line-height: 1;
}
@media (min-width: 700px) {
	.stat3up__number {
		margin-right: auto;
		font-size: 48px;
		font-size: 3rem;
		font-size: 48px;
		line-height: 1.2;
	}
}
@media (min-width: 1025px) {
	.stat3up__number {
		margin-bottom: 16px;
		font-size: 72px;
		font-size: 4.5rem;
		line-height: 1.1;
	}
}
.stat3up__caption {
	margin: 0;
	font-family: "acumin-pro", sans-serif;
	font-weight: 400;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.52;
}
@media (min-width: 700px) {
	.stat3up__caption {
		font-family: acumin-pro-condensed, sans-serif;
		font-style: italic;
		font-weight: 800;
		font-size: 21px;
		font-size: 1.3125rem;
		line-height: 1.4;
		width: 100%;
	}
}
@media (min-width: 1025px) {
	.stat3up__caption {
		font-size: 32px;
		font-size: 2rem;
		line-height: 1.4;
	}
}
.stat3up__cta {
	margin-top: auto;
}
@media (max-width: 699px) {
	.stat3up__cta {
		min-height: inherit !important;
	}
}
.stat3up__cta a {
	text-align: left;
	color: #CBE2FF;
	position: relative;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	padding: 18px 16px 16px;
	background-color: #27003F;
	margin: auto 0 0;
	display: block;
	height: 100%;
}
.stat3up__cta a span.last-word {
	position: relative;
	margin-right: 35px;
	padding-right: 0;
}
.stat3up__cta a span.last-word:after {
	content: "";
	position: absolute;
	width: 20px;
	height: 12px;
	right: -30px;
	top: 0.45em;
	background-image: url("data:image/svg+xml,%3Csvg width='20' height='12' viewBox='0 0 20 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.6624 0L20 6.02857L13.6624 12H10.7962L15.9873 7.08571H0L0 4.94286H15.9873L10.7962 0L13.6624 0Z' fill='%23CBE2FF'/%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
@media (min-width: 1025px) {
	.stat3up__cta a span.last-word:after {
		top: 0.6em;
	}
}
.stat3up__cta a:before {
	display: none;
}
.stat3up__cta a:focus {
	outline-color: #FFFFFF;
	outline-offset: -4px;
}
.stat3up__cta a:hover {
	color: #27003F;
	background-color: #CBE2FF;
}
.stat3up__cta a:hover span.last-word:after {
	background-image: url("data:image/svg+xml,%3Csvg width='20' height='12' viewBox='0 0 20 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.6624 0L20 6.02857L13.6624 12H10.7962L15.9873 7.08571H0L0 4.94286H15.9873L10.7962 0L13.6624 0Z' fill='%2327003F'/%3E%3C/svg%3E");
}
@media (min-width: 700px) {
	.stat3up__cta a {
		padding: 27px 18px 23px;
		margin-top: auto;
	}
}
@media (min-width: 1025px) {
	.stat3up__cta a {
		padding: 24px 32px;
		font-size: 24px;
		font-size: 1.5rem;
		line-height: 1.3;
	}
}

.homepage-hero__ctas + .container > section.stat3up {
	margin-top: -65px;
}
.homepage-hero__ctas + .container > section.stat3up .stat3up__intro,
.homepage-hero__ctas + .container > section.stat3up .stat3up__header {
	display: none;
}
@media (min-width: 700px) {
	.homepage-hero__ctas + .container > section.stat3up {
		margin-top: -85px;
	}
}
@media (min-width: 1600px) {
	.homepage-hero__ctas + .container > section.stat3up {
		max-width: 1640px;
		margin-left: auto;
		margin-right: auto;
	}
}

.story-carousel {
	margin: 65px 0;
	position: relative;
}
@media (min-width: 1025px) {
	.story-carousel {
		padding: 0 80px;
	}
}
.story-carousel__header {
	margin: 0 14px 22px;
	padding: 20px;
	border: 2px solid #003F12;
	background-color: #FFFFFF;
	border-radius: 8px;
	position: relative;
}
.story-carousel__header h2 {
	margin: 0 0 16px;
	color: #003F12;
}
.story-carousel__header:before {
	content: "";
	position: absolute;
	width: 10px;
	height: 10px;
	top: 22px;
	left: -8px;
	border: 2px solid #003F12;
	border-radius: 50%;
	background-color: #FFFFFF;
	z-index: 1;
	opacity: 0;
	-webkit-transition: 0.3s ease 0.6s;
	-o-transition: 0.3s ease 0.6s;
	transition: 0.3s ease 0.6s;
}
@media (min-width: 700px) {
	.story-carousel__header:before {
		width: 15px;
		height: 15px;
		top: 25px;
		left: 18px;
	}
}
@media (min-width: 1025px) {
	.story-carousel__header:before {
		width: 18px;
		height: 18px;
		top: 79px;
		left: 18px;
		border: 3px solid #003F12;
	}
}
.story-carousel__header:after {
	content: "";
	position: absolute;
	left: -2px;
	top: 16px;
	width: 4px;
	height: 27px;
	background-color: #FFFFFF;
}
@media (min-width: 700px) {
	.story-carousel__header:after {
		height: 38px;
		width: 5px;
	}
}
@media (min-width: 1025px) {
	.story-carousel__header:after {
		left: -3px;
		top: 72px;
	}
}
@media (min-width: 700px) {
	.story-carousel__header {
		padding: 32px 64px;
		margin: 0 30px 27px;
	}
}
@media (min-width: 1025px) {
	.story-carousel__header {
		padding: 64px;
		margin: 0 auto 32px;
		border: 3px solid #003F12;
		max-width: 1460px;
	}
}
.story-carousel .decorative-lines-left {
	position: absolute;
	top: 27px;
	left: -16px;
	height: 71%;
	width: 2px;
	-webkit-transform-origin: bottom;
	-ms-transform-origin: bottom;
	transform-origin: bottom;
	background-color: #003F12;
	-webkit-transform: scaleY(0);
	-ms-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
@media (min-width: 700px) {
	.story-carousel .decorative-lines-left {
		left: -32px;
		height: 63%;
		z-index: 1;
		top: 34px;
	}
}
@media (min-width: 1025px) {
	.story-carousel .decorative-lines-left {
		left: -90px;
		height: 62%;
		top: 89px;
		width: 3px;
	}
}
.story-carousel .decorative-lines-left:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 2px;
	width: 16px;
	-webkit-transform-origin: left;
	-ms-transform-origin: left;
	transform-origin: left;
	background-color: #003F12;
	-webkit-transform: scaleX(0);
	-ms-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transition: all 0.3s ease 0.3s;
	-o-transition: all 0.3s ease 0.3s;
	transition: all 0.3s ease 0.3s;
}
@media (min-width: 700px) {
	.story-carousel .decorative-lines-left:after {
		width: 52px;
	}
}
@media (min-width: 1025px) {
	.story-carousel .decorative-lines-left:after {
		width: 110px;
		height: 3px;
	}
}
.story-carousel .decorative-lines-right {
	position: absolute;
	top: 35%;
	right: -16px;
	height: 2px;
	width: 16px;
	-webkit-transform-origin: left;
	-ms-transform-origin: left;
	transform-origin: left;
	background-color: #003F12;
	-webkit-transform: scaleX(0);
	-ms-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transition: all 0.3s ease 0.6s;
	-o-transition: all 0.3s ease 0.6s;
	transition: all 0.3s ease 0.6s;
}
@media (min-width: 700px) {
	.story-carousel .decorative-lines-right {
		right: -30px;
		width: 30px;
	}
}
@media (min-width: 1025px) {
	.story-carousel .decorative-lines-right {
		right: -90px;
		width: 90px;
		height: 3px;
	}
}
.story-carousel .decorative-lines-right:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	height: 150px;
	width: 2px;
	-webkit-transform-origin: top;
	-ms-transform-origin: top;
	transform-origin: top;
	background-color: #003F12;
	-webkit-transform: scaleX(0);
	-ms-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transition: all 0.3s ease 0.9s;
	-o-transition: all 0.3s ease 0.9s;
	transition: all 0.3s ease 0.9s;
}
@media (min-width: 700px) {
	.story-carousel .decorative-lines-right:after {
		right: 0;
		height: calc(50% + 100px);
	}
}
@media (min-width: 1025px) {
	.story-carousel .decorative-lines-right:after {
		right: 0;
		height: calc(50% + 136px);
		width: 3px;
	}
}
.story-carousel.js-active .decorative-lines-left {
	-webkit-transform: scaleY(1);
	-ms-transform: scaleY(1);
	transform: scaleY(1);
}
.story-carousel.js-active .decorative-lines-left:after {
	-webkit-transform: scaleX(1);
	-ms-transform: scaleX(1);
	transform: scaleX(1);
}
.story-carousel.js-active .story-carousel__header:before {
	opacity: 1;
}
.story-carousel.js-active .decorative-lines-right {
	-webkit-transform: scaleX(1);
	-ms-transform: scaleX(1);
	transform: scaleX(1);
}
.story-carousel.js-active .decorative-lines-right:after {
	-webkit-transform: scaleX(1);
	-ms-transform: scaleX(1);
	transform: scaleX(1);
}
.story-carousel__subtile {
	color: #003F12;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.4;
	font-weight: 600;
}
@media (min-width: 700px) {
	.story-carousel__subtile {
		font-size: 18px;
		font-size: 1.125rem;
	}
}
@media (min-width: 1025px) {
	.story-carousel__subtile {
		font-size: 24px;
		font-size: 1.5rem;
		line-height: 1.3;
	}
}
.story-carousel__holder {
	position: relative;
	margin: -80px -16px 0;
	padding: 90px 0 70px;
}
.story-carousel__holder:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100%;
	background-color: #003F12;
	background-image: url("/_resources/images/banner-image.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: -1;
}
@media (min-width: 700px) {
	.story-carousel__holder:before {
		left: -34px;
	}
}
@media (min-width: 1025px) {
	.story-carousel__holder:before {
		left: -64px;
	}
}
@media (min-width: 700px) {
	.story-carousel__holder {
		padding-bottom: 90px;
	}
}
@media (min-width: 1025px) {
	.story-carousel__holder {
		padding: 90px 16px 90px;
		margin: -80px -96px 0;
	}
}
.story-carousel__wrapper {
	position: relative;
	z-index: 4;
}
.story-carousel__wrapper .slick-list {
	overflow: visible;
	margin: 0 -16px;
	padding: 0 16px;
	z-index: 10;
}
@media (min-width: 1025px) {
	.story-carousel__wrapper {
		max-width: 1640px;
		margin: 0 auto;
	}
}
.story-carousel .slick-slide {
	opacity: 0;
	-webkit-transition: opacity 0.3s ease;
	-o-transition: opacity 0.3s ease;
	transition: opacity 0.3s ease;
}
.story-carousel .slick-slide.slick-active {
	opacity: 1;
	-webkit-transition: opacity 0.3s ease;
	-o-transition: opacity 0.3s ease;
	transition: opacity 0.3s ease;
}
.story-carousel__item {
	padding: 0 16px;
}
@media (min-width: 700px) {
	.story-carousel__item {
		display: -webkit-box !important;
		display: -webkit-flex !important;
		display: -moz-box !important;
		display: -ms-flexbox !important;
		display: flex !important;
		gap: 58px;
		padding: 0;
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-moz-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
}
.story-carousel__content {
	color: #FFFFFF;
	position: relative;
	opacity: 0;
	left: -25%;
	-webkit-transition: opacity 300ms, left 0ms 300ms;
	-o-transition: opacity 300ms, left 0ms 300ms;
	transition: opacity 300ms, left 0ms 300ms;
}
@media (min-width: 700px) {
	.story-carousel__content {
		padding-bottom: 30px;
	}
}
.story-carousel__content .cite__wrap {
	margin-bottom: 12px;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.5;
}
@media (min-width: 700px) {
	.story-carousel__content .cite__wrap {
		margin-bottom: 16px;
		line-height: 1.6;
	}
}
.story-carousel__content .name {
	font-weight: 700;
	margin-right: 20px;
	position: relative;
}
.story-carousel__content .name:after {
	content: "";
	position: absolute;
	right: -11px;
	bottom: 0;
	height: 20px;
	width: 2px;
	background-color: #FFFFFF;
}
@media (min-width: 700px) {
	.story-carousel__content {
		width: 65%;
	}
}
.story-carousel__quote {
	font-size: 16px;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 31px;
}
.story-carousel__image {
	max-width: 55%;
	position: relative;
	aspect-ratio: 157/157;
	border: 2px solid #FFFFFF;
	background-color: #003F12;
}
@media (min-width: 700px) {
	.story-carousel__image {
		position: static;
		border: 4px solid #FFFFFF;
	}
}
.story-carousel__image img {
	width: 100%;
	aspect-ratio: 157/157;
	-o-object-fit: cover;
	object-fit: cover;
	opacity: 0;
	-webkit-transition: opacity 300ms;
	-o-transition: opacity 300ms;
	transition: opacity 300ms;
}
.story-carousel__image:before {
	content: "";
	position: absolute;
	left: calc(50% - 6px);
	bottom: -50px;
	height: 10px;
	width: 10px;
	background-color: #003F12;
	border: 2px solid #FFFFFF;
	border-radius: 50%;
	z-index: 1;
}
@media (min-width: 700px) {
	.story-carousel__image:before {
		border: 3px solid #FFFFFF;
		bottom: -108px;
		right: 97px;
		left: auto;
		height: 14px;
		width: 14px;
	}
}
.story-carousel__image:after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -50px;
	height: 50px;
	width: 2px;
	background-color: #FFFFFF;
}
@media (min-width: 700px) {
	.story-carousel__image:after {
		bottom: -100px;
		right: 106px;
		height: auto;
		left: auto;
		top: 0;
		width: 4px;
		z-index: -1;
	}
}
@media (min-width: 700px) {
	.story-carousel__image {
		width: 35%;
		height: -webkit-fit-content;
		height: -moz-fit-content;
		height: fit-content;
		margin-bottom: 30px;
		max-width: 222px;
	}
}
.story-carousel__cta {
	position: absolute;
	bottom: -125px;
	z-index: 2;
	left: -25%;
	opacity: 0;
	max-width: 100%;
	-webkit-transition: opacity 300ms, left 0ms 300ms;
	-o-transition: opacity 300ms, left 0ms 300ms;
	transition: opacity 300ms, left 0ms 300ms;
}
.story-carousel__cta a {
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: 600;
	color: #003F12;
	background-color: #A4FFBF;
	border-radius: 8px;
	padding: 12px 35px 11px 16px;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	display: block;
}
.story-carousel__cta a:before {
	display: none;
}
.story-carousel__cta a:after {
	content: "";
	width: 14px;
	height: 10px;
	position: absolute;
	top: calc(50% - 6px);
	right: 12px;
	background-image: url("data:image/svg+xml,%3Csvg width='14' height='10' viewBox='0 0 14 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.56369 0L14 5.02381L9.56369 10H7.55732L11.1911 5.90476H0V4.11905H11.1911L7.55732 0H9.56369Z' fill='%23003F12'/%3E%3C/svg%3E");
}
.story-carousel__cta a:focus {
	outline-color: #FFFFFF;
}
.story-carousel__cta a:hover {
	background-color: #FFFFFF;
}
@media (min-width: 700px) {
	.story-carousel__cta {
		bottom: -35px;
	}
	.story-carousel__cta a {
		font-size: 18px;
		font-size: 1.125rem;
		line-height: 1.3;
	}
	.story-carousel__cta a:after {
		width: 19px;
		height: 12px;
		top: calc(50% - 7px);
		right: 8px;
		background-size: contain;
		background-repeat: no-repeat;
	}
}
.story-carousel__buttons {
	bottom: 0;
	width: 100%;
	height: 50px;
	right: 26px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-moz-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.story-carousel__buttons .slick-arrow {
	position: relative;
	overflow: visible;
}
.story-carousel__buttons .prevArrow {
	position: absolute;
	right: 90px;
	top: -15px;
}
.story-carousel__buttons .prevArrow + span.decorative-lines:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 34px;
	width: 27.5%;
	height: 2px;
	background-color: rgba(255, 255, 255, 0.5);
}
@media (min-width: 700px) {
	.story-carousel__buttons .prevArrow + span.decorative-lines:before {
		right: 117px;
		bottom: -24px;
		left: unset;
		width: calc(100% - 370px);
		height: 4px;
		border-radius: 8px 0 0 8px;
	}
}
.story-carousel__buttons .prevArrow + span.decorative-lines:after {
	content: "";
	position: absolute;
	bottom: 34px;
	width: 27.5%;
	right: 72.5%;
	height: 2px;
	background-color: #FFFFFF;
	z-index: 1;
	-webkit-transition: all 400ms;
	-o-transition: all 400ms;
	transition: all 400ms;
}
@media (min-width: 700px) {
	.story-carousel__buttons .prevArrow + span.decorative-lines:after {
		right: 116px;
		bottom: -24px;
		left: unset;
		width: calc(100% - 370px);
		height: 4px;
		border-radius: 8px 0 0 8px;
	}
}
.story-carousel__buttons .prevArrow.slick-disabled + span.decorative-lines:after {
	width: 0;
}
@media (min-width: 700px) {
	.story-carousel__buttons .prevArrow {
		right: 145px;
		top: 23px;
	}
}
.story-carousel__buttons .nextArrow {
	position: absolute;
	right: 42px;
	top: -15px;
}
.story-carousel__buttons .nextArrow + span.decorative-lines:before {
	content: "";
	position: absolute;
	right: 150px;
	left: calc(27.5% + 15px);
	bottom: 34px;
	width: calc(65% - 20px - 150px);
	height: 2px;
	background-color: rgba(255, 255, 255, 0.5);
}
@media (min-width: 700px) {
	.story-carousel__buttons .nextArrow + span.decorative-lines:before {
		right: -60px;
		left: unset;
		bottom: -24px;
		width: 160px;
		height: 4px;
	}
}
@media (min-width: 1025px) {
	.story-carousel__buttons .nextArrow + span.decorative-lines:before {
		right: -80px;
		bottom: -24px;
		width: 177px;
	}
}
.story-carousel__buttons .nextArrow + span.decorative-lines:after {
	content: "";
	position: absolute;
	right: 150px;
	left: calc(27.5% + 15px);
	bottom: 34px;
	width: calc(65% - 20px - 150px);
	height: 2px;
	background-color: #FFFFFF;
	-webkit-transition: all 400ms;
	-o-transition: all 400ms;
	transition: all 400ms;
}
@media (min-width: 700px) {
	.story-carousel__buttons .nextArrow + span.decorative-lines:after {
		right: -60px;
		left: unset;
		bottom: -24px;
		width: 160px;
		height: 4px;
	}
}
@media (min-width: 1025px) {
	.story-carousel__buttons .nextArrow + span.decorative-lines:after {
		right: -80px;
		bottom: -24px;
		width: 177px;
	}
}
.story-carousel__buttons .nextArrow.slick-disabled + span.decorative-lines:after {
	width: 0;
}
@media (min-width: 700px) {
	.story-carousel__buttons .nextArrow {
		right: 25px;
		top: 23px;
	}
}
.story-carousel .btn-wrap {
	position: relative;
	width: 100%;
	height: 75px;
	z-index: 1000;
}
.story-carousel .btn-wrap span.button-text {
	position: absolute;
	bottom: 25px;
	right: 42px;
	font-family: adobe-handwriting-ernie, sans-serif;
	font-weight: 400;
	font-size: 18px;
	font-size: 1.125rem;
	line-height: 0.9;
	color: #FFFFFF;
}
.story-carousel .btn-wrap span.button-text:before {
	position: absolute;
	width: 100%;
	height: 2px;
	border-radius: 8px;
	right: 0;
	bottom: 0;
}
@media (min-width: 700px) {
	.story-carousel .btn-wrap span.button-text {
		font-size: 28px;
		font-size: 1.75rem;
		line-height: 0.9;
		right: unset;
		left: 0;
		top: 50px;
		margin-top: 40px;
	}
}
@media (min-width: 1025px) {
	.story-carousel .btn-wrap span.button-text {
		font-size: 36px;
		font-size: 2.25rem;
	}
}
@media (min-width: 1025px) {
	.story-carousel .btn-wrap {
		max-width: 1640px;
		margin: 0 auto;
	}
}
.story-carousel .nextSlide .story-carousel__content,
.story-carousel .nextSlide .story-carousel__cta {
	left: 25%;
}
.story-carousel .slick-current .story-carousel__content {
	opacity: 1;
	left: 0;
	-webkit-transition: all 300ms 300ms;
	-o-transition: all 300ms 300ms;
	transition: all 300ms 300ms;
}
.story-carousel .slick-current .story-carousel__image img {
	opacity: 1;
	-webkit-transition: all 300ms 300ms;
	-o-transition: all 300ms 300ms;
	transition: all 300ms 300ms;
}
.story-carousel .slick-current .story-carousel__cta {
	opacity: 1;
	left: 15px;
	-webkit-transition: all 300ms 300ms;
	-o-transition: all 300ms 300ms;
	transition: all 300ms 300ms;
}
.story-carousel .slick-track {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
}
.story-carousel .slick-track .slick-slide {
	height: auto;
}

/**
* @file
* Events 3 Up Feature
*
* Contains styles for Events 3 Up content object.
*/
.events3up__item.scroll-animate {
	opacity: 0;
	-webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
	transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
	-o-transition: transform 0.3s ease, opacity 0.3s ease;
	transition: transform 0.3s ease, opacity 0.3s ease;
	transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
	-webkit-transform: translateY(1.875rem);
	-ms-transform: translateY(1.875rem);
	transform: translateY(1.875rem);
}
.events3up__item.scroll-animate.js-active {
	opacity: 1;
	-webkit-transform: translateY(0rem);
	-ms-transform: translateY(0rem);
	transform: translateY(0rem);
}
@media (min-width: 1025px) {
	.events3up__item.scroll-animate .scroll-animate + .scroll-animate {
		-webkit-transition-delay: 0.3s;
		-o-transition-delay: 0.3s;
		transition-delay: 0.3s;
	}
}
.events3up__item {
	text-align: center;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-moz-box-orient: horizontal;
	-moz-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	color: #FFFFFF;
	margin-bottom: 0.5rem;
}
.events3up__item:nth-of-type(odd) .events3up__date {
	background-color: #27003F;
}
.events3up__item:nth-of-type(odd) .events3up__data {
	background-color: #6E2879;
}
.events3up__item:nth-of-type(even) .events3up__date {
	background-color: #003F12;
}
.events3up__item:nth-of-type(even) .events3up__data {
	background-color: #046A38;
}
.events3up__item:nth-of-type(even) h3 a, .events3up__item:nth-of-type(even) .story-carousel__header h2 a, .story-carousel__header .events3up__item:nth-of-type(even) h2 a {
	color: #A4FFBF;
}
.events3up__item:nth-of-type(even) h3 a span:after, .events3up__item:nth-of-type(even) .story-carousel__header h2 a span:after, .story-carousel__header .events3up__item:nth-of-type(even) h2 a span:after {
	background-image: url("data:image/svg+xml,%3Csvg width='15' height='11' viewBox='0 0 15 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.2468 0.439453L15 5.46326L10.2468 10.4395H8.09713L11.9904 6.34421H0V4.5585H11.9904L8.09713 0.439453H10.2468Z' fill='%23A4FFBF'/%3E%3C/svg%3E");
}
.events3up__item:nth-of-type(even) h3 a:hover, .events3up__item:nth-of-type(even) .story-carousel__header h2 a:hover, .story-carousel__header .events3up__item:nth-of-type(even) h2 a:hover {
	color: #FFFFFF;
}
.events3up__item:nth-of-type(even) h3 a:hover span:after, .events3up__item:nth-of-type(even) .story-carousel__header h2 a:hover span:after, .story-carousel__header .events3up__item:nth-of-type(even) h2 a:hover span:after {
	background-image: url("data:image/svg+xml,%3Csvg width='15' height='11' viewBox='0 0 15 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.2468 0.439453L15 5.46326L10.2468 10.4395H8.09713L11.9904 6.34421H0V4.5585H11.9904L8.09713 0.439453H10.2468Z' fill='%23FFFFFF'/%3E%3C/svg%3E");
}
.events3up__date {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: reverse;
	-webkit-flex-direction: column-reverse;
	-moz-box-orient: vertical;
	-moz-box-direction: reverse;
	-ms-flex-direction: column-reverse;
	flex-direction: column-reverse;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin: 0 auto;
	width: 36%;
	padding: 1.875rem 0;
	border-radius: 8px 0 0 8px;
}
.events3up__day {
	font-family: acumin-pro-condensed, sans-serif;
	font-weight: 800;
	font-size: 42px;
	font-size: 2.625rem;
	line-height: 1;
}
.events3up__month {
	font-family: "acumin-pro", sans-serif;
	font-weight: 700;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.5;
}
.events3up__data {
	width: 64%;
	border-radius: 0 8px 8px 0;
	padding: 1.625rem 0.5rem 1.5rem 1rem;
	text-align: left;
}
.events3up__time {
	display: inline;
	margin-right: 10px;
	position: relative;
	line-height: 1.52;
}
.events3up__time:after {
	content: "";
	position: absolute;
	width: 2px;
	height: 17px;
	background-color: #FFFFFF;
	right: -3px;
	bottom: 0;
}
.events3up__location {
	display: inline;
	line-height: 1.52;
}
.events3up h3, .events3up .story-carousel__header h2, .story-carousel__header .events3up h2 {
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	font-family: "acumin-pro", sans-serif;
	font-weight: 600;
	font-size: 14px;
	font-size: 0.875rem;
	line-height: 1.3;
	margin: 0 1.375rem 0.5rem 0;
}
.events3up h3 a, .events3up .story-carousel__header h2 a, .story-carousel__header .events3up h2 a {
	color: #FFFFFF;
	outline-color: #FFFFFF;
}
.events3up h3 a:hover, .events3up .story-carousel__header h2 a:hover, .story-carousel__header .events3up h2 a:hover {
	color: #CBE2FF;
}
.events3up h3 a:hover span.last-word:after, .events3up .story-carousel__header h2 a:hover span.last-word:after, .story-carousel__header .events3up h2 a:hover span.last-word:after {
	background-image: url("data:image/svg+xml,%3Csvg width='15' height='11' viewBox='0 0 15 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.2468 0.439453L15 5.46326L10.2468 10.4395H8.09713L11.9904 6.34421H0V4.5585H11.9904L8.09713 0.439453H10.2468Z' fill='%23CBE2FF'/%3E%3C/svg%3E");
}
.events3up h3 span, .events3up .story-carousel__header h2 span, .story-carousel__header .events3up h2 span {
	position: relative;
}
.events3up h3 span.last-word, .events3up .story-carousel__header h2 span.last-word, .story-carousel__header .events3up h2 span.last-word {
	padding-right: 0;
}
.events3up h3 span:after, .events3up .story-carousel__header h2 span:after, .story-carousel__header .events3up h2 span:after {
	content: "";
	position: absolute;
	background: url("/_resources/assets/icons/arrow_right.svg"), center, no-repeat;
	background-size: cover;
	width: 15px;
	height: 11px;
	right: -20px;
	bottom: 3px;
}
.events3up__section-cta {
	text-align: left;
	text-transform: capitalize;
	margin-top: 1.5rem;
}
.events3up__section-cta a.cta--button-arrow {
	position: relative;
	display: inline-block;
	font-weight: 600;
	font-family: "acumin-pro", sans-serif;
	color: #FFFFFF;
	border: 1px solid #27003F;
	background-color: #27003F;
	border-radius: 8px;
	padding: 8px 40px 11px 16px;
	font-size: 14px;
	font-size: 0.875rem;
	line-height: 18px;
	padding-right: 2.5rem;
}
.events3up__section-cta a.cta--button-arrow:after {
	content: "";
	display: inline-block;
	vertical-align: middle;
	position: absolute;
	bottom: 13px;
	right: 13px;
	margin: 0 0 0 3px;
	background-image: url("data:image/svg+xml,%3Csvg width='22' height='14' viewBox='0 0 22 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.0287 0L22 7.03333L15.0287 14H11.8758L17.586 8.26667H0V5.76667H17.586L11.8758 0H15.0287Z' fill='%23FFFFFF'/%3E%3C/svg%3E");
	background-size: cover;
}
.events3up__section-cta a.cta--button-arrow:hover {
	color: #27003F;
	background-color: #CBE2FF;
	border-color: #CBE2FF;
}
.events3up__section-cta a.cta--button-arrow:hover:after {
	background-image: url("data:image/svg+xml,%3Csvg width='22' height='14' viewBox='0 0 22 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.0287 0L22 7.03333L15.0287 14H11.8758L17.586 8.26667H0V5.76667H17.586L11.8758 0H15.0287Z' fill='%2327003F'/%3E%3C/svg%3E");
}
.events3up__section-cta a.cta--button-arrow:after {
	bottom: 14px;
	width: 17px;
	height: 11px;
}
@media (min-width: 700px) {
	.events3up__section-cta a.cta--button-arrow {
		padding: 9px 50px 11px 16px;
		font-size: 18px;
		font-size: 1.125rem;
		line-height: 23px;
	}
	.events3up__section-cta a.cta--button-arrow:after {
		width: 19px;
		height: 12px;
	}
}
@media (min-width: 1025px) {
	.events3up__section-cta a.cta--button-arrow {
		padding: 9px 45px 11px 16px;
		font-size: 24px;
		font-size: 1.5rem;
		line-height: 24px;
	}
	.events3up__section-cta a.cta--button-arrow:after {
		width: 22px;
		height: 14px;
	}
}
@media (min-width: 700px) {
	.events3up .column--three {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-moz-box-orient: vertical;
		-moz-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 0.688rem;
	}
	.events3up__item {
		margin-bottom: 0;
	}
	.events3up__date {
		width: 27%;
		padding: 0;
		border-radius: 8px 0 0 8px;
	}
	.events3up__data {
		width: 73%;
		padding: 1.875rem 2.5rem;
		word-break: break-word;
	}
	.events3up__day {
		font-size: 48px;
		font-size: 3rem;
		line-height: 1.2;
	}
	.events3up__month {
		font-size: 18px;
		font-size: 1.125rem;
		line-height: 1.6;
	}
	.events3up h3, .events3up .story-carousel__header h2, .story-carousel__header .events3up h2 {
		font-size: 18px;
		font-size: 1.125rem;
		line-height: 1.3;
		margin-bottom: 0.625rem;
	}
	.events3up h3 span:after, .events3up .story-carousel__header h2 span:after, .story-carousel__header .events3up h2 span:after {
		width: 19px;
		height: 14px;
		right: -30px;
		bottom: 3px;
	}
	.events3up__time {
		line-height: 1.6;
	}
	.events3up__location {
		line-height: 1.6;
	}
}
@media (min-width: 1025px) {
	.events3up .column--three {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-webkit-flex-direction: row;
		-moz-box-orient: horizontal;
		-moz-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		gap: 1.25rem;
	}
	.events3up__item {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-moz-box-orient: vertical;
		-moz-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.events3up__date {
		width: 100%;
		border-radius: 8px 8px 0 0;
		padding: 1.25rem 1rem;
	}
	.events3up__day {
		font-size: 54px;
		font-size: 3.375rem;
		line-height: 1;
	}
	.events3up__month {
		line-height: 1.3;
	}
	.events3up__data {
		width: 100%;
		border-radius: 0 0 8px 8px;
		padding: 1.625rem 1.5rem 1.875rem;
	}
	.events3up h3, .events3up .story-carousel__header h2, .story-carousel__header .events3up h2 {
		font-size: 24px;
		font-size: 1.5rem;
		line-height: 1.3;
		margin-bottom: 0.5rem;
	}
	.events3up h3 span:after, .events3up .story-carousel__header h2 span:after, .story-carousel__header .events3up h2 span:after {
		bottom: 8px;
	}
	.events3up__time {
		font-size: 18px;
		font-size: 1.125rem;
	}
	.events3up__location {
		font-size: 18px;
		font-size: 1.125rem;
	}
	.events3up .scroll-animate.js-active + .scroll-animate.js-active {
		-webkit-transition-delay: 100ms;
		-o-transition-delay: 100ms;
		transition-delay: 100ms;
	}
	.events3up .scroll-animate.js-active + .scroll-animate.js-active + .scroll-animate.js-active {
		-webkit-transition-delay: 200ms;
		-o-transition-delay: 200ms;
		transition-delay: 200ms;
	}
}

.events-and-news {
	padding: 4.375rem 0;
}
@media (min-width: 1025px) {
	.events-and-news {
		padding: 10.2rem 0 9.9rem;
		max-width: 1640px;
		margin: 0 auto;
	}
}
.events-and-news h3, .events-and-news .story-carousel__header h2, .story-carousel__header .events-and-news h2 {
	font-weight: 600;
	font-family: "Acumin Pro", sans-serif;
	color: #FFFFFF;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.3;
	outline-color: #FFFFFF;
}
@media (min-width: 700px) {
	.events-and-news h3, .events-and-news .story-carousel__header h2, .story-carousel__header .events-and-news h2 {
		font-size: 18px;
		font-size: 1.125rem;
	}
}
@media (min-width: 1025px) {
	.events-and-news h3, .events-and-news .story-carousel__header h2, .story-carousel__header .events-and-news h2 {
		font-size: 24px;
		font-size: 1.5rem;
	}
}
.events-and-news h3 a, .events-and-news .story-carousel__header h2 a, .story-carousel__header .events-and-news h2 a {
	color: #FFFFFF;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.events-and-news h3 a .last-word, .events-and-news .story-carousel__header h2 a .last-word, .story-carousel__header .events-and-news h2 a .last-word {
	position: relative;
	margin-right: 30px;
	padding-right: 0;
}
.events-and-news h3 a .last-word:after, .events-and-news .story-carousel__header h2 a .last-word:after, .story-carousel__header .events-and-news h2 a .last-word:after {
	content: "";
	position: absolute;
	width: 15px;
	height: 10px;
	right: -20px;
	top: calc(50% - 3px);
	background-image: url("data:image/svg+xml,%3Csvg width='15' height='11' viewBox='0 0 15 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.2468 0.720215L15 5.74402L10.2468 10.7202H8.09713L11.9904 6.62498H0V4.83926H11.9904L8.09713 0.720215H10.2468Z' fill='white'/%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
}
@media (min-width: 1025px) {
	.events-and-news h3 a .last-word, .events-and-news .story-carousel__header h2 a .last-word, .story-carousel__header .events-and-news h2 a .last-word {
		margin-right: 35px;
	}
	.events-and-news h3 a .last-word:after, .events-and-news .story-carousel__header h2 a .last-word:after, .story-carousel__header .events-and-news h2 a .last-word:after {
		width: 20px;
		height: 13px;
		right: -28px;
		top: calc(50% - 4px);
	}
}
.events-and-news h3 a:hover, .events-and-news .story-carousel__header h2 a:hover, .story-carousel__header .events-and-news h2 a:hover {
	color: #CBE2FF;
}
.events-and-news h3 a:hover .last-word:after, .events-and-news .story-carousel__header h2 a:hover .last-word:after, .story-carousel__header .events-and-news h2 a:hover .last-word:after {
	background-image: url("data:image/svg+xml,%3Csvg width='15' height='11' viewBox='0 0 15 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.2468 0.720215L15 5.74402L10.2468 10.7202H8.09713L11.9904 6.62498H0V4.83926H11.9904L8.09713 0.720215H10.2468Z' fill='%23CBE2FF'/%3E%3C/svg%3E");
}
.events-and-news h3 a:focus, .events-and-news .story-carousel__header h2 a:focus, .story-carousel__header .events-and-news h2 a:focus {
	outline-color: #FFFFFF;
}
.events-and-news__header h2 {
	color: #003F12;
	margin: 0 0 6px;
}
@media (min-width: 700px) {
	.events-and-news__header h2 {
		margin: 0 0 12px;
	}
}
@media (min-width: 1025px) {
	.events-and-news__header h2 {
		margin: 0 0 24px;
	}
}
.events-and-news__header span.lined-header {
	font-family: adobe-handwriting-ernie, sans-serif;
	font-size: 18px;
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 0.9;
	color: #003F12;
}
@media (min-width: 700px) {
	.events-and-news__header span.lined-header {
		font-size: 28px;
		font-size: 1.75rem;
	}
}
@media (min-width: 1025px) {
	.events-and-news__header span.lined-header {
		font-size: 36px;
		font-size: 2.25rem;
	}
}
@media (min-width: 1025px) {
	.events-and-news__header {
		margin-bottom: 76px;
	}
}
.events-and-news .decorative-lines {
	position: relative;
	display: block;
	margin-bottom: 24px;
}
.events-and-news .decorative-lines:before {
	content: "";
	position: absolute;
	left: 145px;
	bottom: 50%;
	width: 0;
	height: 2px;
	border-radius: 100em 0 0 100em;
	background-color: #003F12;
	-webkit-transform: scaleX(0);
	-ms-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transform-origin: left;
	-ms-transform-origin: left;
	transform-origin: left;
	-webkit-transition: -webkit-transform 300ms;
	transition: -webkit-transform 300ms;
	-o-transition: transform 300ms;
	transition: transform 300ms;
	transition: transform 300ms, -webkit-transform 300ms;
	z-index: 0;
}
@media (min-width: 700px) {
	.events-and-news .decorative-lines:before {
		left: 230px;
	}
}
@media (min-width: 1025px) {
	.events-and-news .decorative-lines:before {
		height: 3px;
		left: 300px;
		-webkit-transition-delay: 600ms;
		-o-transition-delay: 600ms;
		transition-delay: 600ms;
	}
}
@media (min-width: 1025px) {
	.events-and-news .decorative-lines {
		margin-bottom: 0;
	}
	.events-and-news .decorative-lines:after {
		content: "";
		position: absolute;
		top: 3px;
		right: 0;
		width: 18px;
		height: 18px;
		border: 3px solid #003F12;
		border-radius: 50%;
		background-color: #FFFFFF;
		-webkit-transition: opacity 300ms 700ms;
		-o-transition: opacity 300ms 700ms;
		transition: opacity 300ms 700ms;
		opacity: 0;
		z-index: 2;
	}
}
.events-and-news.js-active .decorative-lines:before {
	-webkit-transform: scaleX(1);
	-ms-transform: scaleX(1);
	transform: scaleX(1);
	width: calc(100vw - 47px - 132px);
}
@media (min-width: 700px) {
	.events-and-news.js-active .decorative-lines:before {
		width: calc(100% - 27px - 205px);
	}
}
@media (min-width: 1025px) {
	.events-and-news.js-active .decorative-lines:before {
		width: calc(100% - 100px - 200px);
	}
}
@media (min-width: 1025px) {
	.events-and-news.js-active .decorative-lines:after {
		opacity: 1;
	}
}
@media (min-width: 1025px) {
	.events-and-news .content-holder {
		display: -ms-grid;
		display: grid;
		gap: 24px;
		-ms-grid-columns: 1fr 24px 1fr;
		grid-template-columns: 1fr 1fr;
	}
}
.events-and-news .news-box {
	margin: 0 0 2rem;
	position: relative;
}
@media (min-width: 700px) {
	.events-and-news .news-box {
		margin: 0 0 3.75rem;
	}
}
@media (min-width: 1025px) {
	.events-and-news .news-box {
		display: -webkit-box;
		display: -webkit-flex;
		display: -moz-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-moz-box-orient: vertical;
		-moz-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-flex: 1;
		-webkit-flex: 1;
		-moz-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
		gap: 0;
		margin-bottom: 0;
	}
}
.events-and-news .news-box__news {
	position: relative;
	margin: 0 0 1.5rem;
}
@media (min-width: 700px) {
	.events-and-news .news-box__news {
		display: -ms-grid;
		display: grid;
		-ms-grid-columns: 1fr 1fr;
		grid-template-columns: 1fr 1fr;
		grid-row-gap: 20px;
	}
}
@media (min-width: 1025px) {
	.events-and-news .news-box__news {
		margin: 0 0 24px;
		display: block;
	}
}
.events-and-news .news-box__news:hover img {
	-webkit-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}
.events-and-news .news-box__image {
	position: relative;
	overflow: hidden;
	border-radius: 8px 8px 0 0;
}
@media (min-width: 700px) {
	.events-and-news .news-box__image {
		border-radius: 8px 0 0 8px;
	}
}
@media (min-width: 1025px) {
	.events-and-news .news-box__image {
		border-radius: 8px 8px 0 0;
	}
}
.events-and-news .news-box__image img {
	aspect-ratio: 280/147;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transition: all 300ms;
	-o-transition: all 300ms;
	transition: all 300ms;
}
@media (min-width: 700px) {
	.events-and-news .news-box__image {
		width: 100%;
	}
	.events-and-news .news-box__image img {
		aspect-ratio: 288/207;
	}
}
@media (min-width: 1025px) {
	.events-and-news .news-box__image img {
		aspect-ratio: 477/312;
	}
}
.events-and-news .news-box .date {
	color: #FFFFFF;
}
.events-and-news .news-box .date .cite {
	color: #A4FFBF;
	outline-color: #FFFFFF;
	margin-left: 15px;
	position: relative;
}
.events-and-news .news-box .date .cite:before {
	background-color: #A4FFBF;
}
.events-and-news .news-box .date .cite:after {
	content: "";
	display: block;
	position: absolute;
	left: -10px;
	top: 4.5px;
	width: 1px;
	height: 18px;
	background-color: #FFFFFF;
}
.events-and-news .news-box .date .cite:hover:after {
	background-color: #A4FFBF;
}
@media (min-width: 700px) {
	.events-and-news .news-box .date {
		font-size: 16px;
		font-size: 1rem;
		line-height: 1.6;
	}
}
@media (min-width: 1025px) {
	.events-and-news .news-box .date {
		font-size: 18px;
		font-size: 1.125rem;
	}
}
.events-and-news .news-box__title {
	padding: 1.5rem 1.25rem 1.5rem;
	background-color: #003F12;
	border-radius: 0 0 8px 8px;
	border-top: 3px solid #A4FFBF;
	outline-color: #FFFFFF;
}
@media (min-width: 700px) {
	.events-and-news .news-box__title {
		padding: 3rem 1.5rem 3rem;
		margin: 0;
		border-top: none;
		border-left: 3px solid #A4FFBF;
		border-radius: 0 8px 8px 0;
		display: -webkit-box;
		display: -webkit-flex;
		display: -moz-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-moz-box-orient: vertical;
		-moz-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-moz-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}
@media (min-width: 1025px) {
	.events-and-news .news-box__title {
		padding: 32px 22px 32px 32px;
		border-left: unset;
		border-top: 3px solid #A4FFBF;
		border-radius: 0 0 8px 8px;
	}
}
.events-and-news .news-box__title h3, .events-and-news .news-box__title .story-carousel__header h2, .story-carousel__header .events-and-news .news-box__title h2 {
	margin: 0;
	font-family: "acumin-pro", sans-serif;
}
.events-and-news .news-box__title .cta--link {
	color: #A4FFBF;
	line-height: 1.5;
	outline-color: #FFFFFF;
	-webkit-transition: color 0.3s ease;
	-o-transition: color 0.3s ease;
	transition: color 0.3s ease;
	margin-bottom: 8px;
	display: block;
	position: static;
}
.events-and-news .news-box__title .cta--link:before {
	content: "";
	position: absolute;
	width: 100%;
	top: 0;
	height: 100%;
	background-color: transparent;
}
.events-and-news .news-box__title .cta--link .last-word {
	position: relative;
	margin-right: 30px;
}
.events-and-news .news-box__title .cta--link .last-word:after {
	content: "";
	width: 16px;
	height: 11px;
	position: absolute;
	right: -23px;
	top: calc(50% - 4px);
	background-image: url("data:image/svg+xml,%3Csvg width='30' height='20' viewBox='0 0 30 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19.8418 0.570312L29.0313 10.1156L19.8418 19.5703H15.6858L23.2128 11.7894H0.031311V8.3965H23.2128L15.6858 0.570312H19.8418Z' fill='%23A4FFBF'/%3E%3C/svg%3E");
	background-size: cover;
}
@media (min-width: 1025px) {
	.events-and-news .news-box__title .cta--link .last-word {
		margin-right: 35px;
	}
	.events-and-news .news-box__title .cta--link .last-word:after {
		width: 29px;
		height: 19px;
		right: -35px;
		top: calc(50% - 7px);
	}
}
.events-and-news .news-box__title .cta--link:hover {
	color: #FFFFFF;
}
.events-and-news .news-box__title .cta--link:hover .last-word:after {
	background-image: url("data:image/svg+xml,%3Csvg width='30' height='20' viewBox='0 0 30 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19.8418 0.570312L29.0313 10.1156L19.8418 19.5703H15.6858L23.2128 11.7894H0.031311V8.3965H23.2128L15.6858 0.570312H19.8418Z' fill='%23FFFFFF'/%3E%3C/svg%3E");
}
.events-and-news .news-box__title .cta--link:after {
	border-top-color: #FFFFFF;
	border-right-color: #FFFFFF;
}
@media (min-width: 700px) {
	.events-and-news .news-box__title .cta--link {
		margin-bottom: 1rem;
	}
}
@media (min-width: 1025px) {
	.events-and-news .news-box__title .cta--link {
		font-size: 24px;
		font-size: 1.5rem;
		line-height: 1.3;
	}
}
@media (min-width: 700px) {
	.events-and-news .events-box .events3up__item {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-webkit-flex-direction: row;
		-moz-box-orient: horizontal;
		-moz-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		margin: 0 0 0.688rem;
	}
}
@media (min-width: 1025px) {
	.events-and-news .events-box .events3up__item {
		margin: 0 0 0.688rem;
	}
}
.events-and-news .events-box .events3up__item:last-child {
	margin: 0;
}
.events-and-news .events-box .events3up__item h3, .events-and-news .events-box .events3up__item .story-carousel__header h2, .story-carousel__header .events-and-news .events-box .events3up__item h2 {
	margin: 0 0 0.375rem;
	line-height: 1;
	font-family: "acumin-pro", sans-serif;
}
@media (min-width: 700px) {
	.events-and-news .events-box .events3up__item h3, .events-and-news .events-box .events3up__item .story-carousel__header h2, .story-carousel__header .events-and-news .events-box .events3up__item h2 {
		margin: 0 0 0.625rem;
		font-size: 18px;
		font-size: 1.125rem;
		line-height: 1.3;
	}
}
@media (min-width: 1025px) {
	.events-and-news .events-box .events3up__item h3, .events-and-news .events-box .events3up__item .story-carousel__header h2, .story-carousel__header .events-and-news .events-box .events3up__item h2 {
		font-size: 24px;
		font-size: 1.5rem;
		margin-bottom: 0.438rem;
	}
}
.events-and-news .events-box .events3up__item h3 .cta--link, .events-and-news .events-box .events3up__item .story-carousel__header h2 .cta--link, .story-carousel__header .events-and-news .events-box .events3up__item h2 .cta--link {
	margin: 0;
	letter-spacing: 0.04rem;
	color: #27003F;
}
.events-and-news .events-box .events3up__item h3 .cta--link:hover, .events-and-news .events-box .events3up__item .story-carousel__header h2 .cta--link:hover, .story-carousel__header .events-and-news .events-box .events3up__item h2 .cta--link:hover {
	color: #27003F;
}
.events-and-news .events-box .events3up__item h3 .cta--link:hover:after, .events-and-news .events-box .events3up__item .story-carousel__header h2 .cta--link:hover:after, .story-carousel__header .events-and-news .events-box .events3up__item h2 .cta--link:hover:after {
	border-top-color: #27003F;
	border-right-color: #27003F;
}
.events-and-news .events-box .events3up__item h3 .cta--link:after, .events-and-news .events-box .events3up__item .story-carousel__header h2 .cta--link:after, .story-carousel__header .events-and-news .events-box .events3up__item h2 .cta--link:after {
	border-top-color: #27003F;
	border-right-color: #27003F;
}
@media (min-width: 1025px) {
	.events-and-news .events-box .events3up__item h3 .cta--link, .events-and-news .events-box .events3up__item .story-carousel__header h2 .cta--link, .story-carousel__header .events-and-news .events-box .events3up__item h2 .cta--link {
		letter-spacing: 0;
	}
}
.events-and-news .events-box .events3up__month {
	margin: 0 0 0.3rem;
}
.events-and-news .events-box__cta {
	margin-top: 10px;
}
@media (min-width: 700px) {
	.events-and-news .events-box__cta {
		margin-top: 0;
	}
}
.events-and-news .events-box .events__list {
	margin: 0 0 1.5rem;
}
@media (min-width: 1025px) {
	.events-and-news .events-box {
		-webkit-box-flex: 1;
		-webkit-flex: 1;
		-moz-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
	}
}
.events-and-news a.cta--button {
	position: relative;
	display: inline-block;
	font-weight: 600;
	font-family: "acumin-pro", sans-serif;
	color: #FFFFFF;
	border: 1px solid #27003F;
	background-color: #27003F;
	border-radius: 8px;
	padding: 8px 40px 11px 16px;
	font-size: 14px;
	font-size: 0.875rem;
	line-height: 18px;
}
.events-and-news a.cta--button:before {
	display: none;
}
.events-and-news a.cta--button:after {
	content: "";
	display: inline-block;
	vertical-align: middle;
	position: absolute;
	bottom: 13px;
	right: 13px;
	margin: 0 0 0 3px;
	background-image: url("data:image/svg+xml,%3Csvg width='22' height='14' viewBox='0 0 22 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.0287 0L22 7.03333L15.0287 14H11.8758L17.586 8.26667H0V5.76667H17.586L11.8758 0H15.0287Z' fill='%23FFFFFF'/%3E%3C/svg%3E");
	background-size: cover;
}
.events-and-news a.cta--button:hover {
	color: #000000;
	background-color: #CBE2FF;
	border-color: #CBE2FF;
}
.events-and-news a.cta--button:hover:after {
	background-image: url("data:image/svg+xml,%3Csvg width='22' height='14' viewBox='0 0 22 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.0287 0L22 7.03333L15.0287 14H11.8758L17.586 8.26667H0V5.76667H17.586L11.8758 0H15.0287Z' fill='%23000000'/%3E%3C/svg%3E");
}
.events-and-news a.cta--button:after {
	bottom: 14px;
	width: 17px;
	height: 11px;
}
@media (min-width: 700px) {
	.events-and-news a.cta--button {
		padding: 9px 50px 11px 16px;
		font-size: 18px;
		font-size: 1.125rem;
		line-height: 23px;
	}
	.events-and-news a.cta--button:after {
		width: 19px;
		height: 12px;
	}
}
@media (min-width: 1025px) {
	.events-and-news a.cta--button {
		padding: 9px 45px 11px 16px;
		font-size: 24px;
		font-size: 1.5rem;
		line-height: 24px;
	}
	.events-and-news a.cta--button:after {
		width: 22px;
		height: 14px;
	}
}
.events-and-news .events__list .events3up__item {
	width: 100%;
}
.events-and-news .events__list .events3up__date {
	margin: unset;
}
@media (min-width: 700px) {
	.events-and-news .events__list .events3up__date {
		width: 25%;
	}
}
@media (min-width: 1025px) {
	.events-and-news .events__list .events3up__date {
		width: 38%;
		border-radius: 8px 0 0 8px;
	}
}
.events-and-news .events__list .events3up__data {
	width: unset;
	height: 100%;
	padding: 26px 16px 24px 16px;
}
@media (min-width: 700px) {
	.events-and-news .events__list .events3up__data {
		padding: 30px 40px 28px;
	}
}
@media (min-width: 1025px) {
	.events-and-news .events__list .events3up__data {
		padding: 30px 35px 30px 40px;
		border-radius: 0 8px 8px 0;
	}
}
.events-and-news .events__list .events3up__details {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-moz-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

/**
* @file
* Story Display
*
* Contains styles for Story Display object.
*/
.story-display__header {
	padding: 0 1rem;
}
@media (min-width: 700px) {
	.story-display__header {
		padding: 0 3.125rem;
	}
}
@media (min-width: 1025px) {
	.story-display__header {
		padding: 0;
	}
}
.story-display__intro {
	padding: 0 1rem;
}
@media (min-width: 700px) {
	.story-display__intro {
		padding: 0 3.125rem;
		margin: 0 0 1rem;
	}
}
@media (min-width: 1025px) {
	.story-display__intro {
		padding: 0;
		margin-bottom: 32px;
	}
}
.story-display__wrap {
	color: #FFFFFF;
	padding: 2.5rem 1.25rem 0;
	background-image: url("/_resources/images/story-sm.png");
	background-size: cover;
	background-position: center;
}
@media (min-width: 700px) {
	.story-display__wrap {
		padding: 4rem 3.125rem 0;
		background-image: url("/_resources/images/story-md.png");
	}
}
@media (min-width: 1025px) {
	.story-display__wrap {
		position: relative;
		padding: 64px 0;
		display: -webkit-box;
		display: -webkit-flex;
		display: -moz-box;
		display: -ms-flexbox;
		display: flex;
		gap: 24px;
		background: none;
	}
	.story-display__wrap:after {
		content: "";
		position: absolute;
		top: 0;
		bottom: 0;
		left: 50%;
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		transform: translateX(-50%);
		width: 100vw;
		height: 100%;
		display: block;
		background-image: url("/_resources/images/story-lg.png");
		background-color: #27003F;
		background-size: cover;
		background-repeat: no-repeat;
		margin-left: -18.55%;
		z-index: -2;
	}
}
@media (min-width: 1201px) {
	.story-display__wrap:after {
		margin-left: -145px;
	}
}
.story-display__img {
	margin: 0 0 1.5rem;
	border: 1px solid #FFFFFF;
}
.story-display__img a:before {
	display: none;
}
.story-display__img img {
	-o-object-fit: cover;
	object-fit: cover;
	aspect-ratio: 280/144;
}
@media (min-width: 700px) {
	.story-display__img {
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 40%;
		-moz-box-flex: 0;
		-ms-flex: 0 0 40%;
		flex: 0 0 40%;
		border: 3px solid #FFFFFF;
	}
}
@media (min-width: 1025px) {
	.story-display__img {
		-webkit-box-ordinal-group: 3;
		-webkit-order: 2;
		-moz-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
		-webkit-box-flex: 1;
		-webkit-flex: 1;
		-moz-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
		margin-bottom: 0;
		height: -webkit-fit-content;
		height: -moz-fit-content;
		height: fit-content;
	}
	.story-display__img img {
		aspect-ratio: 385/311;
	}
}
.story-display__img img {
	width: 100%;
}
@media (min-width: 1025px) {
	.story-display__content {
		width: 47%;
	}
}
.story-display__quote {
	line-height: 1.4;
	font-size: 18px;
	font-size: 1.125rem;
	font-weight: 600;
	padding: 0 0 1rem;
}
@media (min-width: 700px) {
	.story-display__quote {
		padding: 0 0 2.5rem;
	}
}
@media (min-width: 1025px) {
	.story-display__quote {
		padding: 0;
		font-size: 24px;
		font-size: 1.5rem;
		line-height: 1.4;
	}
}
.story-display__title {
	margin: 0 0 0.625rem;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.5;
	position: relative;
	font-weight: 600;
}
.story-display__title a {
	color: #CBE2FF;
	margin-right: 0.75rem;
}
.story-display__title a:focus {
	outline-color: #FFFFFF;
}
.story-display__title a:before {
	background-color: #CBE2FF;
}
.story-display__title a:after {
	content: "";
	position: absolute;
	right: -7px;
	bottom: 1px;
	width: 1px;
	height: 17px;
	background-color: #FFFFFF;
}
.story-display__title a:hover {
	color: #FFFFFF;
}
.story-display__title a:hover:before {
	background-color: #CBE2FF;
}
@media (min-width: 1025px) {
	.story-display__title {
		font-size: 18px;
		font-size: 1.125rem;
		line-height: 1.6;
		font-weight: 700;
	}
	.story-display__title a {
		margin-right: 1.1rem;
	}
	.story-display__title a:after {
		right: -9px;
	}
}
.story-display__subtitle {
	margin: 0 0 0.625rem;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.5;
}
.story-display__caption {
	background-color: #6E2879;
	color: #FFFFFF;
	padding: 1.5rem 1.25rem;
	font-style: italic;
	font-size: 14px;
	font-size: 0.875rem;
	line-height: 1.2;
	font-weight: 500;
}
.story-display__caption a {
	color: #CBE2FF;
}
.story-display__caption a:before {
	background-color: #CBE2FF;
}
.story-display__caption a:focus {
	outline-color: #FFFFFF;
}
.story-display__caption a:hover {
	color: #FFFFFF;
}
.story-display__caption a:hover:before {
	background-color: #FFFFFF;
}
@media (min-width: 700px) {
	.story-display__caption {
		margin: 0 auto;
		padding: 1.5rem 3.125rem;
		font-size: 16px;
		font-size: 1rem;
		line-height: 1.5;
	}
}
@media (min-width: 1025px) {
	.story-display__caption {
		background-color: unset;
		position: relative;
		padding: 1.5rem 0;
	}
	.story-display__caption:after {
		content: "";
		background-color: #6E2879;
		position: absolute;
		top: 0;
		bottom: 0;
		left: 50%;
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		transform: translateX(-50%);
		width: 100vw;
		height: 100%;
		display: block;
		margin-left: -18.55%;
		z-index: -2;
	}
}
@media (min-width: 1201px) {
	.story-display__caption:after {
		margin-left: -145px;
	}
}
@media (min-width: 300px) and (max-width: 1024px) {
	.story-display {
		width: calc(100vw - var(--scrollbar-width));
		position: relative;
		left: 50%;
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		transform: translateX(-50%);
	}
}
@media (min-width: 700px) and (max-width: 1024px) {
	.story-display__caption {
		width: calc(100vw - var(--scrollbar-width));
		position: relative;
		left: 50%;
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		transform: translateX(-50%);
	}
}

/**
* @file
* Twitter
*
* Contains styles for twitter object.
*/
.twitter h2 {
	font-size: 42px;
	font-size: 2.625rem;
	line-height: 1;
	text-transform: capitalize;
	margin-bottom: 32px;
}
@media (min-width: 1025px) {
	.twitter h2 {
		font-size: 54px;
		font-size: 3.375rem;
	}
}
.twitter .cta--twitter {
	display: block;
	color: #FFFFFF;
	background-color: #27003F;
	font-weight: 800;
	max-width: -webkit-fit-content;
	max-width: -moz-fit-content;
	max-width: fit-content;
	-webkit-transition: 300ms all ease;
	-o-transition: 300ms all ease;
	transition: 300ms all ease;
	font-family: acumin-pro-condensed, sans-serif;
	font-size: 1rem;
	line-height: 1.3;
	padding: 11px 18px;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	margin-bottom: 32px;
	border-radius: 8px;
	position: relative;
	font-size: 18px;
	font-size: 1.125rem;
	line-height: 1.3;
	text-transform: capitalize;
	font-family: "acumin-pro", sans-serif;
	padding: 14px 15px 14px 50px;
}
.twitter .cta--twitter:hover {
	background-color: #CBE2FF;
	color: #27003F;
}
.twitter .cta--twitter:focus {
	outline: 2px solid #000000;
	outline-offset: 2px;
}
@media (min-width: 700px) {
	.twitter .cta--twitter {
		font-size: 1.111rem;
		line-height: 1;
		padding: 16px 24px;
	}
}
@media (min-width: 1025px) {
	.twitter .cta--twitter {
		font-size: 2rem;
		line-height: 1;
		padding: 24px 48px;
	}
}
.twitter .cta--twitter:after {
	content: "";
	position: absolute;
	background-image: url("data:image/svg+xml,%3Csvg width='21' height='20' viewBox='0 0 21 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.60639 19.4395C14.529 19.4395 18.8635 12.1288 18.8635 5.79101C18.8635 5.58549 18.8594 5.3754 18.8512 5.16988C19.6944 4.49088 20.4221 3.64983 21 2.68627C20.2147 3.07532 19.3809 3.32941 18.5272 3.43985C19.4261 2.83983 20.0992 1.89724 20.4217 0.786799C19.576 1.34488 18.6511 1.73856 17.6868 1.95096C17.037 1.18217 16.1779 0.673143 15.2422 0.502573C14.3066 0.332003 13.3465 0.509393 12.5105 1.00732C11.6745 1.50524 11.0091 2.29597 10.6171 3.25724C10.2252 4.21851 10.1285 5.29679 10.3421 6.32537C8.62968 6.22968 6.95444 5.73435 5.42498 4.87148C3.89552 4.00862 2.54598 2.79748 1.46385 1.31659C0.91385 2.37249 0.745549 3.62196 0.993152 4.81107C1.24075 6.00018 1.88568 7.03969 2.79686 7.71835C2.1128 7.69416 1.44373 7.48908 0.844922 7.12005V7.17942C0.844309 8.28751 1.18834 9.36164 1.81852 10.2192C2.44871 11.0768 3.32616 11.6649 4.30172 11.8836C3.66805 12.0766 3.00298 12.1048 2.35799 11.9658C2.63327 12.9187 3.16888 13.7522 3.89005 14.3499C4.61122 14.9476 5.48198 15.2797 6.3808 15.2998C4.85487 16.6345 2.9699 17.3584 1.02949 17.355C0.685376 17.3544 0.341599 17.3309 0 17.2847C1.97125 18.6929 4.26434 19.4408 6.60639 19.4395Z' fill='%23F5F5F5'/%3E%3C/svg%3E");
	background-size: cover;
	width: 20px;
	height: 20px;
	left: 20px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.twitter .cta--twitter:hover:after {
	background-image: url("data:image/svg+xml,%3Csvg width='21' height='20' viewBox='0 0 21 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.60639 19.4395C14.529 19.4395 18.8635 12.1288 18.8635 5.79101C18.8635 5.58549 18.8594 5.3754 18.8512 5.16988C19.6944 4.49088 20.4221 3.64983 21 2.68627C20.2147 3.07532 19.3809 3.32941 18.5272 3.43985C19.4261 2.83983 20.0992 1.89724 20.4217 0.786799C19.576 1.34488 18.6511 1.73856 17.6868 1.95096C17.037 1.18217 16.1779 0.673143 15.2422 0.502573C14.3066 0.332003 13.3465 0.509393 12.5105 1.00732C11.6745 1.50524 11.0091 2.29597 10.6171 3.25724C10.2252 4.21851 10.1285 5.29679 10.3421 6.32537C8.62968 6.22968 6.95444 5.73435 5.42498 4.87148C3.89552 4.00862 2.54598 2.79748 1.46385 1.31659C0.91385 2.37249 0.745549 3.62196 0.993152 4.81107C1.24075 6.00018 1.88568 7.03969 2.79686 7.71835C2.1128 7.69416 1.44373 7.48908 0.844922 7.12005V7.17942C0.844309 8.28751 1.18834 9.36164 1.81852 10.2192C2.44871 11.0768 3.32616 11.6649 4.30172 11.8836C3.66805 12.0766 3.00298 12.1048 2.35799 11.9658C2.63327 12.9187 3.16888 13.7522 3.89005 14.3499C4.61122 14.9476 5.48198 15.2797 6.3808 15.2998C4.85487 16.6345 2.9699 17.3584 1.02949 17.355C0.685376 17.3544 0.341599 17.3309 0 17.2847C1.97125 18.6929 4.26434 19.4408 6.60639 19.4395Z' fill='%2327003F'/%3E%3C/svg%3E");
}
@media (min-width: 700px) {
	.twitter .cta--twitter {
		padding: 13px 16px 11px 51px;
	}
}
@media (min-width: 1025px) {
	.twitter .cta--twitter {
		font-size: 24px;
		font-size: 1.5rem;
		line-height: 1.3;
	}
}
.twitter__item {
	padding: 20px;
	border: 3px solid #27003F;
	border-radius: 8px;
	margin: 0 0 16px;
}
.twitter__item a {
	font-weight: 600;
	color: #27003F;
	word-break: break-all;
	background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, #27003F), color-stop(50%, #27003F));
	background-image: -o-linear-gradient(left, #27003F 50%, #27003F 50%);
	background-image: linear-gradient(to right, #27003F 50%, #27003F 50%);
	background-position: left 89%;
	background-size: 100% 1px;
	background-repeat: repeat-x;
}
.twitter__item a::before {
	content: none;
}
.twitter__item a:hover {
	color: #046A38;
	background-position: left 100%;
	background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, #046A38), color-stop(50%, #046A38));
	background-image: -o-linear-gradient(left, #046A38 50%, #046A38 50%);
	background-image: linear-gradient(to right, #046A38 50%, #046A38 50%);
}
.twitter__body {
	position: relative;
	height: 100%;
	padding-bottom: 40px;
}
@media (min-width: 700px) {
	.twitter__body {
		padding-bottom: 48px;
	}
}
@media (min-width: 1025px) {
	.twitter__body {
		padding-bottom: 55px;
	}
}
.twitter__time {
	position: absolute;
	bottom: 0;
	left: 0;
}
.twitter .twitter__item.scroll-animate {
	opacity: 0;
	-webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
	transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
	-o-transition: transform 0.3s ease, opacity 0.3s ease;
	transition: transform 0.3s ease, opacity 0.3s ease;
	transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
	-webkit-transform: translateY(1.875rem);
	-ms-transform: translateY(1.875rem);
	transform: translateY(1.875rem);
}
.twitter .twitter__item.scroll-animate.js-active {
	opacity: 1;
	-webkit-transform: translateY(0rem);
	-ms-transform: translateY(0rem);
	transform: translateY(0rem);
}
@media (min-width: 1025px) {
	.twitter .twitter__item.scroll-animate .scroll-animate + .scroll-animate {
		-webkit-transition-delay: 0.3s;
		-o-transition-delay: 0.3s;
		transition-delay: 0.3s;
	}
}
.twitter .scroll-animate.js-active + .scroll-animate.js-active {
	-webkit-transition-delay: 100ms;
	-o-transition-delay: 100ms;
	transition-delay: 100ms;
}
.twitter .scroll-animate.js-active + .scroll-animate.js-active + .scroll-animate.js-active {
	-webkit-transition-delay: 200ms;
	-o-transition-delay: 200ms;
	transition-delay: 200ms;
}

.twitter__item:last-child,
.twitter__item:nth-child(4) {
	display: none;
}

/**
* @file
* Video
*
* Contains styles for inline video objects.
*/
.vid-inline {
	border: 2px solid #046A38;
	border-radius: 8px;
	position: relative;
	margin: 3rem 0;
}
@media (min-width: 1025px) {
	.vid-inline {
		border: 3px solid #046A38;
		margin: 5rem 0;
	}
}
.vid-inline:after {
	content: "";
	position: absolute;
	left: -3px;
	bottom: -13px;
	width: 10px;
	height: 10px;
	border: 2px solid #046A38;
	border-radius: 100%;
	z-index: 2;
	background-color: #FFFFFF;
}
@media (min-width: 700px) {
	.vid-inline:after {
		left: -3px;
		bottom: -23px;
		width: 15px;
		height: 15px;
	}
}
@media (min-width: 1025px) {
	.vid-inline:after {
		border: 3px solid #046A38;
		width: 18px;
		height: 18px;
		bottom: -27px;
	}
}
.vid-inline__container {
	position: relative;
}
.vid-inline__container:focus {
	outline-offset: -4px;
}
.vid-inline__container:before, .vid-inline__container:after {
	content: "";
	display: block;
	position: absolute;
}
.vid-inline__cover {
	position: relative;
	z-index: 2;
	cursor: pointer;
	opacity: 1;
	aspect-ratio: 772/430;
	-webkit-transition: 0.3s ease;
	-o-transition: 0.3s ease;
	transition: 0.3s ease;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}
.vid-inline__cover:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: -webkit-gradient(linear, left bottom, left top, color-stop(15.4%, rgba(0, 0, 0, 0.65)), color-stop(47.55%, rgba(0, 0, 0, 0)));
	background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.65) 15.4%, rgba(0, 0, 0, 0) 47.55%);
	background: linear-gradient(360deg, rgba(0, 0, 0, 0.65) 15.4%, rgba(0, 0, 0, 0) 47.55%);
	z-index: 0;
	border-radius: 8px;
}
.vid-inline__cover img {
	-o-object-fit: cover;
	object-fit: cover;
	width: 100%;
	position: absolute;
	aspect-ratio: 772/430;
	z-index: -1;
	border-radius: 5px;
}
.vid-inline__cover.js-loading:hover:before {
	opacity: 1;
}
.vid-inline__cover.js-loading:before {
	margin: 0;
	height: 60px;
	width: 60px;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns:svg='http://www.w3.org/2000/svg' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.0' width='60px' height='60px' viewBox='0 0 128 128' xml:space='preserve'%3e%3cg%3e%3cpath d='M78.75 16.18V1.56a64.1 64.1 0 0 1 47.7 47.7H111.8a49.98 49.98 0 0 0-33.07-33.08zM16.43 49.25H1.8a64.1 64.1 0 0 1 47.7-47.7V16.2a49.98 49.98 0 0 0-33.07 33.07zm33.07 62.32v14.62A64.1 64.1 0 0 1 1.8 78.5h14.63a49.98 49.98 0 0 0 33.07 33.07zm62.32-33.07h14.62a64.1 64.1 0 0 1-47.7 47.7v-14.63a49.98 49.98 0 0 0 33.08-33.07z' fill='%23000000' fill-opacity='1'/%3e%3canimateTransform attributeName='transform' type='rotate' from='0 64 64' to='-90 64 64' dur='800ms' repeatCount='indefinite'%3e%3c/animateTransform%3e%3c/g%3e%3c/svg%3e");
	background-position: center;
	background-size: contain;
	border: 0;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 9;
}
.vid-inline__cover.js-loading:after {
	display: none;
}
.vid-inline__cover.js-hide {
	display: block;
	z-index: 1;
	opacity: 0;
}
.vid-inline__cover .play-btn {
	color: #046A38;
	position: absolute;
	left: -2px;
	bottom: -9px;
	width: 47px;
	height: 46px;
	clip: unset;
	border-top: 2px solid #046A38;
	border-right: 2px solid #046A38;
	border-bottom: 2px solid #046A38;
	border-left: 3px solid white;
	border-radius: 0 8px 8px 0;
	background: #FFFFFF;
	-webkit-transition: background-color 0.3s ease;
	-o-transition: background-color 0.3s ease;
	transition: background-color 0.3s ease;
}
@media screen and (min-width: 700px) {
	.vid-inline__cover .play-btn {
		bottom: -15px;
		left: -2px;
		width: 96px;
		height: 98px;
	}
}
@media screen and (min-width: 1025px) {
	.vid-inline__cover .play-btn {
		bottom: -15px;
		left: -4px;
		width: 125px;
		height: 120px;
		border-top: 3px solid #046A38;
		border-right: 3px solid #046A38;
		border-bottom: 3px solid #046A38;
	}
}
.vid-inline__cover .play-btn svg {
	position: absolute;
	left: 14px;
	bottom: 12px;
	width: 16px;
	height: 17px;
	z-index: 3;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
@media screen and (min-width: 700px) {
	.vid-inline__cover .play-btn svg {
		left: 30px;
		bottom: 25px;
		width: 36px;
		height: 40px;
	}
}
@media screen and (min-width: 1025px) {
	.vid-inline__cover .play-btn svg {
		left: 35px;
		bottom: 28px;
		width: 55px;
		height: 61px;
	}
}
.vid-inline__cover:hover .play-btn {
	background-color: #046A38;
	color: #FFFFFF;
}
.vid-inline.js-show {
	border: 0;
}
.vid-inline.js-show .vid-inline__embed {
	z-index: 3;
	opacity: 1;
}
.vid-inline.js-show .vid-inline__embed iframe {
	visibility: visible;
}
.vid-inline.js-show:after {
	opacity: 0;
}
.vid-inline__embed {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	height: 100%;
	width: 100%;
	opacity: 0;
	-webkit-transition: 0.5s ease;
	-o-transition: 0.5s ease;
	transition: 0.5s ease;
}
.vid-inline iframe {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	border: 0;
	visibility: hidden;
}
.vid-inline__caption {
	left: 0;
	bottom: 0;
	color: #FFFFFF;
	z-index: 2;
	font-size: 14px;
	font-size: 0.875rem;
	line-height: 1.2;
	margin: auto 0 14px 60px;
}
@media (min-width: 700px) {
	.vid-inline__caption {
		padding: 0 16px 25px 115px;
		margin: auto 0 0;
	}
}
@media (min-width: 1025px) {
	.vid-inline__caption {
		padding: 0 16px 12px 105px;
		margin: auto 0 14px 60px;
	}
}

/**
* @file
* Pager
*
* Contains styles for the pager on listing pages.
*/
.pager__list {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	list-style: none;
}
.pager__list .pager__item {
	margin: 0 5px;
}
.pager__list .icon-arrow-left,
.pager__list .icon-arrow-right {
	display: block;
	position: relative;
	width: 40px;
	top: 50%;
}
.pager__list .icon-arrow-left:after,
.pager__list .icon-arrow-right:after {
	position: absolute;
	top: 50%;
	left: 50%;
	content: "";
	height: 0.75rem;
	width: 0.75rem;
	background: #000000;
	border: 0;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

/**
* @file
* Carousel
*
* Contains styles for carousel object.
*/
.carousel {
	background-image: url("/_resources/images/banner-image.jpg");
	margin: 0 -1rem;
	padding: 2rem 1.25rem;
	color: #FFFFFF;
}
.carousel a {
	color: #A4FFBF;
}
.carousel a:before {
	background-color: #A4FFBF;
}
.carousel a:focus {
	outline-color: #FFFFFF;
}
.carousel a:hover {
	color: #FFFFFF;
}
.carousel a:hover:before {
	background-color: #FFFFFF;
}
@media (min-width: 700px) {
	.carousel {
		margin: 0 -3.125rem;
		padding: 5rem 3.125rem;
	}
}
@media (min-width: 1025px) {
	.carousel {
		margin: 0;
		padding: 5rem 0;
		background-image: none;
		position: relative;
	}
	.carousel:before {
		content: "";
		position: absolute;
		top: 0;
		bottom: 0;
		left: 50%;
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		transform: translateX(-50%);
		width: 100vw;
		height: 100%;
		display: block;
		background-image: url("/_resources/images/banner-image.jpg");
		background-size: cover;
		background-color: #27003F;
		margin-left: -18.55%;
		z-index: -2;
	}
}
@media (min-width: 1025px) and (min-width: 1201px) {
	.carousel::before {
		margin-left: -145px;
	}
}
.carousel__header h2 {
	margin: 0;
}
.carousel__intro {
	margin: 1rem 0;
	line-height: 1.52;
}
@media (min-width: 700px) {
	.carousel__intro {
		margin: 1rem 0 2rem;
	}
}
.carousel__img a {
	display: block;
}
.carousel__img a:focus {
	outline-color: #FFFFFF;
	outline-offset: -6px;
}
.carousel__img a:before {
	display: none;
}
.carousel__img img {
	aspect-ratio: 280/158;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}
.carousel__caption {
	width: 100%;
	bottom: 0;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.52;
	padding: 1.25rem;
}
@media (min-width: 700px) {
	.carousel__caption {
		padding: 1.5rem;
		line-height: 1.6;
	}
}
@media (min-width: 1025px) {
	.carousel__caption {
		font-size: 18px;
		font-size: 1.125rem;
	}
}
.carousel .slick-track {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
}
.carousel .slick-slide {
	display: block;
	height: auto;
	border: 1px solid #FFFFFF;
}
.carousel .slick-slide img {
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
	border-bottom: 1px solid #FFFFFF;
}
@media (min-width: 700px) {
	.carousel .slick-slide {
		width: 100% !important;
		border: 3px solid #FFFFFF;
	}
	.carousel .slick-slide img {
		border-bottom: 3px solid #FFFFFF;
	}
}
.carousel__buttons {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-moz-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	position: relative;
	margin-top: 1.5rem;
}
@media (min-width: 700px) {
	.carousel__buttons {
		margin-top: 2.313rem;
	}
}
@media (min-width: 1025px) {
	.carousel__buttons {
		margin-top: 1.688rem;
		margin-right: 1.313rem;
	}
}
.carousel__buttons:before {
	content: "";
	position: absolute;
	top: -1.5rem;
	left: calc(50% - 1px);
	height: 2.2rem;
	width: 2px;
	background-color: #FFFFFF;
}
@media (min-width: 700px) {
	.carousel__buttons:before {
		width: 3px;
		top: -2.5rem;
		left: calc(50% - 2px);
		height: 3.75rem;
	}
}
@media (min-width: 1025px) {
	.carousel__buttons:before {
		top: -1.7rem;
		height: 3.125rem;
	}
}
.carousel__buttons:after {
	content: "";
	position: absolute;
	width: 10px;
	height: 10px;
	top: 11px;
	left: calc(50% - 6.5px);
	border: 2px solid #FFFFFF;
	background-color: #003F12;
	border-radius: 100%;
	z-index: 5;
}
@media (min-width: 700px) {
	.carousel__buttons:after {
		width: 15px;
		height: 15px;
		top: 10px;
		left: calc(50% - 9.5px);
	}
}
@media (min-width: 1025px) {
	.carousel__buttons:after {
		border: 3px solid #FFFFFF;
		top: 8px;
		left: calc(50% - 11.5px);
		width: 18px;
		height: 18px;
	}
}
.carousel__buttons button.slick-arrow {
	position: relative;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	overflow: visible;
}
.carousel .prevArrow:before {
	content: "";
	position: absolute;
	width: calc(50vw - 67px);
	height: 2px;
	background-color: #FFFFFF;
	border-radius: 4px;
	color: white;
	top: 17px;
	z-index: 0;
	left: 52px;
}
@media (min-width: 700px) {
	.carousel .prevArrow:before {
		width: calc(50vw - 110px);
		height: 3px;
		top: 20px;
	}
}
@media (min-width: 1025px) {
	.carousel .prevArrow:before {
		width: calc((100vw - 185px) / 2 - 160px);
		top: 22px;
		left: 65px;
	}
}
@media (min-width: 1201px) {
	.carousel .prevArrow:before {
		width: calc((100vw - 280px) / 2 - 160px);
		left: 65px;
	}
}
@media (min-width: 1800px) {
	.carousel .prevArrow:before {
		width: 600px;
	}
}
.carousel .nextArrow:before {
	content: "";
	position: absolute;
	width: calc(50vw - 67px);
	height: 2px;
	background-color: #FFFFFF;
	border-radius: 4px;
	top: 18px;
	z-index: 0;
	right: 54px;
}
@media (min-width: 700px) {
	.carousel .nextArrow:before {
		width: calc(50vw - 110px);
		height: 3px;
		top: 20px;
		right: 63px;
	}
}
@media (min-width: 1025px) {
	.carousel .nextArrow:before {
		width: calc((100vw - 185px) / 2 - 160px);
		top: 22px;
		right: 65px;
	}
}
@media (min-width: 1201px) {
	.carousel .nextArrow:before {
		width: calc((100vw - 280px) / 2 - 160px);
		right: 65px;
	}
}
@media (min-width: 1800px) {
	.carousel .nextArrow:before {
		width: 600px;
	}
}

/**
* @file
* Section navigation
*
* Contains styles for the Section navigation component
*/
.section-nav {
	z-index: 1;
}
@media (min-width: 1025px) {
	.section-nav {
		margin-top: 1.5rem;
		margin-bottom: 4rem;
		max-height: calc(100vh - 5rem);
		top: 5rem;
		overflow-y: auto;
		padding: 30px 20px 30px 49px;
		background-color: rgba(255, 255, 255, 0.8);
		border-radius: 0 8px 8px 0;
	}
}
@media (min-width: 1201px) {
	.section-nav {
		padding: 30px 20px 30px 80px;
	}
}
@media (min-width: 1801px) {
	.section-nav {
		border-radius: 8px;
	}
}
.section-nav .current-page {
	font-family: acumin-pro-condensed, sans-serif;
	font-weight: 800;
	width: 100%;
	display: inline-block;
	position: relative;
	text-transform: uppercase;
	font-size: 1.4rem;
}
@media (min-width: 1025px) {
	.section-nav .current-page {
		margin: 0;
		color: #27003F;
		font-size: 24px;
		font-size: 1.5rem;
		line-height: 1.1;
		padding-bottom: 1.3rem;
	}
}
.section-nav--mobile + .hero:after {
	top: -126px;
	height: calc(100% + 65px + 61px);
}
@media (min-width: 1025px) {
	.section-nav--mobile {
		display: none;
	}
}
.section-nav--desktop {
	display: none;
}
@media (min-width: 1025px) {
	.section-nav--desktop {
		display: block;
	}
}
.section-nav__toggle {
	position: relative;
	width: 100%;
	padding: 1.125rem 1rem;
	background: #003F12;
	border: none;
	border-top: 1px solid #FFFFFF;
	border-bottom: 1px solid #FFFFFF;
	text-align: left;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.3;
	font-weight: 800;
	color: #FFFFFF;
	font-family: acumin-pro-condensed, sans-serif;
	z-index: 2;
}
.section-nav__toggle.section-nav__toggle {
	outline-offset: -6px;
}
.section-nav__toggle.section-nav__toggle.opened {
	border-bottom: none;
}
@media (min-width: 700px) {
	.section-nav__toggle {
		padding: 1.625rem 0 1.625rem 3.125rem;
		font-size: 20px;
		font-size: 1.25rem;
	}
}
@media (min-width: 1025px) {
	.section-nav__toggle {
		display: none;
	}
}
.section-nav__toggle .icon {
	position: relative;
	text-transform: uppercase;
}
.section-nav__toggle .icon:before, .section-nav__toggle .icon:after {
	content: "";
	position: absolute;
	top: 50%;
	right: -25px;
	margin-left: auto;
	margin-right: auto;
	display: block;
	width: 12px;
	border-bottom: 2px solid;
	height: 0px;
	-webkit-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
.section-nav__toggle .icon:after {
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}
.section-nav__toggle.opened .icon:after {
	-webkit-transform: rotate(130deg);
	-ms-transform: rotate(130deg);
	transform: rotate(130deg);
}
.section-nav__toggle.opened .icon:before {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.section-nav__list {
	display: none;
	margin: 0;
	padding: 0.563rem 1rem 1rem;
	background-color: #003F12;
	width: 100%;
	z-index: 2;
	border-bottom: 1px solid #FFFFFF;
	position: relative;
}
@media (min-width: 700px) {
	.section-nav__list {
		padding: 0.5rem 3.125rem 1rem;
	}
}
@media (min-width: 1025px) {
	.section-nav__list {
		display: block !important;
		padding: 0;
		border-bottom: 0;
		border-left: 1px solid;
		background-color: transparent;
	}
}
.section-nav__list li {
	margin: 0;
	padding: 0;
	list-style: none;
	font-weight: 600;
}
.section-nav__list li:before {
	display: none;
}
.section-nav__list li a:before {
	display: none;
}
@media (min-width: 1025px) {
	.section-nav__list li {
		padding: 0 0 0.75rem 1.875rem;
		font-size: 16px;
		font-size: 1rem;
		line-height: 1.3;
	}
	.section-nav__list li:last-of-type {
		padding-bottom: 0;
	}
}
.section-nav__list a {
	display: inline-block;
	width: 100%;
	font-weight: 400;
	color: #FFFFFF;
	outline-color: #FFFFFF;
}
@media (min-width: 1025px) {
	.section-nav__list a {
		margin: 0;
		color: #000000;
		line-height: 1.1;
	}
	.section-nav__list a:focus {
		outline-color: #000000;
		outline-offset: 1px;
	}
}
.section-nav__list a:hover {
	color: #A4FFBF;
	background-image: none;
}
@media (min-width: 1025px) {
	.section-nav__list a:hover {
		color: #046A38;
		text-decoration: underline;
	}
}
.section-nav__sub-list {
	margin: 0;
	padding: 0;
}
@media (min-width: 700px) {
	.section-nav__sub-list {
		font-size: 15px;
		font-size: 0.9375rem;
		line-height: 1.3;
		padding-left: 1.875rem;
		border-left: 1px solid #FFFFFF;
	}
}
.section-nav__sub-list li {
	margin: 0 0 0.75rem;
}

.hero-home.has-image {
	margin-top: -65px;
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	-moz-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-moz-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	background-color: #000000;
}
.hero-home.has-image:before {
	content: "";
	background: -webkit-gradient(linear, left bottom, left top, color-stop(6.57%, rgba(0, 0, 0, 0.5)), color-stop(87.2%, rgba(0, 0, 0, 0)));
	background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5) 6.57%, rgba(0, 0, 0, 0) 87.2%);
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 6.57%, rgba(0, 0, 0, 0) 87.2%);
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}
@media (min-width: 1025px) {
	.hero-home.has-image:before {
		max-height: 362px;
	}
}
.hero-home.has-image:after {
	content: "";
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0.21%, rgba(0, 0, 0, 0.7)), color-stop(99.79%, rgba(0, 0, 0, 0)));
	background: -o-linear-gradient(top, rgba(0, 0, 0, 0.7) 0.21%, rgba(0, 0, 0, 0) 99.79%);
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0.21%, rgba(0, 0, 0, 0) 99.79%);
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	height: 65px;
}
@media (min-width: 700px) {
	.hero-home.has-image:after {
		height: 86px;
	}
}
@media (min-width: 1025px) {
	.hero-home.has-image:after {
		height: 411px;
	}
}

.hero-home.has-image button {
	outline-color: #FFFFFF;
}
@media (min-width: 700px) {
	.hero-home.has-image {
		margin-top: -86px;
		min-height: 50vh;
		padding-top: 35vw;
		margin-bottom: 0;
	}
}
@media (min-width: 1025px) {
	.hero-home.has-image {
		margin-bottom: 0 !important;
		margin-top: 0;

	}
}
.hero-home.has-image .video-controls .is-paused .play-icon {
	display: block;
}
.hero-home.has-image .is-paused > svg:first-child {
	display: none;
}
.hero-home.has-image .video-controls {
	position: absolute;
	right: 3px;
	bottom: 65px;
	z-index: 100;
	opacity: 0;
	width: 30px;
	height: 30px;
}
@media (min-width: 700px) {
	.hero-home.has-image .video-controls {
		right: 31px;
		bottom: 75px;
	}
}
@media (min-width: 1025px) {
	.hero-home.has-image .video-controls {
		bottom: 100px;
		right: 135px;
		width: 55px;
		height: 55px;
	}
}
.hero-home.has-image .video-controls button {
	border: 0;
	background-color: transparent;
	padding: 0;
	width: 100%;
	height: 100%;
}
.hero-home.has-image .video-controls svg {
	width: 30px;
	height: 30px;
	position: absolute;
	top: 0;
	left: 0;
}
@media (min-width: 1025px) {
	.hero-home.has-image .video-controls svg {
		width: 55px;
		height: 55px;
	}
}
.hero-home.has-image.loaded .video-controls {
	opacity: 1;
	-webkit-transition: all 300ms 600ms;
	-o-transition: all 300ms 600ms;
	transition: all 300ms 600ms;
}
.hero-home.has-image.loaded video,
.hero-home.has-image.loaded picture {
	opacity: 1;
	-webkit-transition: all 300ms;
	-o-transition: all 300ms;
	transition: all 300ms;
}
.hero-home.has-image.loaded h1 {
	opacity: 1;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition: all 300ms 300ms;
	-o-transition: all 300ms 300ms;
	transition: all 300ms 300ms;
}
.hero-home.has-image.loaded .italic-text {
	opacity: 1;
	-webkit-transition: all 300ms 300ms;
	-o-transition: all 300ms 300ms;
	transition: all 300ms 300ms;
	-webkit-transform: translateY(0) translateX(-50%);
	-ms-transform: translateY(0) translateX(-50%);
	transform: translateY(0) translateX(-50%);
}
.hero-home.has-image.loaded video ~ picture {
	display: none;
}
.hero-home.has-image.loaded .italic-text:before {
	-webkit-transform: scaleX(1);
	-ms-transform: scaleX(1);
	transform: scaleX(1);
	-webkit-transition: all 100ms 1400ms;
	-o-transition: all 100ms 1400ms;
	transition: all 100ms 1400ms;
}
.hero-home.has-image.loaded .italic-text:after {
	-webkit-transform: scaleY(1);
	-ms-transform: scaleY(1);
	transform: scaleY(1);
	-webkit-transition: all 300ms 1500ms;
	-o-transition: all 300ms 1500ms;
	transition: all 300ms 1500ms;
}
.hero-home.has-image.loaded .italic-text .circles:after {
	opacity: 1;
	-webkit-transition: all 300ms 600ms;
	-o-transition: all 300ms 600ms;
	transition: all 300ms 600ms;
}
.hero-home.has-image.loaded .italic-text .circles:before {
	opacity: 1;
	-webkit-transition: all 300ms 2000ms;
	-o-transition: all 300ms 2000ms;
	transition: all 300ms 2000ms;
}
.hero-home.has-image.loaded .decorative-lines:after {
	-webkit-transform: translateY(-100%) scaleY(1);
	-ms-transform: translateY(-100%) scaleY(1);
	transform: translateY(-100%) scaleY(1);
	-webkit-transition: all 100ms 900ms;
	-o-transition: all 100ms 900ms;
	transition: all 100ms 900ms;
}
.hero-home.has-image.loaded .decorative-lines:before {
	-webkit-transform: translateX(100%) scaleX(1);
	-ms-transform: translateX(100%) scaleX(1);
	transform: translateX(100%) scaleX(1);
	-webkit-transition: all 300ms 1100ms;
	-o-transition: all 300ms 1100ms;
	transition: all 300ms 1100ms;
}
.hero-home.has-image .homepage-hero__header {
	max-width: 1800px;
	position: relative;
	margin: 0 auto;
	width: 100%;
	z-index: 3;

}
.hero-home.has-image video {
	position: absolute;
	z-index: 1;
	width: 100%;
	height: 100%;
	opacity: 0;
	-o-object-fit: cover;
	object-fit: cover;
}
.hero-home.has-image picture {
	width: 100%;
	min-height: calc(50vh - 46px);
	position: absolute;
	max-width: calc(100vw - var(--scrollbar-width));
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	opacity: 0;
}
@media (min-width: 700px) {
	.hero-home.has-image picture {
		min-height: 100%;
	}
}
@media (min-width: 1025px) {
	.hero-home.has-image picture {
		min-height: 100%;
		height: 100%;
	}
}
.hero-home.has-image h1 {
	opacity: 0;
	-webkit-transform: translateY(50px);
	-ms-transform: translateY(50px);
	transform: translateY(50px);
}
@media (min-width: 700px) {
	.hero-home.has-image h1 {
		font-size: 64px;
		font-size: 4rem;
	}
}
@media (min-width: 1025px) {
	.hero-home.has-image h1 {
		font-size: 96px;
		font-size: 6rem;
		padding: 0 165px 55px 165px;
	}
}
.hero-home.has-image h1 span {
	font-size: 24px;
	font-size: 1.5rem;
	display: block;
}
@media (min-width: 700px) {
	.hero-home.has-image h1 span {
		font-size: 32px;
		font-size: 2rem;
	}
}
@media (min-width: 1025px) {
	.hero-home.has-image h1 span {
		font-size: 64px;
		font-size: 4rem;
	}
}
.hero-home.has-image .italic-text {
	opacity: 0;
	-webkit-transform: translateY(50px);
	-ms-transform: translateY(50px);
	transform: translateY(50px);
	color: white;
	font-family: adobe-handwriting-ernie, sans-serif;
	font-size: 18px;
	font-size: 1.125rem;
	position: relative;
	z-index: 3;
	padding: 0 45px 30px;
	width: 100%;
	left: 50%;
}
@media (min-width: 700px) {
	.hero-home.has-image .italic-text {
		font-size: 28px;
		font-size: 1.75rem;
		padding: 0 110px 45px;
	}
}
@media (min-width: 1025px) {
	.hero-home.has-image .italic-text {
		font-size: 54px;
		font-size: 3.375rem;
		padding: 0 155px 10px 145px;
		max-width: 1800px;
		-webkit-transform: translateX(-50%) translateY(50px);
		-ms-transform: translateX(-50%) translateY(50px);
		transform: translateX(-50%) translateY(50px);
		left: 50%;
	}
}
.hero-home.has-image .italic-text div {
	position: relative;
	display: inline-block;
	min-height: 1em;
}
.hero-home.has-image .italic-text div span {
	padding: 0 10px;
}
@media (min-width: 1025px) {
	.hero-home.has-image .italic-text div span {
		padding: 0 20px;
	}
}
.hero-home.has-image .italic-text div::before {
	content: "";
	position: absolute;
	height: 2px;
	top: 8px;
	right: 0;
	background-color: white;
	border-radius: 100em 0 0 100em;
	width: calc(100vw - 100% - 60px);
	-webkit-transform: translateX(100%) scaleX(0);
	-ms-transform: translateX(100%) scaleX(0);
	transform: translateX(100%) scaleX(0);
	-webkit-transform-origin: right;
	-ms-transform-origin: right;
	transform-origin: right;
}
@media (min-width: 700px) {
	.hero-home.has-image .italic-text div::before {
		width: calc(100vw - 100% - 155px);
	}
}
@media (min-width: 1025px) {
	.hero-home.has-image .italic-text div::before {
		height: 3px;
		width: calc(100vw - 100% - 305px - var(--scrollbar-width));
	}
}
@media (min-width: 1801px) {
	.hero-home.has-image .italic-text div::before {
		width: calc(1800px - 100% - 305px);
	}
}
.hero-home.has-image .italic-text div:after {
	content: "";
	position: absolute;
	left: calc(100vw - 62px);
	-webkit-transform: translateY(-100%) scaleY(0);
	-ms-transform: translateY(-100%) scaleY(0);
	transform: translateY(-100%) scaleY(0);
	-webkit-transform-origin: top;
	-ms-transform-origin: top;
	transform-origin: top;
	top: 10px;
	height: 50px;
	background-color: #FFFFFF;
	border-radius: 0 100em 100em 0;
	width: 2px;
}
@media (min-width: 700px) {
	.hero-home.has-image .italic-text div:after {
		left: calc(100vw - 157px);
	}
}
@media (min-width: 1025px) {
	.hero-home.has-image .italic-text div:after {
		left: calc(100vw - 307px - var(--scrollbar-width));
		width: 3px;
		height: 55px;
	}
}
@media (min-width: 1801px) {
	.hero-home.has-image .italic-text div:after {
		left: 1493px;
	}
}
.hero-home.has-image .italic-text .circles {
	position: absolute;
	left: 0;
	width: 100%;
}
.hero-home.has-image .italic-text .circles:before {
	content: "";
	opacity: 0;
	width: 10px;
	height: 10px;
	background-color: #046A38;
	border: 2px solid #FFFFFF;
	left: 9px;
	top: 61px;
	border-radius: 100em;
	position: absolute;
}
@media (min-width: 700px) {
	.hero-home.has-image .italic-text .circles:before {
		left: 42px;
		top: 86px;
		width: 15px;
		height: 15px;
	}
}
@media (min-width: 1025px) {
	.hero-home.has-image .italic-text .circles:before {
		left: 79px;
		width: 18px;
		height: 18px;
		top: 156px;
		border: 3px solid #FFFFFF;
	}
}
.hero-home.has-image .italic-text .circles:after {
	content: "";
	width: 10px;
	height: 10px;
	background-color: #046A38;
	border: 2px solid #FFFFFF;
	right: 9px;
	top: -54px;
	border-radius: 100em;
	position: absolute;
	opacity: 0;
}
@media (min-width: 700px) {
	.hero-home.has-image .italic-text .circles:after {
		right: 37px;
		width: 15px;
		height: 15px;
		top: -57px;
	}
}
@media (min-width: 1025px) {
	.hero-home.has-image .italic-text .circles:after {
		right: 153px;
		width: 18px;
		height: 18px;
		top: -68px;
		right: 149px;
		border: 3px solid #FFFFFF;
	}
}
.hero-home.has-image .italic-text::before {
	content: "";
	position: absolute;
	left: 15px;
	height: 2px;
	top: 8px;
	-webkit-transform: scaleX(0);
	-ms-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transform-origin: right;
	-ms-transform-origin: right;
	transform-origin: right;
	background-color: #FFFFFF;
	border-radius: 0 100em 100em 0;
	width: 33px;
}
@media (min-width: 700px) {
	.hero-home.has-image .italic-text::before {
		left: 50px;
		width: 57px;
	}
}
@media (min-width: 1025px) {
	.hero-home.has-image .italic-text::before {
		left: 90px;
		height: 3px;
	}
}
.hero-home.has-image .italic-text:after {
	content: "";
	position: absolute;
	left: 15px;
	height: 55px;
	top: 8px;
	-webkit-transform: scaleY(0);
	-ms-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transform-origin: top;
	-ms-transform-origin: top;
	transform-origin: top;
	background-color: #FFFFFF;
	border-radius: 0 100em 100em 0;
	width: 2px;
}
@media (min-width: 700px) {
	.hero-home.has-image .italic-text:after {
		left: 50px;
		height: 80px;
	}
}
@media (min-width: 1025px) {
	.hero-home.has-image .italic-text:after {
		left: 90px;
		height: 150px;
		width: 3px;
	}
}
.hero-home.has-image .video-controls .play-icon {
	width: 30px;
	height: 30px;
	border-radius: 100em;
	border: 2px solid #FFFFFF;
	background-color: #27003F;
	position: absolute;
	top: 0;
	left: 0;
	display: none;
	color: #FFFFFF;
}
@media (min-width: 1025px) {
	.hero-home.has-image .video-controls .play-icon {
		width: 55px;
		height: 55px;
		border: 3px solid #FFFFFF;
	}
}
.hero-home.has-image .video-controls .play-icon svg {
	width: 10px;
	height: 10px;
	position: absolute;
	left: 53%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
@media (min-width: 1025px) {
	.hero-home.has-image .video-controls .play-icon svg {
		width: 20px;
		height: 20px;
	}
}

.homepage-hero__ctas {
	color: #FFFFFF;
	background-color: #003F12;
	background-image: url(/_resources/images/hero-cta-sm.png);
	background-size: cover;
}
@media (min-width: 700px) {
	.homepage-hero__ctas {
		background-image: url(/_resources/images/hero-cta-lg.png);
	}
}
.homepage-hero__ctas__inner {
	padding: 40px 20px 80px;
}
@media (min-width: 700px) {
	.homepage-hero__ctas__inner {
		display: -webkit-box;
		display: -webkit-flex;
		display: -moz-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-moz-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-box-align: end;
		-webkit-align-items: flex-end;
		-moz-box-align: end;
		-ms-flex-align: end;
		align-items: flex-end;
		gap: 50px;
	}
}
@media (min-width: 1025px) {
	.homepage-hero__ctas__inner {
		max-width: 1800px;
		margin: 0 auto;
	}
}
@media (min-width: 700px) {
	.homepage-hero__ctas__inner {
		padding: 70px 50px 135px;
	}
}
@media (min-width: 1025px) {
	.homepage-hero__ctas__inner {
		padding: 140px 80px 130px;
	}
}
.homepage-hero__ctas h2 {
	color: white;
	margin-top: 0;
}
@media (min-width: 700px) {
	.homepage-hero__ctas h2 {
		margin: 0;
	}
}
@media (min-width: 1025px) {
	.homepage-hero__ctas h2 {
		font-size: 72px;
		font-size: 4.5rem;
	}
}
@media (min-width: 700px) {
	.homepage-hero__ctas h2 span {
		display: block;
	}
}
@media (min-width: 1025px) {
	.homepage-hero__ctas h2 span {
		display: inline-block;
	}
}
.homepage-hero__ctas h2 .first-text {
	font-family: "acumin-pro", sans-serif;
	font-weight: 400;
	margin-bottom: 8px;
	font-size: 16px;
	font-size: 1rem;
	display: block;
}
@media (min-width: 700px) {
	.homepage-hero__ctas h2 .first-text {
		font-size: 20px;
		font-size: 1.25rem;
	}
}
@media (min-width: 1025px) {
	.homepage-hero__ctas h2 .first-text {
		font-size: 32px;
		font-size: 2rem;
	}
}
.homepage-hero__ctas ul {
	padding: 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	margin-top: 15px;
	gap: 12px;
}
.homepage-hero__ctas li {
	padding: 0;
}
@media (min-width: 700px) {
	.homepage-hero__ctas li {
		margin: 0;
	}
}
.homepage-hero__ctas li::before {
	content: none;
}
.homepage-hero__ctas a {
	display: block;
	color: #FFFFFF;
	border-radius: 0.5rem;
	background-color: #003F12;
	font-weight: 800;
	max-width: -webkit-fit-content;
	max-width: -moz-fit-content;
	max-width: fit-content;
	-webkit-transition: 300ms all ease;
	-o-transition: 300ms all ease;
	transition: 300ms all ease;
	font-family: acumin-pro-condensed, sans-serif;
	font-size: 1rem;
	line-height: 1.3;
	padding: 11px 18px;
	border: 1px solid;
	min-width: 87px;
	text-align: center;
}
.homepage-hero__ctas a:hover {
	background-color: #A4FFBF;
	color: #003F12;
}
.homepage-hero__ctas a:focus {
	outline: 2px solid #000000;
	outline-offset: 2px;
}
@media (min-width: 700px) {
	.homepage-hero__ctas a {
		font-size: 1.111rem;
		line-height: 1;
		padding: 16px 24px;
	}
}
@media (min-width: 1025px) {
	.homepage-hero__ctas a {
		font-size: 2rem;
		line-height: 1;
		padding: 24px 48px;
	}
}
.homepage-hero__ctas a:focus {
	outline-color: #FFFFFF;
}
@media (min-width: 1025px) {
	.homepage-hero__ctas a {
		padding: 19px 48px 24px;
	}
}
.homepage-hero__ctas a::before {
	content: none;
}

.main-footer {
	color: #FFFFFF;
	background-color: #27003F;
	border-top: 1px solid #CBE2FF;
}
@media (min-width: 1025px) {
	.main-footer {
		display: -webkit-box;
		display: -webkit-flex;
		display: -moz-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
}
@media (min-width: 1025px) {
	.no-footer-sock .main-footer {
		border-top: 1px solid #FFFFFF;
	}
}
.main-footer .container {
	max-width: 100%;
	padding: 0 1.5rem;
}
@media (min-width: 700px) {
	.main-footer .container {
		padding: 0 3.188rem;
	}
}
.main-footer a {
	color: #CBE2FF;
}
.main-footer a::before {
	background-color: #CBE2FF;
}
.main-footer__header {
	padding: 2rem 0 2.188rem;
}
@media (min-width: 700px) {
	.main-footer__header {
		padding: 4.188rem 0 3.188rem;
	}
}
@media (min-width: 1025px) {
	.main-footer__header {
		width: 100%;
		max-width: 29.5rem;
		-webkit-flex-shrink: 0;
		-ms-flex-negative: 0;
		flex-shrink: 0;
		padding: 4rem 0 3.3rem;
	}
}
@media (min-width: 1025px) {
	.main-footer__header .container {
		padding-left: 3.6rem;
		padding-right: 3rem;
	}
}
.main-footer__header a:before {
	display: none;
}
@media (min-width: 700px) {
	.main-footer__header .content-box {
		display: -webkit-box;
		display: -webkit-flex;
		display: -moz-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-moz-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-moz-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
}
@media (min-width: 1025px) {
	.main-footer__header .content-box {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-moz-box-orient: vertical;
		-moz-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}
.main-footer .social-list {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 0;
	margin: 0;
}
@media (min-width: 1025px) {
	.main-footer .social-list {
		width: 100%;
		-webkit-box-pack: start;
		-webkit-justify-content: flex-start;
		-moz-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
		padding-left: 0.8rem;
	}
}
.main-footer .social-list__item {
	padding: 0;
	margin: 0 1.375rem 0 0;
	list-style: none;
}
.main-footer .social-list__item:before {
	display: none;
}
.main-footer .social-list__item a:before {
	display: none;
}
@media (min-width: 700px) {
	.main-footer .social-list__item {
		margin: 0 2.563rem 0 0;
	}
}
@media (min-width: 1025px) {
	.main-footer .social-list__item {
		margin: 0 2.188rem 0 0;
	}
}
.main-footer .social-list__item:last-child {
	margin: 0;
}
.main-footer .social-list .social-link {
	display: block;
	color: #CBE2FF;
}
.main-footer .social-list .social-link:focus {
	outline-color: #FFFFFF;
}
.main-footer .social-list .social-link:hover {
	color: #FFFFFF;
}
.main-footer .social-list .social-link svg {
	display: block;
	max-width: 1.25rem;
}
@media (min-width: 700px) {
	.main-footer .social-list .social-link svg {
		max-width: 1.875rem;
	}
}
@media (min-width: 1025px) {
	.main-footer .social-list .social-link svg {
		max-width: 2.25rem;
	}
}
.main-footer__logo {
	width: 200px;
	display: inline-block;
	opacity: 1;
	-webkit-transition: opacity 0.3s ease;
	-o-transition: opacity 0.3s ease;
	transition: opacity 0.3s ease;
	color: #FFFFFF;
}
@media (min-width: 700px) {
	.main-footer__logo {
		width: 254px;
		margin-bottom: 0;
	}
}
@media (min-width: 1025px) {
	.main-footer__logo {
		max-width: 354px;
		width: 100%;
		margin-bottom: 4.25rem;
	}
}
.main-footer__logo svg {
	width: 100%;
	height: auto;
}
.main-footer__logo:hover {
	opacity: 0.8;
}
.main-footer__logo:focus {
	outline-color: #FFFFFF;
}
@media (min-width: 1025px) {
	.main-footer__logo img {
		width: 100%;
	}
}
.main-footer__info {
	padding: 0 0 2.5rem;
}
@media (min-width: 700px) {
	.main-footer__info {
		padding: 0 0 4.5rem;
	}
}
@media (min-width: 1025px) {
	.main-footer__info {
		width: 53%;
		max-width: 610px;
		-webkit-flex-shrink: 0;
		-ms-flex-negative: 0;
		flex-shrink: 0;
		padding: 3.9rem 0 3.3rem;
		margin-left: auto;
	}
}
@media (min-width: 1025px) {
	.main-footer__info .container {
		padding-left: 0;
		display: -webkit-box;
		display: -webkit-flex;
		display: -moz-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-moz-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
}
@media (min-width: 700px) {
	.main-footer__info .content-box {
		display: -webkit-box;
		display: -webkit-flex;
		display: -moz-box;
		display: -ms-flexbox;
		display: flex;
	}
}
@media (min-width: 1025px) {
	.main-footer__info .content-box {
		width: 100%;
		max-width: 78.5rem;
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-moz-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
}
.main-footer__info .location {
	margin: 0 0 1.125rem;
	padding: 0 0 0 1.25rem;
	border-left: 1px solid #FFFFFF;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.4;
}
@media (min-width: 700px) {
	.main-footer__info .location {
		margin: 0 5.2rem 0 0;
	}
}
@media (min-width: 1025px) {
	.main-footer__info .location {
		margin: 0 2rem 0 0;
	}
}
.main-footer__info .location__name {
	font-size: 16px;
	font-size: 1rem;
	margin: 0 0 0.5rem;
	font-weight: 700;
	line-height: 1.5;
}
.main-footer__info .location__address {
	font-style: normal;
	font-weight: 400;
}
@media (min-width: 700px) {
	.main-footer__info .location__wrapper {
		display: -webkit-box;
		display: -webkit-flex;
		display: -moz-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-moz-box-orient: vertical;
		-moz-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 37px;
	}
}
.main-footer__info .links-list {
	margin: 2.188rem 0 0;
	padding: 0;
	-webkit-column-count: 2;
	-moz-column-count: 2;
	column-count: 2;
}
@media (min-width: 700px) {
	.main-footer__info .links-list {
		margin: 0;
		width: 60%;
	}
}
.main-footer__info .links-list__item {
	padding: 0;
	margin: 0 0 1rem;
	list-style: none;
}
.main-footer__info .links-list__item:before {
	display: none;
}
.main-footer__info .links-list__item a {
	color: #CBE2FF;
	text-decoration: none;
	line-height: 1.3;
}
.main-footer__info .links-list__item a:before {
	display: none;
}
.main-footer__info .links-list__item a:hover {
	color: #FFFFFF;
}
.main-footer__info .links-list__item a:focus {
	outline-color: #FFFFFF;
}
@media (min-width: 700px) {
	.main-footer__info .links-list__item {
		margin: 0 0 0.7rem;
	}
}
@media (min-width: 1025px) {
	.main-footer__info .links-list__item {
		margin: 0 0 0.62rem;
	}
}
.main-footer__info .links-list__item::marker {
	content: none;
	color: transparent;
}
.main-footer__info .links-list__item a {
	font-weight: 600;
}
.main-footer__bottom {
	padding: 1.3rem 0 1.4rem;
	border-top: 1px solid #FFFFFF;
}
@media (min-width: 1025px) {
	.main-footer__bottom {
		width: 100%;
	}
}
@media (min-width: 1025px) {
	.main-footer__bottom .container {
		padding-left: 4rem;
		padding-right: 4rem;
	}
}
.main-footer__bottom .copyright {
	font-size: 1.2rem;
	line-height: 1.4rem;
}
@media (min-width: 1200px) {
	.main-footer {
		max-width: 1800px;
		margin: 0 auto;
		position: relative;
	}
	.main-footer:before {
		content: "";
		position: absolute;
		height: 100%;
		width: 100vw;
		background-color: #27003F;
		left: 50%;
		bottom: 0;
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		transform: translateX(-50%);
		z-index: -2;
	}
	.main-footer:after {
		content: "";
		position: absolute;
		height: 1px;
		width: 100vw;
		background-color: #CBE2FF;
		left: 50%;
		top: -1px;
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		transform: translateX(-50%);
		z-index: 1;
	}
}

.footer-top {
	position: relative;
	clear: both;
	padding: 1.563rem 0.5rem;
	text-align: center;
}
@media (min-width: 700px) {
	.footer-top {
		display: -webkit-box;
		display: -webkit-flex;
		display: -moz-box;
		display: -ms-flexbox;
		display: flex;
		padding: 0;
	}
}
.footer-top:before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	width: calc(100vw - var(--scrollbar-width));
	height: 100%;
	background-color: #27003F;
	background-image: url("/_resources/images/footer-sock-bg.jpg");
	background-size: cover;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: -1;
}
@media (min-width: 1025px) {
	.section-nav + .container .footer-top {
		margin-left: -24rem;
	}
}
.footer-top .footer-sock {
	padding: 0;
}
@media (min-width: 700px) {
	.footer-top .footer-sock {
		padding: 4.25rem 0;
		-webkit-box-flex: 1;
		-webkit-flex-grow: 1;
		-moz-box-flex: 1;
		-ms-flex-positive: 1;
		flex-grow: 1;
	}
}
@media (min-width: 1025px) {
	.section-nav + .container .footer-top .footer-sock {
		padding: 8.3rem 3rem 8.3rem 0;
	}
}
.footer-top .section__header {
	margin: 0 0 1.125rem;
	color: #FFFFFF;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}
@media (min-width: 700px) {
	.footer-top .section__header {
		margin: 0 0 2.625rem;
	}
}
.footer-top .section__header span {
	display: block;
	margin-bottom: 0.5rem;
}
@media (min-width: 700px) {
	.footer-top .section__header span {
		font-size: 20px;
		font-size: 1.25rem;
		margin-bottom: 0;
	}
}
.footer-top .section__header h2 {
	margin: 0;
}
.footer-top .cta-list {
	position: relative;
	list-style: none;
	padding: 0;
	margin: 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 8px;
}
@media (min-width: 700px) {
	.footer-top .cta-list {
		gap: 20px;
	}
}
.footer-top .cta-list__item {
	margin: 0;
	padding: 0;
	list-style: none;
}
.footer-top .cta-list__item:before {
	display: none;
}
.footer-top .cta-list__holder {
	margin: 0;
}
.footer-top .cta-list .cta--button {
	margin: 0;
	display: block;
	color: #FFFFFF;
	background-color: #27003F;
	font-weight: 800;
	max-width: -webkit-fit-content;
	max-width: -moz-fit-content;
	max-width: fit-content;
	-webkit-transition: 300ms all ease;
	-o-transition: 300ms all ease;
	transition: 300ms all ease;
	font-family: acumin-pro-condensed, sans-serif;
	font-size: 1rem;
	line-height: 1.3;
	padding: 11px 18px;
	border: 1px solid #FFFFFF;
	border-radius: 8px;
	padding: 0.75rem 1.5rem;
}
.footer-top .cta-list .cta--button:hover {
	background-color: #CBE2FF;
	color: #27003F;
}
@media (min-width: 700px) {
	.footer-top .cta-list .cta--button {
		font-size: 1.111rem;
		line-height: 1;
		padding: 16px 24px;
	}
}
@media (min-width: 1025px) {
	.footer-top .cta-list .cta--button {
		font-size: 2rem;
		line-height: 1;
		padding: 24px 48px;
	}
}
.footer-top .cta-list .cta--button:hover {
	color: #27003F !important;
	border-color: #27003F;
}
@media (min-width: 700px) {
	.footer-top .cta-list .cta--button {
		font-size: 20px;
		font-size: 1.25rem;
	}
}
.footer-top .cta-list .cta--button:hover {
	color: #FFFFFF;
}
.footer-top .cta-list .cta--button:focus {
	outline-color: #FFFFFF;
}
.footer-top .cta-list .cta--button:after {
	width: 0.7rem;
	height: 0.7rem;
}
@media (min-width: 700px) {
	.footer-top .cta-list .cta--button:after {
		width: 1.1rem;
		height: 1.1rem;
	}
}
@media (min-width: 1025px) {
	.footer-top .cta-list .cta--button:after {
		border-width: 0.4rem;
	}
}

.footer-wrapper {
	position: relative;
}

.go-to-top-button {
	display: none;
	position: absolute;
	top: 0;
	right: -1rem;
	min-width: 9.5rem;
	min-height: 3.25rem;
	border-radius: 0 0 8px 8px;
	padding: 17px 16px 17px 40px;
	border: none;
	background-color: #FFFFFF;
	-webkit-transition: background-color 0.3s ease;
	-o-transition: background-color 0.3s ease;
	transition: background-color 0.3s ease;
	outline-color: #FFFFFF;
	outline-offset: -4px;
	z-index: 1000;
}
.go-to-top-button:hover {
	background-color: #CBE2FF;
}
.go-to-top-button:focus {
	outline-color: #FFFFFF;
	outline-offset: 5px;
}
.go-to-top-button span {
	position: relative;
	font-size: 18px;
	font-size: 1.125rem;
}
.go-to-top-button span:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	margin-left: -1.438rem;
	width: 0.813rem;
	height: 1.313rem;
	background-image: url("data:image/svg+xml,%3Csvg width='14' height='21' viewBox='0 0 14 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 6.36819L6.752 0.000188828L13.44 6.36819V9.24819L7.936 4.03219L7.936 20.0962H5.536L5.536 4.03219L0 9.24819L0 6.36819Z' fill='%2327003F'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: cover;
}
@media (min-width: 1025px) {
	.go-to-top-button {
		display: block;
	}
}

.breadcrumbs {
	position: relative;
	padding: 3.625rem 0 2.25rem;
	width: 100%;
	display: none;
}
@media (min-width: 1025px) {
	.breadcrumbs {
		display: block;
		max-width: 1800px;
		margin: 0 auto;
		padding: 0 80px;
	}
}
.breadcrumbs .container {
	padding: 0;
}
.breadcrumbs .breadcrumbs__list {
	position: relative;
	padding: 0;
	margin: 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	z-index: 2;
}
.breadcrumbs .breadcrumbs__list-item {
	position: relative;
	margin: 0;
	list-style: none;
	padding: 0 1.75rem 0 0;
}
.breadcrumbs .breadcrumbs__list-item:before {
	content: none;
}
.breadcrumbs .breadcrumbs__list-item:not(:last-child):after {
	content: "";
	position: absolute;
	top: 9px;
	right: 8px;
	width: 14px;
	height: 10px;
	background-image: url("data:image/svg+xml,%3Csvg width='12' height='9' viewBox='0 0 12 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.19745 0.5L12 4.51905L8.19745 8.5H6.47771L9.59236 5.22381H0V3.79524H9.59236L6.47771 0.5H8.19745Z' fill='%23003F12'/%3E%3C/svg%3E");
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
.breadcrumbs .breadcrumbs__list-item a {
	background: none;
	color: #046A38;
	font-weight: 400;
}
.breadcrumbs .breadcrumbs__list-item a:before {
	display: none;
}
.breadcrumbs .breadcrumbs__list-item a:hover {
	color: #003F12;
}
.breadcrumbs .breadcrumbs__list-item.current, .breadcrumbs .breadcrumbs__list-item.current a {
	color: #000000;
	cursor: default;
}

/**
* @file
* Blog
*
* Contains styles for blog detail and view modes.
*/
.blog__image {
	margin: 2rem 0 1rem;
}
.blog__publish-info {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0 0 1rem;
}
.blog__date {
	font-weight: 700;
}
.blog__author:before {
	content: "|";
	font-size: inherit;
	padding: 0 0.5rem;
}
.blog__tags {
	margin: 1rem 0;
}
.blog__tag-label {
	font-weight: 700;
	margin: 0 0 1rem;
}
.blog__tag-list a {
	margin: 0 0.25rem 0 0;
	padding: 0.125rem 0.5rem;
	border: 1px solid #000000;
	border-radius: 3px;
}

@media (min-width: 1025px) {
	.blog-list {
		display: -webkit-box;
		display: -webkit-flex;
		display: -moz-box;
		display: -ms-flexbox;
		display: flex;
	}
}
.blog-list__items {
	list-style: none;
	display: block;
	padding: 0;
}
.blog-list__item {
	margin: 2rem 0;
	display: table;
}
.blog-list__title {
	margin-top: 0.5rem;
}
@media (min-width: 700px) {
	.blog-list__title {
		margin-top: -0.3rem;
	}
}
@media (min-width: 700px) {
	.blog-list__image {
		float: left;
		margin: 0 30px 0 0;
	}
}
.blog-list__text {
	overflow: hidden;
}
.blog-list__date, .blog-list__author {
	display: inline-block;
}
.blog-list__date {
	font-weight: 700;
}
.blog-list__date:after {
	content: "|";
	display: inline-block;
	vertical-align: middle;
	margin: -0.3rem 2px 0 6px;
}
.blog-list__pager {
	clear: both;
}

.blog3up__header {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.blog3up__header h2 {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-moz-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}
.blog3up__date, .blog3up__author {
	display: inline-block;
}
.blog3up__date {
	font-weight: 700;
	text-transform: uppercase;
}
.blog3up__author a {
	font-style: italic;
}
.blog3up__author:before {
	font-size: inherit;
	margin: 0 0.25em;
	content: "|";
}
.blog3up__section-cta {
	margin-top: 0;
}

@media (min-width: 700px) {
	.blog__filters {
		display: -webkit-box;
		display: -webkit-flex;
		display: -moz-box;
		display: -ms-flexbox;
		display: flex;
	}
}
@media (min-width: 1025px) {
	.blog__filters {
		display: block;
	}
}

/**
* @file
* Catalog
*
* Contains styles for catalog program detail and view modes.
*/
@media (min-width: 700px) {
	.catalog__faculty-info {
		display: -webkit-box;
		display: -webkit-flex;
		display: -moz-box;
		display: -ms-flexbox;
		display: flex;
	}
}
.catalog__faculty-info img {
	margin: 0 0 1rem 0;
}
@media (min-width: 700px) {
	.catalog__faculty-info img {
		margin: 0 1rem 2rem 0;
	}
}
.catalog .faculty-info__title {
	font-weight: 700;
	margin: 0 0 0.5rem 0;
}
.catalog .faculty-info__email {
	margin: 0 0 0.5rem 0;
}
.catalog .faculty-info__office {
	margin: 0 0 1rem 0;
}

.catalog-course-list__table,
.catalog-program-list__table {
	border-collapse: collapse;
	width: 100%;
}
.catalog-course-list__table thead,
.catalog-program-list__table thead {
	display: none;
}
.catalog-course-list__table tr,
.catalog-program-list__table tr {
	border-bottom: 1px solid;
}
.catalog-course-list__table th,
.catalog-course-list__table td,
.catalog-program-list__table th,
.catalog-program-list__table td {
	text-align: left;
	padding: 20px 10px;
}
.catalog-course-list__table h2,
.catalog-program-list__table h2 {
	margin-top: 0;
}
.catalog-course-list__credit,
.catalog-program-list__credit {
	font-weight: 700;
}
.catalog-course-list__select,
.catalog-program-list__select {
	margin-right: 20px;
}
.catalog-course-list .dataTables_info,
.catalog-program-list .dataTables_info {
	display: none;
}
.catalog-course-list .dataTables_filter,
.catalog-program-list .dataTables_filter {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-webkit-align-items: flex-end;
	-moz-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.catalog-course-list .dataTables_filter label,
.catalog-program-list .dataTables_filter label {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-moz-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}
.catalog-course-list .dataTables_filter input[type=search],
.catalog-program-list .dataTables_filter input[type=search] {
	display: block;
}
.catalog-course-list .dataTables_info,
.catalog-program-list .dataTables_info {
	display: none;
}

/**
* @file
* Faculty
*
* Contains styles for faculty detail and view modes.
*/
.faculty__resume-cta {
	text-align: left;
}
.faculty__info {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0 0 1em;
}
.faculty__image, .faculty__contact {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-moz-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}
.faculty.faculty--listing .faculty__item {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-moz-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	margin: 0 0 2em;
}
.faculty.faculty--listing .faculty__image {
	-webkit-box-flex: 0;
	-webkit-flex: 0 0 auto;
	-moz-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	margin-right: 2em;
}
.faculty.faculty--directory .faculty__list {
	padding: 0 0 2.5em;
}
@media (min-width: 700px) {
	.faculty.faculty--directory .faculty__list {
		padding: 0 0 0.4em;
	}
}
.faculty.faculty--directory .faculty__list .filter-btn-drop {
	display: block;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: #BEBBBB;
	padding: 24px 21px;
	margin: 0 0 15px;
	border: none;
	width: 100%;
	max-width: 290px;
	text-align: left;
	color: #000000;
}
@media (min-width: 1025px) {
	.faculty.faculty--directory .faculty__list .filter-btn-drop {
		display: none;
	}
}
.faculty.faculty--directory .faculty__list .filter-btn-drop.expanded span:after {
	-webkit-transform: rotate(-135deg);
	-ms-transform: rotate(-135deg);
	transform: rotate(-135deg);
}
.faculty.faculty--directory .faculty__list .filter-btn-drop span {
	position: relative;
	display: block;
	font-weight: 700;
}
.faculty.faculty--directory .faculty__list .filter-btn-drop span:after {
	position: absolute;
	display: block;
	top: calc(50% - 4px);
	right: 0;
	width: 3px;
	height: 3px;
	border-width: 0 2px 2px 0;
	border-style: solid;
	border-color: #000000;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition: -webkit-transform 0.3s ease;
	transition: -webkit-transform 0.3s ease;
	-o-transition: transform 0.3s ease;
	transition: transform 0.3s ease;
	transition: transform 0.3s ease, -webkit-transform 0.3s ease;
	content: "";
}
.faculty .heading-table {
	margin: 0 0 3.1rem;
}
@media (min-width: 700px) {
	.faculty .heading-table {
		margin: 0 0 46px;
	}
}
.faculty .heading-table .toolbar {
	position: relative;
	padding: 22px 0 0;
}
@media (min-width: 1025px) {
	.faculty .heading-table .toolbar {
		display: -webkit-box;
		display: -webkit-flex;
		display: -moz-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-moz-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-box-align: start;
		-webkit-align-items: flex-start;
		-moz-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		position: relative;
		padding: 0;
	}
}
.faculty .heading-table .clear-table {
	left: 15px;
	background: none;
	border: none;
	padding: 0;
}
@media (min-width: 1025px) {
	.faculty .heading-table .clear-table {
		position: absolute;
		display: block;
		bottom: 35px;
		left: auto;
		top: calc(50% - 4px);
		right: -45px;
		opacity: 1;
	}
}
.faculty .heading-table .filter-box {
	line-height: 1;
	position: relative;
	margin: 0 0 19px;
}
@media (min-width: 1025px) {
	.faculty .heading-table .filter-box {
		margin: 0;
	}
}
.faculty .heading-table .filter-box:nth-child(3), .faculty .heading-table .filter-box:nth-child(4) {
	display: none;
}
.faculty .heading-table .form__label {
	position: relative;
	display: block;
	margin: 0 0 12px;
	text-transform: capitalize;
}
.faculty .heading-table .form__label:after {
	position: absolute;
	left: 20px;
	bottom: -57px;
	width: calc(100% - 40px);
	height: 1px;
	background: #000000;
	content: "";
}
@media (min-width: 1025px) {
	.faculty .heading-table .form__label:after {
		left: 23px;
		bottom: -60px;
	}
}
.faculty .heading-table select {
	width: 100%;
	padding: 23px 34px 23px 21px;
	background: #BEBBBB;
	border: 0;
	background-size: 8px;
}
.faculty .heading-table .dataTables_filter {
	position: relative;
	margin: 1px 0 19px;
	-webkit-box-flex: 1;
	-webkit-flex-grow: 1;
	-moz-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
}
@media (max-width: 1024px) {
	.faculty .heading-table .dataTables_filter {
		-webkit-flex-basis: 100%;
		-ms-flex-preferred-size: 100%;
		flex-basis: 100%;
	}
}
@media (min-width: 1025px) {
	.faculty .heading-table .dataTables_filter {
		max-width: 441.5px;
		margin: -6px 59px 0 22px;
	}
}
.faculty .heading-table .dataTables_filter label:after {
	position: absolute;
	left: 16px;
	bottom: 18px;
	width: calc(100% - 40px);
	height: 1px;
	background: #000000;
	content: "";
}
@media (min-width: 1025px) {
	.faculty .heading-table .dataTables_filter label:after {
		left: 23px;
		width: calc(100% - 48px);
	}
}
.faculty .heading-table input[type=search] {
	padding: 22px 25px 25px 15px;
	margin: 10px 0 0;
	display: block;
	width: 100%;
	border: 1px solid #000000;
	height: 65px;
}
@media (min-width: 1025px) {
	.faculty .heading-table input[type=search] {
		padding: 23px 25px 25px 21px;
		margin: 4px 0 0;
	}
}
.faculty .heading-table input[type=search]::-webkit-input-placeholder {
	color: #000000;
}
.faculty .heading-table input[type=search]:-moz-placeholder {
	color: #000000;
}
.faculty .heading-table input[type=search]::-moz-placeholder {
	color: #000000;
}
.faculty .heading-table input[type=search]:-ms-input-placeholder {
	color: #000000;
}
.faculty .wrapper-table {
	line-height: 1.2;
	margin: 0 0 18px;
}
@media (min-width: 1025px) {
	.faculty .wrapper-table {
		margin: 0 0 26px;
	}
	.faculty .wrapper-table:after {
		display: none;
	}
}
@media (min-width: 1025px) {
	.faculty .wrapper-table .table-holder {
		overflow: hidden;
		margin-right: 0;
	}
}
.faculty .wrapper-table table {
	width: 100% !important;
	border-collapse: collapse;
	border-spacing: 0;
	display: block;
}
@media (min-width: 1025px) {
	.faculty .wrapper-table table {
		display: table;
		min-width: 0;
	}
}
@media (min-width: 700px) {
	.faculty .wrapper-table th {
		padding: 0 0 18px;
		text-align: left;
	}
}
.faculty .wrapper-table td {
	padding: 0;
	display: block;
	margin: 0 0 13px;
}
@media (min-width: 700px) {
	.faculty .wrapper-table td {
		padding: 24px 20px 24px 0;
	}
}
@media (min-width: 700px) {
	.faculty .wrapper-table td {
		display: table-cell;
		margin: 0;
	}
}
.faculty .wrapper-table td:last-child {
	margin: 0;
}
.faculty .wrapper-table tbody {
	display: block;
}
@media (min-width: 700px) {
	.faculty .wrapper-table tbody {
		display: table-row-group;
	}
}
.faculty .wrapper-table thead {
	display: none;
}
@media (min-width: 700px) {
	.faculty .wrapper-table thead {
		display: table-header-group;
	}
}
@media (min-width: 700px) {
	.faculty .wrapper-table thead tr {
		border-bottom: 1px solid #666666;
	}
}
.faculty .wrapper-table tr {
	border-bottom: 1px solid #666666;
	display: block;
	padding: 0 0 22px;
	margin: 0 0 32px;
}
.faculty .wrapper-table tr:last-child {
	margin: 0;
}
@media (min-width: 700px) {
	.faculty .wrapper-table tr {
		display: table-row;
		padding: 0;
		margin: 0;
	}
}
.faculty .wrapper-table .row-section {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
}
@media (min-width: 700px) {
	.faculty .wrapper-table .row-section {
		display: block;
	}
}
.faculty .wrapper-table .row-label {
	display: block;
	margin: 0 0 3px;
	-webkit-box-flex: 0;
	-webkit-flex-grow: 0;
	-moz-box-flex: 0;
	-ms-flex-positive: 0;
	flex-grow: 0;
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	-webkit-flex-basis: 41%;
	-ms-flex-preferred-size: 41%;
	flex-basis: 41%;
	max-width: 120px;
}
@media (min-width: 700px) {
	.faculty .wrapper-table .row-label {
		display: none;
	}
}
.faculty .wrapper-table .email {
	word-break: break-all;
}
.faculty .wrapper-table .email,
.faculty .wrapper-table .link-name {
	font-weight: 700;
	position: relative;
	display: block;
	vertical-align: top;
}
.faculty .wrapper-table .link-name {
	line-height: 1;
}
@media (min-width: 700px) {
	.faculty .wrapper-table .link-name {
		margin: 0 0 10px;
	}
}
.faculty .wrapper-table .type {
	display: none;
}
.faculty .wrapper-table .title {
	display: block;
	padding-top: 10px;
}
@media (min-width: 700px) {
	.faculty .wrapper-table .title {
		padding: 0;
	}
}
@media (min-width: 700px) {
	.faculty .footer-table {
		display: -webkit-box;
		display: -webkit-flex;
		display: -moz-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-align: start;
		-webkit-align-items: flex-start;
		-moz-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-moz-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
}
.faculty .footer-table .table-info {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-moz-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	-moz-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}
.faculty .footer-table select {
	background-color: #BEBBBB;
}
.faculty .footer-table .dataTables_length {
	position: relative;
}
.faculty .heading-table-filter {
	display: none;
}
@media (min-width: 1025px) {
	.faculty .heading-table-filter {
		display: block !important;
		padding: 0;
	}
}
.faculty .heading-table-filter[aria-hidden=false] .clear-table {
	opacity: 1;
}
.faculty .dataTables_paginate {
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -moz-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.faculty .dataTables_paginate .ellipsis {
	margin: 8px 9px 4px 5px;
}
.faculty .dataTables_paginate > span a {
	font-weight: 400;
	margin: 4px 9px 4px 5px;
}
@media (min-width: 700px) {
	.faculty .dataTables_paginate > span a {
		margin: 4px 8px 4px -4px;
	}
}
.faculty .dataTables_paginate > span a.current {
	font-weight: 700;
}
.faculty .dataTables_paginate .previous,
.faculty .dataTables_paginate .next {
	font-size: 0;
	line-height: 0;
	position: relative;
	display: block;
	width: 10px;
	height: 20px;
}
.faculty .dataTables_paginate .previous:before,
.faculty .dataTables_paginate .next:before {
	position: absolute;
	left: 1px;
	top: 7px;
	width: 6px;
	height: 6px;
	border-top: 2px solid #000000;
	border-left: 2px solid #000000;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	content: "";
}
.faculty .dataTables_paginate .previous.previous,
.faculty .dataTables_paginate .next.previous {
	margin: 0 11px 0 0;
}
.faculty .dataTables_paginate .previous.next,
.faculty .dataTables_paginate .next.next {
	margin: 0 0 0 5px;
}
@media (min-width: 700px) {
	.faculty .dataTables_paginate .previous.next,
	.faculty .dataTables_paginate .next.next {
		margin: 0;
	}
}
.faculty .dataTables_paginate .previous.next:before,
.faculty .dataTables_paginate .next.next:before {
	-webkit-transform: rotate(135deg);
	-ms-transform: rotate(135deg);
	transform: rotate(135deg);
}
@media (min-width: 700px) {
	.faculty .dataTables_paginate .previous.next:before,
	.faculty .dataTables_paginate .next.next:before {
		left: -2px;
	}
}
.faculty .dataTables_paginate .previous:hover,
.faculty .dataTables_paginate .next:hover {
	cursor: pointer;
}

/**
* @file
* News
*
* Contains styles for news and news view modes.
*/
.news__header {
	position: relative;
	padding: 0 0 1.5rem;
	color: #FFFFFF;
}
@media (min-width: 1025px) {
	.news__header {
		margin-bottom: 50px;
	}
}
.news__header:after {
	content: "";
	background-image: url("/_resources/images/banner-image.jpg");
	background-size: cover;
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: calc(100% + 16px + 65px);
	margin-top: -81px;
	margin-left: calc((var(--scrollbar-width) + 16px) * -1);
	z-index: -1;
}
@media (min-width: 700px) {
	.news__header:after {
		margin-left: calc((var(--scrollbar-width) + 50px) * -1);
		margin-top: -102px;
		height: calc(100% + 21px + 16px + 65px);
	}
}
@media (min-width: 1025px) {
	.news__header:after {
		margin-left: 0;
		margin-top: -102px;
		height: calc(100% + 21px + 16px + 65px);
		width: 100vw;
		left: 50%;
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		transform: translateX(-50%);
	}
}
.news__header h1 {
	padding: 0 0 0.313rem;
	margin: 0;
	font-size: 28px;
	font-size: 1.75rem;
}
@media (min-width: 700px) {
	.news__header h1 {
		font-size: 42px;
		font-size: 2.625rem;
		line-height: 1;
	}
}
@media (min-width: 1025px) {
	.news__header h1 {
		font-weight: 800;
		font-size: 54px;
		font-size: 3.375rem;
		margin-bottom: 10px;
	}
}
@media (min-width: 1025px) {
	.news__header {
		padding: 240px 0 32px;
	}
}
.news__date {
	font-weight: 500;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.5;
}
.news__image {
	margin: 1.875rem 0 3rem;
	position: relative;
}
.news__image:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: -o-linear-gradient(90.38deg, rgba(0, 0, 0, 0.65) 7.85%, rgba(0, 0, 0, 0) 38.65%);
	background: linear-gradient(359.62deg, rgba(0, 0, 0, 0.65) 7.85%, rgba(0, 0, 0, 0) 38.65%);
	z-index: 1;
}
.news__image img {
	border-radius: 8px;
	position: relative;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
.news__image .caption {
	position: absolute;
	color: #FFFFFF;
	font-size: 14px;
	font-size: 0.875rem;
	line-height: 1.313rem;
	font-weight: 500;
	font-style: italic;
	padding: 0 17px 17px;
	z-index: 2;
	bottom: 0;
}
@media (min-width: 700px) {
	.news__image {
		margin: 4rem 0;
	}
}
@media (min-width: 1025px) {
	.news__image {
		margin: 2rem auto 5rem;
		max-width: 1040px;
	}
}
.news__content {
	padding-bottom: 3rem;
}
@media (min-width: 700px) {
	.news__content {
		padding-bottom: 4rem;
	}
}
@media (min-width: 1025px) {
	.news__content {
		padding-bottom: 5rem;
		max-width: 687px;
		margin: 0 auto;
	}
}
.news--listing {
	margin-top: 2rem;
}
@media (min-width: 700px) {
	.news--listing {
		margin-top: 3rem;
	}
}
@media (min-width: 1025px) {
	.news--listing {
		margin-top: 1rem;
	}
}
@media (min-width: 1025px) {
	.news--listing .news__list {
		display: -webkit-box;
		display: -webkit-flex;
		display: -moz-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		gap: 15px;
	}
}
.news--listing .news__item {
	color: #FFFFFF;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	background-color: #003F12;
	border-radius: 8px;
	margin-bottom: 20px;
	position: relative;
}
.news--listing .news__item:hover img {
	-webkit-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}
.news--listing .news__item:nth-child(even) {
	background-color: #27003F;
}
.news--listing .news__item:nth-child(even) .news__image {
	border-color: #CBE2FF;
}
.news--listing .news__item:nth-child(even) h2 a {
	color: #CBE2FF;
}
.news--listing .news__item:nth-child(even) h2 a span:after {
	background-image: url("data:image/svg+xml,%3Csvg width='30' height='22' viewBox='0 0 30 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.4936 0L30 11.0524L20.4936 22H16.1943L23.9809 12.9905H0V9.0619H23.9809L16.1943 0H20.4936Z' fill='%23CBE2FF'/%3E%3C/svg%3E");
}
@media (min-width: 700px) {
	.news--listing .news__item {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-webkit-flex-direction: row;
		-moz-box-orient: horizontal;
		-moz-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
	}
}
@media (min-width: 1025px) {
	.news--listing .news__item {
		width: calc(50% - 7.5px);
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-moz-box-orient: vertical;
		-moz-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		margin-bottom: 0;
	}
}
.news--listing .news__item h2 {
	font-family: "acumin-pro", sans-serif;
	font-size: 1rem;
	margin-top: 0;
	line-height: 1.4;
}
@media (min-width: 700px) {
	.news--listing .news__item h2 {
		font-size: 22px;
		font-size: 1.375rem;
	}
}
@media (min-width: 1025px) {
	.news--listing .news__item h2 {
		font-size: 24px;
		font-size: 1.5rem;
		margin-bottom: 25px;
	}
}
.news--listing .news__item h2 a {
	color: #A4FFBF;
	position: static;
}
.news--listing .news__item h2 a:focus {
	outline-color: #FFFFFF;
}
.news--listing .news__item h2 a:before {
	content: "";
	position: absolute;
	width: 100%;
	top: 0;
	height: 100%;
	left: 0;
	background-color: transparent;
	z-index: 10;
}
.news--listing .news__item h2 a span:after {
	content: "";
	position: absolute;
	background: url("data:image/svg+xml,%3Csvg width='30' height='22' viewBox='0 0 30 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.4936 0L30 11.0524L20.4936 22H16.1943L23.9809 12.9905H0V9.0619H23.9809L16.1943 0H20.4936Z' fill='%23A4FFBF'/%3E%3C/svg%3E"), center, no-repeat;
	background-size: contain;
	width: 15px;
	height: 11px;
	right: 0;
	bottom: 3px;
}
@media (min-width: 700px) {
	.news--listing .news__item h2 a span:after {
		width: 25px;
		height: 19px;
		right: -10px;
	}
}
.news--listing .news__item h2 a:hover {
	color: #FFFFFF;
}
.news--listing .news__item h2 a:hover span:after {
	background: url("data:image/svg+xml,%3Csvg width='30' height='22' viewBox='0 0 30 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.4936 0L30 11.0524L20.4936 22H16.1943L23.9809 12.9905H0V9.0619H23.9809L16.1943 0H20.4936Z' fill='%23FFFFFF'/%3E%3C/svg%3E"), center, no-repeat;
	background-size: contain;
}
.news--listing .news__image {
	margin: 0;
	border-bottom: 2px solid #A4FFBF;
	overflow: hidden;
	border-radius: 8px 8px 0 0;
}
@media (min-width: 700px) {
	.news--listing .news__image {
		width: 50%;
		border: 0;
		border-right: 2px solid #A4FFBF;
		border-radius: 8px 0 0 8px;
	}
}
@media (min-width: 1025px) {
	.news--listing .news__image {
		width: 100%;
		border: 0;
		border-bottom: 2px solid #A4FFBF;
		border-radius: 8px 8px 0 0;
	}
}
.news--listing .news__image img {
	width: 101%;
	max-width: 101%;
	-webkit-transition: all 300ms;
	-o-transition: all 300ms;
	transition: all 300ms;
}
@media (min-width: 700px) {
	.news--listing .news__image img {
		height: 100%;
	}
}
.news--listing .news__teaser {
	margin-bottom: 16px;
}
@media (min-width: 700px) {
	.news--listing .news__teaser {
		margin-bottom: 25px;
	}
}
.news--listing .news__body {
	padding: 24px 20px;
}
@media (min-width: 700px) {
	.news--listing .news__body {
		width: 50%;
		padding: 30px;
	}
}
@media (min-width: 1025px) {
	.news--listing .news__body {
		width: 100%;
	}
}

.pagination {
	font-family: acumin-pro-condensed, sans-serif;
	font-weight: 900;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 30px;
	margin-bottom: 50px;
}
@media (min-width: 700px) {
	.pagination {
		font-size: 18px;
		margin: 65px 0;
	}
}
@media (min-width: 1025px) {
	.pagination {
		font-size: 24px;
		margin: 80px 0;
	}
}
.pagination__list {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	gap: 10px;
	margin: 0 10px;
	padding: 0;
}
.pagination__button {
	border-radius: 8px;
	border: 1px solid #003F12;
	width: 32px;
	height: 32px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 0;
	background-color: #A4FFBF;
}
.pagination__button.disabled {
	opacity: 0.2;
	cursor: default;
}
.pagination__button:hover {
	background-color: #FFFFFF;
}
@media (min-width: 700px) {
	.pagination__button {
		width: 38px;
		height: 38px;
	}
}
@media (min-width: 1025px) {
	.pagination__button {
		width: 46px;
		height: 46px;
	}
}
.pagination__button.pagination__prev:after {
	-webkit-transform: rotate(225deg);
	-ms-transform: rotate(225deg);
	transform: rotate(225deg);
	margin-left: 3px;
}
.pagination__button:after {
	content: "";
	display: inline-block;
	vertical-align: top;
	width: 8px;
	height: 8px;
	left: 50%;
	border-top: 3px solid #003F12;
	border-right: 3px solid #003F12;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	line-height: 1;
	margin-left: -3px;
	-webkit-transition: all 300ms;
	-o-transition: all 300ms;
	transition: all 300ms;
}
@media (min-width: 1025px) {
	.pagination__button:after {
		width: 10px;
		height: 10px;
	}
}
.pagination__button:before {
	content: none !important;
}
.pagination__item {
	padding: 0;
	margin: 0;
}
.pagination__item::before {
	content: none;
}
.pagination__item a.active {
	background-color: #27003F;
	color: #FFFFFF;
}
.pagination__item a:hover {
	background-color: #6E2879;
	color: #FFFFFF;
}
.pagination__item a, .pagination__item span {
	border-radius: 8px;
	border: 1px solid #000000;
	width: 32px;
	height: 32px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 0 0 3px;
	margin: 0;
	color: #000000;
}
@media (min-width: 700px) {
	.pagination__item a, .pagination__item span {
		width: 38px;
		height: 38px;
	}
}
@media (min-width: 1025px) {
	.pagination__item a, .pagination__item span {
		width: 46px;
		height: 46px;
	}
}
.pagination__item a::before, .pagination__item span::before {
	content: none;
}

.news .breadcrumbs {
	padding: 0;
}

/**
* @file
* Program
*
* Contains styles for programs and program view modes.
*/
.program__filters {
	display: none;
	border: 1px solid;
	padding: 1rem;
	margin-right: 20px;
}
.program__filters__open {
	margin: 0 -1rem;
	padding: 14px 16px 12px;
	color: #003F12;
	background-color: #A4FFBF;
	border: none;
	width: calc(100% + 32px);
	text-align: left;
}
.program__filters__open[aria-expanded=true] {
	background-color: #FFFFFF;
}
.program__filters__open .filter-title {
	font-size: 15px;
	font-size: 0.9375rem;
	font-family: "acumin-pro", sans-serif;
	font-weight: 600;
}
.program__filters__open .filter-icon {
	position: relative;
}
.program__filters__open .filter-icon:after {
	content: "";
	position: absolute;
	top: 8px;
	right: -30px;
	width: 14px;
	border-top: 3px solid #003F12;
	background-size: cover;
	background-repeat: no-repeat;
	-webkit-transition: -webkit-transform 0.3s ease;
	transition: -webkit-transform 0.3s ease;
	-o-transition: transform 0.3s ease;
	transition: transform 0.3s ease;
	transition: transform 0.3s ease, -webkit-transform 0.3s ease;
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}
.program__filters__open .filter-icon:before {
	content: "";
	position: absolute;
	top: 8px;
	right: -30px;
	width: 14px;
	border-top: 3px solid #003F12;
	background-size: cover;
	background-repeat: no-repeat;
	-webkit-transition: -webkit-transform 0.3s ease;
	transition: -webkit-transform 0.3s ease;
	-o-transition: transform 0.3s ease;
	transition: transform 0.3s ease;
	transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.program__filters__open:focus {
	outline-color: #000000;
	outline-offset: -5px;
}
.program__filters__open[aria-expanded=true] .filter-icon::before {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.program__filters__open[aria-expanded=true] .filter-icon::after {
	-webkit-transform: rotate(130deg);
	-ms-transform: rotate(130deg);
	transform: rotate(130deg);
}
@media (min-width: 700px) {
	.program__filters__open {
		padding: 16px 50px;
		margin: 0 -50px;
		width: calc(100% + 100px);
	}
}
@media (min-width: 1025px) {
	.program__filters__open {
		display: none;
	}
}
.program__filters__fieldset {
	border: 0;
	padding: 0;
	margin-bottom: 1.375rem !important;
}
.program__filters__fieldset legend {
	font-weight: 700;
}
.program__filters.form {
	margin: 0 -16px;
	position: relative;
	border: none;
	border-top: 1px solid #003F12;
	border-bottom: 1px solid #003F12;
	padding: 1.25rem 1rem 0;
}
.program__filters.form .form__checkbox label {
	padding-left: 2rem;
}
.program__filters.form .form__checkbox label:before {
	left: 0;
}
.program__filters.form .form__checkbox label:after {
	left: 5px;
}
@media (min-width: 700px) {
	.program__filters.form {
		margin: 0 -50px;
		padding: 24px 50px;
	}
	.program__filters.form select {
		max-width: 100%;
	}
}
@media (min-width: 1025px) {
	.program__filters.form {
		display: block;
		border: none;
		margin: 0;
		padding: 0;
	}
}
.program__filters .sort {
	display: block;
	margin-bottom: 30px;
}
.program__filters .sort label {
	display: block;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.program--list {
	margin-top: 2rem;
}
.program--list ul, .program--list ol {
	list-style: none;
	padding: 0;
	margin: 0;
}
.program--list ul li, .program--list ol li {
	padding: 7px 0;
	margin: 0;
}
.program--list ul li:before, .program--list ol li:before {
	display: none;
}
.program--list ul li a:before, .program--list ol li a:before {
	display: none;
}
@media (min-width: 700px) {
	.program--list ul li, .program--list ol li {
		padding: 6px 0;
	}
}
.program--list__title {
	font-weight: 600;
	margin-right: 10px;
}
@media (min-width: 700px) {
	.program--list__title {
		font-size: 18px;
		font-size: 1.125rem;
	}
}
@media (min-width: 1025px) {
	.program--list__title {
		font-size: 24px;
		font-size: 1.5rem;
		line-height: 1.4;
	}
}
.program--list__cred {
	font-weight: 400;
}
@media (min-width: 700px) {
	.program--list__cred {
		font-weight: 500;
	}
}
@media (min-width: 1025px) {
	.program--list__cred {
		font-size: 18px;
		font-size: 1.125rem;
		line-height: 1.6;
	}
}
@media (min-width: 1025px) {
	.program--list__sort {
		float: right;
	}
}
.program--list h2 {
	font-size: 24px;
	font-size: 1.5rem;
	line-height: 1.3;
	margin: 0 0 6px;
}
@media (min-width: 700px) {
	.program--list h2 {
		font-size: 36px;
		font-size: 2.25rem;
		line-height: 1.3;
	}
}
@media (min-width: 1025px) {
	.program--list h2 {
		font-size: 42px;
		font-size: 2.625rem;
		line-height: 1;
	}
}
.program--list__block {
	margin-bottom: 2.625rem;
}
@media (min-width: 700px) {
	.program--list__block {
		margin-bottom: 4rem;
	}
}
@media (min-width: 1025px) {
	.program--list__block {
		margin-bottom: 5rem;
	}
}
@media (min-width: 700px) {
	.program--list__wrapper {
		display: -webkit-box;
		display: -webkit-flex;
		display: -moz-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-moz-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
	.program--list__wrapper .sort {
		-webkit-box-flex: 0;
		-webkit-flex: 0 0 100%;
		-moz-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
	}
	.program--list__wrapper fieldset {
		width: 33.33333%;
	}
	.program--list__wrapper fieldset .form__checkbox {
		margin: 0.375rem 0;
	}
}
@media (min-width: 1025px) {
	.program--list__wrapper {
		display: block;
	}
	.program--list__wrapper fieldset {
		width: 100%;
	}
}
@media (min-width: 700px) {
	.program--list {
		margin-top: 4rem;
	}
}
@media (min-width: 1025px) {
	.program--list {
		margin-top: 0;
	}
}

.program-finder {
	margin-top: -15px;
}
@media (min-width: 1025px) {
	.program-finder {
		margin-top: 1rem;
		display: -webkit-box;
		display: -webkit-flex;
		display: -moz-box;
		display: -ms-flexbox;
		display: flex;
		gap: 120px;
	}
	.program-finder__filter {
		max-width: 260px;
	}
}

.program--full .wysiwyg p, .program--full .wysiwyg h1, .program--full .wysiwyg h2, .program--full .wysiwyg h3, .program--full .wysiwyg h4, .program--full .wysiwyg h5, .program--full .wysiwyg h6, .program--full .wysiwyg ol, .program--full .wysiwyg ul, .program--full .wysiwyg form {
	margin-left: auto;
	margin-right: auto;
}
@media (min-width: 1025px) {
	.program--full figure {
		max-width: 1040px;
		margin-left: auto;
		margin-right: auto;
	}
}

/**
* @file
* Calendar
*
* Contains styles for the Calendar Detail Page
*/
.event-detail__header {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-bottom: 2rem;
}
.event-detail__data {
	width: 100%;
}
.event-detail__tags {
	margin-top: 35px;
}
@media (min-width: 700px) {
	.event-detail__tags {
		margin-top: 40px;
	}
}
@media (min-width: 1025px) {
	.event-detail__tags {
		margin-top: 60px;
	}
}
.event-detail__tags-label, .event-detail__save-label {
	font-weight: 700;
}
.event-detail__date {
	text-align: center;
	width: 61px;
	height: 61px;
	border: 1px solid;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
@media (min-width: 700px) {
	.event-detail__date {
		width: 86px;
		height: 86px;
	}
}
@media (min-width: 1025px) {
	.event-detail__date {
		width: 129px;
		height: 129px;
	}
}
.event-detail__reg-meter {
	background-color: #666666;
	width: 100%;
}
.event-detail__reg-fill {
	background-color: #CC6600;
	height: 15px;
}
.event-detail__body:after {
	display: table;
	content: "";
	clear: both;
}
.event-detail__body figure.align-right {
	margin: 2rem -15px;
}
@media (min-width: 700px) {
	.event-detail__body figure.align-right {
		float: right;
		margin: 0 0 2rem 2rem;
	}
}
.event-detail__body figure.align-right img {
	width: 100%;
}
.event-detail__month {
	text-transform: uppercase;
}

/**
* @file
* Blog
*
* Contains styles for Event list.
*/
.event-list__items {
	padding: 0;
	list-style: none;
}
.event-list__item {
	margin: 0 0 2rem;
}
.event-list__date {
	width: 80px;
	height: 80px;
	border: 1px solid;
	float: left;
	margin-right: 20px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.event-list__data {
	overflow: hidden;
}
.event-list__time {
	font-weight: 700;
}
.event-list__title {
	margin-top: 0;
}
.event-list__location {
	font-style: italic;
}

/**
* @file
* Calendar List
*
* Contains styles for the Calendar List
*/
@media (min-width: 700px) {
	.calendar h1 {
		float: left;
	}
}
@media (min-width: 1025px) {
	.calendar h1 {
		float: none;
	}
}
@media (min-width: 700px) {
	.calendar__expand-filters {
		float: right;
		clear: right;
		margin-top: 2rem;
	}
}
@media (min-width: 1025px) {
	.calendar__expand-filters {
		display: none;
	}
}
.calendar__left-col {
	clear: left;
}
.calendar__pagination__list {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	list-style: none;
	padding: 0;
}
.calendar__pagination__list li:after {
	content: "|";
	display: inline-block;
	vertical-align: middle;
	margin: -0.3rem 10px 0;
}
.calendar__pagination__list li:last-child:after {
	content: none;
}
.calendar__pagination {
	margin-bottom: 2rem;
}
.calendar__pagination__date {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	margin-left: -13.5px;
}
.calendar__event__date {
	text-align: center;
	width: 61px;
	height: 61px;
	float: left;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	border: 1px solid #000000;
	margin-right: 15px;
}
@media (min-width: 700px) {
	.calendar__event__date {
		width: 86px;
		height: 86px;
	}
}
.calendar__event__text {
	overflow: hidden;
}
.calendar__event__text h2 {
	margin-top: 0;
	margin-bottom: 0;
}
.calendar__category-dates {
	display: none;
}
@media (min-width: 700px) {
	.calendar__category-dates {
		float: right;
		clear: right;
	}
}
@media (min-width: 1025px) {
	.calendar__category-dates {
		display: block !important;
	}
}
.calendar__event {
	margin-bottom: 2rem;
}
.calendar .mini-cal__header {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
}
.calendar .mini-cal__dates td {
	padding: 0 0.25em;
}
.calendar .mini-cal .current {
	background: #000000;
}
.calendar .mini-cal .current a {
	color: #FFFFFF;
}
.calendar .icon-arrow-left,
.calendar .icon-arrow-right {
	position: relative;
	width: 40px;
}
.calendar .icon-arrow-left:after,
.calendar .icon-arrow-right:after {
	position: absolute;
	top: 50%;
	left: 50%;
	content: "";
	height: 0.75rem;
	width: 0.75rem;
	background: #000000;
	border: 0;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.calendar .control-wrap label {
	display: block;
	position: relative;
	padding-left: 30px;
}
.calendar .control-wrap label input[type=checkbox] {
	display: inline;
}
.calendar .control-wrap label input[type=checkbox]:checked + .control-text:after {
	content: "";
	position: absolute;
	left: 6px;
	top: 12px;
	background: #000000;
	width: 8px;
	height: 8px;
	display: block;
}
.calendar .control-wrap label .control-text:before {
	content: "";
	border: 1px solid #000000;
	width: 18px;
	height: 18px;
	position: absolute;
	left: 0;
	top: 6px;
}
.calendar .category__drop fieldset {
	border: 0;
	padding: 0;
}
.calendar__loc-description {
	margin: 0 0 1em;
}
.calendar__loc-description img {
	float: right;
}
.calendar__loc-tools a {
	display: block;
}
.calendar__loc-tools img, .calendar__loc-tools span {
	display: inline;
}
.calendar__loc-list .results__header {
	font-weight: 700;
	border-bottom: 1px solid #000000;
}
.calendar__loc-list .results ul {
	padding: 0;
}
.calendar__loc-list .results li {
	list-style: none;
}
.calendar__loc-list .results time {
	display: block;
}

/**
* @file
* Calendar
*
* Contains styles for the Calendar search Page
*/
.calendar-search__picker {
	display: inline-block;
	background-image: url("/_resources/assets/icons/calendar.png");
	width: 16px;
	height: 16px;
}
.calendar-search__col {
	margin-left: 20px;
}
.calendar-search label {
	display: block;
}
.calendar-search-results .results__header {
	font-weight: 700;
	border-bottom: 1px solid #000000;
}
.calendar-search-results .results ul {
	padding: 0;
}
.calendar-search-results .results li {
	list-style: none;
}
.calendar-search-results .results time {
	display: block;
}

/**
* @file
* Calendar Submit
*
* Contains styles for the Calendar Submit Event page
*/
.calendar-submit textarea {
	width: 100%;
	margin: 0.625em 0;
}
.calendar-submit input[type=checkbox] {
	-webkit-appearance: checkbox;
	-moz-appearance: checkbox;
	appearance: checkbox;
	margin: 0 5px 0 0;
}
.calendar-submit input[type=radio] {
	-webkit-appearance: radio;
	-moz-appearance: radio;
	appearance: radio;
	margin: 0 5px 0 0;
}
.calendar-submit select {
	-webkit-appearance: auto;
	-moz-appearance: auto;
	appearance: auto;
}
.calendar-submit label {
	display: block;
}
.calendar-submit label[for=eventDate] {
	display: inline-block;
}
.calendar-submit .onote {
	display: block;
}
.calendar-submit .catCol .sub {
	margin-left: 1rem;
}

/**
* @file
* Calendar Email Event
*
* Contains styles for the Calendar email an event page.
*/
.calendar-email textarea {
	width: calc(100% - 100px);
	margin-left: 100px;
	float: left;
}
.calendar-email .output {
	display: block;
}
.calendar-email label,
.calendar-email .label {
	clear: both;
	float: left;
	padding: 0 5px 0 0;
	width: 100px;
	text-align: right;
}
.calendar-email input, .calendar-email select, .calendar-email textarea {
	float: left;
	margin: 3px 0 5px 3px;
}
.calendar-email #capChk {
	display: block;
	float: left;
	margin: 0 0 0 5px;
}

/**
* @file
* Slick
*
* Slick carousel styles.
*/
.slick {
	position: relative;
}

.slick-slide {
	position: relative;
}

.slick-dots {
	list-style: none;
	text-align: center;
	margin: 0;
	padding: 0;
}
.slick-dots li {
	display: inline-block;
}
.slick-dots button {
	position: relative;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	border: 0;
	font: 0/0 a;
	text-shadow: none;
	color: transparent;
	background-color: transparent;
	height: 40px;
	width: 40px;
	padding: 0;
}
.slick-dots button:after {
	position: absolute;
	top: 50%;
	left: 50%;
	content: "";
	height: 0.5rem;
	width: 0.5rem;
	background: #000000;
	border: 0;
	border-radius: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
li:not(.slick-active) button:after {
	background: rgba(0, 0, 0, 0.5);
}

.slick-arrow {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	border: 0;
	font: 0/0 a;
	text-shadow: none;
	color: transparent;
	background-color: transparent;
	height: 35px;
	width: 35px;
	padding: 0;
	z-index: 5;
	background-color: #A4FFBF;
	border-radius: 8px;
	-webkit-transition: background-color 300ms ease;
	-o-transition: background-color 300ms ease;
	transition: background-color 300ms ease;
}
.slick-arrow:focus {
  outline-offset: -3px;
}
.slick-arrow:after {
	position: absolute;
	top: 50%;
	left: 48%;
	content: "";
	height: 10px;
	width: 10px;
	border-right: 3px solid #003F12;
	border-top: 3px solid #003F12;
	-webkit-transform: translate(-50%, -50%) rotate(45deg);
	-ms-transform: translate(-50%, -50%) rotate(45deg);
	transform: translate(-50%, -50%) rotate(45deg);
}
.slick-arrow.slick-disabled {
	opacity: 0.5;
	pointer-events: none;
}
.slick-arrow:hover {
	background-color: #FFFFFF;
}
.slick-arrow.prevArrow:after {
	-webkit-transform: translate(-50%, -50%) rotate(225deg);
	-ms-transform: translate(-50%, -50%) rotate(225deg);
	transform: translate(-50%, -50%) rotate(225deg);
	left: 54%;
}
@media (min-width: 700px) {
	.slick-arrow {
		width: 46px;
		height: 46px;
	}
}

.slick-next {
	right: 0;
}
/*# sourceMappingURL=maps/main.css.map */
