@charset "UTF-8";
/*
transition between values based on min-max width
*/
:root {
  --header-height: 145px;
}
@media print {
  :root {
    --header-height: 100px;
  }
}

html:after {
  content: "";
  font-family: '{"breakpoints":{"main":767,"menu":1030,"mobile":549},"page":{"max-width":1365,"min-width":320},"gutter":{"column":20,"page":20,"vertical":20}}';
  position: absolute;
  width: 0px;
  height: 0px;
  overflow: hidden;
  visibility: hidden;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes rotateClockwise {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes rotateAntiClockwise {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}
/*** =======================
 *** Base
 *** ======================= */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */
html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
  cursor: pointer;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit; /* 1 */
  font: inherit; /* 2 */
  margin: 0; /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type=checkbox],
input[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
input[type=search] {
  -webkit-appearance: textfield; /* 1 */
  box-sizing: content-box; /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/*** end normalize.css ***/
body, input, textarea {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

ol, ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

blockquote, q {
  quotes: none;
}
blockquote:before, q:before {
  content: "";
  content: none;
}

input[type=text],
input[type=search],
input[type=email],
input[type=number],
input[type=tel],
input[type=url],
input[type=text],
input[type=submit],
button,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input, textarea {
  border-radius: 0;
}

textarea {
  display: block;
  overflow: auto;
  resize: vertical;
}

button,
input[type=submit],
input[type=button] {
  border-radius: 0;
}

/**
 * Print styles.
 *
 * Inlined to avoid required HTTP connection: www.phpied.com/delay-loading-your-print-css/
 * Credit to Paul Irish and HTML5 Boilerplate (html5boilerplate.com)
 */
@media print {
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  } /* Black prints faster: sanbeiji.com/archives/953 */
  p a, p a:visited {
    color: #444 !important;
    text-decoration: underline;
  }
  p a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after {
    content: "";
  } /* Don't show links for images, or javascript/internal links */
  pre, blockquote {
    border: 0px none;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  } /* css-discuss.incutio.com/wiki/Printing_Tables */
  tr, img {
    page-break-inside: avoid;
  }
  @page {
    margin: 1cm 0.5cm;
  }
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }
  h2, h3 {
    page-break-after: avoid;
  }
  .main-wrapper {
    width: 1365px;
  }
  .background-size-polyfill, .background-size-polyfill img {
    display: none !important;
  }
}
/** Framework based on Gumby **/
.layout-container {
  overflow: hidden;
  min-width: 320px;
  position: relative;
}
@media print {
  .layout-container {
    width: 1100px;
  }
}

section {
  padding: 0 20px;
}
section section {
  margin: 0 -20px;
}

body:not(.page-node):not(.page-term) .page-layout .region-content, .page-layout .sidebar-partial, .grid, .row {
  max-width: 1365px;
  margin: 0 auto;
}

.column, .columns {
  position: relative;
  float: left;
  margin-left: 1.4652014652%;
  min-height: 1px;
  box-sizing: border-box;
}

.column:first-child, .columns:first-child, .alpha {
  margin-left: 0;
}

.column.omega, .columns.omega {
  float: right;
}

/*** Removed because it is usually annoying ***

 [class*="column"] + [class*="column"]:last-child{ float: right; }

***/
.row .one.columns {
  width: 6.9902319902%;
}
.row .two.columns {
  width: 15.4456654457%;
}
.row .three.columns {
  width: 23.9010989011%;
}
.row .four.columns {
  width: 32.3565323565%;
}
.row .five.columns {
  width: 40.811965812%;
}
.row .six.columns {
  width: 49.2673992674%;
}
.row .seven.columns {
  width: 57.7228327228%;
}
.row .eight.columns {
  width: 66.1782661783%;
}
.row .nine.columns {
  width: 74.6336996337%;
}
.row .ten.columns {
  width: 83.0891330891%;
}
.row .eleven.columns {
  width: 91.5445665446%;
}
.row .twelve.columns {
  width: 100%;
}
.row .columns.push_one {
  margin-left: 9.9206349206%;
}
.row .columns.push_two {
  margin-left: 18.3760683761%;
}
.row .columns.push_three {
  margin-left: 26.8315018315%;
}
.row .columns.push_four {
  margin-left: 35.2869352869%;
}
.row .columns.push_five {
  margin-left: 43.7423687424%;
}
.row .columns.push_six {
  margin-left: 52.1978021978%;
}
.row .columns.push_seven {
  margin-left: 60.6532356532%;
}
.row .columns.push_eight {
  margin-left: 69.1086691087%;
}
.row .columns.push_nine {
  margin-left: 77.5641025641%;
}
.row .columns.push_ten {
  margin-left: 86.0195360195%;
}
.row .columns.push_eleven {
  margin-left: 94.474969475%;
}
.row .columns.push_one:first-child {
  margin-left: 8.4554334554%;
}
.row .columns.push_two:first-child {
  margin-left: 16.9108669109%;
}
.row .columns.push_three:first-child {
  margin-left: 25.3663003663%;
}
.row .columns.push_four:first-child {
  margin-left: 33.8217338217%;
}
.row .columns.push_five:first-child {
  margin-left: 42.2771672772%;
}
.row .columns.push_six:first-child {
  margin-left: 50.7326007326%;
}
.row .columns.push_seven:first-child {
  margin-left: 59.188034188%;
}
.row .columns.push_eight:first-child {
  margin-left: 67.6434676435%;
}
.row .columns.push_nine:first-child {
  margin-left: 76.0989010989%;
}
.row .columns.push_ten:first-child {
  margin-left: 84.5543345543%;
}
.row .columns.push_eleven:first-child {
  margin-left: 93.0097680098%;
}
.row .one.centered {
  margin-left: 46.5048840049%;
}
.row .two.centered {
  margin-left: 42.2771672772%;
}
.row .three.centered {
  margin-left: 38.0494505495%;
}
.row .four.centered {
  margin-left: 33.8217338217%;
}
.row .five.centered {
  margin-left: 29.594017094%;
}
.row .six.centered {
  margin-left: 25.3663003663%;
}
.row .seven.centered {
  margin-left: 21.1385836386%;
}
.row .eight.centered {
  margin-left: 16.9108669109%;
}
.row .nine.centered {
  margin-left: 12.6831501832%;
}
.row .ten.centered {
  margin-left: 8.4554334554%;
}
.row .eleven.centered {
  margin-left: 4.2277167277%;
}

img, object, embed {
  width: auto;
  max-width: 100%;
  height: auto;
  flex-shrink: 0;
}

img {
  -ms-interpolation-mode: bicubic;
}

#map_canvas img, .map_canvas img {
  max-width: none !important;
}

/* Nicolas Gallagher's micro clearfix */
.row:before, .row:after, .clearfix:before, .clearfix:after {
  content: "";
  display: table;
}

.row:after, .clearfix:after {
  clear: both;
}

.row, .clearfix {
  zoom: 1;
}

.row.noclear:before, .row.noclear:after {
  content: none;
  display: none;
  clear: none;
}

/* Row Reverse */
.row.reverse > .column, .row.reverse > .columns {
  margin-left: 0;
  margin-right: 1.4652014652%;
  float: right;
}

.row.reverse > .column:first-child, .row.reverse > .columns:first-child, .row.reverse > .alpha {
  margin-right: 0;
}

.row.reverse > .column.omega, .row.reverse > .columns.omega {
  float: left;
}

@media screen and (max-width: 767px) {
  body {
    -webkit-text-size-adjust: none;
    -ms-text-size-adjust: none;
    width: 100%;
    min-width: 0;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .container {
    min-width: 0;
    margin-left: 0;
    margin-right: 0;
  }
  .row {
    min-width: 0;
    margin-left: 0;
    margin-right: 0;
  }
  .row .row .column, .row .row .columns {
    padding: 0;
  }
  .column, .columns {
    width: auto !important;
    float: none;
    margin-left: 0;
    margin-right: 0;
  }
  .column:last-child, .columns:last-child {
    margin-right: 0;
    float: none;
  }
  .row .row .column, .row .row .columns {
    padding: 0;
  }
  .column, .columns, .row.reverse > .column, .row.reverse > .columns {
    width: auto !important;
    float: none;
    margin-left: 0;
    margin-right: 0;
  }
  .column:last-child, .columns:last-child {
    margin-right: 0;
    float: none;
  }
  [class*=column] + [class*=column]:last-child {
    float: none;
  }
  [class*=column]:before, [class*=column]:after {
    display: table;
  }
  [class*=column]:after {
    clear: both;
  }
  .push_one, .push_two, .push_three, .push_four, .push_five, .push_six, .push_seven, .push_eight, .push_nine, .push_ten, .push_eleven, .centered {
    margin-left: 0% !important;
  }
}
/** Custom Grid **/
.grid:after {
  content: "";
  display: block;
  clear: both;
  width: 100%;
  height: 0;
  overflow: hidden;
  position: static;
}

@media screen and (max-width: 767px) {
  body.add-this {
    padding-bottom: 46px;
  }
}
html, body {
  font-size: 16px;
  line-height: 1.625em;
  min-width: 320px;
  background-color: #000000;
  color: #ffffff;
}

main {
/*   background-color: #f5f5f5; */
/*   color: #000a15; */
}

.layout-container, input, textarea, select, button {
  font-family: "soleil", Verdana, sans-serif;
  font-size: 1em;
}

input, textarea, select, button {
  color: #000a15;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "soleil", Verdana, sans-serif;
  font-weight: normal;
  color: #000a15;
  margin: 0;
}
h1:not(:first-child), h2:not(:first-child), h3:not(:first-child), h4:not(:first-child), h5:not(:first-child), h6:not(:first-child) {
  margin-top: 1.5em;
}
h1:not(:last-child), h2:not(:last-child), h3:not(:last-child), h4:not(:last-child), h5:not(:last-child), h6:not(:last-child) {
  margin-bottom: 0.8em;
}
h1 + h2, h1 + h3, h1 + h4, h1 + h5, h1 + h6, h2 + h2, h2 + h3, h2 + h4, h2 + h5, h2 + h6, h3 + h2, h3 + h3, h3 + h4, h3 + h5, h3 + h6, h4 + h2, h4 + h3, h4 + h4, h4 + h5, h4 + h6, h5 + h2, h5 + h3, h5 + h4, h5 + h5, h5 + h6, h6 + h2, h6 + h3, h6 + h4, h6 + h5, h6 + h6 {
  margin-top: 0 !important;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: inherit;
}

h1 {
  font-weight: 600;
}

h2, h5, h6 {
  font-weight: bold;
}

h1 {
  font-size: clamp(3.125rem, 1.3614130435rem + 3.6789297659vw, 4.5rem);
  line-height: clamp(3.6875rem, 1.84375rem + 3.8461538462vw, 5.125rem);
}
@media screen and (max-width: 767px) {
  h1 {
    font-size: clamp(2.125rem, -0.3933486239rem + 7.3394495413vw, 3.125rem);
    line-height: clamp(2.6875rem, 0.1691513761rem + 7.3394495413vw, 3.6875rem);
  }
}
@media print {
  h1 {
    font-size: 72px;
    line-height: 82px;
  }
}

h2 {
  font-size: clamp(2.625rem, 2.1440217391rem + 1.0033444816vw, 3rem);
  line-height: clamp(3.625rem, 3.3043478261rem + 0.6688963211vw, 3.875rem);
}
@media screen and (max-width: 767px) {
  h2 {
    font-size: clamp(1.875rem, -0.0137614679rem + 5.504587156vw, 2.625rem);
    line-height: clamp(2.5rem, -0.3331422018rem + 8.2568807339vw, 3.625rem);
  }
}
@media print {
  h2 {
    font-size: 48px;
    line-height: 62px;
  }
}

h3 {
  font-size: clamp(2rem, 1.839673913rem + 0.3344481605vw, 2.125rem);
  line-height: clamp(2.5rem, 2.339673913rem + 0.3344481605vw, 2.625rem);
}
@media screen and (max-width: 767px) {
  h3 {
    font-size: clamp(1.625rem, 0.6806192661rem + 2.752293578vw, 2rem);
    line-height: clamp(2rem, 0.7408256881rem + 3.6697247706vw, 2.5rem);
  }
}
@media print {
  h3 {
    font-size: 34px;
    line-height: 42px;
  }
}

h4 {
  font-size: clamp(1.5rem, 1.1793478261rem + 0.6688963211vw, 1.75rem);
  line-height: clamp(1.875rem, 1.4741847826rem + 0.8361204013vw, 2.1875rem);
}
@media print {
  h4 {
    font-size: 28px;
    line-height: 35px;
  }
}

h5 {
  font-size: 1.5rem;
  line-height: 0.8333333333em;
}
@media print {
  h5 {
    font-size: 24px;
    line-height: 20px;
  }
}

h6 {
  font-size: 1.25rem;
  line-height: 1.25em;
}
@media print {
  h6 {
    font-size: 20px;
    line-height: 25px;
  }
}

a {
  color: #d64000;
  transition: color 0.1s;
}
a:hover, a:active {
  color: #b43904;
  text-decoration-line: none;
}

.pager__item a:focus-visible, input[type=submit]:focus-visible,
input[type=button]:focus-visible,
button:focus-visible,
.button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, button:focus-visible, summary:focus-visible {
  position: relative;
  outline: 4px solid #195aff;
  outline-offset: -1px;
  z-index: 200;
}

a:focus-visible {
  position: relative;
  outline: 4px solid #195aff;
  outline-offset: -1px;
  z-index: 200;
}

.skip-link {
  display: block;
  padding: 10px;
  background-color: #d64000 !important;
  color: #ffffff !important;
  text-decoration: none;
  text-align: center;
}
.skip-link:focus-visible {
  outline-offset: -3px;
}

.image {
  display: block;
}
.image img {
  display: block;
}

/**
 * @file
 * Throbber.
 */
.ajax-progress-throbber {
  display: inline-block;
  vertical-align: middle;
}
.ajax-progress-throbber .throbber {
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  height: 16px;
  box-sizing: border-box;
  overflow: hidden;
  text-indent: -9999em;
  border-top: 2px solid #d64000;
  border-right: 2px solid transparent;
  border-bottom: 2px solid transparent;
  border-left: 2px solid transparent;
  border-radius: 50%;
  transform: translateZ(0);
  animation: rotateClockwise 0.5s infinite linear;
  margin: 0 5px;
}
.ajax-progress-throbber .message {
  display: inline;
}

/* Full screen throbber */
.ajax-progress-fullscreen {
  /* Can't do center:50% middle: 50%, so approximate it for a typical window size. */
  left: 49%; /* LTR */
  position: fixed;
  top: 48.5%;
  z-index: 1000;
  background-color: #232323;
  background-image: url(../../img/loading-small.gif);
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 7px;
  height: 24px;
  opacity: 0.9;
  padding: 4px;
  width: 24px;
}

[dir=rtl] .ajax-progress-fullscreen {
  left: auto;
  right: 49%;
}

/**
 * @file
 * Utility classes to hide elements in different ways.
 */
/**
 * Hide elements from all users.
 *
 * Used for elements which should not be immediately displayed to any user. An
 * example would be collapsible details that will be expanded with a click
 * from a user. The effect of this class can be toggled with the jQuery show()
 * and hide() functions.
 */
.hidden {
  display: none;
}

/**
 * Hide elements visually, but keep them available for screen readers.
 *
 * Used for information required for screen reader users to understand and use
 * the site where visual display is undesirable. Information provided in this
 * manner should be kept concise, to avoid unnecessary burden on the user.
 * "!important" is used to prevent unintentional overrides.
 */
.visually-hidden, section.helix-row-timeline .slick-sr-only {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  height: 1px;
  width: 1px;
  word-wrap: normal;
}

/**
 * The .focusable class extends the .visually-hidden class to allow
 * the element to be focusable when navigated to via the keyboard.
 */
.visually-hidden.focusable:active, section.helix-row-timeline .focusable.slick-sr-only:active,
.visually-hidden.focusable:focus,
section.helix-row-timeline .focusable.slick-sr-only:focus {
  position: static !important;
  clip: auto;
  overflow: visible;
  height: auto;
  width: auto;
}

/**
 * Hide visually and from screen readers, but maintain layout.
 */
.invisible {
  visibility: hidden;
}

/**
 * @file
 * Utility classes to assist with Javascript functionality.
 */
/**
 * For anything you want to hide on page load when JS is enabled, so
 * that you can use the JS to control visibility and avoid flicker.
 */
.js .js-hide {
  display: none;
}

/**
 * For anything you want to show on page load only when JS is enabled.
 */
.js-show {
  display: none;
}

.js .js-show {
  display: block;
}

/**
 * @file
 * Resizable textareas.
 */
.resize-none {
  resize: none;
}

.resize-vertical {
  resize: vertical;
  min-height: 2em;
}

.resize-horizontal {
  resize: horizontal;
  max-width: 100%;
}

.resize-both {
  resize: both;
  max-width: 100%;
  min-height: 2em;
}

/*** =======================
 *** Components
 *** ======================= */
.generic-content {
  font-size: 1.125rem;
  line-height: 1.6111111111em;
}
.generic-content:after {
  content: "";
  display: block;
  clear: both;
  width: 100%;
  height: 0;
  overflow: hidden;
  position: static;
}
@media screen and (max-width: 549px) {
  .generic-content {
    font-size: 1rem;
    line-height: 1.625em;
  }
}
.generic-content.indented {
  position: relative;
  padding-left: clamp(1.875rem, -12.2907110092rem + 41.2844036697vw, 7.5rem);
}
.generic-content.indented::before {
  content: "";
  position: absolute;
  top: 14.5px;
  left: clamp(0rem, -4.7219036697rem + 13.7614678899vw, 1.875rem);
  width: clamp(1.125rem, -6.2726490826rem + 21.5596330275vw, 4.0625rem);
  border-top: 1px solid #d64000;
}
@media screen and (max-width: 549px) {
  .generic-content.indented {
    top: 13px;
  }
}
@media print {
  .generic-content.indented {
    padding-left: 0;
  }
  .generic-content.indented::before {
    content: none;
    display: none;
  }
}
.generic-content *:first-child {
  margin-top: 0px !important;
}
.generic-content *:last-child {
  margin-bottom: 0px !important;
}
.generic-content .hck-widget, .generic-content .embed-media, .generic-content table, .generic-content figure, .generic-content blockquote, .generic-content dl, .generic-content ul, .generic-content ol, .generic-content hr, .generic-content p {
  margin-top: 1.4em;
  margin-bottom: 1.4em;
}
.generic-content h1 a, .generic-content h2 a, .generic-content h3 a, .generic-content h4 a, .generic-content h5 a, .generic-content h6 a {
  color: #d64000;
}
.generic-content h1 a:hover, .generic-content h1 a:focus-visible, .generic-content h2 a:hover, .generic-content h2 a:focus-visible, .generic-content h3 a:hover, .generic-content h3 a:focus-visible, .generic-content h4 a:hover, .generic-content h4 a:focus-visible, .generic-content h5 a:hover, .generic-content h5 a:focus-visible, .generic-content h6 a:hover, .generic-content h6 a:focus-visible {
  color: #b43904;
}
.generic-content hr {
  border: 0px none;
  border-top: 1px solid #cbcec8;
}
.generic-content ul li, .generic-content ol li {
  margin-bottom: 0.8em;
  margin-left: 30px;
}
.generic-content ul li > ul:nth-child(1n), .generic-content ul li > ol:nth-child(1n), .generic-content ol li > ul:nth-child(1n), .generic-content ol li > ol:nth-child(1n) {
  margin-top: 1em !important;
}
.generic-content ul > li {
  list-style: disc outside;
}
.generic-content ul > li::marker {
  color: #d64000;
}
.generic-content li ul > li {
  list-style: square outside;
}
.generic-content li ul > li::marker {
  color: inherit;
}
.generic-content ol > li {
  list-style: decimal outside;
}
.generic-content ol > li::marker {
  font-weight: bold;
}
.generic-content li ol > li {
  list-style: lower-alpha;
}
.generic-content li ol > li::marker {
  font-weight: normal;
}
.generic-content li li ol > li {
  list-style: lower-roman;
}
.generic-content dl dt {
  margin: 0px 0px 10px;
  text-transform: uppercase;
}
.generic-content dl dd {
  margin: 0px 0px 30px 20px;
}
.generic-content dl dd:last-child {
  margin-bottom: 0px;
}
.generic-content blockquote {
  position: relative;
  padding: 30px 40px 30px 50px;
  border-left: 4px solid #d64000;
  background-color: #eeeeee;
  text-align: left;
}
.generic-content blockquote:before, .generic-content blockquote:after {
  position: absolute;
  font-size: 40px;
  line-height: 1em;
  font-weight: bold;
  color: #d64000;
}
.generic-content blockquote:before {
  content: "“";
  left: 20px;
  top: 30px;
}
.generic-content blockquote:after {
  content: "”";
  right: 20px;
  bottom: 10px;
}
@media screen and (max-width: 549px) {
  .generic-content blockquote {
    padding: 30px 30px;
    border-left: 0px none;
  }
  .generic-content blockquote:before {
    top: 15px;
    left: 10px;
  }
  .generic-content blockquote:after {
    right: 10px;
    bottom: 5px;
  }
}
.generic-content img {
  display: block;
}
.generic-content figure figcaption {
  padding: 10px 15px;
  background-color: #eeeeee;
  font-style: italic;
  font-size: 14px;
  line-height: 1.625em;
  text-align: center;
}
.generic-content table {
  width: 100% !important;
  height: auto !important;
  line-height: 1.3em;
}
.generic-content table tr {
  background-color: #eeeeee;
  border-bottom: 2px solid #ffffff;
}
.generic-content table:not(.responsive) tr:nth-child(even) {
  background-color: #f5f5f5;
}
.generic-content table td, .generic-content table th {
  padding: 15px 20px;
}
.generic-content table th {
  font-weight: bold;
  background-color: #d64000;
  color: #ffffff;
}
.generic-content table thead {
  font-weight: bold;
}
.generic-content table thead tr {
  background-color: #d64000;
  color: #ffffff;
}
.generic-content table.responsive thead {
  display: block !important;
  height: 0 !important;
  overflow: hidden !important;
}
.generic-content table.responsive tbody tr {
  display: block;
  padding: 15px;
  border-bottom: 10px solid #ffffff;
}
.generic-content table.responsive tbody tr:last-child {
  border: 0px none;
}
.generic-content table.responsive tbody tr:first-child td {
  padding: 0px;
}
.generic-content table.responsive tbody td {
  display: block;
  padding: 0px;
  margin-bottom: 20px;
}
.generic-content table.responsive tbody td:last-child {
  margin-bottom: 0px;
}
.generic-content table.responsive tbody td:before {
  content: attr(data-title);
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
  white-space: pre;
}
@media print {
  .generic-content table:not(.responsive) tr, .generic-content table:not(.responsive) th, .generic-content table:not(.responsive) td {
    border: 1px solid #cbcec8 !important;
  }
  .generic-content table .responsive {
    border-top: 1px solid #cbcec8 !important;
  }
  .generic-content table .responsive tr {
    border: 1px solid #cbcec8 !important;
    border-top: 0 none !important;
  }
}
.generic-content .embed-media {
  max-width: 1134.1666666667px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .generic-content .hck-widget-two-column .columns:not(:last-child), .generic-content .hck-widget-three-column .columns:not(:last-child) {
    margin-bottom: 1.4em;
  }
}

input[type=text],
input[type=email],
input[type=search],
input[type=number],
input[type=password],
input[type=url],
input[type=tel],
input[type=date],
textarea {
  border: 1px solid #cbcec8;
  border-radius: 4px;
  background: #ffffff none;
  color: #000a15;
  margin: 0px;
  padding: 8px;
}

input[type=submit],
input[type=button],
button,
.button {
  display: inline-flex;
  align-items: center;
  background-color: #d64000;
  color: #ffffff;
  border: 0px none;
  border-radius: 0px;
  padding: 10px 30px;
  font-size: inherit;
  line-height: inherit;
  cursor: pointer;
  transition: background-color 0.1s, color 0.1s;
  text-decoration: none;
}
input[type=submit]:hover,
input[type=button]:hover,
button:hover,
.button:hover, input[type=submit]:focus-visible,
input[type=button]:focus-visible,
button:focus-visible,
.button:focus-visible {
  color: #ffffff;
}
input[type=submit]:hover,
input[type=button]:hover,
button:hover,
.button:hover {
  background-color: #b43904;
}
input[type=submit]:focus-visible,
input[type=button]:focus-visible,
button:focus-visible,
.button:focus-visible {
  background-color: #d64000;
  box-shadow: none;
}
@media print {
  input[type=submit],
input[type=button],
button,
.button {
    border: 1px solid #cbcec8;
  }
}

.button::after {
  content: "";
  background-image: url(../../img/spritesheet.svg);
  background-repeat: no-repeat;
  overflow: hidden;
  width: 13px;
  height: 13px;
  background-position: -24px -36px;
  flex-shrink: 0;
  margin-left: 10px;
}
@media print {
  .button::after {
    display: none;
  }
}

@supports (-webkit-appearance: none) {
  input[type=checkbox] {
    -webkit-appearance: none;
    display: inline-block;
    vertical-align: middle;
    box-sizing: border-box;
    width: 20px;
    height: 20px;
    border: 1px solid #cbcec8;
    border-radius: 4px;
    margin: 0px 5px;
    line-height: 20px;
    text-align: center;
    background-color: #ffffff;
  }
  input[type=checkbox]:checked {
    background-color: #d64000;
    border: 0px none;
  }
  input[type=checkbox]:checked::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 10px;
    border: 2px solid #ffffff;
    border-top: 0px none;
    border-left: 0px none;
    transform: rotate(45deg);
    margin-bottom: 1px;
  }
  input[type=checkbox]:focus-visible {
    outline-offset: 1px;
  }
  input[type=radio] {
    -webkit-appearance: none;
    display: inline-block;
    vertical-align: middle;
    box-sizing: border-box;
    width: 20px;
    height: 20px;
    border: 1px solid #cbcec8;
    border-radius: 50%;
    margin: 0px 5px;
    line-height: 20px;
    background-color: #ffffff;
  }
  input[type=radio]:checked {
    border: 7px solid #d64000;
  }
  input[type=radio]:focus-visible {
    outline-offset: 1px;
  }
}
fieldset {
  border: 1px solid #cbcec8;
  padding: 15px 10px;
  margin: 0px;
}
fieldset.webform-composite-hidden-title {
  border: 0px none;
  padding: 0px;
  margin-top: 0px;
}

legend {
  font-weight: bold;
  color: #000000;
  padding: 0px 10px;
}

.form-item:not(:last-child) {
  margin-bottom: 20px;
}
.form-item label {
  display: inline-block;
  color: #000000;
  margin-bottom: 5px;
  font-weight: bold;
}
.form-item label .optional {
  font-weight: normal;
}
.form-item label .optional:before {
  content: "(";
}
.form-item label .optional:after {
  content: ")";
}
.form-item .form-item label {
  color: #000a15;
}
.form-item input[type=text],
.form-item input[type=email],
.form-item input[type=search],
.form-item input[type=number],
.form-item input[type=password],
.form-item input[type=url],
.form-item input[type=tel],
.form-item input[type=date],
.form-item textarea {
  box-sizing: border-box;
  width: 100%;
}
.form-item input[type=text].error,
.form-item input[type=email].error,
.form-item input[type=search].error,
.form-item input[type=number].error,
.form-item input[type=password].error,
.form-item input[type=url].error,
.form-item input[type=tel].error,
.form-item input[type=date].error,
.form-item textarea.error {
  border: 1px solid #e62600 !important;
  color: inherit;
}
.form-item input[type=date] {
  width: auto;
}
.form-item .select2-container {
  width: 100% !important;
}
.form-item .field.has-prefix input[type=text],
.form-item .field.has-prefix input[type=email],
.form-item .field.has-prefix input[type=search],
.form-item .field.has-prefix input[type=number],
.form-item .field.has-prefix input[type=password],
.form-item .field.has-prefix input[type=url],
.form-item .field.has-prefix input[type=tel],
.form-item .field.has-prefix input[type=date],
.form-item .field.has-prefix textarea,
.form-item .field.has-suffix input[type=text],
.form-item .field.has-suffix input[type=email],
.form-item .field.has-suffix input[type=search],
.form-item .field.has-suffix input[type=number],
.form-item .field.has-suffix input[type=password],
.form-item .field.has-suffix input[type=url],
.form-item .field.has-suffix input[type=tel],
.form-item .field.has-suffix input[type=date],
.form-item .field.has-suffix textarea {
  display: inline-block;
  width: auto;
}
.form-item .field-prefix,
.form-item .field-suffix {
  color: #000000;
}
.form-item .description {
  margin: 5px 0px;
}
.form-item .description:first-child {
  margin-top: 0px;
}
.form-item .description:last-child {
  margin-bottom: 0px;
}
.form-item.form-type-checkbox, .form-item.form-type-radio {
  display: flex;
}
.form-item.form-type-checkbox .field, .form-item.form-type-radio .field {
  margin-right: 5px;
}
.form-item.form-type-checkbox label, .form-item.form-type-radio label {
  font-weight: normal;
  color: inherit;
}
.form-item.webform-container-inline label {
  margin-right: 10px;
}
.form-item.webform-container-inline .field {
  display: inline-block;
}
.form-item.webform-component-file .form-managed-file {
  margin-bottom: 10px;
}
.form-item.webform-component-file .form-managed-file:last-child {
  margin-bottom: 0px;
}
.form-item.webform-component-file .form-submit {
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  .form-item.webform-component-file .form-submit {
    display: block;
    margin: 10px 0px;
  }
}
.form-item.form-type-date .form-item, .form-item.webform-component-date .form-item {
  display: inline-block;
  vertical-align: middle;
  margin: 0px 5px 0px 0px;
}
.form-item.form-type-date .form-item select, .form-item.webform-component-date .form-item select {
  display: block;
}
.form-item.form-type-date input[type=image], .form-item.webform-component-date input[type=image] {
  display: inline-block;
  vertical-align: middle;
}
.form-item.webform-component-time .form-item {
  display: inline-block;
  vertical-align: middle;
  margin: 0px;
}
.form-item.webform-component-time .form-item-submitted-time-hour {
  margin-right: 5px;
}
.form-item.webform-component-time .form-item-submitted-time-minute {
  margin-left: 5px;
}
.form-item.webform-component-time .form-radios {
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
}
.form-item.webform-component-time .form-radios label {
  margin: 0px;
  font-weight: normal;
}
.form-item.webform-component-checkboxes .form-item, .form-item.webform-component-radios .form-item {
  margin: 0px 0px 5px;
}
.form-item.webform-component-checkboxes .form-item:last-child, .form-item.webform-component-radios .form-item:last-child {
  margin-bottom: 0px;
}
.form-item.webform-component-checkboxes .form-item .field, .form-item.webform-component-radios .form-item .field {
  display: inline-block;
}
.form-item.webform-component-checkboxes .form-item label, .form-item.webform-component-radios .form-item label {
  font-weight: normal;
}

.form-checkboxes .form-type-checkbox:not(:last-child),
.form-radios .form-type-radio:not(:last-child) {
  margin-bottom: 10px;
}

.webform-type-webform-checkboxes-other fieldset,
.webform-type-webform-radios-other fieldset {
  margin: 0px !important;
}
.webform-type-webform-checkboxes-other .form-type-textfield,
.webform-type-webform-radios-other .form-type-textfield {
  margin-top: 10px;
}

.webform-type-webform-select-other .form-type-select {
  margin-bottom: 0px;
}
.webform-type-webform-select-other .form-type-textfield {
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .webform-flexbox:not(:last-child),
.webform-flex:not(:last-child) {
    margin-bottom: 20px;
  }
}
.form-required:after {
  content: "*";
  display: inline-block;
  margin-left: 5px;
  font-weight: normal;
}

.captcha {
  margin-bottom: 20px;
}

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

body.node-type-webform .node-webform {
  padding: 50px 0px;
}

.wysiwyg-toggle-wrapper {
  text-align: right;
  font-size: 14px;
  line-height: 1em;
  margin-top: 5px;
}

.filter-wrapper {
  display: none;
}

.googlemap {
  width: 100%;
  height: 200px;
  padding: 10% 0;
}
.googlemap > div {
  top: 0px;
}
.googlemap img {
  max-width: none;
}

.routemap {
  width: 100%;
  padding-top: 75%;
}
.routemap > div {
  top: 0px;
}
.routemap img {
  max-width: none;
}

/**
 * @file
 * Styles for system messages.
 */
.messages-wrapper {
  margin: 30px 0px 0px;
}

.messages {
  border: 1px solid;
  border-width: 1px 1px 1px 0; /* LTR */
  border-radius: 2px;
  padding: 15px 30px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
[dir=rtl] .messages {
  border-width: 1px 0 1px 1px;
  text-align: right;
}
.messages + .messages {
  margin-top: 1.538em;
}

.messages__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.messages__item + .messages__item {
  margin-top: 0.769em;
}

.messages--status {
  color: hsl(99.7752808989deg, 36.6255144033%, 24%);
  background-color: hsl(99.7752808989deg, 36.6255144033%, 96%);
  border-color: hsl(99.7752808989deg, 36.6255144033%, 81%);
  box-shadow: -8px 0 0 #77b259; /* LTR */
}
[dir=rtl] .messages--status {
  box-shadow: 8px 0 0 #77b259;
}

.messages--warning {
  color: hsl(40.1785714286deg, 100%, 24%);
  background-color: hsl(40.1785714286deg, 100%, 96%);
  border-color: hsl(40.1785714286deg, 100%, 81%);
  box-shadow: -8px 0 0 #e09600; /* LTR */
}
[dir=rtl] .messages--warning {
  box-shadow: 8px 0 0 #e09600;
}

.messages--error {
  color: hsl(9.9130434783deg, 100%, 24%);
  background-color: hsl(9.9130434783deg, 100%, 96%);
  border-color: hsl(9.9130434783deg, 100%, 81%);
  box-shadow: -8px 0 0 #e62600; /* LTR */
}
[dir=rtl] .messages--error {
  box-shadow: 8px 0 0 #e62600;
}
.messages--error p.error {
  color: hsl(9.9130434783deg, 100%, 24%);
}

.pager {
  margin-top: 80px;
}
@media print {
  .pager {
    margin-top: 40px;
  }
}

.pager__items {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}

.pager__item {
  margin: 0px 5px;
}
.pager__item--ellipsis {
  margin: 0px 25px;
  color: #999999;
}
.pager__item--previous-4, .pager__item--previous-5, .pager__item--previous-6, .pager__item--previous-7, .pager__item--previous-8, .pager__item--next-4, .pager__item--next-5, .pager__item--next-6, .pager__item--next-7, .pager__item--next-8 {
  display: none;
}
.pager__item a {
  display: block;
  padding: 5px 10px;
  text-decoration: none;
  color: inherit;
}
.pager__item a:hover, .pager__item a:focus-visible {
  text-decoration: underline;
}
.pager__item a:focus-visible {
  box-shadow: none;
  background-color: transparent;
}
.pager__item.is-active a {
  background-color: #d64000;
  color: #ffffff;
  width: 46px;
  height: 46px;
  line-height: 46px;
  text-align: center;
  padding: 0px;
  border-radius: 50%;
}
.pager__item.is-active a:focus-visible {
  background-color: #d64000;
}
@media screen and (max-width: 899px) {
  .pager__item--previous, .pager__item--next {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .pager__item--ellipsis, .pager__item--previous-3, .pager__item--next-3 {
    display: none;
  }
}

@media screen and (max-width: 549px) {
  .pager {
    display: flex;
    justify-content: center;
  }
  .pager__items {
    display: -ms-grid;
    -ms-grid-columns: 1fr 30px max-content 30px 1fr;
    display: grid;
    grid-template-columns: 1fr max-content 1fr;
    grid-gap: 30px;
  }
  .pager__item {
    display: none;
    margin: 0px !important;
  }
  .pager__item--previous, .pager__item--next, .pager__item.is-active {
    display: block;
  }
  .pager__item--previous {
    -ms-grid-column: 1;
    grid-column: 1;
    justify-self: end;
  }
  .pager__item.is-active {
    -ms-grid-column: 3;
    grid-column: 2;
  }
  .pager__item--next {
    -ms-grid-column: 5;
    grid-column: 3;
    justify-self: start;
  }
}
@media screen and (max-width: 399px) {
  .pager__items {
    -ms-grid-columns: 1fr 10px max-content 10px 1fr;
    grid-gap: 10px;
  }
}
@media screen and (max-width: 349px) {
  .pager {
    display: block;
  }
  .pager__items {
    display: flex;
    justify-content: space-between;
  }
  .pager__item.is-active {
    display: none;
  }
}
.region-titlebar {
  margin-top: calc(var(--header-height) * -1);
  padding-top: calc(var(--header-height) + clamp(3.75rem, -4.1198394495rem + 22.9357798165vw, 6.875rem));
  padding-bottom: 50px;
  background: #000a15 url(../../img/lead-image.jpg) no-repeat center top;
  background-size: cover;
  color: #ffffff;
}
.region-titlebar .page-title {
  color: inherit;
}
.region-titlebar .page-title,
.region-titlebar .generic-content {
  max-width: 903.3333333333px;
  box-sizing: border-box;
}
@media screen and (min-width: 1765px) {
  .region-titlebar {
    background-size: auto;
  }
}
@media screen and (max-width: 899px) {
  .region-titlebar {
    padding-bottom: clamp(5.625rem, 3.6642857143rem + 5.7142857143vw, 6.875rem);
  }
}
@media print {
  .region-titlebar {
    padding-top: calc(var(--header-height) + 40px);
  }
}

.slick-slider {
  position: relative;
  display: block;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-slider.slick-initialized .slick-list .slick-track .slick-slide {
  display: block;
}
.slick-slider.slick-loading .slick-list .slick-track .slick-slide {
  visibility: hidden;
}
.slick-slider.slick-vertical .slick-list .slick-track .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-slider .slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-slider .slick-list:focus-visible {
  outline: none;
}
.slick-slider .slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-list .slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-slider .slick-list .slick-track:before, .slick-slider .slick-list .slick-track:after {
  content: "";
  display: table;
}
.slick-slider .slick-list .slick-track:after {
  clear: both;
}
.slick-loading .slick-slider .slick-list .slick-track {
  visibility: hidden;
}
.slick-slider .slick-list .slick-track .slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slider .slick-list .slick-track .slick-slide {
  float: right;
}
.slick-slider .slick-list .slick-track .slick-slide:focus-visible {
  outline: 0px none !important;
}
.slick-slider .slick-list .slick-track .slick-slide img {
  display: block;
}
.slick-slider .slick-list .slick-track .slick-slide.slick-loading img {
  display: none;
}
.slick-slider .slick-list .slick-track .slick-slide.dragging img {
  pointer-events: none;
}
.slick-slider .slick-dots {
  text-align: center;
  max-width: 500px;
  margin: 30px auto 0px;
}
.slick-slider .slick-dots li {
  display: inline-block;
  vertical-align: middle;
  margin: 0px 2px;
}
.slick-slider .slick-dots li button {
  width: 15px;
  height: 15px;
  background-color: #cbcec8;
  background-clip: content-box;
  padding: 5px;
  border: 0px none;
  border-radius: 50%;
  box-sizing: content-box;
  transition: all 0.1s;
  text-align: left;
  text-indent: -9999em;
  overflow: hidden;
}
.slick-slider .slick-dots li.slick-active button {
  background-color: #333333;
}
.slick-slider .slick-dots li button:hover, .slick-slider .slick-dots li button:focus-visible {
  background-color: #d64000;
}
.slick-slider .slick-arrow.slick-prev {
  position: absolute;
  bottom: 0px;
  left: 0px;
}
.slick-slider .slick-arrow.slick-next {
  position: absolute;
  bottom: 0px;
  right: 0px;
}
.slick-slider .slick-arrow.slick-hidden {
  display: none;
}
.grid .slick-slider {
  max-width: 1405px;
}
.grid .slick-slider .cell.slick-slide:nth-child(1n) {
  clear: none !important;
  margin: 0px !important;
  padding: 0px 20px;
  box-sizing: border-box;
}

section.helix-row {
  position: relative;
  padding: clamp(8.4375rem, 1.3546444954rem + 20.6422018349vw, 11.25rem) 20px;
}
@media print {
  section.helix-row {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
    page-break-inside: avoid;
  }
}
section.helix-row .row.intro > * {
  max-width: 903.3333333333px;
  box-sizing: border-box;
}
section.helix-row .row.intro:not(:last-child) {
  margin-bottom: 50px;
}
section.helix-row .row.intro .generic-content {
  font-size: 18px;
  line-height: 1.625em;
}
.region-sidebar section.helix-row, .region-partial section.helix-row {
  padding: 0px;
  margin: 0px;
}
.region-sidebar section.helix-row:not(:last-child) {
  margin-bottom: 20px;
}
.region-sidebar section.helix-row:not(:last-child) .row.intro {
  margin-bottom: 20px;
  text-align: left;
}
.region-sidebar section.helix-row:not(:last-child) .row.intro > h2 {
  margin-bottom: 20px;
}
.region-partial section.helix-row:not(:last-child) {
  margin-bottom: 50px;
}

section.helix-row-alt {
  --color-copy-bg: #ffffff;
  padding: 0 20px;
}
section.helix-row-alt .row {
  display: grid;
  grid-template-rows: auto 90px;
  grid-template-columns: 42.2771672772% 6.9902319902% 1.4652014652% 49.2673992674%;
}
section.helix-row-alt .row::before {
  content: "";
  display: block;
  grid-row: 1;
  grid-column: 1;
  justify-self: end;
  background-color: #000a15;
  width: 100vw;
}
section.helix-row-alt .row::after {
  content: "";
  display: block;
  grid-row: 1/3;
  grid-column: 2/4;
  background-color: var(--color-copy-bg);
}
section.helix-row-alt blockquote {
  position: relative;
  z-index: 2;
  grid-row: 1/3;
  grid-column: 1/3;
  align-self: center;
  margin: 80px 0 0;
  padding: 65px 85px 85px;
  padding-left: clamp(2.1875rem, -7.4584227468rem + 17.1673819742vw, 7.1875rem);
  padding-right: clamp(2.1875rem, -3.8412017167rem + 10.7296137339vw, 5.3125rem);
  background: #000a15 url(../../img/quote-bg.jpg);
  background-size: cover;
  color: #ffffff;
}
section.helix-row-alt blockquote::before {
  content: "";
  display: block;
  background-image: url(../../img/spritesheet.svg);
  background-repeat: no-repeat;
  overflow: hidden;
  width: 56px;
  height: 35px;
  background-position: 0 0;
  flex-shrink: 0;
  margin-bottom: 30px;
}
@media print {
  section.helix-row-alt blockquote::before {
    display: none;
  }
}
section.helix-row-alt blockquote .generic-content {
  font-size: clamp(2.125rem, 2.125rem + 0vw, 2.125rem);
  line-height: clamp(2.625rem, 2.625rem + 0vw, 2.625rem);
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  section.helix-row-alt blockquote .generic-content {
    font-size: clamp(1.5rem, -0.0739678899rem + 4.5871559633vw, 2.125rem);
    line-height: clamp(1.875rem, -0.0137614679rem + 5.504587156vw, 2.625rem);
  }
}
@media print {
  section.helix-row-alt blockquote .generic-content {
    font-size: 34px;
    line-height: 42px;
  }
}
section.helix-row-alt blockquote cite {
  display: block;
  margin-top: 20px;
  font-style: normal;
}
section.helix-row-alt blockquote cite span {
  display: block;
}
section.helix-row-alt blockquote cite .name {
  font-weight: bold;
}
section.helix-row-alt .content {
  position: relative;
  grid-row: 1/3;
  grid-column: 4;
  background-color: var(--color-copy-bg);
  padding: 80px 0 140px;
}
section.helix-row-alt .content::after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  bottom: 0;
  width: 100vw;
  height: 100%;
  background-color: var(--color-copy-bg);
}
section.helix-row-alt .content .row-title {
  margin-bottom: 65px;
}
@media screen and (max-width: 899px) {
  section.helix-row-alt .row {
    display: block;
  }
  section.helix-row-alt .row::before, section.helix-row-alt .row::after {
    content: none;
    display: none;
  }
  section.helix-row-alt .content {
    margin: 0 -20px;
    padding: 100px 20px 160px;
  }
  section.helix-row-alt .content::after {
    content: none;
    display: none;
  }
  section.helix-row-alt blockquote {
    margin-top: -50px;
    padding: 60px clamp(1.25rem, -6.5928571429rem + 22.8571428571vw, 6.25rem) clamp(4.6875rem, 3.2169642857rem + 4.2857142857vw, 5.625rem);
  }
}
@media screen and (max-width: 549px) {
  section.helix-row-alt .content {
    padding: 70px 20px;
  }
  section.helix-row-alt blockquote {
    margin: 0 -20px;
  }
  section.helix-row-alt blockquote::before {
    transform: scale(0.8);
  }
}
@media print {
  section.helix-row-alt .row::before, section.helix-row-alt .row::after {
    content: none;
    display: none;
  }
  section.helix-row-alt blockquote {
    padding: 60px;
    border: 1px solid #cbcec8;
  }
  section.helix-row-alt .content {
    padding: 0;
  }
}

section.helix-row-timeline .timeline:not(.slick-initialized) {
  display: flex;
}
section.helix-row-timeline .timeline-entry {
  --padding-r: 20px;
  flex: 1;
  padding-right: var(--padding-r);
  width: 100%;
  max-width: min(320px, max(100vw, 320px) - 40px + var(--padding-r));
  box-sizing: border-box;
}
section.helix-row-timeline .slick-list {
  overflow: visible !important;
}
section.helix-row-timeline .slick-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background-color: transparent;
  margin-bottom: 50px;
}
section.helix-row-timeline .slick-arrow.slick-next {
  position: absolute;
  bottom: 100%;
  right: 0;
}
section.helix-row-timeline .slick-arrow.slick-prev {
  position: absolute;
  bottom: 100%;
  right: 60px;
  left: auto;
}
section.helix-row-timeline .slick-arrow .slick-prev-icon,
section.helix-row-timeline .slick-arrow .slick-next-icon {
  transition: opacity 0.2s;
}
section.helix-row-timeline .slick-arrow[disabled] .slick-prev-icon,
section.helix-row-timeline .slick-arrow[disabled] .slick-next-icon {
  opacity: 0.3;
}
section.helix-row-timeline .slick-arrow:not([disabled]):hover .slick-prev-icon,
section.helix-row-timeline .slick-arrow:not([disabled]):hover .slick-next-icon, section.helix-row-timeline .slick-arrow:not([disabled]):focus-visible .slick-prev-icon,
section.helix-row-timeline .slick-arrow:not([disabled]):focus-visible .slick-next-icon {
  opacity: 0.5;
}
@media print {
  section.helix-row-timeline .slick-arrow {
    display: none !important;
  }
}
section.helix-row-timeline .slick-prev-icon {
  background-image: url(../../img/spritesheet.svg);
  background-repeat: no-repeat;
  overflow: hidden;
  width: 11px;
  height: 20px;
  background-position: 0 -36px;
  flex-shrink: 0;
}
@media print {
  section.helix-row-timeline .slick-prev-icon {
    display: none;
  }
}
section.helix-row-timeline .slick-next-icon {
  background-image: url(../../img/spritesheet.svg);
  background-repeat: no-repeat;
  overflow: hidden;
  width: 11px;
  height: 20px;
  background-position: -12px -36px;
  flex-shrink: 0;
}
@media print {
  section.helix-row-timeline .slick-next-icon {
    display: none;
  }
}
.timeline-entry {
  position: relative;
  padding-top: 45px;
}
.timeline-entry::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  background-color: #d64000;
  border-radius: 50%;
}
.timeline-entry::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  right: 0;
  border-top: 1px solid #d64000;
}
.timeline-entry h3 {
  font-size: 1.375rem;
  line-height: 1.3181818182em;
  font-weight: bold;
  margin-bottom: 10px;
}

/*** =======================
 *** Layout
 *** ======================= */
.region-header {
  position: relative;
  padding: 0 20px;
}
.region-header .row {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.region-header .row::before, .region-header .row::after {
  content: none;
  display: none;
}
.region-header a {
  display: block;
}
.region-header img {
  display: none;
}
@media screen and (min-width: 550px) {
  .region-header .desktop {
    display: block;
    margin-top: 35px;
  }
}
@media screen and (max-width: 549px) {
  .region-header .mobile {
    display: block;
    margin-top: 20px;
  }
}
@media print {
  .region-header .row {
    border-bottom: 1px solid #cbcec8;
  }
  .region-header .print {
    display: block;
  }
}

.page-layout {
  padding: 0px 20px;
  overflow: hidden;
}
.page-layout:after {
  content: "";
  display: block;
  clear: both;
  width: 100%;
  height: 0;
  overflow: hidden;
  position: static;
}
body:not(.page-node):not(.page-term) .page-layout {
  padding: 80px 0px;
}
.page-layout .sidebar-partial:after {
  content: "";
  display: block;
  clear: both;
  width: 100%;
  height: 0;
  overflow: hidden;
  position: static;
}
.page-layout .sidebar-partial .region {
  float: left;
}
.page-layout .sidebar-partial .region:not(:last-child) {
  margin-right: 1.4652014652%;
}
.page-layout .sidebar-partial .region-sidebar {
  width: 32.3565323565%;
}
.page-layout .sidebar-partial .region-partial {
  width: 66.1782661783%;
}
.page-layout .region {
  margin-top: 50px;
}
.page-layout .region-content:first-child {
  margin-top: 0px;
}
body.page-node .page-layout .region-content, body.page-term .page-layout .region-content {
  margin-left: -20px;
  margin-right: -20px;
}
body:not(.page-node):not(.page-term) .page-layout .region-content {
  padding: 0px 20px;
}
@media screen and (max-width: 767px) {
  .page-layout .region {
    width: auto;
    margin: 30px 0px 0px;
  }
  .page-layout .sidebar-partial .region {
    float: none;
    width: auto;
  }
}

footer.region-footer {
  padding: 0 20px;
}
footer.region-footer a {
  color: inherit;
}
footer.region-footer a:hover {
  text-decoration: none;
}
footer.region-footer .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 0;
}
footer.region-footer .row::before, footer.region-footer .row::after {
  content: none;
  display: none;
}
footer.region-footer nav ul {
  display: flex;
  flex-wrap: wrap;
}
footer.region-footer nav ul li {
  display: flex;
}
footer.region-footer nav ul li::after {
  content: "|";
  margin: 0 10px;
}
@media screen and (max-width: 549px) {
  footer.region-footer .row {
    flex-direction: column;
  }
  footer.region-footer .row *:not(:last-child) {
    margin-bottom: 5px;
  }
  footer.region-footer nav ul li:last-child::after {
    content: none;
    display: none;
  }
}
@media print {
  footer.region-footer .row {
    border-top: 1px solid #cbcec8;
    padding: 30px 0;
  }
}

/*# sourceMappingURL=styles.css.map */
