@charset "UTF-8";
/* stylelint-disable order/order */
/*
* Converts an pixel value into a rem value.
*
* @param string  $values    the pixel value(s) as a number. Can convert multiple values if values separated by a space.
* @param integer $base      the base pixel value.
*
* @return string   a space-separated string of rem values.
*/
/*
* This is an abbreviated wrapper for the responsive-values function.
*/
/*
* Creates a CSS clamp value that sizes between breakpoints.
*
* @param integer $min                    the minimum pixel value.
* @param integer $max                    the maximum pixel value.
* @param string  $smallest-breakpoint    the name of the smallest breakpoint from the $grid-breakpoints variable.
* @param string  $largest-breakpoint     the name of the largest breakpoint from the $grid-breakpoints variable.
* @param string  $screen                 whether to use a horizontal (width) breakpoint or a vertical (height) breakpoint.
*
* @return string   a CSS clamp property value.
*/
/*
* Outputs a font family value from the $fonts variable.
*
* @param string  $key   the font key.
*
* @return string   a font family value.
*/
/*
* Outputs a color value from the $paints or $additional-paints variables.
*
* @param string   $key   the color name.
*
* @return string   a color value.
*/
/*
* Outputs an effect value from the $effects variable.
*
* @param string  $key   the effect name.
*
* @return string   an effect value.
*/
/* stylelint-enable order/order */
/*
* Used to target heading selectors.
*
* @param integer  $start               the first heading element to target. 1 through 6.
* @param integer  $end                 the last heading element to target. 1 through 6.
* @param string   $beforeCombinator    the CSS combinator to include before the heading classes.
* @param string   $afterCombinator     the CSS combinator to include after the heading classes.
* @param boolean  $includeFontClasses  whether or not to include the .has-t-1... classes or just output the standard heading elements.
*
* @return string  The included CSS wrapped with selectors for the specified headings.
*/
/*
* Used to add properties to a for a pseudo element to make an icon based on the iconfont set.
*
* @param string   $content     the content for the icon. Usually uses one of the iconfont variables.
* @param string   $font-size   the font size with unit.
*
* @return string  The CSS properties for the icon.
*/
/*
* Generates CSS to fit an element into the 12-column grid. Only works when used on an element where the parent element is the width of the entire page.
*
* @return string  CSS properties to set the width of the element to the specified column sizes.
*/
/*
* Used to target elements with a background color that has a text color different from the standard color.
*
* @param string   $additionalSelectors     additional comma-separated selectors to add.
*
* @return string  The included CSS wrapped with selectors for the specified background.
*/
/*
* Used to target button elements with a background color set to use the alt button colors.
*
* @param string   $additionalSelectors     additional comma-separated selectors to add.
*
* @return string  The included CSS wrapped with selectors for the specified background.
*/
/*
* Used to add the CSS Grid properties for the 12-column grid.
*
* @return string  The CSS Grid properties for the 12-column grid.
*/
/*
* Used to visually hide an element but still allow screen readers to access the element and its contents for accessibility.
*
* @return string  The styles needed to visually hide an element.
*/
.fade-up {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition: 300ms opacity 300ms ease-out, 300ms transform 300ms ease-out;
}
.fade-up.in-viewport {
  opacity: 1 !important;
  transform: none !important;
}

/****************
 * Fonts
 *
 * The font settings are defined via the gulp figma which task creates variables in the css/__base-includes/figma/_figma-font-styles.scss file based on the Figma file. Additional variables are defined here.
 ****************/
/*
* This array is used to specify the fonts used on the project with the following parameters:
	base - the name for use in the font() mixin.
		css - the output CSS value.
		figma-name: - the 'font-family' name ued in the _figma-font-variable.scss file.
	)
*/
/****************
 * Colors
 *
 * The primary colors are defined via the gulp figma task which creates variables in the css/__base-includes/figma/_figma-color-variables.scss file based on the Figma file. Additional variables are defined here.
 ****************/
/* If additional colors need to be added to the _figma-color-variables.scss, they can be added to this variable: */
/* This variable controls the background colors generated in the ACF background_color field and the background color classes - bg-white, bg-neutral-10, etc: */
/* This variable controls the default text color on a light background. Used with paint(text) to generate a CSS variable that changes to use background font colors. */
/* If a background color uses a different font color than the default color, use these variables to specify the alternate colors */
/* Backgrounds specified in this variable will use the alternative text colors: */
/* Backgrounds specified in this variable will use the alternative button colors: */
/****************
 * Effects
 ****************/
/****************
 * Grid Settings
 ****************/
/****************
 * Block Spacing
 *
 * These variables are based on the "Spacing" rules found in the "Foundations" section in Figma. These control the default spacing between blocks of different colors.
 ****************/
/*
This file can be used for optional additions to the Figma-generated font style mixins in the figma/_figma-font-styles.scss file.

For example, if you want to add styles to the @overline mixin, just create a mixin here called @overline-custom and that CSS will be added to the primary mixin:

@mixin overline-custom() {
	font-weight: 700;
}
*/
@font-face {
  font-weight: 400;
  font-family: iconfont-propel;
  font-style: normal;
  src: url(../dist/fonts/iconfont-propel/iconfont-propel.eot?a6s5cf);
  src: url(../dist/fonts/iconfont-propel/iconfont-propel.eot?a6s5cf#iefix) format("eot"), url(../dist/fonts/iconfont-propel/iconfont-propel.woff2?a6s5cf) format("woff2"), url(../dist/fonts/iconfont-propel/iconfont-propel.woff?a6s5cf) format("woff"), url(../dist/fonts/iconfont-propel/iconfont-propel.ttf?a6s5cf) format("truetype"), url(../dist/fonts/iconfont-propel/iconfont-propel.svg?a6s5cf#iconfont-propel) format("svg");
}
[class^=icon-],
[class*=" icon-"] {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  line-height: 0;
}
[class^=icon-]::before,
[class*=" icon-"]::before {
  font-weight: 400;
  font-size: inherit;
  font-family: "iconfont-propel";
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  -moz-osx-font-smoothing: grayscale;
  /* stylelint-disable-line order/properties-alphabetical-order */
  -webkit-font-smoothing: antialiased;
  /* stylelint-disable-line order/properties-alphabetical-order */
}

:root {
  --icon-Subtract: "";
  --icon-UI: "";
  --icon-account: "";
  --icon-address-card: "";
  --icon-age: "";
  --icon-arrow-downward: "";
  --icon-arrow-external: "";
  --icon-arrow-left: "";
  --icon-arrow-right: "";
  --icon-arrow-upward: "";
  --icon-bathroom: "";
  --icon-bed: "";
  --icon-calendar: "";
  --icon-cancel: "";
  --icon-cart: "";
  --icon-check-box-checked: "";
  --icon-check-box-unchecked: "";
  --icon-check-circle: "";
  --icon-check: "";
  --icon-chev-collapse: "";
  --icon-chev-expand: "";
  --icon-chev-left: "";
  --icon-chev-right: "";
  --icon-close: "";
  --icon-cursor: "";
  --icon-download-pdf: "";
  --icon-download: "";
  --icon-drop-down: "";
  --icon-drop-left: "";
  --icon-drop-right: "";
  --icon-drop-up: "";
  --icon-email: "";
  --icon-error: "";
  --icon-facebook: "";
  --icon-fax: "";
  --icon-filter: "";
  --icon-grid-view: "";
  --icon-icon: "";
  --icon-illustration: "";
  --icon-image: "";
  --icon-infographic: "";
  --icon-instagram: "";
  --icon-lifestyle: "";
  --icon-link: "";
  --icon-linkedin: "";
  --icon-list-view: "";
  --icon-location: "";
  --icon-maximize: "";
  --icon-menu-left: "";
  --icon-menu-right: "";
  --icon-menu: "";
  --icon-minimize: "";
  --icon-nav-down: "";
  --icon-nav-up: "";
  --icon-phone: "";
  --icon-play: "";
  --icon-price: "";
  --icon-quote-aligned: "";
  --icon-quote: "";
  --icon-radio-button-checked: "";
  --icon-radio-button-unchecked: "";
  --icon-recurring: "";
  --icon-remove: "";
  --icon-reset: "";
  --icon-room-service: "";
  --icon-search: "";
  --icon-share: "";
  --icon-sort: "";
  --icon-square-feet: "";
  --icon-star-full: "";
  --icon-tag: "";
  --icon-time: "";
  --icon-toggle-off: "";
  --icon-toggle-on: "";
  --icon-top: "";
  --icon-twitter: "";
  --icon-upload: "";
  --icon-virtual: "";
  --icon-water-view: "";
  --icon-wheelchair-accessible: "";
  --icon-wifi: "";
  --icon-x: "";
  --icon-youtube: "";
}

.icon-Subtract::before {
  content: "\ea01";
}

.icon-UI::before {
  content: "\ea02";
}

.icon-account::before {
  content: "\ea03";
}

.icon-address-card::before {
  content: "\ea04";
}

.icon-age::before {
  content: "\ea05";
}

.icon-arrow-downward::before {
  content: "\ea06";
}

.icon-arrow-external::before {
  content: "\ea07";
}

.icon-arrow-left::before {
  content: "\ea08";
}

.icon-arrow-right::before {
  content: "\ea09";
}

.icon-arrow-upward::before {
  content: "\ea0a";
}

.icon-bathroom::before {
  content: "\ea0b";
}

.icon-bed::before {
  content: "\ea0c";
}

.icon-calendar::before {
  content: "\ea0d";
}

.icon-cancel::before {
  content: "\ea0e";
}

.icon-cart::before {
  content: "\ea0f";
}

.icon-check-box-checked::before {
  content: "\ea10";
}

.icon-check-box-unchecked::before {
  content: "\ea11";
}

.icon-check-circle::before {
  content: "\ea12";
}

.icon-check::before {
  content: "\ea13";
}

.icon-chev-collapse::before {
  content: "\ea14";
}

.icon-chev-expand::before {
  content: "\ea15";
}

.icon-chev-left::before {
  content: "\ea16";
}

.icon-chev-right::before {
  content: "\ea17";
}

.icon-close::before {
  content: "\ea18";
}

.icon-cursor::before {
  content: "\ea19";
}

.icon-download-pdf::before {
  content: "\ea1a";
}

.icon-download::before {
  content: "\ea1b";
}

.icon-drop-down::before {
  content: "\ea1c";
}

.icon-drop-left::before {
  content: "\ea1d";
}

.icon-drop-right::before {
  content: "\ea1e";
}

.icon-drop-up::before {
  content: "\ea1f";
}

.icon-email::before {
  content: "\ea20";
}

.icon-error::before {
  content: "\ea21";
}

.icon-facebook::before {
  content: "\ea22";
}

.icon-fax::before {
  content: "\ea23";
}

.icon-filter::before {
  content: "\ea24";
}

.icon-grid-view::before {
  content: "\ea25";
}

.icon-icon::before {
  content: "\ea26";
}

.icon-illustration::before {
  content: "\ea27";
}

.icon-image::before {
  content: "\ea28";
}

.icon-infographic::before {
  content: "\ea29";
}

.icon-instagram::before {
  content: "\ea2a";
}

.icon-lifestyle::before {
  content: "\ea2b";
}

.icon-link::before {
  content: "\ea2c";
}

.icon-linkedin::before {
  content: "\ea2d";
}

.icon-list-view::before {
  content: "\ea2e";
}

.icon-location::before {
  content: "\ea2f";
}

.icon-maximize::before {
  content: "\ea30";
}

.icon-menu-left::before {
  content: "\ea31";
}

.icon-menu-right::before {
  content: "\ea32";
}

.icon-menu::before {
  content: "\ea33";
}

.icon-minimize::before {
  content: "\ea34";
}

.icon-nav-down::before {
  content: "\ea35";
}

.icon-nav-up::before {
  content: "\ea36";
}

.icon-phone::before {
  content: "\ea37";
}

.icon-play::before {
  content: "\ea38";
}

.icon-price::before {
  content: "\ea39";
}

.icon-quote-aligned::before {
  content: "\ea3a";
}

.icon-quote::before {
  content: "\ea3b";
}

.icon-radio-button-checked::before {
  content: "\ea3c";
}

.icon-radio-button-unchecked::before {
  content: "\ea3d";
}

.icon-recurring::before {
  content: "\ea3e";
}

.icon-remove::before {
  content: "\ea3f";
}

.icon-reset::before {
  content: "\ea40";
}

.icon-room-service::before {
  content: "\ea41";
}

.icon-search::before {
  content: "\ea42";
}

.icon-share::before {
  content: "\ea43";
}

.icon-sort::before {
  content: "\ea44";
}

.icon-square-feet::before {
  content: "\ea45";
}

.icon-star-full::before {
  content: "\ea46";
}

.icon-tag::before {
  content: "\ea47";
}

.icon-time::before {
  content: "\ea48";
}

.icon-toggle-off::before {
  content: "\ea49";
}

.icon-toggle-on::before {
  content: "\ea4a";
}

.icon-top::before {
  content: "\ea4b";
}

.icon-twitter::before {
  content: "\ea4c";
}

.icon-upload::before {
  content: "\ea4d";
}

.icon-virtual::before {
  content: "\ea4e";
}

.icon-water-view::before {
  content: "\ea4f";
}

.icon-wheelchair-accessible::before {
  content: "\ea50";
}

.icon-wifi::before {
  content: "\ea51";
}

.icon-x::before {
  content: "\ea52";
}

.icon-youtube::before {
  content: "\ea53";
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

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

body {
  margin: 0;
  text-align: left;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

hr {
  height: 0;
  box-sizing: content-box;
  overflow: visible;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0;
}

p {
  margin-top: 0;
  margin-bottom: 0;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  text-decoration: underline dotted;
  border-bottom: 0;
  cursor: help;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: 700;
}

small {
  font-size: 0.8em;
}

sub,
sup {
  position: relative;
  font-size: 0.7em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}
a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
  color: inherit;
  text-decoration: none;
}
a:not([href]):not([tabindex]):focus {
  outline: 0;
}

pre,
code,
kbd,
samp {
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  vertical-align: middle;
  overflow: hidden;
}

table {
  border-collapse: collapse;
}

caption {
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
}

label {
  display: inline-block;
  margin-bottom: 0;
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

select {
  word-wrap: normal;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type=radio],
input[type=checkbox] {
  padding: 0;
  box-sizing: border-box;
}

input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  margin-bottom: 0.5rem;
  padding: 0;
  color: inherit;
  line-height: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

/**
 * Base styles that aim to normalize fonts, and display of elements
 * across browsers, and make writing further styles easier.
 */
/* Set font and clear body padding */
html,
button,
input,
select,
textarea {
  font-family: 'trade-gothic-next', sans-serif;
}

body {
  font-weight: var(--body-1-font-weight);
  font-size: var(--body-1-font-size);
  font-family: var(--body-1-font-family);
  line-height: var(--body-1-line-height);
  min-width: 20rem;
  margin: 0;
  color: var(--blockColor, #000);
  font-family: 'trade-gothic-next', sans-serif;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
}
@media (max-width: 47.98rem) {
  body {
    font-size: 1rem;
    line-height: 1.5;
  }
}
body.lock-scroll {
  overflow: hidden;
}
body.no-scroll {
  overflow: hidden;
}
body.overlayed #page {
  position: relative;
}
body.overlayed #page::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: "";
  z-index: 9;
  display: block;
  background: rgba(20, 20, 21, 0.75);
}
body.overlayed #page .main-header {
  background-color: #fff;
}

/* Setting sizes is much more predictable with border-box */
*, *::before, *::after {
  box-sizing: border-box;
}

figure {
  margin: 0;
}

/* Make all images responsive */
img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

hr {
  margin: 3rem 0;
  border-top: 1px solid #6c7074;
}
@media (min-width: 48rem) {
  hr {
    margin: 5rem 0;
  }
}

/* Normalize links across browsers */
a {
  text-decoration: none;
  transition: color 0.2s linear;
}
a:hover {
  text-decoration: none;
}
a:not([class]) {
  color: #0066ba;
  text-decoration: underline;
  word-wrap: break-word;
}
.bg-dark a:not([class]), .bg-dark-blue a:not([class]) {
  color: #fff;
}
.bg-dark a:not([class]):hover, .bg-dark a:not([class]):focus, .bg-dark-blue a:not([class]):hover, .bg-dark-blue a:not([class]):focus {
  color: #ddddde;
}
a:not([class]):hover, a:not([class]):focus {
  color: #003661;
  text-decoration: underline;
}
a:not([class]) img {
  border: 0;
}

a:focus,
a:hover {
  color: #003661;
  text-decoration: none;
}

.tablet-checker {
  display: none;
}
@media (max-width: 63.98rem) {
  .tablet-checker {
    display: block;
  }
}

@media (max-width: 47.98rem) {
  .container-fluid {
    padding: 0 1.25rem;
  }
}

@media (max-width: 63.98rem) {
  .row {
    margin: 0 -0.625rem;
  }
}
@media (max-width: 35.98rem) {
  .row {
    margin: 0 -0.46875rem;
  }
}

@media (max-width: 63.98rem) {
  *[class*=" col-"],
*[class^=col-] {
    padding: 0 0.625rem;
  }
}
@media (max-width: 35.98rem) {
  *[class*=" col-"],
*[class^=col-] {
    padding: 0 0.46875rem;
  }
}

#page {
  position: relative;
}

/* Set custom outline styles */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: none;
}
html.user-tab-nav a:focus,
html.user-tab-nav button:focus,
html.user-tab-nav input:focus,
html.user-tab-nav select:focus,
html.user-tab-nav textarea:focus {
  outline: 0.125rem solid #7aacfe;
  outline-offset: 0;
}

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: clamp(0.5rem, 0.0789473684rem + 0.8771929825vw, 1rem);
  padding-left: clamp(0.5rem, 0.0789473684rem + 0.8771929825vw, 1rem);
  max-width: 36rem;
}
@media (min-width: 36rem) {
  .container {
    max-width: 48rem;
  }
}
@media (min-width: 48rem) {
  .container {
    max-width: 62rem;
  }
}
@media (min-width: 64rem) {
  .container {
    max-width: 75rem;
  }
}
@media (min-width: 75rem) {
  .container {
    max-width: 90rem;
  }
}

.container-fluid {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: clamp(0.5rem, 0.0789473684rem + 0.8771929825vw, 1rem);
  padding-left: clamp(0.5rem, 0.0789473684rem + 0.8771929825vw, 1rem);
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: clamp(-1rem, -0.0789473684rem + -0.8771929825vw, -0.5rem);
  margin-left: clamp(-1rem, -0.0789473684rem + -0.8771929825vw, -0.5rem);
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*=" col-"],
.no-gutters > [class^=col-] {
  padding-right: 0;
  padding-left: 0;
}

/* stylelint-disable-line order/order */
.col-1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.offset-1 {
  margin-left: 8.3333333333%;
}

.offset-2 {
  margin-left: 16.6666666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.3333333333%;
}

.offset-5 {
  margin-left: 41.6666666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.3333333333%;
}

.offset-8 {
  margin-left: 66.6666666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.3333333333%;
}

.offset-11 {
  margin-left: 91.6666666667%;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

@media (min-width: 36rem) {
  /* stylelint-disable-line order/order */
  .col-sm-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-sm-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-sm-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-sm-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-sm-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 8.3333333333%;
  }

  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }

  .offset-sm-3 {
    margin-left: 25%;
  }

  .offset-sm-4 {
    margin-left: 33.3333333333%;
  }

  .offset-sm-5 {
    margin-left: 41.6666666667%;
  }

  .offset-sm-6 {
    margin-left: 50%;
  }

  .offset-sm-7 {
    margin-left: 58.3333333333%;
  }

  .offset-sm-8 {
    margin-left: 66.6666666667%;
  }

  .offset-sm-9 {
    margin-left: 75%;
  }

  .offset-sm-10 {
    margin-left: 83.3333333333%;
  }

  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }

  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
}
@media (min-width: 48rem) {
  /* stylelint-disable-line order/order */
  .col-md-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-md-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-md-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-md-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-md-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-md-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-md-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1 {
    margin-left: 8.3333333333%;
  }

  .offset-md-2 {
    margin-left: 16.6666666667%;
  }

  .offset-md-3 {
    margin-left: 25%;
  }

  .offset-md-4 {
    margin-left: 33.3333333333%;
  }

  .offset-md-5 {
    margin-left: 41.6666666667%;
  }

  .offset-md-6 {
    margin-left: 50%;
  }

  .offset-md-7 {
    margin-left: 58.3333333333%;
  }

  .offset-md-8 {
    margin-left: 66.6666666667%;
  }

  .offset-md-9 {
    margin-left: 75%;
  }

  .offset-md-10 {
    margin-left: 83.3333333333%;
  }

  .offset-md-11 {
    margin-left: 91.6666666667%;
  }

  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
}
@media (min-width: 64rem) {
  /* stylelint-disable-line order/order */
  .col-lg-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-lg-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-lg-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-lg-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-lg-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.3333333333%;
  }

  .offset-lg-2 {
    margin-left: 16.6666666667%;
  }

  .offset-lg-3 {
    margin-left: 25%;
  }

  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }

  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }

  .offset-lg-6 {
    margin-left: 50%;
  }

  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }

  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }

  .offset-lg-9 {
    margin-left: 75%;
  }

  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }

  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }

  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
}
@media (min-width: 75rem) {
  /* stylelint-disable-line order/order */
  .col-xl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-xl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-xl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-xl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-xl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1 {
    margin-left: 8.3333333333%;
  }

  .offset-xl-2 {
    margin-left: 16.6666666667%;
  }

  .offset-xl-3 {
    margin-left: 25%;
  }

  .offset-xl-4 {
    margin-left: 33.3333333333%;
  }

  .offset-xl-5 {
    margin-left: 41.6666666667%;
  }

  .offset-xl-6 {
    margin-left: 50%;
  }

  .offset-xl-7 {
    margin-left: 58.3333333333%;
  }

  .offset-xl-8 {
    margin-left: 66.6666666667%;
  }

  .offset-xl-9 {
    margin-left: 75%;
  }

  .offset-xl-10 {
    margin-left: 83.3333333333%;
  }

  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }

  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
}
@media (min-width: 105rem) {
  /* stylelint-disable-line order/order */
  .col-xxl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-xxl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-xxl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xxl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-xxl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-xxl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xxl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-xxl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-xxl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xxl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-xxl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-xxl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .offset-xxl-0 {
    margin-left: 0;
  }

  .offset-xxl-1 {
    margin-left: 8.3333333333%;
  }

  .offset-xxl-2 {
    margin-left: 16.6666666667%;
  }

  .offset-xxl-3 {
    margin-left: 25%;
  }

  .offset-xxl-4 {
    margin-left: 33.3333333333%;
  }

  .offset-xxl-5 {
    margin-left: 41.6666666667%;
  }

  .offset-xxl-6 {
    margin-left: 50%;
  }

  .offset-xxl-7 {
    margin-left: 58.3333333333%;
  }

  .offset-xxl-8 {
    margin-left: 66.6666666667%;
  }

  .offset-xxl-9 {
    margin-left: 75%;
  }

  .offset-xxl-10 {
    margin-left: 83.3333333333%;
  }

  .offset-xxl-11 {
    margin-left: 91.6666666667%;
  }

  .col-xxl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
}
@media (min-width: 120rem) {
  /* stylelint-disable-line order/order */
  .col-xxxl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-xxxl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-xxxl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xxxl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-xxxl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-xxxl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xxxl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-xxxl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-xxxl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xxxl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-xxxl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-xxxl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .offset-xxxl-0 {
    margin-left: 0;
  }

  .offset-xxxl-1 {
    margin-left: 8.3333333333%;
  }

  .offset-xxxl-2 {
    margin-left: 16.6666666667%;
  }

  .offset-xxxl-3 {
    margin-left: 25%;
  }

  .offset-xxxl-4 {
    margin-left: 33.3333333333%;
  }

  .offset-xxxl-5 {
    margin-left: 41.6666666667%;
  }

  .offset-xxxl-6 {
    margin-left: 50%;
  }

  .offset-xxxl-7 {
    margin-left: 58.3333333333%;
  }

  .offset-xxxl-8 {
    margin-left: 66.6666666667%;
  }

  .offset-xxxl-9 {
    margin-left: 75%;
  }

  .offset-xxxl-10 {
    margin-left: 83.3333333333%;
  }

  .offset-xxxl-11 {
    margin-left: 91.6666666667%;
  }

  .col-xxxl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-xxxl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
}
@media (min-width: 160rem) {
  /* stylelint-disable-line order/order */
  .col-xxxxl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-xxxxl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-xxxxl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xxxxl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-xxxxl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-xxxxl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xxxxl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-xxxxl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-xxxxl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xxxxl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-xxxxl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-xxxxl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .offset-xxxxl-0 {
    margin-left: 0;
  }

  .offset-xxxxl-1 {
    margin-left: 8.3333333333%;
  }

  .offset-xxxxl-2 {
    margin-left: 16.6666666667%;
  }

  .offset-xxxxl-3 {
    margin-left: 25%;
  }

  .offset-xxxxl-4 {
    margin-left: 33.3333333333%;
  }

  .offset-xxxxl-5 {
    margin-left: 41.6666666667%;
  }

  .offset-xxxxl-6 {
    margin-left: 50%;
  }

  .offset-xxxxl-7 {
    margin-left: 58.3333333333%;
  }

  .offset-xxxxl-8 {
    margin-left: 66.6666666667%;
  }

  .offset-xxxxl-9 {
    margin-left: 75%;
  }

  .offset-xxxxl-10 {
    margin-left: 83.3333333333%;
  }

  .offset-xxxxl-11 {
    margin-left: 91.6666666667%;
  }

  .col-xxxxl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-xxxxl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
}
.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto, .col-xxl-1, .col-xxl-2, .col-xxl-3, .col-xxl-4, .col-xxl-5, .col-xxl-6, .col-xxl-7, .col-xxl-8, .col-xxl-9, .col-xxl-10, .col-xxl-11, .col-xxl-12, .col-xxl,
.col-xxl-auto, .col-xxxl-1, .col-xxxl-2, .col-xxxl-3, .col-xxxl-4, .col-xxxl-5, .col-xxxl-6, .col-xxxl-7, .col-xxxl-8, .col-xxxl-9, .col-xxxl-10, .col-xxxl-11, .col-xxxl-12, .col-xxxl,
.col-xxxl-auto, .col-xxxxl-1, .col-xxxxl-2, .col-xxxxl-3, .col-xxxxl-4, .col-xxxxl-5, .col-xxxxl-6, .col-xxxxl-7, .col-xxxxl-8, .col-xxxxl-9, .col-xxxxl-10, .col-xxxxl-11, .col-xxxxl-12, .col-xxxxl,
.col-xxxxl-auto {
  position: relative;
  width: 100%;
  padding-right: clamp(0.5rem, 0.0789473684rem + 0.8771929825vw, 1rem);
  padding-left: clamp(0.5rem, 0.0789473684rem + 0.8771929825vw, 1rem);
}

/**
 * WordPress specific base styles.
 */
.gm-style img {
  max-width: none;
}

.media img,
.media video,
.media object,
.media iframe {
  width: 100%;
  height: auto;
}

/* Make WordPress media inserted to post behave correctly */
.navigation.pagination {
  clear: both;
}

/* WP navigation menus are lists, but they don't need default list styling */
nav a {
  color: var(--blockColor, #000);
  text-decoration: none;
}
nav a:hover {
  color: var(--blockColor, #000);
  text-decoration: none;
}
nav li {
  display: inline-block;
  margin: 0;
}
nav ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
nav ul ul li::before {
  content: none;
}

.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  padding: 0.3125rem 0;
  font-size: 0.9375rem;
  line-height: 1.375rem;
}

h1, h2, h3, h4, h5, h6 {
  color: inherit;
}

.acf-block:not(.bg-white):not(.bg-transparent) + h1, .acf-block:not(.bg-white):not(.bg-transparent) + .has-t-1-font-size, .acf-block:not(.bg-white):not(.bg-transparent) + h2, .acf-block:not(.bg-white):not(.bg-transparent) + .has-t-2-font-size, .acf-block:not(.bg-white):not(.bg-transparent) + h3, .acf-block:not(.bg-white):not(.bg-transparent) + .has-t-3-font-size, .acf-block:not(.bg-white):not(.bg-transparent) + h4, .acf-block:not(.bg-white):not(.bg-transparent) + .has-t-4-font-size, .acf-block:not(.bg-white):not(.bg-transparent) + h5, .acf-block:not(.bg-white):not(.bg-transparent) + .has-t-5-font-size, .acf-block:not(.bg-white):not(.bg-transparent) + h6, .acf-block:not(.bg-white):not(.bg-transparent) + .has-t-6-font-size {
  margin-top: clamp(2.5rem, -0.1315789474rem + 5.4824561404vw, 5.625rem);
}
h1 + .acf-block:not(.bg-white):not(.bg-transparent), .has-t-1-font-size + .acf-block:not(.bg-white):not(.bg-transparent), h2 + .acf-block:not(.bg-white):not(.bg-transparent), .has-t-2-font-size + .acf-block:not(.bg-white):not(.bg-transparent), h3 + .acf-block:not(.bg-white):not(.bg-transparent), .has-t-3-font-size + .acf-block:not(.bg-white):not(.bg-transparent), h4 + .acf-block:not(.bg-white):not(.bg-transparent), .has-t-4-font-size + .acf-block:not(.bg-white):not(.bg-transparent), h5 + .acf-block:not(.bg-white):not(.bg-transparent), .has-t-5-font-size + .acf-block:not(.bg-white):not(.bg-transparent), h6 + .acf-block:not(.bg-white):not(.bg-transparent), .has-t-6-font-size + .acf-block:not(.bg-white):not(.bg-transparent) {
  margin-top: clamp(2.5rem, -0.1315789474rem + 5.4824561404vw, 5.625rem);
}

.has-display-font-size {
  font-weight: var(--display-font-weight);
  font-size: var(--display-font-size);
  font-family: var(--display-font-family);
  line-height: var(--display-line-height);
  margin-bottom: var(--display-margin-bottom);
  color: inherit;
}
.has-display-font-size:first-child {
  margin-top: 0;
}
.has-display-font-size:last-child {
  margin-bottom: 0;
}

h1,
.has-t-1-font-size {
  font-weight: var(--t1-font-weight);
  font-size: var(--t1-font-size);
  font-family: var(--t1-font-family);
  line-height: var(--t1-line-height);
  margin-top: calc(var(--t1-margin-bottom) * 2);
  margin-bottom: var(--t1-margin-bottom);
}
h1:first-child,
.has-t-1-font-size:first-child {
  margin-top: 0;
}
h1:last-child,
.has-t-1-font-size:last-child {
  margin-bottom: 0;
}

h2,
.has-t-2-font-size {
  font-weight: var(--t2-font-weight);
  font-size: var(--t2-font-size);
  font-family: var(--t2-font-family);
  line-height: var(--t2-line-height);
  margin-top: calc(var(--t2-margin-bottom) * 2);
  margin-bottom: var(--t2-margin-bottom);
}
h2:first-child,
.has-t-2-font-size:first-child {
  margin-top: 0;
}
h2:last-child,
.has-t-2-font-size:last-child {
  margin-bottom: 0;
}

h3,
.has-t-3-font-size {
  font-weight: var(--t3-font-weight);
  font-size: var(--t3-font-size);
  font-family: var(--t3-font-family);
  line-height: var(--t3-line-height);
  margin-top: calc(var(--t3-margin-bottom) * 2);
  margin-bottom: var(--t3-margin-bottom);
}
h3:first-child,
.has-t-3-font-size:first-child {
  margin-top: 0;
}
h3:last-child,
.has-t-3-font-size:last-child {
  margin-bottom: 0;
}

h4,
.has-t-4-font-size {
  font-weight: var(--t4-font-weight);
  font-size: var(--t4-font-size);
  font-family: var(--t4-font-family);
  line-height: var(--t4-line-height);
  margin-top: calc(var(--t4-margin-bottom) * 2);
  margin-bottom: var(--t4-margin-bottom);
}
h4:first-child,
.has-t-4-font-size:first-child {
  margin-top: 0;
}
h4:last-child,
.has-t-4-font-size:last-child {
  margin-bottom: 0;
}

h5,
.has-t-5-font-size {
  font-weight: var(--t5-font-weight);
  font-size: var(--t5-font-size);
  font-family: var(--t5-font-family);
  line-height: var(--t5-line-height);
  margin-top: calc(var(--t5-margin-bottom) * 2);
  margin-bottom: var(--t5-margin-bottom);
}
h5:first-child,
.has-t-5-font-size:first-child {
  margin-top: 0;
}
h5:last-child,
.has-t-5-font-size:last-child {
  margin-bottom: 0;
}

h6,
.has-t-6-font-size {
  font-weight: var(--t6-font-weight);
  font-size: var(--t6-font-size);
  font-family: var(--t6-font-family);
  line-height: var(--t6-line-height);
  letter-spacing: var(--t6-letter-spacing);
  text-transform: var(--t6-text-transform);
  margin-top: calc(var(--t6-margin-bottom) * 2);
  margin-bottom: var(--t6-margin-bottom);
}
h6:first-child,
.has-t-6-font-size:first-child {
  margin-top: 0;
}
h6:last-child,
.has-t-6-font-size:last-child {
  margin-bottom: 0;
}
h6 + h1, h6 + h2, h6 + h3, h6 + h4, h6 + h5, h6 + h6,
.has-t-6-font-size + h1,
.has-t-6-font-size + h2,
.has-t-6-font-size + h3,
.has-t-6-font-size + h4,
.has-t-6-font-size + h5,
.has-t-6-font-size + h6 {
  margin-top: 0 !important;
}

p {
  font-weight: var(--body-1-font-weight);
  font-size: var(--body-1-font-size);
  font-family: var(--body-1-font-family);
  line-height: var(--body-1-line-height);
  margin-bottom: var(--body-1-margin-bottom);
}
p:first-child {
  margin-top: 0;
}
p:last-child {
  margin-bottom: 0;
}
p:last-child {
  margin-bottom: 0;
}
p + .acf-block.bg-transparent {
  margin-top: var(--body-1-margin-bottom);
}
.acf-block:not(.bg-white):not(.bg-transparent) + p {
  margin-top: clamp(2.5rem, -0.1315789474rem + 5.4824561404vw, 5.625rem);
}
p + .acf-block:not(.bg-white):not(.bg-transparent) {
  margin-top: clamp(2.5rem, -0.1315789474rem + 5.4824561404vw, 5.625rem);
}

strong {
  font-weight: 600;
}

.has-body-1-font-size {
  font-weight: var(--body-1-font-weight);
  font-size: var(--body-1-font-size);
  font-family: var(--body-1-font-family);
  line-height: var(--body-1-line-height);
  margin-bottom: var(--body-1-margin-bottom);
}
.has-body-1-font-size:first-child {
  margin-top: 0;
}
.has-body-1-font-size:last-child {
  margin-bottom: 0;
}

.has-body-2-font-size {
  font-weight: var(--body-2-font-weight);
  font-size: var(--body-2-font-size);
  font-family: var(--body-2-font-family);
  line-height: var(--body-2-line-height);
  margin-bottom: var(--body-2-margin-bottom);
}
.has-body-2-font-size:first-child {
  margin-top: 0;
}
.has-body-2-font-size:last-child {
  margin-bottom: 0;
}

.has-lead-font-size {
  font-weight: var(--lead-font-weight);
  font-size: var(--lead-font-size);
  font-family: var(--lead-font-family);
  line-height: var(--lead-line-height);
  margin-top: calc(var(--lead-margin-bottom) * 1);
  margin-bottom: var(--lead-margin-bottom);
}
.has-lead-font-size:first-child {
  margin-top: 0;
}
.has-lead-font-size:last-child {
  margin-bottom: 0;
}

.has-quote-1-font-size {
  font-weight: var(--quote-1-font-weight);
  font-size: var(--quote-1-font-size);
  font-family: var(--quote-1-font-family);
  font-style: var(--quote-1-font-style);
  line-height: var(--quote-1-line-height);
  margin-top: calc(var(--quote-1-margin-bottom) * 2);
  margin-bottom: var(--quote-1-margin-bottom);
}
.has-quote-1-font-size:first-child {
  margin-top: 0;
}
.has-quote-1-font-size:last-child {
  margin-bottom: 0;
}

.has-quote-2-font-size {
  font-weight: var(--quote-2-font-weight);
  font-size: var(--quote-2-font-size);
  font-family: var(--quote-2-font-family);
  font-style: var(--quote-2-font-style);
  line-height: var(--quote-2-line-height);
  margin-top: calc(var(--quote-2-margin-bottom) * 2);
  margin-bottom: var(--quote-2-margin-bottom);
}
.has-quote-2-font-size:first-child {
  margin-top: 0;
}
.has-quote-2-font-size:last-child {
  margin-bottom: 0;
}

.has-stat-font-size {
  font-weight: var(--stat-font-weight);
  font-size: var(--stat-font-size);
  font-family: var(--stat-font-family);
  line-height: var(--stat-line-height);
  margin-bottom: var(--stat-margin-bottom);
}
.has-stat-font-size:first-child {
  margin-top: 0;
}
.has-stat-font-size:last-child {
  margin-bottom: 0;
}

.has-subtitle-1-font-size {
  font-weight: var(--subtitle-1-font-weight);
  font-size: var(--subtitle-1-font-size);
  font-family: var(--subtitle-1-font-family);
  line-height: var(--subtitle-1-line-height);
  text-decoration: var(--subtitle-1-text-decoration);
  margin-bottom: var(--subtitle-1-margin-bottom);
}
.has-subtitle-1-font-size:first-child {
  margin-top: 0;
}
.has-subtitle-1-font-size:last-child {
  margin-bottom: 0;
}

.has-subtitle-2-font-size {
  font-weight: var(--subtitle-2-font-weight);
  font-size: var(--subtitle-2-font-size);
  font-family: var(--subtitle-2-font-family);
  line-height: var(--subtitle-2-line-height);
  text-decoration: var(--subtitle-2-text-decoration);
  margin-bottom: var(--subtitle-2-margin-bottom);
}
.has-subtitle-2-font-size:first-child {
  margin-top: 0;
}
.has-subtitle-2-font-size:last-child {
  margin-bottom: 0;
}

.has-overline-font-size {
  font-weight: var(--overline-font-weight);
  font-size: var(--overline-font-size);
  font-family: var(--overline-font-family);
  line-height: var(--overline-line-height);
  letter-spacing: var(--overline-letter-spacing);
  text-transform: var(--overline-text-transform);
  margin-bottom: var(--overline-margin-bottom);
}
.has-overline-font-size:first-child {
  margin-top: 0;
}
.has-overline-font-size:last-child {
  margin-bottom: 0;
}
.has-overline-font-size + h1, .has-overline-font-size + h2, .has-overline-font-size + h3, .has-overline-font-size + h4, .has-overline-font-size + h5, .has-overline-font-size + h6 {
  margin-top: 0 !important;
}

.has-title-1-font-size {
  font-weight: var(--title-1-font-weight);
  font-size: var(--title-1-font-size);
  font-family: var(--title-1-font-family);
  line-height: var(--title-1-line-height);
  margin-bottom: var(--title-1-margin-bottom);
}
.has-title-1-font-size:first-child {
  margin-top: 0;
}
.has-title-1-font-size:last-child {
  margin-bottom: 0;
}

.is-style-narrow {
  max-width: 47rem;
}

.container {
  padding-right: clamp(1.25rem, -1.0657894737rem + 4.8245614035vw, 4rem);
  padding-left: clamp(1.25rem, -1.0657894737rem + 4.8245614035vw, 4rem);
}

.content-wrapper > .container {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 48rem) {
  .content-wrapper > .container {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }
}
.content-wrapper > .container h2:first-child,
.content-wrapper > .container h3:first-child,
.content-wrapper > .container h4:first-child,
.content-wrapper > .container h5:first-child,
.content-wrapper > .container h6:first-child {
  margin-top: 0;
}
.content-wrapper > .container h2:last-child,
.content-wrapper > .container h3:last-child,
.content-wrapper > .container h4:last-child,
.content-wrapper > .container h5:last-child,
.content-wrapper > .container h6:last-child {
  margin-bottom: -1.25rem;
}
@media (min-width: 48rem) {
  .content-wrapper > .container h2:last-child,
.content-wrapper > .container h3:last-child,
.content-wrapper > .container h4:last-child,
.content-wrapper > .container h5:last-child,
.content-wrapper > .container h6:last-child {
    margin-bottom: -2.5rem;
  }
}
.content-wrapper > .container .block-hook:first-child + h2,
.content-wrapper > .container .block-hook:first-child + h3,
.content-wrapper > .container .block-hook:first-child + h4,
.content-wrapper > .container .block-hook:first-child + h5,
.content-wrapper > .container .block-hook:first-child + h6 {
  margin-top: 0;
}

/* stylelint-disable order/order */
:root {
  --foley-blue-button-default: #0066ba;
  --foley-dark-blue-button-hover: #003661;
  --foley-light-blue: #78acdd;
  --white: #fff;
  --foley-dark-slate-blue: #637d94;
  --foley-light-slate-blue: #c1cbd4;
  --foley-light-slate-blue-alt: #e5ebef;
  --foley-dark-teal: #64a488;
  --neutral-1: #000;
  --neutral-2: #141415;
  --neutral-3: #27292a;
  --neutral-4: #3b3d3f;
  --neutral-5: #54575a;
  --neutral-6: #6c7074;
  --neutral-7: #bbbcbd;
  --neutral-8: #cbcccd;
  --neutral-9: #ddddde;
  --neutral-10: #eeeeef;
  --neutral-11: #f4f4f5;
  --neutral-12: #fafafa;
  --error: #ad0322;
  --warning: #faa614;
  --success: #008738;
  --information: #006bb2;
  --autofill: #e3eef5;
  --display-font-family: 'trade-gothic-next', sans-serif;
  --display-font-size: clamp(2.5rem, 1.2368421053rem + 2.6315789474vw, 4rem);
  --display-fontpostscriptname: TradeGothicNextLTPro-Bd;
  --display-line-height: clamp(2.75rem, 1.2763157895rem + 3.0701754386vw, 4.5rem);
  --display-margin-bottom: clamp(1rem, 0.5789473684rem + 0.8771929825vw, 1.5rem);
  --display-font-weight: 700;
  --t1-font-family: 'trade-gothic-next', sans-serif;
  --t1-font-size: clamp(2rem, 1.3157894737rem + 1.4254385965vw, 2.8125rem);
  --t1-fontpostscriptname: TradeGothicNextLTPro-Bd;
  --t1-line-height: clamp(2.2000000477rem, 1.4473685089rem + 1.5679823725vw, 3.09375rem);
  --t1-margin-bottom: clamp(1rem, 0.5789473684rem + 0.8771929825vw, 1.5rem);
  --t1-font-weight: 700;
  --t1-underline-font-family: 'trade-gothic-next', sans-serif;
  --t1-underline-font-size: clamp(2rem, 1.3157894737rem + 1.4254385965vw, 2.8125rem);
  --t1-underline-fontpostscriptname: TradeGothicNextLTPro-Bd;
  --t1-underline-line-height: clamp(2.5rem, 2rem + 1.0416666667vw, 3.09375rem);
  --t1-underline-margin-bottom: clamp(1rem, 0.5789473684rem + 0.8771929825vw, 1.5rem);
  --t1-underline-font-weight: 700;
  --t1-underline-text-decoration: underline;
  --t2-font-family: 'trade-gothic-next', sans-serif;
  --t2-font-size: clamp(1.75rem, 1.3289473684rem + 0.8771929825vw, 2.25rem);
  --t2-fontpostscriptname: TradeGothicNextLTPro-Bd;
  --t2-line-height: clamp(1.9250000715rem, 1.4618421166rem + 0.9649124062vw, 2.4750001431rem);
  --t2-margin-bottom: clamp(1rem, 0.5789473684rem + 0.8771929825vw, 1.5rem);
  --t2-font-weight: 700;
  --t2---underline-font-family: 'trade-gothic-next', sans-serif;
  --t2---underline-font-size: clamp(1.75rem, 1.3289473684rem + 0.8771929825vw, 2.25rem);
  --t2---underline-fontpostscriptname: TradeGothicNextLTPro-Bd;
  --t2---underline-line-height: clamp(2.25rem, 2.0605261953rem + 0.3947370931vw, 2.4750001431rem);
  --t2---underline-margin-bottom: clamp(1rem, 0.5789473684rem + 0.8771929825vw, 1.5rem);
  --t2---underline-font-weight: 700;
  --t2---underline-text-decoration: underline;
  --t3-font-family: 'trade-gothic-next', sans-serif;
  --t3-font-size: clamp(1.5rem, 1.3421052632rem + 0.3289473684vw, 1.6875rem);
  --t3-fontpostscriptname: TradeGothicNextLTPro-Bd;
  --t3-line-height: clamp(1.6500000954rem, 1.476315925rem + 0.3618420216vw, 1.8562500477rem);
  --t3-margin-bottom: 1rem;
  --t3-font-weight: 700;
  --t3-underline-font-family: 'trade-gothic-next', sans-serif;
  --t3-underline-font-size: clamp(1.5rem, 1.3421052632rem + 0.3289473684vw, 1.6875rem);
  --t3-underline-fontpostscriptname: TradeGothicNextLTPro-Bd;
  --t3-underline-line-height: clamp(1.6500000954rem, 1.476315925rem + 0.3618420216vw, 1.8562500477rem);
  --t3-underline-margin-bottom: 1rem;
  --t3-underline-font-weight: 700;
  --t3-underline-text-decoration: underline;
  --t4-font-family: 'trade-gothic-next', sans-serif;
  --t4-font-size: clamp(1.25rem, 1.1184210526rem + 0.274122807vw, 1.40625rem);
  --t4-fontpostscriptname: TradeGothicNextLTPro-Bd;
  --t4-line-height: clamp(1.375rem, 1.2302631579rem + 0.3015350877vw, 1.546875rem);
  --t4-margin-bottom: 0.5rem;
  --t4-font-weight: 700;
  --t5-font-family: 'trade-gothic-next', sans-serif;
  --t5-font-size: clamp(1rem, 0.8947368421rem + 0.2192982456vw, 1.125rem);
  --t5-fontpostscriptname: TradeGothicNextLTPro-Bd;
  --t5-line-height: clamp(1.1000000238rem, 0.98421051rem + 0.2412281538vw, 1.2375000715rem);
  --t5-margin-bottom: 0.5rem;
  --t5-font-weight: 700;
  --t6-font-family: 'trade-gothic-next', sans-serif;
  --t6-font-size: clamp(0.8299999833rem, 0.7394736535rem + 0.1885965205vw, 0.9375rem);
  --t6-fontpostscriptname: TradeGothicNextLTPro-Bd;
  --t6-line-height: clamp(0.9129999876rem, 0.8134210298rem + 0.2074561621vw, 1.03125rem);
  --t6-margin-bottom: 0.5rem;
  --t6-font-weight: 700;
  --t6-letter-spacing: 0.05rem;
  --t6-text-transform: uppercase;
  --body-1-font-family: 'trade-gothic-next', sans-serif;
  --body-1-font-size: clamp(1rem, 0.8947368421rem + 0.2192982456vw, 1.125rem);
  --body-1-fontpostscriptname: TradeGothicNextLTPro-Rg;
  --body-1-line-height: clamp(1.3300000429rem, 1.1900000509rem + 0.2916666499vw, 1.4962500334rem);
  --body-1-margin-bottom: 1.5rem;
  --body-1-font-weight: 400;
  --body-1-letter-spacing: clamp(0rem, 0.0230263158rem + -0.0219298246vw, 0.0125rem);
  --body-1-underline-font-family: 'trade-gothic-next', sans-serif;
  --body-1-underline-font-size: clamp(1rem, 0.8947368421rem + 0.2192982456vw, 1.125rem);
  --body-1-underline-fontpostscriptname: TradeGothicNextLTPro-Rg;
  --body-1-underline-line-height: clamp(1.3300000429rem, 1.1900000509rem + 0.2916666499vw, 1.4962500334rem);
  --body-1-underline-margin-bottom: 1.5rem;
  --body-1-underline-font-weight: 400;
  --body-1-underline-letter-spacing: clamp(0rem, 0.0230263158rem + -0.0219298246vw, 0.0125rem);
  --body-1-underline-text-decoration: underline;
  --body-1-italic-font-family: Open Sans;
  --body-1-italic-font-size: clamp(1rem, 0.8947368421rem + 0.2192982456vw, 1.125rem);
  --body-1-italic-fontpostscriptname: OpenSans-Italic;
  --body-1-italic-line-height: clamp(1.3300000429rem, 1.1900000509rem + 0.2916666499vw, 1.4962500334rem);
  --body-1-italic-margin-bottom: 1.5rem;
  --body-1-italic-font-weight: 400;
  --body-1-italic-letter-spacing: clamp(0rem, 0.0230263158rem + -0.0219298246vw, 0.0125rem);
  --body-1-italic-font-style: italic;
  --body-2-font-family: 'trade-gothic-next', sans-serif;
  --body-2-font-size: clamp(0.8299999833rem, 0.7447368314rem + 0.1776315664vw, 0.9312499762rem);
  --body-2-fontpostscriptname: TradeGothicNextLTPro-Rg;
  --body-2-line-height: clamp(1.1038999557rem, 0.9904999482rem + 0.2362500157vw, 1.2385624647rem);
  --body-2-margin-bottom: 1.5rem;
  --body-2-font-weight: 400;
  --body-2-underline-font-family: 'trade-gothic-next', sans-serif;
  --body-2-underline-font-size: clamp(0.8299999833rem, 0.7447368314rem + 0.1776315664vw, 0.9312499762rem);
  --body-2-underline-fontpostscriptname: TradeGothicNextLTPro-Rg;
  --body-2-underline-line-height: clamp(1.1038999557rem, 0.9904999482rem + 0.2362500157vw, 1.2385624647rem);
  --body-2-underline-margin-bottom: 1.5rem;
  --body-2-underline-font-weight: 400;
  --body-2-underline-text-decoration: underline;
  --body-2-italic-font-family: 'trade-gothic-next', sans-serif;
  --body-2-italic-font-size: clamp(0.8299999833rem, 0.7447368314rem + 0.1776315664vw, 0.9312499762rem);
  --body-2-italic-fontpostscriptname: TradeGothicNextLTPro-It;
  --body-2-italic-line-height: clamp(1.1038999557rem, 0.9904999482rem + 0.2362500157vw, 1.2385624647rem);
  --body-2-italic-margin-bottom: 1.5rem;
  --body-2-italic-font-weight: 400;
  --body-2-italic-font-style: italic;
  --lead-font-family: 'trade-gothic-next', sans-serif;
  --lead-font-size: clamp(1.25rem, 1.1184210526rem + 0.274122807vw, 1.40625rem);
  --lead-fontpostscriptname: TradeGothicNextLTPro-Rg;
  --lead-line-height: clamp(1.6625000238rem, 1.4874999837rem + 0.364583417vw, 1.8703125715rem);
  --lead-margin-bottom: clamp(2rem, 1.1578947368rem + 1.7543859649vw, 3rem);
  --lead-font-weight: 400;
  --lead-letter-spacing: clamp(0rem, 0.0230263158rem + -0.0219298246vw, 0.0125rem);
  --quote-1-font-family: 'trade-gothic-next', sans-serif;
  --quote-1-font-size: clamp(1.5rem, 0.6578947368rem + 1.7543859649vw, 2.5rem);
  --quote-1-fontpostscriptname: TradeGothicNextLTPro-It;
  --quote-1-line-height: clamp(2rem, 0.7368421053rem + 2.6315789474vw, 3.5rem);
  --quote-1-margin-bottom: clamp(1rem, 0.5789473684rem + 0.8771929825vw, 1.5rem);
  --quote-1-font-weight: 400;
  --quote-1-font-style: italic;
  --quote-2-font-family: 'trade-gothic-next', sans-serif;
  --quote-2-font-size: clamp(1.5rem, 1.1842105263rem + 0.6578947368vw, 1.875rem);
  --quote-2-fontpostscriptname: TradeGothicNextLTPro-It;
  --quote-2-line-height: clamp(2rem, 1.5789473684rem + 0.8771929825vw, 2.5rem);
  --quote-2-margin-bottom: 1.5rem;
  --quote-2-font-weight: 400;
  --quote-2-font-style: italic;
  --stat-font-family: 'trade-gothic-next', sans-serif;
  --stat-font-size: clamp(3.5rem, 3.1315789474rem + 0.7675438596vw, 3.9375rem);
  --stat-fontpostscriptname: TradeGothicNextLTPro-Bd;
  --stat-line-height: clamp(3.8500001431rem, 3.444736945rem + 0.8442983293vw, 4.3312501907rem);
  --stat-margin-bottom: 0.25rem;
  --stat-font-weight: 700;
  --nav-1-font-family: 'trade-gothic-next', sans-serif;
  --nav-1-font-size: clamp(1.5rem, 1.8453947368rem + -0.3289473684vw, 1.6875rem);
  --nav-1-fontpostscriptname: TradeGothicNextLTPro-Bd;
  --nav-1-line-height: clamp(1.6500000954rem, 2.0299342181rem + -0.3618420216vw, 1.8562500477rem);
  --nav-1-font-weight: 700;
  --nav-2-font-family: 'trade-gothic-next', sans-serif;
  --nav-2-font-size: 1rem;
  --nav-2-fontpostscriptname: TradeGothicNextLTPro-Rg;
  --nav-2-line-height: 1.3300000429rem;
  --nav-2-font-weight: 400;
  --title-1-font-family: 'trade-gothic-next', sans-serif;
  --title-1-font-size: 1.125rem;
  --title-1-fontpostscriptname: TradeGothicNextLTPro-Bd;
  --title-1-line-height: 1.2375000715rem;
  --title-1-margin-bottom: 1rem;
  --title-1-font-weight: 700;
  --title-1-underline-font-family: Open Sans;
  --title-1-underline-font-size: 1.125rem;
  --title-1-underline-fontpostscriptname: OpenSans-SemiBold;
  --title-1-underline-line-height: 1.2375000715rem;
  --title-1-underline-margin-bottom: 1rem;
  --title-1-underline-font-weight: 600;
  --title-1-underline-text-decoration: underline;
  --title-2-font-family: 'trade-gothic-next', sans-serif;
  --title-2-font-size: 1rem;
  --title-2-fontpostscriptname: TradeGothicNextLTPro-Bd;
  --title-2-line-height: 1.5rem;
  --title-2-margin-bottom: 0.5rem;
  --title-2-font-weight: 700;
  --title-2-underline-font-family: 'trade-gothic-next', sans-serif;
  --title-2-underline-font-size: 1rem;
  --title-2-underline-fontpostscriptname: TradeGothicNextLTPro-Bd;
  --title-2-underline-line-height: 1.5rem;
  --title-2-underline-margin-bottom: 0.5rem;
  --title-2-underline-font-weight: 700;
  --title-2-underline-text-decoration: underline;
  --title-3-font-family: 'trade-gothic-next', sans-serif;
  --title-3-font-size: 0.875rem;
  --title-3-fontpostscriptname: TradeGothicNextLTPro-Bd;
  --title-3-line-height: 1rem;
  --title-3-margin-bottom: 0.5rem;
  --title-3-font-weight: 700;
  --title-3-underline-font-family: 'trade-gothic-next', sans-serif;
  --title-3-underline-font-size: 0.875rem;
  --title-3-underline-fontpostscriptname: TradeGothicNextLTPro-Bd;
  --title-3-underline-line-height: 1rem;
  --title-3-underline-margin-bottom: 0.5rem;
  --title-3-underline-font-weight: 700;
  --title-3-underline-text-decoration: underline;
  --subtitle-1-font-family: 'trade-gothic-next', sans-serif;
  --subtitle-1-font-size: 1rem;
  --subtitle-1-fontpostscriptname: TradeGothicNextLTPro-Rg;
  --subtitle-1-line-height: 1.3300000429rem;
  --subtitle-1-margin-bottom: 1rem;
  --subtitle-1-font-weight: 400;
  --subtitle-1-text-decoration: underline;
  --subtitle-2-font-family: 'trade-gothic-next', sans-serif;
  --subtitle-2-font-size: 0.9312499762rem;
  --subtitle-2-fontpostscriptname: TradeGothicNextLTPro-Rg;
  --subtitle-2-line-height: 1.0243749619rem;
  --subtitle-2-margin-bottom: 0.5rem;
  --subtitle-2-font-weight: 400;
  --subtitle-2-text-decoration: underline;
  --subtitle-3-font-family: 'trade-gothic-next', sans-serif;
  --subtitle-3-font-size: 0.75rem;
  --subtitle-3-fontpostscriptname: TradeGothicNextLTPro-Rg;
  --subtitle-3-line-height: 1rem;
  --subtitle-3-margin-bottom: 1rem;
  --subtitle-3-font-weight: 400;
  --subtitle-3-text-decoration: underline;
  --link-1-font-family: 'trade-gothic-next', sans-serif;
  --link-1-font-size: 1.40625rem;
  --link-1-fontpostscriptname: TradeGothicNextLTPro-Rg;
  --link-1-line-height: 1.8703125715rem;
  --link-1-margin-bottom: 1rem;
  --link-1-font-weight: 400;
  --link-1-underline-font-family: 'trade-gothic-next', sans-serif;
  --link-1-underline-font-size: 1.40625rem;
  --link-1-underline-fontpostscriptname: TradeGothicNextLTPro-Rg;
  --link-1-underline-line-height: 1.8703125715rem;
  --link-1-underline-margin-bottom: 1rem;
  --link-1-underline-font-weight: 400;
  --link-1-underline-text-decoration: underline;
  --link-2-font-family: 'trade-gothic-next', sans-serif;
  --link-2-font-size: 1.125rem;
  --link-2-fontpostscriptname: TradeGothicNextLTPro-Bd;
  --link-2-line-height: 1.4962500334rem;
  --link-2-margin-bottom: 0.5rem;
  --link-2-font-weight: 700;
  --link-2-underline-font-family: 'trade-gothic-next', sans-serif;
  --link-2-underline-font-size: 1.125rem;
  --link-2-underline-fontpostscriptname: TradeGothicNextLTPro-Bd;
  --link-2-underline-line-height: 1.4962500334rem;
  --link-2-underline-margin-bottom: 0.5rem;
  --link-2-underline-font-weight: 700;
  --link-2-underline-text-decoration: underline;
  --link-3-font-family: 'trade-gothic-next', sans-serif;
  --link-3-font-size: 0.75rem;
  --link-3-fontpostscriptname: TradeGothicNextLTPro-Bd;
  --link-3-line-height: 1rem;
  --link-3-font-weight: 700;
  --link-3-underline-font-family: 'trade-gothic-next', sans-serif;
  --link-3-underline-font-size: 0.75rem;
  --link-3-underline-fontpostscriptname: TradeGothicNextLTPro-Bd;
  --link-3-underline-line-height: 1rem;
  --link-3-underline-font-weight: 700;
  --link-3-underline-text-decoration: underline;
  --overline-font-family: 'trade-gothic-next', sans-serif;
  --overline-font-size: 0.9375rem;
  --overline-fontpostscriptname: TradeGothicNextLTPro-Rg;
  --overline-line-height: 1.03125rem;
  --overline-margin-bottom: 0.5rem;
  --overline-font-weight: 400;
  --overline-letter-spacing: 0.0625rem;
  --overline-text-transform: uppercase;
  --containerWidth: calc(var(--vw, 1vw) * 100 - clamp(2.5rem, -2.1315789474rem + 9.649122807vw, 8rem));
  --containerMaxWidth: calc(36rem - clamp(2.5rem, -2.1315789474rem + 9.649122807vw, 8rem));
  --gutterWidth: clamp(clamp(1.25rem, -1.0657894737rem + 4.8245614035vw, 4rem), 100%, calc((var(--vw, 1vw) * 100 - 36rem + clamp(2.5rem, -2.1315789474rem + 9.649122807vw, 8rem)) / 2));
  --columnWidth: calc((36rem - clamp(1.5rem, -2.2894736842rem + 7.8947368421vw, 6rem)) / 12);
  --columnMaxWidth: calc((100% - clamp(1.5rem, -2.2894736842rem + 7.8947368421vw, 6rem)) / 12);
}
@media (min-width: 36rem) {
  :root {
    --containerWidth: calc(var(--vw, 1vw) * 100 - clamp(2.5rem, -2.1315789474rem + 9.649122807vw, 8rem));
    --containerMaxWidth: calc(48rem - clamp(2.5rem, -2.1315789474rem + 9.649122807vw, 8rem));
    --gutterWidth: clamp(clamp(1.25rem, -1.0657894737rem + 4.8245614035vw, 4rem), 100%, calc((var(--vw, 1vw) * 100 - 48rem + clamp(2.5rem, -2.1315789474rem + 9.649122807vw, 8rem)) / 2));
    --columnWidth: calc((48rem - clamp(1.5rem, -2.2894736842rem + 7.8947368421vw, 6rem)) / 12);
    --columnMaxWidth: calc((100% - clamp(1.5rem, -2.2894736842rem + 7.8947368421vw, 6rem)) / 12);
  }
}
@media (min-width: 48rem) {
  :root {
    --containerWidth: calc(var(--vw, 1vw) * 100 - clamp(2.5rem, -2.1315789474rem + 9.649122807vw, 8rem));
    --containerMaxWidth: calc(62rem - clamp(2.5rem, -2.1315789474rem + 9.649122807vw, 8rem));
    --gutterWidth: clamp(clamp(1.25rem, -1.0657894737rem + 4.8245614035vw, 4rem), 100%, calc((var(--vw, 1vw) * 100 - 62rem + clamp(2.5rem, -2.1315789474rem + 9.649122807vw, 8rem)) / 2));
    --columnWidth: calc((62rem - clamp(1.5rem, -2.2894736842rem + 7.8947368421vw, 6rem)) / 12);
    --columnMaxWidth: calc((100% - clamp(1.5rem, -2.2894736842rem + 7.8947368421vw, 6rem)) / 12);
  }
}
@media (min-width: 64rem) {
  :root {
    --containerWidth: calc(var(--vw, 1vw) * 100 - clamp(2.5rem, -2.1315789474rem + 9.649122807vw, 8rem));
    --containerMaxWidth: calc(75rem - clamp(2.5rem, -2.1315789474rem + 9.649122807vw, 8rem));
    --gutterWidth: clamp(clamp(1.25rem, -1.0657894737rem + 4.8245614035vw, 4rem), 100%, calc((var(--vw, 1vw) * 100 - 75rem + clamp(2.5rem, -2.1315789474rem + 9.649122807vw, 8rem)) / 2));
    --columnWidth: calc((75rem - clamp(1.5rem, -2.2894736842rem + 7.8947368421vw, 6rem)) / 12);
    --columnMaxWidth: calc((100% - clamp(1.5rem, -2.2894736842rem + 7.8947368421vw, 6rem)) / 12);
  }
}
@media (min-width: 75rem) {
  :root {
    --containerWidth: calc(var(--vw, 1vw) * 100 - clamp(2.5rem, -2.1315789474rem + 9.649122807vw, 8rem));
    --containerMaxWidth: calc(90rem - clamp(2.5rem, -2.1315789474rem + 9.649122807vw, 8rem));
    --gutterWidth: clamp(clamp(1.25rem, -1.0657894737rem + 4.8245614035vw, 4rem), 100%, calc((var(--vw, 1vw) * 100 - 90rem + clamp(2.5rem, -2.1315789474rem + 9.649122807vw, 8rem)) / 2));
    --columnWidth: calc((90rem - clamp(1.5rem, -2.2894736842rem + 7.8947368421vw, 6rem)) / 12);
    --columnMaxWidth: calc((100% - clamp(1.5rem, -2.2894736842rem + 7.8947368421vw, 6rem)) / 12);
  }
}

/* stylelint-enable order/order */
.bg-transparent {
  background-color: transparent;
}

.bg-white {
  background-color: #fff;
  --blockBackgroundColor: #fff;
}

.bg-light-gray {
  background-color: #eeeeef;
  --blockBackgroundColor: #eeeeef;
}

.mx-auto {
  margin-right: auto;
  margin-left: auto;
}

.mw-100 {
  max-width: 100%;
}

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

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-start {
  justify-content: flex-start;
}

.justify-content-end {
  justify-content: flex-end;
}

.visually-hidden,
.sr-only {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 1px;
  height: 1px;
  white-space: nowrap;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  pointer-events: none;
}

.acf-block {
  padding: clamp(2.5rem, -0.1315789474rem + 5.4824561404vw, 5.625rem) 0;
  /**> .content-wrapper:first-of-type,
  > .container:first-of-type {
  	@include headings(1, 6, ">") {
  		&:first-child {
  			margin-top: $block-spacing-first-text-child-offset;
  		}
  	}

  	> p,
  	> .wp-block-columns-wrapper {
  		&:first-child {
  			margin-top: $block-spacing-first-text-child-offset;
  		}
  	}
  }**/
}
.acf-block > h1:first-child, .acf-block > h2:first-child, .acf-block > h3:first-child, .acf-block > h4:first-child, .acf-block > h5:first-child, .acf-block > h6:first-child {
  margin-top: clamp(-1rem, -0.0789473684rem + -0.8771929825vw, -0.5rem);
}
.acf-block.bg-transparent + .acf-block.bg-transparent {
  padding-top: 0;
}
.acf-block.bg-white + .acf-block.bg-white {
  padding-top: 0;
}
.acf-block.bg-light-gray + .acf-block.bg-light-gray {
  padding-top: 0;
}
.acf-block ul:not(.block-text-sidebar__box-content-list):not(.slick-dots):not(.block-hero-post__contacts) li:not(.wp-block-list-item) {
  position: relative;
  list-style-type: none;
}
.acf-block ul:not(.block-text-sidebar__box-content-list):not(.slick-dots):not(.block-hero-post__contacts) li:not(.wp-block-list-item)::before {
  position: absolute;
  top: 0.5625rem;
  left: -1.1875rem;
  content: "";
  display: inline-block;
  width: 0.375rem;
  height: 0.375rem;
  background-color: currentcolor;
}
.acf-block ul:not(.block-text-sidebar__box-content-list):not(.slick-dots):not(.block-hero-post__contacts) li:not(.wp-block-list-item) ul,
.acf-block ul:not(.block-text-sidebar__box-content-list):not(.slick-dots):not(.block-hero-post__contacts) li:not(.wp-block-list-item) ol {
  margin-top: 0.5625rem;
}
.acf-block ul:not(.block-text-sidebar__box-content-list):not(.slick-dots):not(.block-hero-post__contacts) li:not(.wp-block-list-item) ul li,
.acf-block ul:not(.block-text-sidebar__box-content-list):not(.slick-dots):not(.block-hero-post__contacts) li:not(.wp-block-list-item) ol li {
  margin-bottom: 0.5625rem;
}
.acf-block ul:not(.block-text-sidebar__box-content-list):not(.slick-dots):not(.block-hero-post__contacts) li:not(.wp-block-list-item) ul li::before,
.acf-block ul:not(.block-text-sidebar__box-content-list):not(.slick-dots):not(.block-hero-post__contacts) li:not(.wp-block-list-item) ol li::before {
  position: absolute;
  top: 0.5625rem;
  left: -0.9375rem;
  content: "";
  display: inline-block;
  width: 0.375rem;
  height: 0.375rem;
  border: 1px solid currentcolor;
  background-color: transparent;
}
.acf-block ul:not(.block-text-sidebar__box-content-list):not(.slick-dots):not(.block-hero-post__contacts) li:not(.wp-block-list-item) ul li ul li,
.acf-block ul:not(.block-text-sidebar__box-content-list):not(.slick-dots):not(.block-hero-post__contacts) li:not(.wp-block-list-item) ul li ol li,
.acf-block ul:not(.block-text-sidebar__box-content-list):not(.slick-dots):not(.block-hero-post__contacts) li:not(.wp-block-list-item) ol li ul li,
.acf-block ul:not(.block-text-sidebar__box-content-list):not(.slick-dots):not(.block-hero-post__contacts) li:not(.wp-block-list-item) ol li ol li {
  margin-bottom: 0.5625rem;
}
.acf-block ul:not(.block-text-sidebar__box-content-list):not(.slick-dots):not(.block-hero-post__contacts) li:not(.wp-block-list-item) ul li ul li::before,
.acf-block ul:not(.block-text-sidebar__box-content-list):not(.slick-dots):not(.block-hero-post__contacts) li:not(.wp-block-list-item) ul li ol li::before,
.acf-block ul:not(.block-text-sidebar__box-content-list):not(.slick-dots):not(.block-hero-post__contacts) li:not(.wp-block-list-item) ol li ul li::before,
.acf-block ul:not(.block-text-sidebar__box-content-list):not(.slick-dots):not(.block-hero-post__contacts) li:not(.wp-block-list-item) ol li ol li::before {
  border-radius: 50%;
}
.acf-block ol:not(.block-text-sidebar__box-content-list):not(.slick-dots) li:not(.wp-block-list-item) {
  margin-bottom: 0.5625rem;
}
.acf-block ol:not(.block-text-sidebar__box-content-list):not(.slick-dots) li:not(.wp-block-list-item) ul,
.acf-block ol:not(.block-text-sidebar__box-content-list):not(.slick-dots) li:not(.wp-block-list-item) ol {
  margin-top: 0.5625rem;
}
.acf-block ol:not(.block-text-sidebar__box-content-list):not(.slick-dots) li:not(.wp-block-list-item) ul li,
.acf-block ol:not(.block-text-sidebar__box-content-list):not(.slick-dots) li:not(.wp-block-list-item) ol li {
  margin-bottom: 0.5625rem;
}
.acf-block ol:not(.block-text-sidebar__box-content-list):not(.slick-dots) li:not(.wp-block-list-item) ul li ul li,
.acf-block ol:not(.block-text-sidebar__box-content-list):not(.slick-dots) li:not(.wp-block-list-item) ul li ol li,
.acf-block ol:not(.block-text-sidebar__box-content-list):not(.slick-dots) li:not(.wp-block-list-item) ol li ul li,
.acf-block ol:not(.block-text-sidebar__box-content-list):not(.slick-dots) li:not(.wp-block-list-item) ol li ol li {
  margin-bottom: 0.5625rem;
}

.acf-innerblocks-container {
  display: contents;
}

body:not(.post-type-archive-library_block):not(.wp-admin) .block-inactive {
  display: none;
}

/* stylelint-disable no-descending-specificity */
.content-wrapper > *:not(section):not(.tribe-events):not(.mapplic-element):not(.gform_wrapper):not(.wp-block-embed):not(.woocommerce):not(.block-editor-inner-blocks):not(.wp-block[data-type*=acf]):not(.wp-block-image):not(.wp-block-separator):not(.wp-block-columns):not(label):not(.acf-inline-block) {
  width: calc(var(--columnWidth) * 12 - clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem));
  max-width: calc(var(--columnMaxWidth) * 12 - clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem));
  margin-right: auto !important;
  margin-left: auto !important;
}
@media (min-width: 36rem) {
  .content-wrapper > *:not(section):not(.tribe-events):not(.mapplic-element):not(.gform_wrapper):not(.wp-block-embed):not(.woocommerce):not(.block-editor-inner-blocks):not(.wp-block[data-type*=acf]):not(.wp-block-image):not(.wp-block-separator):not(.wp-block-columns):not(label):not(.acf-inline-block) {
    width: calc(var(--columnWidth) * 12 - clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem));
    max-width: calc(var(--columnMaxWidth) * 12 - clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem));
  }
}
@media (min-width: 48rem) {
  .content-wrapper > *:not(section):not(.tribe-events):not(.mapplic-element):not(.gform_wrapper):not(.wp-block-embed):not(.woocommerce):not(.block-editor-inner-blocks):not(.wp-block[data-type*=acf]):not(.wp-block-image):not(.wp-block-separator):not(.wp-block-columns):not(label):not(.acf-inline-block) {
    width: calc(var(--columnWidth) * 12 - clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem));
    max-width: calc(var(--columnMaxWidth) * 12 - clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem));
  }
}
@media (min-width: 64rem) {
  .content-wrapper > *:not(section):not(.tribe-events):not(.mapplic-element):not(.gform_wrapper):not(.wp-block-embed):not(.woocommerce):not(.block-editor-inner-blocks):not(.wp-block[data-type*=acf]):not(.wp-block-image):not(.wp-block-separator):not(.wp-block-columns):not(label):not(.acf-inline-block) {
    width: calc(var(--columnWidth) * 10 - clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem));
    max-width: calc(var(--columnMaxWidth) * 10 - clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem));
  }
}
@media (min-width: 75rem) {
  .content-wrapper > *:not(section):not(.tribe-events):not(.mapplic-element):not(.gform_wrapper):not(.wp-block-embed):not(.woocommerce):not(.block-editor-inner-blocks):not(.wp-block[data-type*=acf]):not(.wp-block-image):not(.wp-block-separator):not(.wp-block-columns):not(label):not(.acf-inline-block) {
    width: calc(var(--columnWidth) * 8 - clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem));
    max-width: calc(var(--columnMaxWidth) * 8 - clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem));
  }
}
.content-wrapper > *:not(section):not(.tribe-events):not(.mapplic-element):not(.gform_wrapper):not(.wp-block-embed):not(.woocommerce):not(.block-editor-inner-blocks):not(.wp-block[data-type*=acf]):not(.wp-block-image):not(.wp-block-separator):not(.wp-block-columns):not(label):not(.acf-inline-block) > h1:first-child, .content-wrapper > *:not(section):not(.tribe-events):not(.mapplic-element):not(.gform_wrapper):not(.wp-block-embed):not(.woocommerce):not(.block-editor-inner-blocks):not(.wp-block[data-type*=acf]):not(.wp-block-image):not(.wp-block-separator):not(.wp-block-columns):not(label):not(.acf-inline-block) > h2:first-child, .content-wrapper > *:not(section):not(.tribe-events):not(.mapplic-element):not(.gform_wrapper):not(.wp-block-embed):not(.woocommerce):not(.block-editor-inner-blocks):not(.wp-block[data-type*=acf]):not(.wp-block-image):not(.wp-block-separator):not(.wp-block-columns):not(label):not(.acf-inline-block) > h3:first-child, .content-wrapper > *:not(section):not(.tribe-events):not(.mapplic-element):not(.gform_wrapper):not(.wp-block-embed):not(.woocommerce):not(.block-editor-inner-blocks):not(.wp-block[data-type*=acf]):not(.wp-block-image):not(.wp-block-separator):not(.wp-block-columns):not(label):not(.acf-inline-block) > h4:first-child, .content-wrapper > *:not(section):not(.tribe-events):not(.mapplic-element):not(.gform_wrapper):not(.wp-block-embed):not(.woocommerce):not(.block-editor-inner-blocks):not(.wp-block[data-type*=acf]):not(.wp-block-image):not(.wp-block-separator):not(.wp-block-columns):not(label):not(.acf-inline-block) > h5:first-child, .content-wrapper > *:not(section):not(.tribe-events):not(.mapplic-element):not(.gform_wrapper):not(.wp-block-embed):not(.woocommerce):not(.block-editor-inner-blocks):not(.wp-block[data-type*=acf]):not(.wp-block-image):not(.wp-block-separator):not(.wp-block-columns):not(label):not(.acf-inline-block) > h6:first-child {
  padding-top: clamp(2.5rem, -0.1315789474rem + 5.4824561404vw, 5.625rem) !important;
}
.content-wrapper > *:not(section):not(.tribe-events):not(.mapplic-element):not(.gform_wrapper):not(.wp-block-embed):not(.woocommerce):not(.block-editor-inner-blocks):not(.wp-block[data-type*=acf]):not(.wp-block-image):not(.wp-block-separator):not(.wp-block-columns):not(label):not(.acf-inline-block):first-child {
  padding-top: clamp(2.5rem, -0.1315789474rem + 5.4824561404vw, 5.625rem);
}
.content-wrapper > *:not(section):not(.tribe-events):not(.mapplic-element):not(.gform_wrapper):not(.wp-block-embed):not(.woocommerce):not(.block-editor-inner-blocks):not(.wp-block[data-type*=acf]):not(.wp-block-image):not(.wp-block-separator):not(.wp-block-columns):not(label):not(.acf-inline-block):last-child {
  padding-bottom: clamp(2.5rem, -0.1315789474rem + 5.4824561404vw, 5.625rem);
}
.content-wrapper > *:not(section):not(.tribe-events):not(.mapplic-element):not(.gform_wrapper):not(.wp-block-embed):not(.woocommerce):not(.block-editor-inner-blocks):not(.wp-block[data-type*=acf]):not(.wp-block-image):not(.wp-block-separator):not(.wp-block-columns):not(label):not(.acf-inline-block).is-style-narrow {
  width: calc(var(--columnWidth) * 12 - clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem));
  max-width: calc(var(--columnMaxWidth) * 12 - clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem));
}
@media (min-width: 36rem) {
  .content-wrapper > *:not(section):not(.tribe-events):not(.mapplic-element):not(.gform_wrapper):not(.wp-block-embed):not(.woocommerce):not(.block-editor-inner-blocks):not(.wp-block[data-type*=acf]):not(.wp-block-image):not(.wp-block-separator):not(.wp-block-columns):not(label):not(.acf-inline-block).is-style-narrow {
    width: calc(var(--columnWidth) * 9 - clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem));
    max-width: calc(var(--columnMaxWidth) * 9 - clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem));
  }
}
@media (min-width: 48rem) {
  .content-wrapper > *:not(section):not(.tribe-events):not(.mapplic-element):not(.gform_wrapper):not(.wp-block-embed):not(.woocommerce):not(.block-editor-inner-blocks):not(.wp-block[data-type*=acf]):not(.wp-block-image):not(.wp-block-separator):not(.wp-block-columns):not(label):not(.acf-inline-block).is-style-narrow {
    width: calc(var(--columnWidth) * 8 - clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem));
    max-width: calc(var(--columnMaxWidth) * 8 - clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem));
  }
}
@media (min-width: 64rem) {
  .content-wrapper > *:not(section):not(.tribe-events):not(.mapplic-element):not(.gform_wrapper):not(.wp-block-embed):not(.woocommerce):not(.block-editor-inner-blocks):not(.wp-block[data-type*=acf]):not(.wp-block-image):not(.wp-block-separator):not(.wp-block-columns):not(label):not(.acf-inline-block).is-style-narrow {
    width: calc(var(--columnWidth) * 7 - clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem));
    max-width: calc(var(--columnMaxWidth) * 7 - clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem));
  }
}
@media (min-width: 75rem) {
  .content-wrapper > *:not(section):not(.tribe-events):not(.mapplic-element):not(.gform_wrapper):not(.wp-block-embed):not(.woocommerce):not(.block-editor-inner-blocks):not(.wp-block[data-type*=acf]):not(.wp-block-image):not(.wp-block-separator):not(.wp-block-columns):not(label):not(.acf-inline-block).is-style-narrow {
    width: calc(var(--columnWidth) * 6 - clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem));
    max-width: calc(var(--columnMaxWidth) * 6 - clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem));
  }
}
.content-wrapper > *:not(section):not(.tribe-events):not(.mapplic-element):not(.gform_wrapper):not(.wp-block-embed):not(.woocommerce):not(.block-editor-inner-blocks):not(.wp-block[data-type*=acf]):not(.wp-block-image):not(.wp-block-separator):not(.wp-block-columns):not(label):not(.acf-inline-block).is-style-full {
  width: calc(var(--columnWidth) * 12 - clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem));
  max-width: calc(var(--columnMaxWidth) * 12 - clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem));
}
@media (min-width: 36rem) {
  .content-wrapper > *:not(section):not(.tribe-events):not(.mapplic-element):not(.gform_wrapper):not(.wp-block-embed):not(.woocommerce):not(.block-editor-inner-blocks):not(.wp-block[data-type*=acf]):not(.wp-block-image):not(.wp-block-separator):not(.wp-block-columns):not(label):not(.acf-inline-block).is-style-full {
    width: calc(var(--columnWidth) * 12 - clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem));
    max-width: calc(var(--columnMaxWidth) * 12 - clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem));
  }
}
@media (min-width: 48rem) {
  .content-wrapper > *:not(section):not(.tribe-events):not(.mapplic-element):not(.gform_wrapper):not(.wp-block-embed):not(.woocommerce):not(.block-editor-inner-blocks):not(.wp-block[data-type*=acf]):not(.wp-block-image):not(.wp-block-separator):not(.wp-block-columns):not(label):not(.acf-inline-block).is-style-full {
    width: calc(var(--columnWidth) * 12 - clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem));
    max-width: calc(var(--columnMaxWidth) * 12 - clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem));
  }
}
.content-wrapper > *:not(section):not(.tribe-events):not(.mapplic-element):not(.gform_wrapper):not(.wp-block-embed):not(.woocommerce):not(.block-editor-inner-blocks):not(.wp-block[data-type*=acf]):not(.wp-block-image):not(.wp-block-separator):not(.wp-block-columns):not(label):not(.acf-inline-block).is-style-wide {
  width: calc(var(--columnWidth) * 12 - clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem));
  max-width: calc(var(--columnMaxWidth) * 12 - clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem));
}
@media (min-width: 36rem) {
  .content-wrapper > *:not(section):not(.tribe-events):not(.mapplic-element):not(.gform_wrapper):not(.wp-block-embed):not(.woocommerce):not(.block-editor-inner-blocks):not(.wp-block[data-type*=acf]):not(.wp-block-image):not(.wp-block-separator):not(.wp-block-columns):not(label):not(.acf-inline-block).is-style-wide {
    width: calc(var(--columnWidth) * 12 - clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem));
    max-width: calc(var(--columnMaxWidth) * 12 - clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem));
  }
}
@media (min-width: 48rem) {
  .content-wrapper > *:not(section):not(.tribe-events):not(.mapplic-element):not(.gform_wrapper):not(.wp-block-embed):not(.woocommerce):not(.block-editor-inner-blocks):not(.wp-block[data-type*=acf]):not(.wp-block-image):not(.wp-block-separator):not(.wp-block-columns):not(label):not(.acf-inline-block).is-style-wide {
    width: calc(var(--columnWidth) * 12 - clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem));
    max-width: calc(var(--columnMaxWidth) * 12 - clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem));
  }
}
@media (min-width: 64rem) {
  .content-wrapper > *:not(section):not(.tribe-events):not(.mapplic-element):not(.gform_wrapper):not(.wp-block-embed):not(.woocommerce):not(.block-editor-inner-blocks):not(.wp-block[data-type*=acf]):not(.wp-block-image):not(.wp-block-separator):not(.wp-block-columns):not(label):not(.acf-inline-block).is-style-wide {
    width: calc(var(--columnWidth) * 10 - clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem));
    max-width: calc(var(--columnMaxWidth) * 10 - clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem));
  }
}
.acf-block .content-wrapper > h1:first-child, .acf-block .content-wrapper > h2:first-child, .acf-block .content-wrapper > h3:first-child, .acf-block .content-wrapper > h4:first-child, .acf-block .content-wrapper > h5:first-child, .acf-block .content-wrapper > h6:first-child {
  margin-top: clamp(-1rem, -0.0789473684rem + -0.8771929825vw, -0.5rem);
}
.acf-block .content-wrapper > :first-child {
  padding-top: 0 !important;
}
.acf-block .content-wrapper > :last-child {
  padding-bottom: 0 !important;
}
.acf-block .content-wrapper > p:first-child {
  margin-top: clamp(-1rem, -0.0789473684rem + -0.8771929825vw, -0.5rem);
}

.default-content {
  width: calc(var(--columnWidth) * 12 - clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem));
  max-width: calc(var(--columnMaxWidth) * 12 - clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem));
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 36rem) {
  .default-content {
    width: calc(var(--columnWidth) * 12 - clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem));
    max-width: calc(var(--columnMaxWidth) * 12 - clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem));
  }
}
@media (min-width: 48rem) {
  .default-content {
    width: calc(var(--columnWidth) * 12 - clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem));
    max-width: calc(var(--columnMaxWidth) * 12 - clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem));
  }
}
@media (min-width: 64rem) {
  .default-content {
    width: calc(var(--columnWidth) * 10 - clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem));
    max-width: calc(var(--columnMaxWidth) * 10 - clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem));
  }
}
@media (min-width: 75rem) {
  .default-content {
    width: calc(var(--columnWidth) * 8 - clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem));
    max-width: calc(var(--columnMaxWidth) * 8 - clamp(1rem, 0.1578947368rem + 1.7543859649vw, 2rem));
  }
}
.default-content .alignleft {
  float: left;
}
.default-content .alignright {
  float: right;
}
.default-content img.alignleft {
  margin: 0.375rem 1.5rem 1.5rem 0rem;
}
.default-content img.alignright {
  margin: 0.375rem 0rem 1.5rem 1.5rem;
}

/* stylelint-enable no-descending-specificity */
button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

.c-btn:hover .icon:first-child, .c-btn:focus .icon:first-child {
  transform: translateX(-0.1875rem);
}
.c-btn:hover .icon:last-child, .c-btn:focus .icon:last-child {
  transform: translateX(0.1875rem);
}
.c-btn .icon {
  font-size: 1.25em;
  transition: transform 0.2s linear;
}
.c-btn .icon:first-child {
  margin-right: 0.25rem;
}
.c-btn .icon:last-child {
  margin-left: 0.25rem;
}

.c-btn--primary {
  font-weight: var(--link-2-font-weight);
  font-size: var(--link-2-font-size);
  font-family: var(--link-2-font-family);
  line-height: var(--link-2-line-height);
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0.877rem 1.125rem;
  text-align: center;
  border-radius: 0;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: color 0.2s linear, background-color 0.2s linear, border 0.2s linear;
  color: #fff;
  border: 2px solid #0066ba;
  background-color: #0066ba;
}
.c-btn--primary.hover, a:hover .c-btn--primary, a:focus .c-btn--primary, .c-btn--primary:hover, .c-btn--primary:focus {
  color: #fff;
  border-color: #003661;
  background-color: #003661;
}
.bg-white .c-btn--primary {
  color: #fff;
  border: 2px solid #0066ba;
  background-color: #0066ba;
}
.bg-white .c-btn--primary.hover, a:hover .bg-white .c-btn--primary, a:focus .bg-white .c-btn--primary, .bg-white .c-btn--primary:hover, .bg-white .c-btn--primary:focus {
  color: #fff;
  border-color: #003661;
  background-color: #003661;
}

.c-btn--secondary {
  font-weight: var(--link-2-font-weight);
  font-size: var(--link-2-font-size);
  font-family: var(--link-2-font-family);
  line-height: var(--link-2-line-height);
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0.877rem 1.125rem;
  text-align: center;
  border-radius: 0;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: color 0.2s linear, background-color 0.2s linear, border 0.2s linear;
  color: #0066ba;
  border: 2px solid #0066ba;
  background-color: transparent;
}
.bg-dark .c-btn--secondary {
  color: #fff;
  border-color: #fff;
}
.bg-dark .c-btn--secondary.hover, a:hover .bg-dark .c-btn--secondary, a:focus .bg-dark .c-btn--secondary, .bg-dark .c-btn--secondary:hover, .bg-dark .c-btn--secondary:focus {
  color: #003661;
  border-color: #fff;
  background-color: #fff;
}
.c-btn--secondary.hover, a:hover .c-btn--secondary, a:focus .c-btn--secondary, .c-btn--secondary:hover, .c-btn--secondary:focus {
  color: #0066ba;
  border-color: #0066ba;
  background-color: #e5ebef;
}
.bg-white .c-btn--secondary {
  color: #0066ba;
  border: 2px solid #0066ba;
  background-color: transparent;
}
.bg-white .c-btn--secondary.hover, a:hover .bg-white .c-btn--secondary, a:focus .bg-white .c-btn--secondary, .bg-white .c-btn--secondary:hover, .bg-white .c-btn--secondary:focus {
  color: #fff;
  border-color: #003661;
  background-color: #003661;
}

.c-btn--tertiary {
  font-weight: var(--link-2-font-weight);
  font-size: var(--link-2-font-size);
  font-family: var(--link-2-font-family);
  line-height: var(--link-2-line-height);
  position: relative;
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0;
  color: #0066ba;
  border: none;
  border-radius: 0;
  background-color: transparent;
}
.bg-dark .c-btn--tertiary {
  color: #fff;
}
.bg-dark .c-btn--tertiary.hover, a:hover .bg-dark .c-btn--tertiary, a:focus .bg-dark .c-btn--tertiary, .bg-dark .c-btn--tertiary:hover, .bg-dark .c-btn--tertiary:focus {
  color: #cbcccd;
}
.c-btn--tertiary::before {
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  content: "";
  width: 100%;
  height: 0.125rem;
  background-color: transparent;
  transition: background-color 0.2s linear;
}
.c-btn--tertiary.hover, a:hover .c-btn--tertiary, a:focus .c-btn--tertiary, .c-btn--tertiary:hover, .c-btn--tertiary:focus {
  color: #003661;
}
.c-btn--tertiary.hover::before, a:hover .c-btn--tertiary::before, a:focus .c-btn--tertiary::before, .c-btn--tertiary:hover::before, .c-btn--tertiary:focus::before {
  background-color: currentcolor;
}
.bg-white .c-btn--tertiary {
  color: #0066ba;
}
.bg-white .c-btn--tertiary:hover, .bg-white .c-btn--tertiary:focus {
  color: #003661;
}
.bg-white .c-btn--tertiary:hover::before, .bg-white .c-btn--tertiary:focus::before {
  background-color: currentcolor;
}
.c-btn--tertiary.c-btn--icon::before {
  display: none;
}

.c-btn--small {
  font-weight: var(--link-2-font-weight);
  font-size: var(--link-2-font-size);
  font-family: var(--link-2-font-family);
  line-height: var(--link-2-line-height);
  padding: 0.25rem 0.875rem;
}

.c-btn--play {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.5rem;
  height: 3.5rem;
  padding: 0;
  color: #fff;
  border: 2px solid #000;
  border-radius: 50%;
  background-color: #000;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: background-color 0.2s linear, color 0.2s linear, border-color 0.2s linear;
}
.bg-dark .c-btn--play {
  color: #000;
  background-color: #fff;
}
.bg-dark .c-btn--play.hover, a:hover .bg-dark .c-btn--play, a:focus .bg-dark .c-btn--play, .bg-dark .c-btn--play:hover, .bg-dark .c-btn--play:focus {
  color: #000;
  background-color: #eeeeef;
}
.bg-dark .c-btn--play.c-btn--secondary {
  color: #fff;
  border-color: #fff;
  background-color: transparent;
}
.bg-dark .c-btn--play.c-btn--secondary.hover, a:hover .bg-dark .c-btn--play.c-btn--secondary, a:focus .bg-dark .c-btn--play.c-btn--secondary, .bg-dark .c-btn--play.c-btn--secondary:hover, .bg-dark .c-btn--play.c-btn--secondary:focus {
  color: #000;
  border-color: #fff;
  background-color: #fff;
}
.c-btn--play::before {
  content: "\ea38";
  font-weight: 400;
  font-size: 1.5rem;
  font-family: "iconfont-propel";
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  pointer-events: none;
}
.c-btn--play.hover, a:hover .c-btn--play, a:focus .c-btn--play, .c-btn--play:hover, .c-btn--play:focus {
  color: #fff;
  border-color: #27292a;
  background-color: #27292a;
}
.c-btn--play.c-btn--secondary {
  color: #000;
  border-color: #000;
  background-color: transparent;
}
.c-btn--play.c-btn--secondary.hover, a:hover .c-btn--play.c-btn--secondary, a:focus .c-btn--play.c-btn--secondary, .c-btn--play.c-btn--secondary:hover, .c-btn--play.c-btn--secondary:focus {
  color: #fff;
  border-color: #000;
  background-color: #000;
}

.c-btn--close {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  color: #000;
  border: 1px solid #eeeeef;
  border-radius: 50%;
  background-color: #eeeeef;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: background-color 0.2s linear, color 0.2s linear, border-color 0.2s linear;
}
.bg-dark .c-btn--close, .c-btn--close.c-btn--color-alt {
  color: #fff;
  border-color: #27292a;
  background-color: #27292a;
}
.bg-dark .c-btn--close.hover, a:hover .bg-dark .c-btn--close, a:focus .bg-dark .c-btn--close, .bg-dark .c-btn--close:hover, .bg-dark .c-btn--close:focus, .c-btn--close.c-btn--color-alt.hover, a:hover .c-btn--close.c-btn--color-alt, a:focus .c-btn--close.c-btn--color-alt, .c-btn--close.c-btn--color-alt:hover, .c-btn--close.c-btn--color-alt:focus {
  color: #fff;
  border-color: #3b3d3f;
  background-color: #3b3d3f;
}
.c-btn--close::before {
  content: "\ea18";
  font-weight: 400;
  font-size: 1rem;
  font-family: "iconfont-propel";
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  pointer-events: none;
}
.c-btn--close.hover, a:hover .c-btn--close, a:focus .c-btn--close, .c-btn--close:hover, .c-btn--close:focus {
  color: #000;
  border-color: #ddddde;
  background-color: #ddddde;
}

.c-btn--back {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0;
  color: #0066ba;
  transition: color 0.2s linear;
}
.bg-dark .c-btn--back, .bg-dark-blue .c-btn--back {
  color: #fff;
}
.bg-dark .c-btn--back:hover, .bg-dark .c-btn--back:focus, .bg-dark-blue .c-btn--back:hover, .bg-dark-blue .c-btn--back:focus {
  color: #cbcccd;
}
.c-btn--back::before {
  content: "\ea08";
  font-weight: 400;
  font-size: 1.5rem;
  font-family: "iconfont-propel";
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 0.25rem;
}
.c-btn--back:hover, .c-btn--back:focus {
  color: #003661;
}
.c-btn--back__wrapper {
  display: flex;
  /**margin: responsive-values(-48, -80) auto responsive-values(48, 80) var(--gutterWidth, 1.25rem);**/
}
.block-editor-block-list__block .c-btn--back__wrapper {
  margin-left: 3.75rem;
}

/* Embed Video Styles */
.iframe-wrapper {
  position: relative;
  height: 0;
  max-width: 100%;
  margin: 3.25rem auto 3.25rem;
  padding-bottom: 56.25%;
  overflow: hidden;
}
.iframe-wrapper__overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  background-color: var(--blockColor, #000);
  background-position: center;
  background-size: cover;
}
.iframe-wrapper__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
}
.iframe-wrapper iframe,
.iframe-wrapper object,
.iframe-wrapper embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin-top: 0;
  margin-bottom: 0;
}

body:not(.wp-admin) input:not([type=radio]):not([type=checkbox]):not([type=file]):not(.hs-button):not(.search-field__input),
body:not(.wp-admin) textarea,
body:not(.wp-admin) select,
.block-editor-block-list__block:not(.is-selected):not(.has-child-selected):not(.is-reusable) input:not([type=radio]):not([type=checkbox]):not([type=file]):not(.hs-button):not(.search-field__input),
.block-editor-block-list__block:not(.is-selected):not(.has-child-selected):not(.is-reusable) textarea,
.block-editor-block-list__block:not(.is-selected):not(.has-child-selected):not(.is-reusable) select {
  font-weight: var(--body-1-font-weight);
  font-size: var(--body-1-font-size);
  font-family: var(--body-1-font-family);
  line-height: var(--body-1-line-height);
  display: block;
  width: 100%;
  padding: 1.0625rem 0.75rem;
  color: #000;
  border: 1px solid #000;
  border-radius: 0;
  background-color: #fff;
  outline: none;
  transition: color 0.2s linear, border 0.2s linear, background-color 0.2s linear;
}
body:not(.wp-admin) input:not([type=radio]):not([type=checkbox]):not([type=file]):not(.hs-button):not(.search-field__input):focus,
body:not(.wp-admin) textarea:focus,
body:not(.wp-admin) select:focus,
.block-editor-block-list__block:not(.is-selected):not(.has-child-selected):not(.is-reusable) input:not([type=radio]):not([type=checkbox]):not([type=file]):not(.hs-button):not(.search-field__input):focus,
.block-editor-block-list__block:not(.is-selected):not(.has-child-selected):not(.is-reusable) textarea:focus,
.block-editor-block-list__block:not(.is-selected):not(.has-child-selected):not(.is-reusable) select:focus {
  border: 1px solid var(--blockColor, #000);
}
body:not(.wp-admin) input:not([type=radio]):not([type=checkbox]):not([type=file]):not(.hs-button):not(.search-field__input).error,
body:not(.wp-admin) textarea.error,
body:not(.wp-admin) select.error,
.block-editor-block-list__block:not(.is-selected):not(.has-child-selected):not(.is-reusable) input:not([type=radio]):not([type=checkbox]):not([type=file]):not(.hs-button):not(.search-field__input).error,
.block-editor-block-list__block:not(.is-selected):not(.has-child-selected):not(.is-reusable) textarea.error,
.block-editor-block-list__block:not(.is-selected):not(.has-child-selected):not(.is-reusable) select.error {
  border-color: #ad0322;
}
body:not(.wp-admin) input:not([type=radio]):not([type=checkbox]):not([type=file]):not(.hs-button):not(.search-field__input)::-webkit-input-placeholder,
body:not(.wp-admin) textarea::-webkit-input-placeholder,
body:not(.wp-admin) select::-webkit-input-placeholder,
.block-editor-block-list__block:not(.is-selected):not(.has-child-selected):not(.is-reusable) input:not([type=radio]):not([type=checkbox]):not([type=file]):not(.hs-button):not(.search-field__input)::-webkit-input-placeholder,
.block-editor-block-list__block:not(.is-selected):not(.has-child-selected):not(.is-reusable) textarea::-webkit-input-placeholder,
.block-editor-block-list__block:not(.is-selected):not(.has-child-selected):not(.is-reusable) select::-webkit-input-placeholder {
  color: #6c7074;
}
body:not(.wp-admin) input:not([type=radio]):not([type=checkbox]):not([type=file]):not(.hs-button):not(.search-field__input)::-moz-placeholder,
body:not(.wp-admin) textarea::-moz-placeholder,
body:not(.wp-admin) select::-moz-placeholder,
.block-editor-block-list__block:not(.is-selected):not(.has-child-selected):not(.is-reusable) input:not([type=radio]):not([type=checkbox]):not([type=file]):not(.hs-button):not(.search-field__input)::-moz-placeholder,
.block-editor-block-list__block:not(.is-selected):not(.has-child-selected):not(.is-reusable) textarea::-moz-placeholder,
.block-editor-block-list__block:not(.is-selected):not(.has-child-selected):not(.is-reusable) select::-moz-placeholder {
  color: #6c7074;
}
body:not(.wp-admin) input:not([type=radio]):not([type=checkbox]):not([type=file]):not(.hs-button):not(.search-field__input)::-ms-placeholder,
body:not(.wp-admin) textarea::-ms-placeholder,
body:not(.wp-admin) select::-ms-placeholder,
.block-editor-block-list__block:not(.is-selected):not(.has-child-selected):not(.is-reusable) input:not([type=radio]):not([type=checkbox]):not([type=file]):not(.hs-button):not(.search-field__input)::-ms-placeholder,
.block-editor-block-list__block:not(.is-selected):not(.has-child-selected):not(.is-reusable) textarea::-ms-placeholder,
.block-editor-block-list__block:not(.is-selected):not(.has-child-selected):not(.is-reusable) select::-ms-placeholder {
  color: #6c7074;
}
body:not(.wp-admin) input:not([type=radio]):not([type=checkbox]):not([type=file]):not(.hs-button):not(.search-field__input)::placeholder,
body:not(.wp-admin) textarea::placeholder,
body:not(.wp-admin) select::placeholder,
.block-editor-block-list__block:not(.is-selected):not(.has-child-selected):not(.is-reusable) input:not([type=radio]):not([type=checkbox]):not([type=file]):not(.hs-button):not(.search-field__input)::placeholder,
.block-editor-block-list__block:not(.is-selected):not(.has-child-selected):not(.is-reusable) textarea::placeholder,
.block-editor-block-list__block:not(.is-selected):not(.has-child-selected):not(.is-reusable) select::placeholder {
  color: #6c7074;
}
body:not(.wp-admin) textarea,
.block-editor-block-list__block:not(.is-selected):not(.has-child-selected):not(.is-reusable) textarea {
  min-height: 9rem;
}

select {
  -webkit-appearance: none;
}
select:not([multiple]) {
  padding-right: 2.625rem !important;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10L12 15L17 10H7Z' fill='%2302040C'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center right 0.625rem;
}

/* stylelint-disable scss/at-extend-no-missing-placeholder */
.checkbox-label, .gform_wrapper .gfield_checkbox label,
.checkbox-wrapper label, .hs-form-checkbox-display > span,
.hs-form-booleancheckbox-display > span,
.radio-label,
.gform_wrapper .gfield_radio label,
.radio-wrapper label,
.hs-form-radio-display > span {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 1rem;
  padding-left: 1.75rem;
  cursor: pointer;
}
@media (min-width: 36rem) {
  .checkbox-label, .gform_wrapper .gfield_checkbox label,
.checkbox-wrapper label, .hs-form-checkbox-display > span,
.hs-form-booleancheckbox-display > span,
.radio-label,
.gform_wrapper .gfield_radio label,
.radio-wrapper label,
.hs-form-radio-display > span {
    margin-bottom: 1.5rem;
  }
}
.checkbox-label::before, .gform_wrapper .gfield_checkbox label::before,
.checkbox-wrapper label::before, .hs-form-checkbox-display > span::before,
.hs-form-booleancheckbox-display > span::before,
.radio-label::before,
.gform_wrapper .gfield_radio label::before,
.radio-wrapper label::before,
.hs-form-radio-display > span::before {
  content: "\ea11";
  font-weight: 400;
  font-size: 1.25rem;
  font-family: "iconfont-propel";
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: calc(50% - 0.9375rem);
  left: -0.3125rem;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.875rem;
  height: 1.875rem;
  padding: 0;
  background-color: transparent;
  transition: color 0.2s linear;
}

input:checked + .checkbox-label::before, .gform_wrapper .gfield_checkbox input:checked + label::before,
.checkbox-wrapper input:checked + label::before, .hs-form-checkbox-display > input:checked + span::before,
.hs-form-booleancheckbox-display > input:checked + span::before {
  content: "\ea10";
}

.radio-label::before, .gform_wrapper .gfield_radio label::before,
.radio-wrapper label::before, .hs-form-radio-display > span::before {
  content: "\ea3d";
}
input:checked + .radio-label::before, .gform_wrapper .gfield_radio input:checked + label::before,
.radio-wrapper input:checked + label::before, .hs-form-radio-display > input:checked + span::before {
  content: "\ea3c";
}

.hs-fieldtype-checkbox > label,
.hs-fieldtype-radio > label {
  display: block;
  margin-bottom: 1rem;
}

.gform_wrapper .gfield_checkbox,
.gform_wrapper .gfield_radio,
.hbspt-form ul[role=checkbox],
.hbspt-form ul[role=radio],
.hs_single_checkbox ul {
  margin: 0 !important;
  padding: 0;
  list-style-type: none;
}
.gform_wrapper .gfield_checkbox input[type=radio],
.gform_wrapper .gfield_checkbox input[type=checkbox],
.gform_wrapper .gfield_radio input[type=radio],
.gform_wrapper .gfield_radio input[type=checkbox],
.hbspt-form ul[role=checkbox] input[type=radio],
.hbspt-form ul[role=checkbox] input[type=checkbox],
.hbspt-form ul[role=radio] input[type=radio],
.hbspt-form ul[role=radio] input[type=checkbox],
.hs_single_checkbox ul input[type=radio],
.hs_single_checkbox ul input[type=checkbox] {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}
.gform_wrapper .gfield_checkbox input[type=radio]:focus ~ label::before,
.gform_wrapper .gfield_checkbox input[type=checkbox]:focus ~ label::before,
.gform_wrapper .gfield_radio input[type=radio]:focus ~ label::before,
.gform_wrapper .gfield_radio input[type=checkbox]:focus ~ label::before,
.hbspt-form ul[role=checkbox] input[type=radio]:focus ~ label::before,
.hbspt-form ul[role=checkbox] input[type=checkbox]:focus ~ label::before,
.hbspt-form ul[role=radio] input[type=radio]:focus ~ label::before,
.hbspt-form ul[role=radio] input[type=checkbox]:focus ~ label::before,
.hs_single_checkbox ul input[type=radio]:focus ~ label::before,
.hs_single_checkbox ul input[type=checkbox]:focus ~ label::before {
  color: #0066ba;
}
.bg-dark .gform_wrapper .gfield_checkbox input[type=radio]:focus ~ label::before, .bg-dark-blue .gform_wrapper .gfield_checkbox input[type=radio]:focus ~ label::before,
.bg-dark .gform_wrapper .gfield_checkbox input[type=checkbox]:focus ~ label::before,
.bg-dark-blue .gform_wrapper .gfield_checkbox input[type=checkbox]:focus ~ label::before,
.bg-dark .gform_wrapper .gfield_radio input[type=radio]:focus ~ label::before,
.bg-dark-blue .gform_wrapper .gfield_radio input[type=radio]:focus ~ label::before,
.bg-dark .gform_wrapper .gfield_radio input[type=checkbox]:focus ~ label::before,
.bg-dark-blue .gform_wrapper .gfield_radio input[type=checkbox]:focus ~ label::before,
.bg-dark .hbspt-form ul[role=checkbox] input[type=radio]:focus ~ label::before,
.bg-dark-blue .hbspt-form ul[role=checkbox] input[type=radio]:focus ~ label::before,
.bg-dark .hbspt-form ul[role=checkbox] input[type=checkbox]:focus ~ label::before,
.bg-dark-blue .hbspt-form ul[role=checkbox] input[type=checkbox]:focus ~ label::before,
.bg-dark .hbspt-form ul[role=radio] input[type=radio]:focus ~ label::before,
.bg-dark-blue .hbspt-form ul[role=radio] input[type=radio]:focus ~ label::before,
.bg-dark .hbspt-form ul[role=radio] input[type=checkbox]:focus ~ label::before,
.bg-dark-blue .hbspt-form ul[role=radio] input[type=checkbox]:focus ~ label::before,
.bg-dark .hs_single_checkbox ul input[type=radio]:focus ~ label::before,
.bg-dark-blue .hs_single_checkbox ul input[type=radio]:focus ~ label::before,
.bg-dark .hs_single_checkbox ul input[type=checkbox]:focus ~ label::before,
.bg-dark-blue .hs_single_checkbox ul input[type=checkbox]:focus ~ label::before {
  color: #cbcccd;
}
.gform_wrapper .gfield_checkbox li,
.gform_wrapper .gfield_radio li,
.hbspt-form ul[role=checkbox] li,
.hbspt-form ul[role=radio] li,
.hs_single_checkbox ul li {
  margin-bottom: 0 !important;
}
.gform_wrapper .gfield_checkbox br,
.gform_wrapper .gfield_radio br,
.hbspt-form ul[role=checkbox] br,
.hbspt-form ul[role=radio] br,
.hs_single_checkbox ul br {
  display: none;
}

.hs-form-checkbox-display > span,
.hs-form-radio-display > span,
.hs-form-booleancheckbox-display > span {
  font-weight: var(--subtitle-1-font-weight);
  font-size: var(--subtitle-1-font-size);
  font-family: var(--subtitle-1-font-family);
  line-height: var(--subtitle-1-line-height);
  text-decoration: var(--subtitle-1-text-decoration);
  margin-bottom: var(--subtitle-1-margin-bottom);
  margin-bottom: 1rem !important;
  cursor: pointer;
}
.hs-form-checkbox-display > span:first-child,
.hs-form-radio-display > span:first-child,
.hs-form-booleancheckbox-display > span:first-child {
  margin-top: 0;
}
.hs-form-checkbox-display > span:last-child,
.hs-form-radio-display > span:last-child,
.hs-form-booleancheckbox-display > span:last-child {
  margin-bottom: 0;
}
.hs-form-checkbox-display > span:hover::before, .hs-form-checkbox-display > span:focus::before,
.hs-form-radio-display > span:hover::before,
.hs-form-radio-display > span:focus::before,
.hs-form-booleancheckbox-display > span:hover::before,
.hs-form-booleancheckbox-display > span:focus::before {
  color: #0066ba;
}
.bg-dark .hs-form-checkbox-display > span:hover::before, .bg-dark-blue .hs-form-checkbox-display > span:hover::before, .bg-dark .hs-form-checkbox-display > span:focus::before, .bg-dark-blue .hs-form-checkbox-display > span:focus::before,
.bg-dark .hs-form-radio-display > span:hover::before,
.bg-dark-blue .hs-form-radio-display > span:hover::before,
.bg-dark .hs-form-radio-display > span:focus::before,
.bg-dark-blue .hs-form-radio-display > span:focus::before,
.bg-dark .hs-form-booleancheckbox-display > span:hover::before,
.bg-dark-blue .hs-form-booleancheckbox-display > span:hover::before,
.bg-dark .hs-form-booleancheckbox-display > span:focus::before,
.bg-dark-blue .hs-form-booleancheckbox-display > span:focus::before {
  color: #cbcccd;
}

.hs-form-checkbox-display input:checked ~ span::before,
.hs-form-booleancheckbox-display input:checked ~ span::before {
  content: "\ea10";
}

.hs-form-radio-display input:checked ~ span::before {
  content: "\ea3c";
}

.gform_wrapper .gfield_checkbox label,
.gform_wrapper .gfield_radio label,
.checkbox-wrapper label,
.radio-wrapper label {
  font-weight: var(--body-1-font-weight);
  font-size: var(--body-1-font-size);
  font-family: var(--body-1-font-family);
  line-height: var(--body-1-line-height);
  margin-bottom: 1rem;
  cursor: pointer;
}
.gform_wrapper .gfield_checkbox label:hover::before, .gform_wrapper .gfield_checkbox label:focus::before,
.gform_wrapper .gfield_radio label:hover::before,
.gform_wrapper .gfield_radio label:focus::before,
.checkbox-wrapper label:hover::before,
.checkbox-wrapper label:focus::before,
.radio-wrapper label:hover::before,
.radio-wrapper label:focus::before {
  color: #003661;
}
.bg-dark .gform_wrapper .gfield_checkbox label:hover::before, .bg-dark-blue .gform_wrapper .gfield_checkbox label:hover::before, .bg-dark .gform_wrapper .gfield_checkbox label:focus::before, .bg-dark-blue .gform_wrapper .gfield_checkbox label:focus::before,
.bg-dark .gform_wrapper .gfield_radio label:hover::before,
.bg-dark-blue .gform_wrapper .gfield_radio label:hover::before,
.bg-dark .gform_wrapper .gfield_radio label:focus::before,
.bg-dark-blue .gform_wrapper .gfield_radio label:focus::before,
.bg-dark .checkbox-wrapper label:hover::before,
.bg-dark-blue .checkbox-wrapper label:hover::before,
.bg-dark .checkbox-wrapper label:focus::before,
.bg-dark-blue .checkbox-wrapper label:focus::before,
.bg-dark .radio-wrapper label:hover::before,
.bg-dark-blue .radio-wrapper label:hover::before,
.bg-dark .radio-wrapper label:focus::before,
.bg-dark-blue .radio-wrapper label:focus::before {
  color: #cbcccd;
}

.radio-buttons label {
  display: inline-block !important;
  margin: 0rem 0.5rem 0.75rem 0rem !important;
  padding: 0.4375rem 0.9375rem !important;
  border: 1px solid #cbcccd;
  border-radius: 100rem;
  transition: color 0.2s linear, background-color 0.2s linear, border 0.2s linear;
}
.radio-buttons label::before {
  display: none !important;
}
.radio-buttons label:hover, .radio-buttons label:focus {
  color: #fff;
  border-color: #003661;
  background-color: #003661;
}
.radio-buttons .gchoice {
  display: inline-block;
}
.radio-buttons .gfield_radio {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: -0.75rem !important;
}

/* stylelint-enable scss/at-extend-no-missing-placeholder */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
}
.pagination__item {
  margin: 0 0.15625rem;
}
.pagination__item--ellipses {
  min-width: 2rem;
}
.pagination__link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--blockColor, #000);
  transition: none;
}
.pagination__link:hover {
  color: #fff;
  background: #0066ba;
}

.pagination__item--current .pagination__link {
  color: #fff;
  background: #0066ba;
}

.image-wrapper {
  position: relative;
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 56%;
  overflow: hidden;
}
.image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease-in-out;
}

.image-overlay {
  position: relative;
}
.image-overlay::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  transition: background-color 0.2s linear;
}

.content-wrapper > .mapplic-element {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: clamp(0.5rem, 0.0789473684rem + 0.8771929825vw, 1rem);
  padding-left: clamp(0.5rem, 0.0789473684rem + 0.8771929825vw, 1rem);
  max-width: 36rem;
  padding: clamp(2.5rem, -0.1315789474rem + 5.4824561404vw, 5.625rem) 0;
  padding-right: clamp(1.25rem, -1.0657894737rem + 4.8245614035vw, 4rem);
  padding-left: clamp(1.25rem, -1.0657894737rem + 4.8245614035vw, 4rem);
}
@media (min-width: 36rem) {
  .content-wrapper > .mapplic-element {
    max-width: 48rem;
  }
}
@media (min-width: 48rem) {
  .content-wrapper > .mapplic-element {
    max-width: 62rem;
  }
}
@media (min-width: 64rem) {
  .content-wrapper > .mapplic-element {
    max-width: 75rem;
  }
}
@media (min-width: 75rem) {
  .content-wrapper > .mapplic-element {
    max-width: 90rem;
  }
}

.leadparagraph {
  margin-bottom: 3rem;
  font-size: 1.25rem;
  line-height: 1.2;
}
@media (min-width: 48rem) {
  .leadparagraph {
    margin-bottom: 5rem;
    font-size: 2.125rem;
    line-height: 2.5rem;
  }
}

.highlight-text {
  padding: 0.1875rem 0;
  background: rgba(0, 102, 186, 0.1);
}

/* Main Header */
.main-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #003661;
}
@media print {
  .main-header {
    display: none;
  }
}
body.admin-bar:not(.page-has-transparent-nav) .alert-bar + .main-header {
  top: 0;
}
body.post-type-archive-library_block .main-header {
  position: relative;
}
.main-header__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: clamp(0.375rem, -0.2565789474rem + 1.3157894737vw, 1.125rem);
  padding-bottom: clamp(0.375rem, -0.2565789474rem + 1.3157894737vw, 1.125rem);
}
.main-header__top {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0.5625rem 0rem;
}
@media (max-width: 63.98rem) {
  .main-header__top {
    display: none;
  }
}
.main-header__top::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.15);
}
.main-header__top .main-header__top-nav {
  text-align: right;
}
.main-header__logo {
  display: block;
  max-width: 12.5rem;
  margin-right: 1.875rem;
}
.page-has-transparent-nav .main-header__logo {
  opacity: 0;
  transform: none;
  transition: 300ms opacity 100ms ease-out, 300ms transform 100ms ease-out;
}
.main-header__logo img {
  max-width: 4.5rem;
}
@media (min-width: 64rem) {
  .main-header__logo img {
    max-width: none;
    max-height: 3.75rem;
    object-fit: contain;
  }
}
.main-header__nav-wrapper {
  display: flex;
  gap: 2.25rem;
  align-items: center;
}
@media (max-width: 63.98rem) {
  .main-header__nav-wrapper.search-active {
    width: 100%;
  }
}
.page-has-transparent-nav .main-header__nav-wrapper {
  opacity: 0;
  transform: translate3d(0, -16px, 0);
  transition: 200ms opacity 300ms ease-out, 200ms transform 300ms ease-out;
}
.main-header__wrapper {
  width: 100%;
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 0.9375rem;
}
.page-has-transparent-nav .main-header__top-nav {
  opacity: 0;
  transform: translate3d(0, -16px, 0);
  transition: 300ms opacity 200ms ease-out, 300ms transform 200ms ease-out;
}
.main-header__top-nav a {
  font-weight: var(--nav-2-font-weight);
  font-size: var(--nav-2-font-size);
  font-family: var(--nav-2-font-family);
  line-height: var(--nav-2-line-height);
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s linear;
}
.main-header__top-nav a:hover, .main-header__top-nav a:focus {
  color: #fff;
  text-decoration: none;
  opacity: 0.6999999881;
}
.main-header__top-nav > .menu > li {
  margin-right: 1.25rem;
}
.main-header__top-nav > .menu > li:last-child {
  margin-right: 0;
}
.main-header__top-nav > .menu > li > a {
  display: flex;
}
.main-header__top-nav > .menu > li.menu-item-object-ccs_custom_menu_item a::after, .main-header__top-nav > .menu > li.menu-item-has-children a::after {
  content: "\ea15";
  font-weight: 400;
  font-size: 1.5rem;
  font-family: "iconfont-propel";
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  padding-left: 0.25rem;
}
.main-header__nav {
  position: static;
  display: none;
}
@media (min-width: 64rem) {
  .main-header__nav {
    display: block;
    transition: 300ms opacity 200ms ease-out, 300ms transform 200ms ease-out;
  }
}
.main-header__nav a {
  font-weight: var(--nav-1-font-weight);
  font-size: var(--nav-1-font-size);
  font-family: var(--nav-1-font-family);
  line-height: var(--nav-1-line-height);
  color: #fff;
  text-decoration: none;
}
.main-header__nav a:hover, .main-header__nav a:focus {
  color: #fff;
}
.main-header__nav .highlight-text {
  padding: 0;
}
.main-header__nav > .menu > li {
  margin-right: 2.25rem;
  padding: 1.25rem 0;
}
@media (min-width: 64rem) {
  .main-header__nav > .menu > li {
    margin-right: 0.875rem;
  }
}
@media (min-width: 75rem) {
  .main-header__nav > .menu > li {
    margin-right: 2.25rem;
  }
}
.main-header__nav > .menu > li:last-child {
  margin-right: 0;
}
.main-header__nav > .menu > li > a {
  display: flex;
}
.main-header__nav > .menu > li.menu-item-object-ccs_custom_menu_item a::after, .main-header__nav > .menu > li.menu-item-has-children a::after {
  content: "\ea15";
  font-weight: 400;
  font-size: 1.5rem;
  font-family: "iconfont-propel";
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  padding-left: 0.25rem;
}
.main-header__nav .sub-menu {
  display: none;
}
.main-header__search {
  position: relative;
  display: flex;
  align-items: center;
  width: 2.0625rem;
}
@media (max-width: 63.98rem) {
  .main-header__search {
    margin-right: 1.25rem;
    overflow: hidden;
  }
  .search-active .main-header__search {
    flex-grow: 1;
  }
}
.main-header__search .main-header__search-button {
  display: flex;
  align-items: center;
  padding: 0;
  border: none;
  background-color: transparent;
}
@media (min-width: 48rem) and (max-width: 74.98rem) {
  .main-header__search .main-header__search-button {
    position: relative;
    top: -0.1875rem;
  }
}
.main-header__search .main-header__search-button::before {
  content: var(--icon-search);
  color: #fff;
  font-weight: 400;
  font-size: clamp(1.5rem, 1.0263157895rem + 0.9868421053vw, 2.0625rem);
  font-family: iconfont-propel;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.search-active .main-header__search .main-header__search-button {
  width: 0;
  visibility: hidden;
  opacity: 0;
  transform: translateX(100%);
}
.main-header__search .header-search-field__cancel {
  padding: 0;
  border: none;
  background-color: transparent;
  visibility: hidden;
  opacity: 0;
  transform: translateX(-100%);
}
.main-header__search .header-search-field__cancel::before {
  position: relative;
  top: 0.1875rem;
  content: var(--icon-close);
  color: #fff;
  font-weight: 400;
  font-size: clamp(1.5rem, 1.0263157895rem + 0.9868421053vw, 2.0625rem);
  font-family: iconfont-propel;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (min-width: 48rem) and (max-width: 74.98rem) {
  .main-header__search .header-search-field__cancel::before {
    position: relative;
    top: 0;
    left: -0.3125rem;
  }
}
.search-active .main-header__search .header-search-field__cancel {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}
body .main-header__search .main-header__search-wrapper {
  top: auto;
  right: 0;
  visibility: hidden;
  opacity: 0;
  transform: translateX(100%);
  will-change: transform;
  transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out, visibility 0.4s ease-in-out, width 0.4s ease-in-out;
}
body .main-header__search .main-header__search-wrapper .header-search-field {
  display: flex;
  align-items: center;
}
body .main-header__search .main-header__search-wrapper .header-search-field__wrapper {
  position: relative;
  flex-grow: 1;
}
@media (min-width: 64rem) {
  body .main-header__search .main-header__search-wrapper .header-search-field__wrapper {
    flex-grow: unset;
    margin-left: 2.25rem;
  }
}
body .main-header__search .main-header__search-wrapper .header-search-field__input {
  font-weight: var(--body-1-font-weight);
  font-size: var(--body-1-font-size);
  font-family: var(--body-1-font-family);
  line-height: var(--body-1-line-height);
  display: block;
  width: 100%;
  padding: 1.0625rem 0.75rem;
  color: #000;
  border: 1px solid #000;
  border-radius: 0;
  background-color: #fff;
  outline: none;
  transition: color 0.2s linear, border 0.2s linear, background-color 0.2s linear;
  width: clamp(19.5rem, 26.7532894737rem + -6.9078947368vw, 23.4375rem) !important;
  height: 3rem;
  padding: 1.125rem;
  color: #54575a;
  text-decoration: none;
  border-color: transparent;
  border-radius: 0;
}
body .main-header__search .main-header__search-wrapper .header-search-field__input:focus {
  border: 1px solid var(--blockColor, #000);
}
body .main-header__search .main-header__search-wrapper .header-search-field__input.error {
  border-color: #ad0322;
}
body .main-header__search .main-header__search-wrapper .header-search-field__input::-webkit-input-placeholder {
  color: #6c7074;
}
body .main-header__search .main-header__search-wrapper .header-search-field__input::-moz-placeholder {
  color: #6c7074;
}
body .main-header__search .main-header__search-wrapper .header-search-field__input::-ms-placeholder {
  color: #6c7074;
}
body .main-header__search .main-header__search-wrapper .header-search-field__input::placeholder {
  color: #6c7074;
}
@media (max-width: 63.98rem) {
  body .main-header__search .main-header__search-wrapper .header-search-field__input {
    width: 100% !important;
    height: 2.5rem;
  }
}
body .main-header__search .main-header__search-wrapper .header-search-field__input::placeholder {
  color: #54575a;
  text-decoration: none;
}
body .main-header__search .main-header__search-wrapper .header-search-field__input::-webkit-search-cancel-button {
  display: none;
}
body .main-header__search .main-header__search-wrapper .header-search-field__submit {
  position: absolute;
  top: 50%;
  right: 1.75rem;
  display: flex;
  align-items: center;
  padding: 0;
  color: #54575a;
  border: none;
  background: none;
  box-shadow: none;
  cursor: pointer;
  transform: translate(0, -50%);
  -webkit-appearance: none;
  appearance: none;
}
body .main-header__search .main-header__search-wrapper .header-search-field__submit::after {
  content: "\ea09";
  font-weight: 400;
  font-size: 1.5rem;
  font-family: "iconfont-propel";
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body .main-header__search .main-header__search-wrapper .header-search-field__cancel {
  font-weight: var(--body-2-font-weight);
  font-size: var(--body-2-font-size);
  font-family: var(--body-2-font-family);
  line-height: var(--body-2-line-height);
  margin-bottom: var(--body-2-margin-bottom);
  margin-left: 0.75rem;
  padding: 0;
  color: #fff;
  border: none;
  background: none;
  box-shadow: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: opacity 0.2s linear;
}
body .main-header__search .main-header__search-wrapper .header-search-field__cancel:first-child {
  margin-top: 0;
}
body .main-header__search .main-header__search-wrapper .header-search-field__cancel:last-child {
  margin-bottom: 0;
}
body .main-header__search .main-header__search-wrapper .header-search-field__cancel::after {
  content: "\ea0e";
  font-weight: 400;
  font-size: 1.5rem;
  font-family: "iconfont-propel";
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body .main-header__search .main-header__search-wrapper .header-search-field__cancel:hover {
  opacity: 0.6999999881;
}
.main-header__search-dropdown {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: auto;
  min-height: 28.75rem;
  padding: clamp(2.5rem, 2.0789473684rem + 0.8771929825vw, 3rem) 0;
  background-color: #fff;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-200%);
}
@media (min-width: 64rem) {
  .main-header__search-dropdown {
    top: 100%;
  }
}
.main-header__search-dropdown .header-search-field__input {
  color: #54575a !important;
}
.main-header__search-dropdown .header-search-field__input::placeholder {
  color: #54575a;
  text-decoration: none;
}
.main-header__search-dropdown .header-search-field__input::-webkit-search-cancel-button {
  display: none;
}
.main-header__search-dropdown .header-search-field__clear {
  right: 0;
  width: 2.75rem;
  padding-right: 1rem;
  padding-left: 0.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s linear;
}
.main-header__search-dropdown .header-search-field__clear::before {
  content: var(--icon-close);
  background-color: #000;
  transition: background-color 0.2s linear;
}
.main-header__search-dropdown .header-search-field__clear:hover::before, .main-header__search-dropdown .header-search-field__clear:focus::before {
  background-color: #000;
}
.search-active .main-header__search-dropdown {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
.main-header__search-dropdown .main-header__search-wrapper {
  max-width: 54rem;
}
.main-header__search-dropdown .main-header__search-wrapper .header-search-field__submit {
  position: absolute;
  top: 1.875rem;
  right: clamp(1.0625rem, 0.4835526316rem + 1.2061403509vw, 1.75rem);
  display: flex;
  align-items: center;
  padding: 0;
  color: #54575a;
  border: none;
  background: none;
  box-shadow: none;
  cursor: pointer;
  transform: translate(0, -50%);
  -webkit-appearance: none;
  appearance: none;
}
.main-header__search-dropdown .main-header__search-wrapper .header-search-field__submit::after {
  content: "\ea42";
  font-weight: 400;
  font-size: 1.5rem;
  font-family: "iconfont-propel";
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.main-header__search-dropdown .main-header__search-wrapper .main-header__search-heading {
  font-weight: var(--t5-font-weight);
  font-size: var(--t5-font-size);
  font-family: var(--t5-font-family);
  line-height: var(--t5-line-height);
  margin-top: calc(var(--t5-margin-bottom) * 2);
  margin-bottom: var(--t5-margin-bottom);
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}
.main-header__search-dropdown .main-header__search-wrapper .main-header__search-heading:first-child {
  margin-top: 0;
}
.main-header__search-dropdown .main-header__search-wrapper .main-header__search-heading:last-child {
  margin-bottom: 0;
}
.main-header .search-active .main-header__search {
  width: auto;
}
.main-header .search-active .main-header__search-wrapper {
  position: relative;
  top: auto;
  right: 0;
  width: 100%;
  max-width: 54rem;
  padding: 0;
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}
.main-header .ep-autosuggest-container .ep-autosuggest {
  position: relative;
  margin-top: 2rem;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.main-header .ep-autosuggest-container .ep-autosuggest > ul {
  margin: 0 !important;
  padding: 0;
  list-style: none;
}
.main-header .ep-autosuggest-container .ep-autosuggest > ul > li {
  font-weight: var(--link-2-font-weight);
  font-size: var(--link-2-font-size);
  font-family: var(--link-2-font-family);
  line-height: var(--link-2-line-height);
  margin-bottom: var(--link-2-margin-bottom);
}
.main-header .ep-autosuggest-container .ep-autosuggest > ul > li:first-child {
  margin-top: 0;
}
.main-header .ep-autosuggest-container .ep-autosuggest > ul > li:last-child {
  margin-bottom: 0;
}
.main-header .ep-autosuggest-container .ep-autosuggest > ul > li:not(:last-child) {
  margin-bottom: 1rem;
}
.main-header .ep-autosuggest-container .ep-autosuggest > ul > li > a.autosuggest-link {
  position: relative;
  display: block;
  padding: 0;
  padding-right: 4rem;
  padding-bottom: 0.5rem;
  color: #0066ba;
  border-bottom: 1px solid #bbbcbd;
  cursor: pointer;
}
.main-header .ep-autosuggest-container .ep-autosuggest > ul > li > a.autosuggest-link::after {
  position: absolute;
  top: 50%;
  right: 0;
  content: "\ea09";
  font-family: iconfont-propel;
  font-style: normal;
  transform: translate(0, -50%);
}
.main-header .ep-autosuggest-container .ep-autosuggest > ul > li > a.autosuggest-link:hover, .main-header .ep-autosuggest-container .ep-autosuggest > ul > li > a.autosuggest-link:active {
  text-decoration: none;
  background-color: transparent;
}
.header-search-field__wrapper + .main-header__search-popular-items {
  margin-top: 2rem;
}
.main-header__search-popular-items {
  margin-bottom: 1.5rem;
}
.main-header__search-popular-items > ul {
  padding: 0;
  list-style: none;
}
.main-header__search-popular-items > ul > li {
  font-weight: var(--link-2-font-weight);
  font-size: var(--link-2-font-size);
  font-family: var(--link-2-font-family);
  line-height: var(--link-2-line-height);
  margin-bottom: var(--link-2-margin-bottom);
  list-style: none;
}
.main-header__search-popular-items > ul > li:first-child {
  margin-top: 0;
}
.main-header__search-popular-items > ul > li:last-child {
  margin-bottom: 0;
}
.main-header__search-popular-items > ul > li:not(:last-child) {
  margin-bottom: 1rem;
}
.main-header__search-popular-items > ul > li a {
  position: relative;
  display: block;
  padding-right: 4rem;
  padding-bottom: 0.5rem;
  text-decoration: none;
  border-bottom: 1px solid #bbbcbd;
}
.main-header__search-popular-items > ul > li a::after {
  position: absolute;
  top: 50%;
  right: 0;
  content: "\ea09";
  font-family: iconfont-propel;
  font-style: normal;
  transform: translate(0, -50%);
}
.main-header__search-popular-items > ul > li a:hover, .main-header__search-popular-items > ul > li a:focus {
  text-decoration: none;
}

.page-has-transparent-nav .main-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background-color: transparent;
  transition: background-color 0.2s linear;
}
.page-has-transparent-nav.scrolled .main-header {
  background-color: #003661;
}
@media (max-width: 63.98rem) {
  .page-has-transparent-nav.no-scroll .main-header {
    background-color: #003661;
  }
}
.page-has-transparent-nav #page .content-wrapper > .acf-block.block-hero-image:first-child,
.page-has-transparent-nav #page .content-wrapper > .block-hero-display:first-child,
.page-has-transparent-nav #page .content-wrapper > .block-hero-post:first-child,
.page-has-transparent-nav #page .content-wrapper > .block-hero-form:first-child {
  margin-top: -3.75rem;
}
@media (min-width: 64rem) {
  .page-has-transparent-nav #page .content-wrapper > .acf-block.block-hero-image:first-child,
.page-has-transparent-nav #page .content-wrapper > .block-hero-display:first-child,
.page-has-transparent-nav #page .content-wrapper > .block-hero-post:first-child,
.page-has-transparent-nav #page .content-wrapper > .block-hero-form:first-child {
    margin-top: clamp(-9.375rem, -7.0723684211rem + -2.1929824561vw, -8.125rem);
  }
}

@media (max-width: 63.98rem) {
  .search-active .main-header__search-button {
    display: none;
  }
}
.page-has-loaded .main-header__logo {
  opacity: 1;
}
.page-has-loaded .main-header__top-nav {
  opacity: 1;
  transform: none;
}
.page-has-loaded .main-header__nav-wrapper {
  opacity: 1;
  transform: none;
}

* {
  scroll-margin-top: 2.5rem;
}
@media (min-width: 48rem) {
  * {
    scroll-margin-top: clamp(2.5rem, -2.9736842105rem + 11.4035087719vw, 9rem);
  }
}

:root {
  --alert-start: 0;
}

.admin-bar:not(.page-has-transparent-nav) {
  --alert-start: 0;
}

.alert-bar {
  position: relative;
  top: var(--alert-start);
  left: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  width: 100%;
  color: #fff;
}
.alert-bar__item {
  --alert-bg-color: #070b3a;
  padding-top: 8px;
  padding-bottom: 8px;
  background-color: var(--alert-bg-color);
}
.alert-bar__item + .alert-bar__item {
  border-top: 1px solid #fff;
}
.alert-bar__item.viewed {
  display: none;
}
.alert-bar__content {
  display: flex;
  gap: 0.5rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
}
.alert-bar__content p {
  margin: 0;
  font-size: 0.75rem;
  line-height: normal;
}
.alert-bar__content a {
  color: inherit;
  text-decoration: underline;
}
.alert-bar__message {
  flex: 1;
}
@media (min-width: 48rem) {
  .alert-bar__message {
    text-align: center;
  }
}
.alert-bar__close {
  position: relative;
  width: 16px;
  height: 16px;
  padding: 0;
  border: 1px solid #fff;
  border-radius: 100%;
  background: transparent;
}
.alert-bar__close::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 14px;
  height: 14px;
  padding: 1px;
  background: #fff;
  -webkit-mask-image: url(../../images/icons/close.svg);
  -webkit-mask-size: cover;
  mask-image: url(../../images/icons/close.svg);
  mask-size: cover;
}

/* Mega Menu */
.mega-menu-wrapper {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: -999;
  width: 100%;
  padding-top: 2.0625rem;
  padding-bottom: 0.9375rem;
  border-top: 1px solid #ddddde;
  background: transparent;
  visibility: hidden;
}
.mega-menu-wrapper li {
  display: block;
  padding: 0 0 0.9375rem 0;
}
.mega-menu-wrapper li.current-menu-item > a {
  color: #0066ba;
}
.mega-menu-wrapper a {
  padding: 0;
  color: var(--blockColor, #000);
  font-weight: 700;
  visibility: hidden;
  opacity: 0;
  transform: translateY(0.3125rem);
  transition: none;
}
.mega-menu-wrapper a:hover {
  color: var(--blockColor, #000);
  transition: color 0.1s;
}
.mega-menu-wrapper a.active {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.2s linear;
}
.mega-menu-wrapper h1,
.mega-menu-wrapper h2,
.mega-menu-wrapper h3,
.mega-menu-wrapper h4,
.mega-menu-wrapper h5,
.mega-menu-wrapper h6,
.mega-menu-wrapper p,
.mega-menu-wrapper blockquote {
  visibility: hidden;
  opacity: 0;
  transform: translateY(0.3125rem);
  transition: none;
}
.mega-menu-wrapper h1.active,
.mega-menu-wrapper h2.active,
.mega-menu-wrapper h3.active,
.mega-menu-wrapper h4.active,
.mega-menu-wrapper h5.active,
.mega-menu-wrapper h6.active,
.mega-menu-wrapper p.active,
.mega-menu-wrapper blockquote.active {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.2s linear;
}
.mega-menu-wrapper.active {
  z-index: 999;
  visibility: visible;
}
.mega-menu-wrapper.active a {
  transform: none;
}
.mega-menu-wrapper .sub-menu {
  margin: 1.25rem 0 0.9375rem;
}
.mega-menu-wrapper .sub-menu li {
  padding-bottom: 0.9375rem;
  padding-left: 0;
}
.mega-menu-wrapper .sub-menu li:last-child {
  padding-bottom: 0;
}
.mega-menu-wrapper .sub-menu a {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.714286;
}

.mega-menu-background {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 998;
  width: 100%;
  background-color: #fff;
}

/* Main Header Mobile */
.btn-hamburger {
  position: absolute;
  top: 50%;
  right: 0.9375rem;
  z-index: 9999;
  display: block;
  width: 1.5625rem;
  height: 1.125rem;
  margin: -0.125rem 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  outline: 0;
  box-shadow: none;
  cursor: pointer;
  transform: translate(0, -50%);
}
@media (min-width: 64rem) {
  .btn-hamburger {
    display: none;
  }
}
@media (max-width: 47.98rem) {
  .btn-hamburger {
    width: 1.25rem;
    height: 0.9375rem;
    margin: 0;
  }
}
.btn-hamburger:hover, .btn-hamburger:focus {
  outline: 0;
}
.btn-hamburger span {
  position: absolute;
  left: 0;
  display: block;
  width: 1.5rem;
  height: 0.125rem;
  border-radius: 9px;
  background: #fff;
  opacity: 1;
  transform: rotate(0deg);
  transition: 0.45s ease-in-out;
}
@media (max-width: 47.98rem) {
  .btn-hamburger span {
    width: 1.25rem;
  }
}
.btn-hamburger span:nth-child(1) {
  top: 0;
  transform-origin: left center;
}
.btn-hamburger span:nth-child(2) {
  top: 0.5rem;
  transform-origin: left center;
}
@media (max-width: 47.98rem) {
  .btn-hamburger span:nth-child(2) {
    top: 0.375rem;
  }
}
.btn-hamburger span:nth-child(3) {
  top: 1rem;
  transform-origin: left center;
}
@media (max-width: 47.98rem) {
  .btn-hamburger span:nth-child(3) {
    top: 0.75rem;
  }
}
.btn-hamburger.open span:nth-child(1) {
  top: -0.0625rem;
  left: 0.125rem;
  transform: rotate(45deg);
}
.btn-hamburger.open span:nth-child(2) {
  width: 0;
  opacity: 0;
}
.btn-hamburger.open span:nth-child(3) {
  top: 1rem;
  left: 0.125rem;
  transform: rotate(-45deg);
}
@media (max-width: 47.98rem) {
  .btn-hamburger.open span:nth-child(3) {
    top: 0.8125rem;
  }
}

.main-header__nav-mobile {
  padding-bottom: 0.1875rem;
  font-size: 1.125rem;
  line-height: 2rem;
  overflow: hidden;
}
.main-header__nav-mobile--wrapper {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 99;
  width: 100%;
  height: calc(100vh - 40px);
  padding-top: 0.75rem;
  background: #003661;
  visibility: hidden;
  transform: scaleX(0);
  transform-origin: right;
  will-change: transform;
  transition: transform 0.4s, visibility 0.8s ease-in-out;
}
.main-header__nav-mobile--wrapper.active {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  visibility: visible;
  transform: scaleX(1);
  overflow: scroll;
}
@media (min-width: 64rem) {
  .main-header__nav-mobile--wrapper.active {
    display: none;
  }
}
.main-header__nav-mobile--wrapper.active nav li {
  opacity: 1;
}
.main-header__nav-mobile--wrapper nav li {
  display: block;
  opacity: 0;
  transition: opacity 0.2s linear;
}
.main-header__nav-mobile--wrapper .c-btn {
  width: 100%;
  font-size: 0.75rem;
  line-height: 0.9375rem;
}
@media (max-width: 47.98rem) {
  .main-header__nav-mobile {
    font-size: 0.875rem;
    line-height: 1rem;
  }
}
.main-header__nav-mobile .menu > li > a {
  position: relative;
  color: #fff;
  text-decoration: none;
}
.main-header__nav-mobile a {
  display: block;
  font-weight: 400;
}
.main-header__nav-mobile a:hover, .main-header__nav-mobile a:focus {
  color: var(--blockColor, #000);
}
.main-header .main-header__nav-mobile--top a {
  font-weight: var(--nav-1-font-weight);
  font-size: var(--nav-1-font-size);
  font-family: var(--nav-1-font-family);
  line-height: var(--nav-1-line-height);
  padding: 1.5rem 2.5rem 0rem 0.9375rem;
}
.main-header .main-header__nav-mobile--bottom {
  margin-top: 3rem;
  padding-bottom: 3rem;
}
.main-header .main-header__nav-mobile--bottom a {
  font-weight: var(--nav-2-font-weight);
  font-size: var(--nav-2-font-size);
  font-family: var(--nav-2-font-family);
  line-height: var(--nav-2-line-height);
  padding: 1rem 2.5rem 0rem 0.9375rem;
}

.main-footer {
  color: #fff;
  background-color: #000;
  overflow: hidden;
}
@media print {
  .main-footer {
    display: none;
  }
}
.main-footer a {
  color: #fff;
}
.main-footer a:hover, .main-footer a:focus {
  color: #cbcccd;
  text-decoration: none;
}
.main-footer .ot-sdk-show-settings {
  cursor: pointer;
}
.main-footer .overline {
  margin: 0 0 1.5rem;
  color: #6c7074;
}
.main-footer__logo {
  margin: 0 0 2rem;
  line-height: 1.25rem;
}
@media (min-width: 64rem) {
  .main-footer__logo {
    margin: -0.1875rem 0 2.5rem;
  }
}
.main-footer__social {
  display: flex;
  margin: 0 0 2.5rem;
}
.main-footer__social-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 0.75rem 0 0;
  border: 1px solid #6c7074;
  border-radius: 50%;
}
.main-footer__social-link i::before {
  font-size: 1.25rem;
}
@media (max-width: 47.98rem) {
  .main-footer__menu {
    margin: 0 0 3rem 0.3125rem;
  }
}
.main-footer__menu ul {
  display: grid;
  grid-gap: 1.5rem;
  padding: 0 33% 0 0;
  list-style: none;
}
@media (min-width: 64rem) {
  .main-footer__menu ul {
    grid-template-columns: 1fr 1fr;
  }
}
.main-footer__menu ul li {
  font-weight: var(--t6-font-weight);
  font-size: var(--t6-font-size);
  font-family: var(--t6-font-family);
  line-height: var(--t6-line-height);
  letter-spacing: var(--t6-letter-spacing);
  text-transform: var(--t6-text-transform);
}
.main-footer__contact a {
  font-weight: var(--t6-font-weight);
  font-size: var(--t6-font-size);
  font-family: var(--t6-font-family);
  line-height: var(--t6-line-height);
  letter-spacing: var(--t6-letter-spacing);
  text-transform: var(--t6-text-transform);
  display: block;
  margin-bottom: 1.5rem;
}
.main-footer__contact a[href^=tel]::before {
  content: "\ea37";
  font-weight: 400;
  font-size: 0.75rem;
  font-family: "iconfont-propel";
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 0.125rem;
  vertical-align: middle;
}
.main-footer__form {
  margin: 0 0 1.5rem;
}
@media (min-width: 64rem) {
  .main-footer__form {
    margin: 0 0 4rem;
  }
}
.main-footer__copyright ul {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  padding: 0;
  list-style: none;
}
@media (min-width: 64rem) {
  .main-footer__copyright ul {
    margin-bottom: 2rem;
    padding: 1.5rem 0 0;
    border-top: 1px solid #fff;
  }
}
.main-footer__copyright li {
  margin-right: 0.9375rem;
}
@media (max-width: 47.98rem) {
  .main-footer__copyright li {
    line-height: 1.5rem;
  }
}
.main-footer__copyright a {
  color: #6c7074;
}