@charset "UTF-8";
/**************************************
 *  BASE RULES
 *  Variables, Reset, General Library
 *************************************/
/*
 * FCT palette — sampled from the two source logos:
 *   docs/FCT Logo.png            → deep royal #031ba3, near-black, white
 *   docs/2027 FCT Nationals Logo → royal #2a54b3, cyan #37a9eb, pale #abcee5
 * Primary = royal blue family; tertiary = the Nationals cyan, reserved as
 * an accent for event/CTA energy. Grays kept from the shared base library.
 */
:root {
  --vh: 1;
}

/*****************************************************************************\
 *     FUNCTIONS
\*****************************************************************************/
/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
*,
*:before,
*:after {
  box-sizing: border-box;
}

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

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

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

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

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

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

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

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

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

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

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

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

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

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

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

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

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

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

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

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

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

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

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

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

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

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

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

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

/*
 * FCT pairing: variable Roboto Slab for display (the classic playbill /
 * theatre-poster letterform) over variable Fira Sans body text. Both
 * self-hosted, both single-file variable fonts.
 */
@font-face {
  font-family: "roboto-slab";
  src: url("/assets/fonts/RobotoSlab.woff2") format("woff2 supports variations"), url("/assets/fonts/RobotoSlab.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "fira-sans";
  src: url("/assets/fonts/firavaItalic.woff2") format("woff2 supports variations"), url("/assets/fonts/firavaItalic.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "fira-sans";
  src: url("/assets/fonts/firava.woff2") format("woff2 supports variations"), url("/assets/fonts/firava.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
/**************************************
 *  BASE RULES
 *  Variables, Reset, General Library
 *************************************/
*,
*:before,
*:after {
  font-family: "fira-sans", sans-serif;
  -webkit-backface-visibility: hidden;
}

html {
  line-height: 1.6em;
}

body {
  scroll-behavior: smooth;
}
body.preload * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
}

a {
  text-decoration: none;
  color: #031ba3;
}
a:visited {
  color: #2a54b3;
}
a:active, a:hover {
  color: #4f60c1;
}

p {
  line-height: 1.6em;
}

ul,
ol {
  line-height: 1.6em;
}
ul.dash,
ol.dash {
  list-style-type: none;
}
ul.dash li:before,
ol.dash li:before {
  content: "-";
  position: absolute;
  margin-left: -1em;
}

.banner-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 0.5em 0 1.5em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "roboto-slab", "Rockwell", "Georgia", serif;
  font-weight: 600;
  color: #1b2150;
  line-height: 1.3;
  margin: 0;
}
h1.line:after,
h2.line:after,
h3.line:after,
h4.line:after,
h5.line:after,
h6.line:after {
  content: " ";
  display: block;
  width: 70px;
  height: 2px;
  margin-top: 8px;
  margin-bottom: 25px;
  margin-right: auto;
  color: #2a54b3;
  background-color: #2a54b3;
}

h5,
h6 {
  font-size: 1em;
}

hr {
  height: 2px;
  margin-top: 8px;
  margin-left: 0;
  margin-right: auto;
  color: #2a54b3;
  background-color: #2a54b3;
  border: none;
}

/*****************************************************************************\
 *      LAYOUT FRAMEWORK
 *      REPONSIVE 3.1
 *      
 *      Usage Examples
 *      <div class="grid-sys padded">
 *          <div class="_12u _6u-tablet _4u-normal">Content 1</div>
 *          <div class="_12u _6u-tablet _8u-normal">Content 2</div>
 *      </div>
 *      Place mobile breakpoints first, followed by the breakpoints
 *      needed for larger screens
 *      
 *      place important or important-{breakpoint} at the end of the
 *      classes to change the order of the content in the html flow
\*****************************************************************************/
/*****************************************************************************\
 *      SKEL CONVERSION INSTRUCTIONS
 *      
 *      1) @import 'responsive';
 *      2) delete @import "libs/skell"
 *      3) convert @include skel-layout to @include xeno-layout
 *      4) @include xeno-layout adjustments
 *          a) delete grid: ...
 *          b) conditionals: ...
 *          c) first containers is 'mobile first'
 *          d) every breakpoint container should be defined
 *      5) remove all @include vendor mixins; autoprefixer will do its magic
 *      6) @include breakpoint -> @include skel_breakpoint 
\*****************************************************************************/
/**************************************
 *  BASE RULES
 *  Variables, Reset, General Library
 *************************************/
/* Get the Next Value in of MAP */
.grid-sys,
.grid-sys7 {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  flex-direction: row;
}
.grid-sys:after,
.grid-sys7:after {
  display: none;
}

.padded > * {
  padding: 1.5em;
}

.margin {
  margin: 0;
}
.margin > * {
  margin: 0;
}

.aligned {
  align-items: center;
  justify-content: center;
}
.aligned > * {
  text-align: center;
}

._0u {
  display: none;
  overflow: hidden;
  order: 2;
  flex: 0 1 auto;
  flex-basis: 0%;
  width: 0%;
  max-width: 0%;
}

._1u {
  display: inline-block;
  order: 2;
  flex: 1 1 auto;
  flex-basis: 8.3333333333%;
  width: 8.3333333333%;
  max-width: 8.3333333333%;
}

._2u {
  display: inline-block;
  order: 2;
  flex: 2 1 auto;
  flex-basis: 16.6666666667%;
  width: 16.6666666667%;
  max-width: 16.6666666667%;
}

._3u {
  display: inline-block;
  order: 2;
  flex: 3 1 auto;
  flex-basis: 25%;
  width: 25%;
  max-width: 25%;
}

._4u {
  display: inline-block;
  order: 2;
  flex: 4 1 auto;
  flex-basis: 33.3333333333%;
  width: 33.3333333333%;
  max-width: 33.3333333333%;
}

._5u {
  display: inline-block;
  order: 2;
  flex: 5 1 auto;
  flex-basis: 41.6666666667%;
  width: 41.6666666667%;
  max-width: 41.6666666667%;
}

._6u {
  display: inline-block;
  order: 2;
  flex: 6 1 auto;
  flex-basis: 50%;
  width: 50%;
  max-width: 50%;
}

._7u {
  display: inline-block;
  order: 2;
  flex: 7 1 auto;
  flex-basis: 58.3333333333%;
  width: 58.3333333333%;
  max-width: 58.3333333333%;
}

._8u {
  display: inline-block;
  order: 2;
  flex: 8 1 auto;
  flex-basis: 66.6666666667%;
  width: 66.6666666667%;
  max-width: 66.6666666667%;
}

._9u {
  display: inline-block;
  order: 2;
  flex: 9 1 auto;
  flex-basis: 75%;
  width: 75%;
  max-width: 75%;
}

._10u {
  display: inline-block;
  order: 2;
  flex: 10 1 auto;
  flex-basis: 83.3333333333%;
  width: 83.3333333333%;
  max-width: 83.3333333333%;
}

._11u {
  display: inline-block;
  order: 2;
  flex: 11 1 auto;
  flex-basis: 91.6666666667%;
  width: 91.6666666667%;
  max-width: 91.6666666667%;
}

._12u {
  display: inline-block;
  order: 2;
  flex: 12 1 auto;
  flex-basis: 100%;
  width: 100%;
  max-width: 100%;
}

@media only screen and (min-width: 320px) {
  ._0u-phone {
    display: none;
    overflow: hidden;
    display: inline-block;
    order: 2;
    flex: 0 1 auto;
    flex-basis: 0%;
    width: 0%;
    max-width: 0%;
  }
  ._1u-phone {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 1 1 auto;
    flex-basis: 8.3333333333%;
    width: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  ._2u-phone {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 2 1 auto;
    flex-basis: 16.6666666667%;
    width: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  ._3u-phone {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 3 1 auto;
    flex-basis: 25%;
    width: 25%;
    max-width: 25%;
  }
  ._4u-phone {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 4 1 auto;
    flex-basis: 33.3333333333%;
    width: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  ._5u-phone {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 5 1 auto;
    flex-basis: 41.6666666667%;
    width: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  ._6u-phone {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 6 1 auto;
    flex-basis: 50%;
    width: 50%;
    max-width: 50%;
  }
  ._7u-phone {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 7 1 auto;
    flex-basis: 58.3333333333%;
    width: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  ._8u-phone {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 8 1 auto;
    flex-basis: 66.6666666667%;
    width: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  ._9u-phone {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 9 1 auto;
    flex-basis: 75%;
    width: 75%;
    max-width: 75%;
  }
  ._10u-phone {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 10 1 auto;
    flex-basis: 83.3333333333%;
    width: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  ._11u-phone {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 11 1 auto;
    flex-basis: 91.6666666667%;
    width: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  ._12u-phone {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 12 1 auto;
    flex-basis: 100%;
    width: 100%;
    max-width: 100%;
  }
}
@media only screen and (min-width: 480px) {
  ._0u-mobile {
    display: none;
    overflow: hidden;
    display: inline-block;
    order: 2;
    flex: 0 1 auto;
    flex-basis: 0%;
    width: 0%;
    max-width: 0%;
  }
  ._1u-mobile {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 1 1 auto;
    flex-basis: 8.3333333333%;
    width: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  ._2u-mobile {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 2 1 auto;
    flex-basis: 16.6666666667%;
    width: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  ._3u-mobile {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 3 1 auto;
    flex-basis: 25%;
    width: 25%;
    max-width: 25%;
  }
  ._4u-mobile {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 4 1 auto;
    flex-basis: 33.3333333333%;
    width: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  ._5u-mobile {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 5 1 auto;
    flex-basis: 41.6666666667%;
    width: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  ._6u-mobile {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 6 1 auto;
    flex-basis: 50%;
    width: 50%;
    max-width: 50%;
  }
  ._7u-mobile {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 7 1 auto;
    flex-basis: 58.3333333333%;
    width: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  ._8u-mobile {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 8 1 auto;
    flex-basis: 66.6666666667%;
    width: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  ._9u-mobile {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 9 1 auto;
    flex-basis: 75%;
    width: 75%;
    max-width: 75%;
  }
  ._10u-mobile {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 10 1 auto;
    flex-basis: 83.3333333333%;
    width: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  ._11u-mobile {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 11 1 auto;
    flex-basis: 91.6666666667%;
    width: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  ._12u-mobile {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 12 1 auto;
    flex-basis: 100%;
    width: 100%;
    max-width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  ._0u-tablet {
    display: none;
    overflow: hidden;
    display: inline-block;
    order: 2;
    flex: 0 1 auto;
    flex-basis: 0%;
    width: 0%;
    max-width: 0%;
  }
  ._1u-tablet {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 1 1 auto;
    flex-basis: 8.3333333333%;
    width: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  ._2u-tablet {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 2 1 auto;
    flex-basis: 16.6666666667%;
    width: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  ._3u-tablet {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 3 1 auto;
    flex-basis: 25%;
    width: 25%;
    max-width: 25%;
  }
  ._4u-tablet {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 4 1 auto;
    flex-basis: 33.3333333333%;
    width: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  ._5u-tablet {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 5 1 auto;
    flex-basis: 41.6666666667%;
    width: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  ._6u-tablet {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 6 1 auto;
    flex-basis: 50%;
    width: 50%;
    max-width: 50%;
  }
  ._7u-tablet {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 7 1 auto;
    flex-basis: 58.3333333333%;
    width: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  ._8u-tablet {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 8 1 auto;
    flex-basis: 66.6666666667%;
    width: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  ._9u-tablet {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 9 1 auto;
    flex-basis: 75%;
    width: 75%;
    max-width: 75%;
  }
  ._10u-tablet {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 10 1 auto;
    flex-basis: 83.3333333333%;
    width: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  ._11u-tablet {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 11 1 auto;
    flex-basis: 91.6666666667%;
    width: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  ._12u-tablet {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 12 1 auto;
    flex-basis: 100%;
    width: 100%;
    max-width: 100%;
  }
}
@media only screen and (min-width: 980px) {
  ._0u-narrow {
    display: none;
    overflow: hidden;
    display: inline-block;
    order: 2;
    flex: 0 1 auto;
    flex-basis: 0%;
    width: 0%;
    max-width: 0%;
  }
  ._1u-narrow {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 1 1 auto;
    flex-basis: 8.3333333333%;
    width: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  ._2u-narrow {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 2 1 auto;
    flex-basis: 16.6666666667%;
    width: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  ._3u-narrow {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 3 1 auto;
    flex-basis: 25%;
    width: 25%;
    max-width: 25%;
  }
  ._4u-narrow {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 4 1 auto;
    flex-basis: 33.3333333333%;
    width: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  ._5u-narrow {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 5 1 auto;
    flex-basis: 41.6666666667%;
    width: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  ._6u-narrow {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 6 1 auto;
    flex-basis: 50%;
    width: 50%;
    max-width: 50%;
  }
  ._7u-narrow {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 7 1 auto;
    flex-basis: 58.3333333333%;
    width: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  ._8u-narrow {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 8 1 auto;
    flex-basis: 66.6666666667%;
    width: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  ._9u-narrow {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 9 1 auto;
    flex-basis: 75%;
    width: 75%;
    max-width: 75%;
  }
  ._10u-narrow {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 10 1 auto;
    flex-basis: 83.3333333333%;
    width: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  ._11u-narrow {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 11 1 auto;
    flex-basis: 91.6666666667%;
    width: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  ._12u-narrow {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 12 1 auto;
    flex-basis: 100%;
    width: 100%;
    max-width: 100%;
  }
}
@media only screen and (min-width: 1024px) {
  ._0u-normal {
    display: none;
    overflow: hidden;
    display: inline-block;
    order: 2;
    flex: 0 1 auto;
    flex-basis: 0%;
    width: 0%;
    max-width: 0%;
  }
  ._1u-normal {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 1 1 auto;
    flex-basis: 8.3333333333%;
    width: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  ._2u-normal {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 2 1 auto;
    flex-basis: 16.6666666667%;
    width: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  ._3u-normal {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 3 1 auto;
    flex-basis: 25%;
    width: 25%;
    max-width: 25%;
  }
  ._4u-normal {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 4 1 auto;
    flex-basis: 33.3333333333%;
    width: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  ._5u-normal {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 5 1 auto;
    flex-basis: 41.6666666667%;
    width: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  ._6u-normal {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 6 1 auto;
    flex-basis: 50%;
    width: 50%;
    max-width: 50%;
  }
  ._7u-normal {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 7 1 auto;
    flex-basis: 58.3333333333%;
    width: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  ._8u-normal {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 8 1 auto;
    flex-basis: 66.6666666667%;
    width: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  ._9u-normal {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 9 1 auto;
    flex-basis: 75%;
    width: 75%;
    max-width: 75%;
  }
  ._10u-normal {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 10 1 auto;
    flex-basis: 83.3333333333%;
    width: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  ._11u-normal {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 11 1 auto;
    flex-basis: 91.6666666667%;
    width: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  ._12u-normal {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 12 1 auto;
    flex-basis: 100%;
    width: 100%;
    max-width: 100%;
  }
}
@media only screen and (min-width: 1280px) {
  ._0u-wide {
    display: none;
    overflow: hidden;
    display: inline-block;
    order: 2;
    flex: 0 1 auto;
    flex-basis: 0%;
    width: 0%;
    max-width: 0%;
  }
  ._1u-wide {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 1 1 auto;
    flex-basis: 8.3333333333%;
    width: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  ._2u-wide {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 2 1 auto;
    flex-basis: 16.6666666667%;
    width: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  ._3u-wide {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 3 1 auto;
    flex-basis: 25%;
    width: 25%;
    max-width: 25%;
  }
  ._4u-wide {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 4 1 auto;
    flex-basis: 33.3333333333%;
    width: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  ._5u-wide {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 5 1 auto;
    flex-basis: 41.6666666667%;
    width: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  ._6u-wide {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 6 1 auto;
    flex-basis: 50%;
    width: 50%;
    max-width: 50%;
  }
  ._7u-wide {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 7 1 auto;
    flex-basis: 58.3333333333%;
    width: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  ._8u-wide {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 8 1 auto;
    flex-basis: 66.6666666667%;
    width: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  ._9u-wide {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 9 1 auto;
    flex-basis: 75%;
    width: 75%;
    max-width: 75%;
  }
  ._10u-wide {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 10 1 auto;
    flex-basis: 83.3333333333%;
    width: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  ._11u-wide {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 11 1 auto;
    flex-basis: 91.6666666667%;
    width: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  ._12u-wide {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 12 1 auto;
    flex-basis: 100%;
    width: 100%;
    max-width: 100%;
  }
}
@media only screen and (min-width: 1600px) {
  ._0u-hd {
    display: none;
    overflow: hidden;
    display: inline-block;
    order: 2;
    flex: 0 1 auto;
    flex-basis: 0%;
    width: 0%;
    max-width: 0%;
  }
  ._1u-hd {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 1 1 auto;
    flex-basis: 8.3333333333%;
    width: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  ._2u-hd {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 2 1 auto;
    flex-basis: 16.6666666667%;
    width: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  ._3u-hd {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 3 1 auto;
    flex-basis: 25%;
    width: 25%;
    max-width: 25%;
  }
  ._4u-hd {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 4 1 auto;
    flex-basis: 33.3333333333%;
    width: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  ._5u-hd {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 5 1 auto;
    flex-basis: 41.6666666667%;
    width: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  ._6u-hd {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 6 1 auto;
    flex-basis: 50%;
    width: 50%;
    max-width: 50%;
  }
  ._7u-hd {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 7 1 auto;
    flex-basis: 58.3333333333%;
    width: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  ._8u-hd {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 8 1 auto;
    flex-basis: 66.6666666667%;
    width: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  ._9u-hd {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 9 1 auto;
    flex-basis: 75%;
    width: 75%;
    max-width: 75%;
  }
  ._10u-hd {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 10 1 auto;
    flex-basis: 83.3333333333%;
    width: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  ._11u-hd {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 11 1 auto;
    flex-basis: 91.6666666667%;
    width: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  ._12u-hd {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 12 1 auto;
    flex-basis: 100%;
    width: 100%;
    max-width: 100%;
  }
}
@media only screen and (min-width: 1920px) {
  ._0u-ultra {
    display: none;
    overflow: hidden;
    display: inline-block;
    order: 2;
    flex: 0 1 auto;
    flex-basis: 0%;
    width: 0%;
    max-width: 0%;
  }
  ._1u-ultra {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 1 1 auto;
    flex-basis: 8.3333333333%;
    width: 8.3333333333%;
    max-width: 8.3333333333%;
  }
  ._2u-ultra {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 2 1 auto;
    flex-basis: 16.6666666667%;
    width: 16.6666666667%;
    max-width: 16.6666666667%;
  }
  ._3u-ultra {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 3 1 auto;
    flex-basis: 25%;
    width: 25%;
    max-width: 25%;
  }
  ._4u-ultra {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 4 1 auto;
    flex-basis: 33.3333333333%;
    width: 33.3333333333%;
    max-width: 33.3333333333%;
  }
  ._5u-ultra {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 5 1 auto;
    flex-basis: 41.6666666667%;
    width: 41.6666666667%;
    max-width: 41.6666666667%;
  }
  ._6u-ultra {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 6 1 auto;
    flex-basis: 50%;
    width: 50%;
    max-width: 50%;
  }
  ._7u-ultra {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 7 1 auto;
    flex-basis: 58.3333333333%;
    width: 58.3333333333%;
    max-width: 58.3333333333%;
  }
  ._8u-ultra {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 8 1 auto;
    flex-basis: 66.6666666667%;
    width: 66.6666666667%;
    max-width: 66.6666666667%;
  }
  ._9u-ultra {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 9 1 auto;
    flex-basis: 75%;
    width: 75%;
    max-width: 75%;
  }
  ._10u-ultra {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 10 1 auto;
    flex-basis: 83.3333333333%;
    width: 83.3333333333%;
    max-width: 83.3333333333%;
  }
  ._11u-ultra {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 11 1 auto;
    flex-basis: 91.6666666667%;
    width: 91.6666666667%;
    max-width: 91.6666666667%;
  }
  ._12u-ultra {
    display: inline-block;
    display: inline-block;
    order: 2;
    flex: 12 1 auto;
    flex-basis: 100%;
    width: 100%;
    max-width: 100%;
  }
}
@supports (display: grid) {
  .grid-sys,
  .grid-sys7 {
    display: grid !important;
    overflow: unset;
    flex-wrap: unset;
    flex-direction: unset;
  }
  .grid-sys:after,
  .grid-sys7:after {
    display: none;
  }
  .grid-sys {
    grid-template-columns: repeat(12, 1fr) !important;
  }
  .grid-sys7 {
    grid-template-columns: repeat(7, 1fr) !important;
  }
  .padded {
    grid-column-gap: 1.5em;
    grid-row-gap: 1.5em;
  }
  .padded > * {
    padding: 0;
  }
  .margin {
    margin: 1em;
  }
  .margin > * {
    margin: 0;
  }
  .aligned {
    justify-items: center;
    align-items: center;
  }
  .aligned > * {
    text-align: center;
  }
  ._0u {
    display: none;
    overflow: hidden;
    width: 100%;
    max-width: unset;
    flex: unset;
    grid-column: span 0;
  }
  ._1u {
    display: inline-block;
    width: 100%;
    max-width: unset;
    flex: unset;
    grid-column: span 1;
  }
  ._2u {
    display: inline-block;
    width: 100%;
    max-width: unset;
    flex: unset;
    grid-column: span 2;
  }
  ._3u {
    display: inline-block;
    width: 100%;
    max-width: unset;
    flex: unset;
    grid-column: span 3;
  }
  ._4u {
    display: inline-block;
    width: 100%;
    max-width: unset;
    flex: unset;
    grid-column: span 4;
  }
  ._5u {
    display: inline-block;
    width: 100%;
    max-width: unset;
    flex: unset;
    grid-column: span 5;
  }
  ._6u {
    display: inline-block;
    width: 100%;
    max-width: unset;
    flex: unset;
    grid-column: span 6;
  }
  ._7u {
    display: inline-block;
    width: 100%;
    max-width: unset;
    flex: unset;
    grid-column: span 7;
  }
  ._8u {
    display: inline-block;
    width: 100%;
    max-width: unset;
    flex: unset;
    grid-column: span 8;
  }
  ._9u {
    display: inline-block;
    width: 100%;
    max-width: unset;
    flex: unset;
    grid-column: span 9;
  }
  ._10u {
    display: inline-block;
    width: 100%;
    max-width: unset;
    flex: unset;
    grid-column: span 10;
  }
  ._11u {
    display: inline-block;
    width: 100%;
    max-width: unset;
    flex: unset;
    grid-column: span 11;
  }
  ._12u {
    display: inline-block;
    width: 100%;
    max-width: unset;
    flex: unset;
    grid-column: span 12;
  }
  @media only screen and (min-width: 320px) {
    ._0u-phone {
      display: none;
      overflow: hidden;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 0;
    }
    ._1u-phone {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 1;
    }
    ._2u-phone {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 2;
    }
    ._3u-phone {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 3;
    }
    ._4u-phone {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 4;
    }
    ._5u-phone {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 5;
    }
    ._6u-phone {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 6;
    }
    ._7u-phone {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 7;
    }
    ._8u-phone {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 8;
    }
    ._9u-phone {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 9;
    }
    ._10u-phone {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 10;
    }
    ._11u-phone {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 11;
    }
    ._12u-phone {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 12;
    }
  }
  @media only screen and (min-width: 480px) {
    ._0u-mobile {
      display: none;
      overflow: hidden;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 0;
    }
    ._1u-mobile {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 1;
    }
    ._2u-mobile {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 2;
    }
    ._3u-mobile {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 3;
    }
    ._4u-mobile {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 4;
    }
    ._5u-mobile {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 5;
    }
    ._6u-mobile {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 6;
    }
    ._7u-mobile {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 7;
    }
    ._8u-mobile {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 8;
    }
    ._9u-mobile {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 9;
    }
    ._10u-mobile {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 10;
    }
    ._11u-mobile {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 11;
    }
    ._12u-mobile {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 12;
    }
  }
  @media only screen and (min-width: 768px) {
    ._0u-tablet {
      display: none;
      overflow: hidden;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 0;
    }
    ._1u-tablet {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 1;
    }
    ._2u-tablet {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 2;
    }
    ._3u-tablet {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 3;
    }
    ._4u-tablet {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 4;
    }
    ._5u-tablet {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 5;
    }
    ._6u-tablet {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 6;
    }
    ._7u-tablet {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 7;
    }
    ._8u-tablet {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 8;
    }
    ._9u-tablet {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 9;
    }
    ._10u-tablet {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 10;
    }
    ._11u-tablet {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 11;
    }
    ._12u-tablet {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 12;
    }
  }
  @media only screen and (min-width: 980px) {
    ._0u-narrow {
      display: none;
      overflow: hidden;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 0;
    }
    ._1u-narrow {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 1;
    }
    ._2u-narrow {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 2;
    }
    ._3u-narrow {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 3;
    }
    ._4u-narrow {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 4;
    }
    ._5u-narrow {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 5;
    }
    ._6u-narrow {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 6;
    }
    ._7u-narrow {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 7;
    }
    ._8u-narrow {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 8;
    }
    ._9u-narrow {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 9;
    }
    ._10u-narrow {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 10;
    }
    ._11u-narrow {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 11;
    }
    ._12u-narrow {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 12;
    }
  }
  @media only screen and (min-width: 1024px) {
    ._0u-normal {
      display: none;
      overflow: hidden;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 0;
    }
    ._1u-normal {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 1;
    }
    ._2u-normal {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 2;
    }
    ._3u-normal {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 3;
    }
    ._4u-normal {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 4;
    }
    ._5u-normal {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 5;
    }
    ._6u-normal {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 6;
    }
    ._7u-normal {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 7;
    }
    ._8u-normal {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 8;
    }
    ._9u-normal {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 9;
    }
    ._10u-normal {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 10;
    }
    ._11u-normal {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 11;
    }
    ._12u-normal {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 12;
    }
  }
  @media only screen and (min-width: 1280px) {
    ._0u-wide {
      display: none;
      overflow: hidden;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 0;
    }
    ._1u-wide {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 1;
    }
    ._2u-wide {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 2;
    }
    ._3u-wide {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 3;
    }
    ._4u-wide {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 4;
    }
    ._5u-wide {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 5;
    }
    ._6u-wide {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 6;
    }
    ._7u-wide {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 7;
    }
    ._8u-wide {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 8;
    }
    ._9u-wide {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 9;
    }
    ._10u-wide {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 10;
    }
    ._11u-wide {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 11;
    }
    ._12u-wide {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 12;
    }
  }
  @media only screen and (min-width: 1600px) {
    ._0u-hd {
      display: none;
      overflow: hidden;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 0;
    }
    ._1u-hd {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 1;
    }
    ._2u-hd {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 2;
    }
    ._3u-hd {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 3;
    }
    ._4u-hd {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 4;
    }
    ._5u-hd {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 5;
    }
    ._6u-hd {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 6;
    }
    ._7u-hd {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 7;
    }
    ._8u-hd {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 8;
    }
    ._9u-hd {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 9;
    }
    ._10u-hd {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 10;
    }
    ._11u-hd {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 11;
    }
    ._12u-hd {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 12;
    }
  }
  @media only screen and (min-width: 1920px) {
    ._0u-ultra {
      display: none;
      overflow: hidden;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 0;
    }
    ._1u-ultra {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 1;
    }
    ._2u-ultra {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 2;
    }
    ._3u-ultra {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 3;
    }
    ._4u-ultra {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 4;
    }
    ._5u-ultra {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 5;
    }
    ._6u-ultra {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 6;
    }
    ._7u-ultra {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 7;
    }
    ._8u-ultra {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 8;
    }
    ._9u-ultra {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 9;
    }
    ._10u-ultra {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 10;
    }
    ._11u-ultra {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 11;
    }
    ._12u-ultra {
      display: inline-block;
      width: 100%;
      max-width: unset;
      flex: unset;
      grid-column: span 12;
    }
  }
}
.important {
  order: 1;
}

@media only screen and (max-width: 320px) {
  .important-phone {
    order: 1;
  }
}
@media only screen and (max-width: 480px) {
  .important-mobile {
    order: 1;
  }
}
@media only screen and (max-width: 768px) {
  .important-tablet {
    order: 1;
  }
}
@media only screen and (max-width: 980px) {
  .important-narrow {
    order: 1;
  }
}
@media only screen and (max-width: 1024px) {
  .important-normal {
    order: 1;
  }
}
@media only screen and (max-width: 1280px) {
  .important-wide {
    order: 1;
  }
}
@media only screen and (max-width: 1600px) {
  .important-hd {
    order: 1;
  }
}
@media only screen and (max-width: 1920px) {
  .important-ultra {
    order: 1;
  }
}
.container {
  margin-left: 0;
  margin-right: 0;
  padding-left: 2em;
  padding-right: 2em;
  width: 100%;
}

@media only screen and (min-width: 1200px) {
  .container {
    margin-left: auto;
    margin-right: auto;
    width: 1200px;
  }
}
/**************************************
 *  LAYOUT RULES
 *  Navigation, Hero, Footer etc.
 *************************************/
/**************************************
 *  BASE RULES
 *  Variables, Reset, General Library
 *************************************/
/*****************************************************************************\
 *      LAYOUT FRAMEWORK
 *      REPONSIVE 3.1
 *      
 *      Usage Examples
 *      <div class="grid-sys padded">
 *          <div class="_12u _6u-tablet _4u-normal">Content 1</div>
 *          <div class="_12u _6u-tablet _8u-normal">Content 2</div>
 *      </div>
 *      Place mobile breakpoints first, followed by the breakpoints
 *      needed for larger screens
 *      
 *      place important or important-{breakpoint} at the end of the
 *      classes to change the order of the content in the html flow
\*****************************************************************************/
/*****************************************************************************\
 *      SKEL CONVERSION INSTRUCTIONS
 *      
 *      1) @import 'responsive';
 *      2) delete @import "libs/skell"
 *      3) convert @include skel-layout to @include xeno-layout
 *      4) @include xeno-layout adjustments
 *          a) delete grid: ...
 *          b) conditionals: ...
 *          c) first containers is 'mobile first'
 *          d) every breakpoint container should be defined
 *      5) remove all @include vendor mixins; autoprefixer will do its magic
 *      6) @include breakpoint -> @include skel_breakpoint 
\*****************************************************************************/
#bar_contact {
  display: none;
  height: 2.875em;
  line-height: 2.875em;
  background-color: #12163a;
  color: #ffffff;
}
@media only screen and (min-width: 768px) {
  #bar_contact {
    display: block;
  }
}
#bar_contact a {
  color: #ffffff;
  transition-duration: 0.3s;
}
#bar_contact a:visited {
  color: #ffffff;
}
#bar_contact a:active, #bar_contact a:hover {
  color: #807f7f;
}
#bar_contact div {
  letter-spacing: 0.25px;
  font-size: 0.9em;
  font-weight: 500;
}
#bar_contact div span {
  margin-right: 0.75em;
}
#bar_contact div span svg {
  color: #f2b632;
}
#bar_contact div.social-icons {
  text-align: right;
}
#bar_contact div.social-icons span {
  margin-right: 0;
  margin-left: 0.75em;
}
#bar_contact div.social-icons span a {
  color: #d9d9d9;
  transition-duration: 0.3s;
}
#bar_contact div.social-icons span a:visited {
  color: #d9d9d9;
}
#bar_contact div.social-icons span a:hover, #bar_contact div.social-icons span a:active {
  color: #ffffff;
}
#bar_contact div.social-icons span a svg {
  color: inherit;
}
#bar_contact div.social-icons span a svg + span {
  display: none;
}

/**************************************
 *  BASE RULES
 *  Variables, Reset, General Library
 *************************************/
/*****************************************************************************\
 *      LAYOUT FRAMEWORK
 *      REPONSIVE 3.1
 *      
 *      Usage Examples
 *      <div class="grid-sys padded">
 *          <div class="_12u _6u-tablet _4u-normal">Content 1</div>
 *          <div class="_12u _6u-tablet _8u-normal">Content 2</div>
 *      </div>
 *      Place mobile breakpoints first, followed by the breakpoints
 *      needed for larger screens
 *      
 *      place important or important-{breakpoint} at the end of the
 *      classes to change the order of the content in the html flow
\*****************************************************************************/
/*****************************************************************************\
 *      SKEL CONVERSION INSTRUCTIONS
 *      
 *      1) @import 'responsive';
 *      2) delete @import "libs/skell"
 *      3) convert @include skel-layout to @include xeno-layout
 *      4) @include xeno-layout adjustments
 *          a) delete grid: ...
 *          b) conditionals: ...
 *          c) first containers is 'mobile first'
 *          d) every breakpoint container should be defined
 *      5) remove all @include vendor mixins; autoprefixer will do its magic
 *      6) @include breakpoint -> @include skel_breakpoint 
\*****************************************************************************/
#bar_menu {
  z-index: 1;
  height: 3em;
}
@media only screen and (min-width: 1000px) {
  #bar_menu {
    height: 6.3125em;
  }
}
#bar_menu {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background-color: #ffffff;
  border-bottom: 1px solid #eee;
  box-shadow: 0 0 65px rgba(0, 0, 0, 0.09);
}
#bar_menu .container {
  height: 100%;
  z-index: 0;
  position: relative;
}
#bar_menu #home-nav {
  position: absolute;
  left: 2em;
  top: 50%;
  transform: translateY(-50%);
  width: 150px;
}
#bar_menu #home-nav img {
  display: block;
  width: auto;
  max-height: 2.4em;
  margin-left: 0;
}
@media only screen and (min-width: 1000px) {
  #bar_menu #home-nav {
    width: 270px;
    max-width: 270px;
  }
  #bar_menu #home-nav img {
    width: auto;
    max-height: 5em;
  }
}
#bar_menu #main-nav {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.8125em;
}
#bar_menu #main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1.5em;
}
#bar_menu #main-nav ul li {
  display: inline-block;
  padding: 0.35em 0;
  border-radius: 0.5em;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
#bar_menu #main-nav ul li a {
  color: #000000;
  white-space: nowrap;
}
#bar_menu #main-nav ul li a:visited, #bar_menu #main-nav ul li a:active, #bar_menu #main-nav ul li a:link {
  color: #000000;
}
#bar_menu #main-nav ul li a:hover {
  color: #2a54b3;
}
#bar_menu #main-nav ul li.toShow {
  display: inline-block;
}
#bar_menu #main-nav ul li.toShow .dropdown-content {
  margin: 2em 0 0 -7em;
}
#bar_menu #main-nav ul li.toHide {
  display: none;
}
@media only screen and (min-width: 1150px) {
  #bar_menu #main-nav ul li.toShow {
    display: none;
  }
  #bar_menu #main-nav ul li.toHide {
    display: inline-block;
  }
}
#bar_menu #main-nav ul li .dropbtn {
  height: 100%;
  display: inline-block;
  white-space: nowrap;
}
#bar_menu #main-nav ul li .dropbtn svg {
  display: none;
}
@media only screen and (min-width: 900px) {
  #bar_menu #main-nav ul li .dropbtn svg {
    display: inherit;
  }
}
#bar_menu #main-nav li.nav-cta > a {
  display: inline-block;
  background: #f2b632;
  color: #12163a !important;
  font-weight: 700;
  border-radius: 4px;
  padding: 0.45em 1em !important;
  outline: 1px dashed rgba(18, 22, 58, 0.45);
  outline-offset: -4px;
  transition: 0.25s ease;
}
#bar_menu #main-nav li.nav-cta > a:hover {
  background: #f6c65b;
  transform: rotate(-1.5deg);
}
#bar_menu #main-nav {
  display: none;
}
#bar_menu #mobile-nav {
  position: absolute;
  right: 2em;
  top: 0;
  height: 100%;
  width: 70px;
  display: flex;
  align-items: center;
}
#bar_menu #mobile-nav .mobile {
  list-style: none;
  margin: 0;
  padding: 0;
}
#bar_menu #mobile-nav .mobile input:checked + label {
  background: none;
}
#bar_menu #mobile-nav .mobile label {
  display: unset !important;
  margin: unset !important;
  width: unset !important;
  height: unset !important;
  padding: unset !important;
  border: unset !important;
  box-shadow: unset !important;
  border-radius: unset !important;
}
#bar_menu #mobile-nav .mobile ul.site-menu {
  transition: 0.2s ease-in-out;
  background: #fff;
  bottom: 0;
  font-size: 14px;
  height: 100%;
  left: -400px;
  list-style: none;
  margin: 0;
  padding: 2em 1em;
  position: fixed;
  top: 0;
  width: 400px;
  max-width: 100%;
  overflow-y: auto;
}
#bar_menu #mobile-nav .mobile ul.site-menu li.site-menu-item {
  padding-bottom: 0.5em;
}
#bar_menu #mobile-nav .mobile ul.site-menu li.site-menu-item > a,
#bar_menu #mobile-nav .mobile ul.site-menu li.site-menu-item > label {
  color: #000;
  display: block;
  margin-bottom: 1px;
  cursor: pointer;
}
#bar_menu #mobile-nav .mobile ul.site-menu li.site-menu-item > a:hover, #bar_menu #mobile-nav .mobile ul.site-menu li.site-menu-item > a:active,
#bar_menu #mobile-nav .mobile ul.site-menu li.site-menu-item > label:hover,
#bar_menu #mobile-nav .mobile ul.site-menu li.site-menu-item > label:active {
  color: #333;
}
#bar_menu #mobile-nav .mobile ul.site-menu li.site-menu-item ul {
  display: none;
  list-style-type: none;
}
#bar_menu #mobile-nav .mobile ul.site-menu li.site-menu-item .uppercase {
  text-transform: uppercase;
}
#bar_menu #mobile-nav .mobile ul.site-menu li.site-menu-item.current > a {
  color: #333;
}
#bar_menu #mobile-nav .mobile .toggle-overlay-checkbox {
  display: none;
}
#bar_menu #mobile-nav .mobile .toggle-overlay-label {
  transition: 0.2s ease-in-out;
  bottom: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  z-index: -1;
}
#bar_menu #mobile-nav .mobile .toggle-menu-checkbox:checked ~ .toggle-overlay-label {
  background: rgba(0, 0, 0, 0.5);
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}
#bar_menu #mobile-nav .mobile .toggle-menu-checkbox,
#bar_menu #mobile-nav .mobile .toggle-menu-label,
#bar_menu #mobile-nav .mobile .toggle-sub-menu-checkbox {
  display: none;
}
#bar_menu #mobile-nav .mobile .toggle-menu-checkbox:checked ~ .site-menu {
  left: 0;
  z-index: 2;
  box-shadow: 4px 0 16px -4px rgba(0, 0, 0, 0.2);
}
#bar_menu #mobile-nav .mobile .toggle-sub-menu-checkbox:checked + ul {
  display: block !important;
  padding: 1em 2.5em 1em 1em;
  transition: 0.2s ease-in-out;
}
#bar_menu #mobile-nav .mobile .toggle-sub-menu-checkbox:checked + ul li {
  padding-bottom: 0.5em;
}
#bar_menu #mobile-nav .mobile .toggle-sub-menu-checkbox:checked + ul a {
  color: #000000;
}
#bar_menu #mobile-nav .mobile .toggle-sub-menu-checkbox:checked + ul a:visited {
  color: #000000;
}
#bar_menu #mobile-nav .mobile .toggle-sub-menu-checkbox:checked + ul a:hover, #bar_menu #mobile-nav .mobile .toggle-sub-menu-checkbox:checked + ul a:active {
  color: #807f7f;
}
#bar_menu #mobile-nav .mobile .toggle-overlay-checkbox:checked ~ .site-menu {
  left: -400px;
}
#bar_menu #mobile-nav .mobile .toggle-menu-label {
  cursor: pointer;
  display: block;
  padding: 0.1em 0 0 0.5em;
  position: relative;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
}
#bar_menu #mobile-nav .mobile .toggle-menu-label:before {
  background: #000000;
  content: "";
  height: 2px;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -4px;
  width: 1em;
  box-shadow: 0 4px 0 0 #000000, 0 8px 0 0 #000000;
}
#bar_menu #mobile-nav .mobile .toggle-menu-label:after {
  color: #000000;
  content: "Menu";
  display: inline-block;
  line-height: 1;
  margin-top: -1em;
  transform: translateY(7px);
  padding-right: 1.4em;
  text-align: center;
  text-transform: uppercase;
  vertical-align: middle;
  border-radius: 2px 2px 2px 2px;
}
#bar_menu #mobile-nav .mobile .toggle-menu-checkbox:checked ~ .toggle-menu-label:after {
  content: "Menu";
  color: #ccc !important;
}
#bar_menu #mobile-nav .mobile .toggle-menu-checkbox:checked ~ .toggle-menu-label:before {
  background: #ccc;
  box-shadow: 0 4px 0 0 #ccc, 0 8px 0 0 #ccc;
}
@media only screen and (min-width: 785px) {
  #bar_menu #main-nav {
    display: block;
  }
  #bar_menu .mobile {
    display: none;
  }
}

.dropotron {
  background-color: #f9f9f9;
  list-style: none;
  margin: 0;
  min-width: 10em;
  padding: 0.75em 1em 0.75em 1em;
  font-size: 0.8125em;
}
.dropotron > li {
  border-top: solid 1px #555;
  margin: 0;
  padding: 0;
}
.dropotron > li:first-child {
  border-top: 0;
}
.dropotron > li > a {
  color: #000000;
  display: block;
  padding: 0.5em 0 0.5em 0;
  text-decoration: none;
  white-space: nowrap;
}
.dropotron > li > a:visited, .dropotron > li > a:active, .dropotron > li > a:link {
  color: #000000;
}
.dropotron > li.active > a, .dropotron > li:hover > a {
  color: #2a54b3;
}
.dropotron.level-0 {
  margin-top: 0.75em;
}
.dropotron {
  /*
      &.level-0:before {
          content: '';
          position: absolute;
          border-bottom: solid 0.5em #f9f9f9;
          border-left: solid 0.5em transparent;
          border-right: solid 0.5em transparent;
          top: -0.5em;
      }
  */
}

/**************************************
 *  BASE RULES
 *  Variables, Reset, General Library
 *************************************/
/*****************************************************************************\
 *      LAYOUT FRAMEWORK
 *      REPONSIVE 3.1
 *      
 *      Usage Examples
 *      <div class="grid-sys padded">
 *          <div class="_12u _6u-tablet _4u-normal">Content 1</div>
 *          <div class="_12u _6u-tablet _8u-normal">Content 2</div>
 *      </div>
 *      Place mobile breakpoints first, followed by the breakpoints
 *      needed for larger screens
 *      
 *      place important or important-{breakpoint} at the end of the
 *      classes to change the order of the content in the html flow
\*****************************************************************************/
/*****************************************************************************\
 *      SKEL CONVERSION INSTRUCTIONS
 *      
 *      1) @import 'responsive';
 *      2) delete @import "libs/skell"
 *      3) convert @include skel-layout to @include xeno-layout
 *      4) @include xeno-layout adjustments
 *          a) delete grid: ...
 *          b) conditionals: ...
 *          c) first containers is 'mobile first'
 *          d) every breakpoint container should be defined
 *      5) remove all @include vendor mixins; autoprefixer will do its magic
 *      6) @include breakpoint -> @include skel_breakpoint 
\*****************************************************************************/
#hero {
  z-index: 0;
  position: relative;
  width: 100vw;
  height: calc(60vh - 3em);
  height: calc(var(--vh, 1vh) * 60 - 3em);
  background-color: #1b2150;
  background: radial-gradient(ellipse 42% 58% at 26% 38%, rgba(255, 248, 231, 0.28), rgba(255, 248, 231, 0) 70%), linear-gradient(170deg, rgba(27, 33, 80, 0.88), rgba(18, 22, 58, 0.82) 55%, rgba(0, 0, 0, 0.9)), url(/images/banner.webp) no-repeat center center;
  background-size: cover, cover, cover;
}
#hero:before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  right: 0;
  height: 7px;
  background: radial-gradient(circle at center, rgba(242, 182, 50, 0.9) 0 2.5px, rgba(242, 182, 50, 0.25) 3px, transparent 3.5px) 0 0/26px 7px repeat-x;
}
#hero .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
  overflow: hidden;
}
#hero .container div h1 {
  font-family: "roboto-slab", "Rockwell", "Georgia", serif;
  font-weight: 700;
  color: #ffffff;
  font-size: 1.15em;
  letter-spacing: 0.02em;
}
#hero .container div h1:after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  margin-top: 0.45em;
  background: #f2b632;
}
@media only screen and (min-width: 768px) {
  #hero .container div h1 {
    font-size: 3.125em;
  }
}
#hero .container div p {
  color: #ffffff;
  font-size: 0.8em;
}
#hero .container div .header-btn {
  margin-top: 2em;
}
#hero .container div .header-btn .btn-md {
  font-size: 0.8em;
}
#hero .container div .header-btn .dark-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.45);
}
#hero .container div .header-btn .dark-btn:hover {
  background: rgba(255, 255, 255, 0.22);
}
@media only screen and (min-width: 768px) and (orientation: landscape) {
  #hero .container div {
    transform: translateY(-3em);
  }
}
@media only screen and (min-width: 320px) and (orientation: landscape) {
  #hero {
    height: calc(100vh - 3em);
    height: calc(var(--vh, 1vh) * 100 - 3em);
  }
  #hero .container div h1 {
    font-size: 1.75em;
  }
}
@media only screen and (min-width: 480px) {
  #hero .container div p {
    font-size: 1em;
  }
  #hero .container div .header-btn .btn-md {
    font-size: unset;
  }
}
@media only screen and (min-width: 480px) and (orientation: portrait) {
  #hero {
    height: calc(60vh - 3em);
    height: calc(var(--vh, 1vh) * 60 - 3em);
  }
  #hero .container div h1 {
    font-size: 1.75em;
  }
  #hero .container div .header-btn .btn-md {
    font-size: 0.8em;
  }
}
@media only screen and (min-width: 768px) {
  #hero {
    height: calc(100vh - 6.3125em - 2.875em);
    height: calc(var(--vh, 1vh) * 100 - 6.3125em - 2.875em);
  }
  #hero .container div h1 {
    font-size: 3.125em;
  }
  #hero .container div .header-btn .btn-md {
    font-size: unset;
  }
}
@media only screen and (min-width: 768px) and (orientation: portrait) {
  #hero {
    height: calc(60vh - 6.3125em - 2.875em);
    height: calc(var(--vh, 1vh) * 60 - 6.3125em - 2.875em);
  }
}

/*****************************************************************************\
 *      LAYOUT FRAMEWORK
 *      REPONSIVE 3.1
 *      
 *      Usage Examples
 *      <div class="grid-sys padded">
 *          <div class="_12u _6u-tablet _4u-normal">Content 1</div>
 *          <div class="_12u _6u-tablet _8u-normal">Content 2</div>
 *      </div>
 *      Place mobile breakpoints first, followed by the breakpoints
 *      needed for larger screens
 *      
 *      place important or important-{breakpoint} at the end of the
 *      classes to change the order of the content in the html flow
\*****************************************************************************/
/*****************************************************************************\
 *      SKEL CONVERSION INSTRUCTIONS
 *      
 *      1) @import 'responsive';
 *      2) delete @import "libs/skell"
 *      3) convert @include skel-layout to @include xeno-layout
 *      4) @include xeno-layout adjustments
 *          a) delete grid: ...
 *          b) conditionals: ...
 *          c) first containers is 'mobile first'
 *          d) every breakpoint container should be defined
 *      5) remove all @include vendor mixins; autoprefixer will do its magic
 *      6) @include breakpoint -> @include skel_breakpoint 
\*****************************************************************************/
#main-content section {
  padding: 2.5em 0;
  background-color: #ffffff;
}
#main-content section.block-grey, #main-content section.block-gray {
  background-color: #f9f9f9;
}
@media only screen and (min-width: 768px) {
  #main-content section {
    padding: 5.625em 0;
  }
}

/**************************************
 *  BASE RULES
 *  Variables, Reset, General Library
 *************************************/
/*****************************************************************************\
 *      LAYOUT FRAMEWORK
 *      REPONSIVE 3.1
 *      
 *      Usage Examples
 *      <div class="grid-sys padded">
 *          <div class="_12u _6u-tablet _4u-normal">Content 1</div>
 *          <div class="_12u _6u-tablet _8u-normal">Content 2</div>
 *      </div>
 *      Place mobile breakpoints first, followed by the breakpoints
 *      needed for larger screens
 *      
 *      place important or important-{breakpoint} at the end of the
 *      classes to change the order of the content in the html flow
\*****************************************************************************/
/*****************************************************************************\
 *      SKEL CONVERSION INSTRUCTIONS
 *      
 *      1) @import 'responsive';
 *      2) delete @import "libs/skell"
 *      3) convert @include skel-layout to @include xeno-layout
 *      4) @include xeno-layout adjustments
 *          a) delete grid: ...
 *          b) conditionals: ...
 *          c) first containers is 'mobile first'
 *          d) every breakpoint container should be defined
 *      5) remove all @include vendor mixins; autoprefixer will do its magic
 *      6) @include breakpoint -> @include skel_breakpoint 
\*****************************************************************************/
footer {
  position: relative;
  background: linear-gradient(180deg, #1b2150, #12163a);
  padding: 60px 0 20px;
}
footer a {
  color: #aebcf0;
}
footer a:visited {
  color: #aebcf0;
}
footer a:hover, footer a:active {
  color: #f2b632;
}
footer:before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  right: 0;
  height: 7px;
  background: radial-gradient(circle at center, rgba(242, 182, 50, 0.65) 0 2.5px, rgba(242, 182, 50, 0.18) 3px, transparent 3.5px) 0 0/26px 7px repeat-x;
}
footer .footer-logo {
  max-width: 140px;
  height: auto;
  background: #fff;
  border-radius: 4px;
  padding: 6px;
}
footer h3 {
  font-weight: 400;
  color: #fff;
  line-height: 1;
}
footer h3:after {
  content: "";
  display: block;
  width: 70px;
  height: 2px;
  background: #f2b632;
  margin-top: 12px;
}
footer p {
  font-size: 14px;
  color: #d9d9d9;
  line-height: 1.7;
}
footer .footer-social-icons {
  padding-left: 0;
  margin-bottom: 0;
}
footer .footer-social-icons li {
  list-style-type: none;
  display: inline-block;
  background: #333;
  border-radius: 50%;
  color: #fff;
  margin-right: 10px;
  margin-bottom: 5px;
  transition-duration: 0.3s;
}
footer .footer-social-icons li:hover {
  background: #2a54b3;
}
footer .footer-social-icons li a {
  display: block;
  font-size: 0.7em;
  color: #fff;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0.6rem;
}
footer .footer-social-icons li a svg {
  margin: 0;
}
footer .footer-social-icons li a svg + span {
  display: none;
}
footer .footer-list {
  margin-top: 20px;
  padding-left: 0;
  margin-bottom: 0;
}
footer .footer-list li {
  list-style-type: none;
  color: #d9d9d9;
  padding: 6px 0;
}
footer .footer-list li a {
  font-size: 15px;
  font-weight: 400;
  color: #d9d9d9;
  transition-duration: 0.3s;
}
footer .footer-list li a:hover {
  color: #fff;
}
footer .footer-list li a:before {
  content: ">";
  color: #d9d9d9;
  padding-right: 8px;
  transition-duration: 0.3s;
}
footer .footer-list li a:before:hover {
  color: #fff;
}
footer .footer-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 30px;
}
footer .footer-bar span,
footer .footer-bar a {
  color: #2a54b3;
  font-size: 15px;
  font-weight: 400;
  transition-duration: 0.3s;
}
footer .footer-bar a:active, footer .footer-bar a:hover {
  color: #ffffff;
}
footer .footer-bar p,
footer .footer-bar .right {
  text-align: center;
}
@media only screen and (min-width: 480px) {
  footer .footer-bar p {
    text-align: left;
  }
  footer .footer-bar .right {
    text-align: right;
  }
}
footer .footer-contact {
  font-size: 15px;
}
footer .footer-contact a {
  font-weight: 400;
  transition-duration: 0.3s;
}
footer .footer-contact a:active, footer .footer-contact a:hover {
  color: #ffffff;
}

/**************************************
 *  BASE RULES
 *  Variables, Reset, General Library
 *************************************/
/*****************************************************************************\
 *      LAYOUT FRAMEWORK
 *      REPONSIVE 3.1
 *      
 *      Usage Examples
 *      <div class="grid-sys padded">
 *          <div class="_12u _6u-tablet _4u-normal">Content 1</div>
 *          <div class="_12u _6u-tablet _8u-normal">Content 2</div>
 *      </div>
 *      Place mobile breakpoints first, followed by the breakpoints
 *      needed for larger screens
 *      
 *      place important or important-{breakpoint} at the end of the
 *      classes to change the order of the content in the html flow
\*****************************************************************************/
/*****************************************************************************\
 *      SKEL CONVERSION INSTRUCTIONS
 *      
 *      1) @import 'responsive';
 *      2) delete @import "libs/skell"
 *      3) convert @include skel-layout to @include xeno-layout
 *      4) @include xeno-layout adjustments
 *          a) delete grid: ...
 *          b) conditionals: ...
 *          c) first containers is 'mobile first'
 *          d) every breakpoint container should be defined
 *      5) remove all @include vendor mixins; autoprefixer will do its magic
 *      6) @include breakpoint -> @include skel_breakpoint 
\*****************************************************************************/
.side-column {
  padding-left: 0;
}
.side-column img {
  width: 100%;
  height: auto;
  max-width: 300px;
  display: block;
  margin: -2em auto 2.5em;
}
.side-column h1,
.side-column h2,
.side-column h3,
.side-column h4,
.side-column h5 {
  text-align: left;
  margin-top: 0px;
}
.side-column h1:after,
.side-column h2:after,
.side-column h3:after,
.side-column h4:after,
.side-column h5:after {
  content: " ";
  display: block;
  width: 70px;
  height: 2px;
  margin-top: 8px;
  margin-bottom: 25px;
  margin-right: auto;
  color: #2a54b3;
  background-color: #2a54b3;
}
.side-column h1:not(:first-of-type),
.side-column h2:not(:first-of-type),
.side-column h3:not(:first-of-type),
.side-column h4:not(:first-of-type),
.side-column h5:not(:first-of-type) {
  margin-top: 0px;
  margin-top: 1em;
}
@media only screen and (min-width: 980px) {
  .side-column {
    padding-left: 2em;
  }
}
@media only screen and (min-width: 768px) {
  .side-column img {
    max-width: 90%;
    margin: 5.625em auto 1em;
  }
}

/**************************************
 *  MODULE RULES
 *  Module components (reusable)
 *************************************/
/*****************************************************************************\
 *      FOR CONTROLLING SVG ICONS
\*****************************************************************************/
.svg-icon-footer, .svg-icon-biggest, .svg-icon-big, .svg-icon-smallest, .svg-icon-small, .svg-icon {
  fill: transparent;
  color: inherit;
}

.svg-icon-footer, .svg-icon-biggest, .svg-icon-big, .svg-icon-smallest, .svg-event-small, .svg-icon-small, .svg-event, .svg-icon {
  display: inline-flex !important;
  align-self: center;
}

.svg-icon {
  width: 1.5em;
  height: 1.5em;
  margin-bottom: -0.35em;
}

.svg-event {
  width: 1.5em;
  height: 1.5em;
  margin-bottom: -0.35em;
}

.svg-icon-small {
  width: 1em;
  height: 1em;
  margin-bottom: -0.1em;
}

.svg-event-small {
  width: 1em;
  height: 1em;
  margin-bottom: -0.1em;
}

.svg-icon-smallest {
  width: 0.85em;
  height: 0.85em;
}

.svg-icon-big {
  width: 2em;
  height: 2em;
  margin-bottom: -0.5em;
}

.svg-icon-biggest {
  width: 4.5em;
  height: 4.5em;
  margin-bottom: -0.6em;
}

.svg-icon-footer {
  width: 3em;
  height: 3em;
}

.st-black {
  stroke: black;
  stroke-width: 2;
}

.bg-black {
  fill: black;
}

.bg-white {
  fill: white;
}

/**************************************
 *  BASE RULES
 *  Variables, Reset, General Library
 *************************************/
/* form validation-failure notice (contact.php ?err=...) */
.form-error {
  background: rgba(210, 30, 43, 0.08);
  border-left: 4px solid #d21e2b;
  border-radius: 0 8px 8px 0;
  padding: 0.25em 1.5em;
  margin: 0 0 1.5em;
}

/* generic button stuff */
.primary-button {
  background: #2a54b3;
  color: #fff !important;
  border-radius: 3.125em;
  transition: all 0.4s ease;
  border: none;
}
.primary-button:hover {
  background: #1b2150;
  color: #fff;
}

.dark-btn {
  background: #12163a;
  color: #ffffff !important;
  font-size: 11px;
  font-weight: 500;
  border-radius: 3.125em;
  padding: 0.625em 0.9375em;
  transition-duration: 0.3s;
  border: none;
}
.dark-btn:hover {
  color: #fff;
  background: #2a54b3;
}

.btn-xs,
.btn-sm,
.btn-md,
.btn-lg {
  font-weight: 500;
  display: inline-block;
  text-decoration: none;
  letter-spacing: 0.5px;
  cursor: pointer;
}

.btn-xs {
  font-size: 0.625em;
  padding: 0.5em 1.0625em;
}

.btn-sm {
  font-size: 0.75em;
  padding: 0.6875em 1.375em;
}

.btn-md {
  font-size: 0.875em;
  padding: 0.8125em 1.5625em;
}

.btn-lg {
  font-size: 1.0625em;
  font-weight: 600;
  padding: 1.25em 2.1875em !important;
}

select {
  display: inline-block;
  margin-bottom: 0.5em;
  line-height: 1.3em;
}
select + span.required {
  margin-left: 1.5em !important;
}

.select-css {
  display: inline-block;
  font-size: 16px;
  line-height: 1.3;
  padding: 0.6em 1.9em 0.5em 0.8em;
  border: 1px solid #aaa;
  box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.04);
  border-radius: 0.5em;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="292.4" height="292.4"><path d="M287 69.4a17.6 17.6 0 0 0-13-5.4H18.4c-5 0-9.3 1.8-12.9 5.4A17.6 17.6 0 0 0 0 82.2c0 5 1.8 9.3 5.4 12.9l128 127.9c3.6 3.6 7.8 5.4 12.8 5.4s9.2-1.8 12.8-5.4L287 95c3.5-3.5 5.4-7.8 5.4-12.8 0-5-1.9-9.2-5.5-12.8z"  fill="#2a54b3" /></svg>'), linear-gradient(to bottom, #fff 0%, #e5e5e5 100%);
  background-repeat: no-repeat, repeat;
  background-position: right 0.7em top 50%, 0 0;
  background-size: 0.65em auto, 100%;
}
.select-css::-ms-expand {
  display: none;
}
.select-css:hover {
  border-color: #888;
}
.select-css:focus {
  border-color: #aaa;
  box-shadow: 0 0 1px 3px rgba(59, 153, 252, 0.7);
  box-shadow: 0 0 0 3px -moz-mac-focusring;
  color: #222;
  outline: none;
}
.select-css option {
  font-weight: normal;
}

input[type=text],
input[type=phone] {
  display: inline-block;
  margin-bottom: 0.5em;
  line-height: 1.3em;
  padding: 0.45em 0.8em 0.4em 0.8em;
  border: 1px solid #aaa;
  box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.04);
  border-radius: 0.5em;
  background-color: #fff;
  background-image: linear-gradient(to bottom, #fff 0%, #e5e5e5 100%);
}
input[type=text]::placeholder,
input[type=phone]::placeholder {
  font-size: 1em;
  line-height: 1.3em;
  padding-top: 0.15em;
}

.required {
  display: inline-block;
  position: relative;
  width: 0;
  margin: 0 0 0 -0.25em;
  padding: 0;
  line-height: 1.3em;
}
.required:before {
  content: "*";
  position: absolute;
  display: inline-block;
  top: -1.25em;
  left: -0.5em;
  color: #d21e2b;
}

input[type=checkbox].contact,
input[type=radio].contact {
  opacity: 0;
  position: absolute;
  top: -1000;
  left: -1000;
}
input[type=checkbox].contact + label,
input[type=radio].contact + label {
  display: inline-block;
  margin: 0 0 -0.15em 0;
  width: 1.3em;
  height: 1.3em;
  padding: 0;
  border: 1px solid #aaa;
  box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.04);
  border-radius: 0.35em;
}
input[type=checkbox].contact:checked + label,
input[type=radio].contact:checked + label {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20d%3D%22M20.285%202l-11.285%2011.567-5.286-5.011-3.714%203.716%209%208.728%2015-15.285z%22%20fill%3D%22%232a54b3%22%20%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 0.8em 0.8em;
}

input[type=radio].contact + label {
  border-radius: 50%;
}
input[type=radio].contact:checked + label {
  background: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%3Ccircle%20cx%3D%2212%22%20cy%3D%2212%22%20r%3D%2212%22%20fill%3D%22%232a54b3%22%20%2F%3E%3C%2Fsvg%3E");
  background-size: 1em 0.8em;
}

textarea {
  border: 1px solid #aaa;
  box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.04);
  border-radius: 0.5em;
  padding: 0.45em 0.8em 0.4em 0.8em;
  width: 95%;
  height: 6rem;
}

/**************************************
 *  BASE RULES
 *  Variables, Reset, General Library
 *************************************/
/*****************************************************************************\
 *      LAYOUT FRAMEWORK
 *      REPONSIVE 3.1
 *      
 *      Usage Examples
 *      <div class="grid-sys padded">
 *          <div class="_12u _6u-tablet _4u-normal">Content 1</div>
 *          <div class="_12u _6u-tablet _8u-normal">Content 2</div>
 *      </div>
 *      Place mobile breakpoints first, followed by the breakpoints
 *      needed for larger screens
 *      
 *      place important or important-{breakpoint} at the end of the
 *      classes to change the order of the content in the html flow
\*****************************************************************************/
/*****************************************************************************\
 *      SKEL CONVERSION INSTRUCTIONS
 *      
 *      1) @import 'responsive';
 *      2) delete @import "libs/skell"
 *      3) convert @include skel-layout to @include xeno-layout
 *      4) @include xeno-layout adjustments
 *          a) delete grid: ...
 *          b) conditionals: ...
 *          c) first containers is 'mobile first'
 *          d) every breakpoint container should be defined
 *      5) remove all @include vendor mixins; autoprefixer will do its magic
 *      6) @include breakpoint -> @include skel_breakpoint 
\*****************************************************************************/
/*******************
 * COUNTDOWN STUFF *
 ******************/
.countdown-header {
  font-family: "roboto-slab", "Rockwell", "Georgia", serif;
  font-style: italic;
  color: #1b2150;
  font-size: 1.5em;
  text-align: center;
  margin: 1em 0 0 0;
}

.countdown-container {
  display: flex;
  width: 100%;
  margin: 0 auto;
  max-width: 800px;
  justify-content: space-between;
}
.countdown-container .days-container,
.countdown-container .hours-container,
.countdown-container .minutes-container,
.countdown-container .seconds-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #807f7f;
  border: none;
  width: 80px;
  height: 80px;
  font-size: 0.8em;
  border-radius: 40px;
  background: none;
}
.countdown-container .days-container .days,
.countdown-container .days-container .hours,
.countdown-container .days-container .minutes,
.countdown-container .days-container .seconds,
.countdown-container .hours-container .days,
.countdown-container .hours-container .hours,
.countdown-container .hours-container .minutes,
.countdown-container .hours-container .seconds,
.countdown-container .minutes-container .days,
.countdown-container .minutes-container .hours,
.countdown-container .minutes-container .minutes,
.countdown-container .minutes-container .seconds,
.countdown-container .seconds-container .days,
.countdown-container .seconds-container .hours,
.countdown-container .seconds-container .minutes,
.countdown-container .seconds-container .seconds {
  font-family: "roboto-slab", "Rockwell", "Georgia", serif;
  font-weight: 700;
  color: #1b2150;
  font-size: 1em;
  margin: 7px 0;
}
.countdown-container .days-container .days-label,
.countdown-container .days-container .hours-label,
.countdown-container .days-container .minutes-label,
.countdown-container .days-container .seconds-label,
.countdown-container .hours-container .days-label,
.countdown-container .hours-container .hours-label,
.countdown-container .hours-container .minutes-label,
.countdown-container .hours-container .seconds-label,
.countdown-container .minutes-container .days-label,
.countdown-container .minutes-container .hours-label,
.countdown-container .minutes-container .minutes-label,
.countdown-container .minutes-container .seconds-label,
.countdown-container .seconds-container .days-label,
.countdown-container .seconds-container .hours-label,
.countdown-container .seconds-container .minutes-label,
.countdown-container .seconds-container .seconds-label {
  text-transform: uppercase;
  margin-bottom: 5px;
}

@media only screen and (max-width: 399px) {
  .countdown-container .days-container,
  .countdown-container .hours-container,
  .countdown-container .minutes-container,
  .countdown-container .seconds-container {
    width: 68px;
    height: 68px;
    font-size: 0.7em;
  }
}
@media only screen and (min-width: 400px) {
  .countdown-header {
    font-size: 2em;
    margin: 1em 0 1em 0;
  }
  .countdown-container .days-container,
  .countdown-container .hours-container,
  .countdown-container .minutes-container,
  .countdown-container .seconds-container {
    border: 3px solid #2a54b3;
    background: #ffffff;
  }
}
@media only screen and (min-width: 550px) {
  .countdown-header {
    margin: 1em 0 2em 0;
  }
  .countdown-container {
    width: 100%;
    max-width: 90%;
  }
  .countdown-container .days-container,
  .countdown-container .hours-container,
  .countdown-container .minutes-container,
  .countdown-container .seconds-container {
    border-width: 5px;
    font-size: 1em;
    width: 100px;
    height: 100px;
    border-radius: 50px;
  }
  .countdown-container .days,
  .countdown-container .hours,
  .countdown-container .minutes,
  .countdown-container .seconds {
    font-size: 2.5em;
    margin: 10px 0;
  }
}
@media only screen and (min-width: 768px) {
  .countdown-container {
    max-width: 800px;
  }
  .countdown-container .days-container,
  .countdown-container .hours-container,
  .countdown-container .minutes-container,
  .countdown-container .seconds-container {
    font-size: 1.4em;
    width: 140px;
    height: 140px;
    border-radius: 70px;
  }
  .countdown-container .days,
  .countdown-container .hours,
  .countdown-container .minutes,
  .countdown-container .seconds {
    font-size: 2.5em;
    margin: 10px 0;
  }
}
/**
 * Tooltip Styles
 */
/* Base styles for the element that has a tooltip */
[data-tooltip],
.tooltip {
  position: relative;
  cursor: pointer;
  /* Base styles for the entire tooltip */
}
[data-tooltip]:before, [data-tooltip]:after,
.tooltip:before,
.tooltip:after {
  position: absolute;
  bottom: 100%;
  left: 50%;
  visibility: hidden;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out, transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  transform: translate3d(0, 0, 0);
  pointer-events: none;
  font-weight: 300;
}
[data-tooltip],
.tooltip {
  /* Show the entire tooltip on hover and focus */
}
[data-tooltip]:hover:before, [data-tooltip]:hover:after, [data-tooltip]:focus:before, [data-tooltip]:focus:after,
.tooltip:hover:before,
.tooltip:hover:after,
.tooltip:focus:before,
.tooltip:focus:after {
  visibility: visible;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
  transform: translateY(-12px);
}
[data-tooltip],
.tooltip {
  /* Base styles for the tooltip's directional arrow */
}
[data-tooltip]:before,
.tooltip:before {
  z-index: 1001;
  border: 6px solid transparent;
  background: transparent;
  content: "";
  margin-left: -6px;
  margin-bottom: -12px;
  border-top-color: #000;
  border-top-color: hsla(0, 0%, 20%, 0.9);
}
[data-tooltip],
.tooltip {
  /* Base styles for the tooltip's content area */
}
[data-tooltip]:after,
.tooltip:after {
  z-index: 1000;
  padding: 0.5em 1em;
  border-radius: 1em;
  width: 160px;
  background-color: #000;
  background-color: hsla(0, 0%, 20%, 0.9);
  color: #fff;
  content: attr(data-tooltip);
  font-size: 14px;
  line-height: 1.2;
  margin-left: -80px;
}

/* Directions */
/* Top (default) */
.tooltip-top:before,
.tooltip-top:after {
  bottom: 100%;
  left: 50%;
}

.tooltip-top:before {
  margin-left: -6px;
  margin-bottom: -12px;
  border-top-color: #000;
  border-top-color: hsla(0, 0%, 20%, 0.9);
}

/* Horizontally align top/bottom tooltips */
.tooltip-top:after {
  margin-left: -80px;
}

.tooltip-top:hover:before,
.tooltip-top:hover:after,
.tooltip-top:focus:before,
.tooltip-top:focus:after {
  transform: translateY(-12px);
}

/* Left */
.tooltip-left:before,
.tooltip-left:after {
  right: 100%;
  bottom: 50%;
  left: auto;
}

.tooltip-left:before {
  margin-left: 0;
  margin-right: -12px;
  margin-bottom: 0;
  border-top-color: transparent;
  border-left-color: #000;
  border-left-color: hsla(0, 0%, 20%, 0.9);
}

.tooltip-left:hover:before,
.tooltip-left:hover:after,
.tooltip-left:focus:before,
.tooltip-left:focus:after {
  transform: translateX(-12px);
}

/* Bottom */
.tooltip-bottom:before,
.tooltip-bottom:after {
  top: 100%;
  bottom: auto;
  left: 50%;
}

.tooltip-bottom:before {
  margin-top: -12px;
  margin-bottom: 0;
  border-top-color: transparent;
  border-bottom-color: #000;
  border-bottom-color: hsla(0, 0%, 20%, 0.9);
}

.tooltip-bottom:hover:before,
.tooltip-bottom:hover:after,
.tooltip-bottom:focus:before,
.tooltip-bottom:focus:after {
  transform: translateY(12px);
}

/* Right */
.tooltip-right:before,
.tooltip-right:after {
  bottom: 50%;
  left: 100%;
}

.tooltip-right:before {
  margin-bottom: 0;
  margin-left: -12px;
  border-top-color: transparent;
  border-right-color: #000;
  border-right-color: hsla(0, 0%, 20%, 0.9);
}

.tooltip-right:hover:before,
.tooltip-right:hover:after,
.tooltip-right:focus:before,
.tooltip-right:focus:after {
  transform: translateX(12px);
}

/* Move directional arrows down a bit for left/right tooltips */
.tooltip-left:before,
.tooltip-right:before {
  top: 3px;
}

/* Vertically center tooltip content for left/right tooltips */
.tooltip-left:after,
.tooltip-right:after {
  margin-left: 0;
  margin-bottom: -16px;
}

/**************************************
 *  BASE RULES
 *  Variables, Reset, General Library
 *************************************/
/*****************************************************************************\
 *      LAYOUT FRAMEWORK
 *      REPONSIVE 3.1
 *      
 *      Usage Examples
 *      <div class="grid-sys padded">
 *          <div class="_12u _6u-tablet _4u-normal">Content 1</div>
 *          <div class="_12u _6u-tablet _8u-normal">Content 2</div>
 *      </div>
 *      Place mobile breakpoints first, followed by the breakpoints
 *      needed for larger screens
 *      
 *      place important or important-{breakpoint} at the end of the
 *      classes to change the order of the content in the html flow
\*****************************************************************************/
/*****************************************************************************\
 *      SKEL CONVERSION INSTRUCTIONS
 *      
 *      1) @import 'responsive';
 *      2) delete @import "libs/skell"
 *      3) convert @include skel-layout to @include xeno-layout
 *      4) @include xeno-layout adjustments
 *          a) delete grid: ...
 *          b) conditionals: ...
 *          c) first containers is 'mobile first'
 *          d) every breakpoint container should be defined
 *      5) remove all @include vendor mixins; autoprefixer will do its magic
 *      6) @include breakpoint -> @include skel_breakpoint 
\*****************************************************************************/
.number-box {
  text-align: center;
  padding: 20px 20px 0 20px;
  margin: 0.9375em 0;
  background: #fff;
  border-radius: 3px;
}
.number-box h3 {
  color: #111111;
  font-size: 1.25em;
  font-weight: 400;
}
.number-box p {
  color: #807f7f;
  font-size: 0.875em;
  font-weight: 400;
  margin-top: 0.9375em;
  line-height: 1.5;
}
@media only screen and (min-width: 768px) {
  .number-box {
    padding: 20px;
  }
}

.number-box-line {
  border-bottom: 1px dashed #dedede;
  width: 100%;
  margin: 20px auto;
}
.number-box-line:before {
  content: "";
  display: block;
  margin: auto auto -7.5px;
  height: 15px;
  width: 15px;
  border: 2px solid #2a54b3;
  background: #fff;
  border-radius: 50%;
}

/**************************************
 *  BASE RULES
 *  Variables, Reset, General Library
 *************************************/
/*****************************************************************************\
 *      LAYOUT FRAMEWORK
 *      REPONSIVE 3.1
 *      
 *      Usage Examples
 *      <div class="grid-sys padded">
 *          <div class="_12u _6u-tablet _4u-normal">Content 1</div>
 *          <div class="_12u _6u-tablet _8u-normal">Content 2</div>
 *      </div>
 *      Place mobile breakpoints first, followed by the breakpoints
 *      needed for larger screens
 *      
 *      place important or important-{breakpoint} at the end of the
 *      classes to change the order of the content in the html flow
\*****************************************************************************/
/*****************************************************************************\
 *      SKEL CONVERSION INSTRUCTIONS
 *      
 *      1) @import 'responsive';
 *      2) delete @import "libs/skell"
 *      3) convert @include skel-layout to @include xeno-layout
 *      4) @include xeno-layout adjustments
 *          a) delete grid: ...
 *          b) conditionals: ...
 *          c) first containers is 'mobile first'
 *          d) every breakpoint container should be defined
 *      5) remove all @include vendor mixins; autoprefixer will do its magic
 *      6) @include breakpoint -> @include skel_breakpoint 
\*****************************************************************************/
.scroll-to-top {
  display: none;
}

@media only screen and (min-width: 768px) {
  .scroll-to-top {
    display: block;
    font-size: 20px;
    padding: 8px;
    text-align: center;
    color: #fff;
    text-decoration: none;
    position: fixed;
    bottom: 2em;
    right: 2em;
    border-radius: 50%;
    background: #333;
    width: 2em;
    height: 2em;
    z-index: 9999;
    outline: 0;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  .scroll-to-top:hover {
    background: #2a54b3;
  }
}
/**************************************
 *  BASE RULES
 *  Variables, Reset, General Library
 *************************************/
/*****************************************************************************\
 *      LAYOUT FRAMEWORK
 *      REPONSIVE 3.1
 *      
 *      Usage Examples
 *      <div class="grid-sys padded">
 *          <div class="_12u _6u-tablet _4u-normal">Content 1</div>
 *          <div class="_12u _6u-tablet _8u-normal">Content 2</div>
 *      </div>
 *      Place mobile breakpoints first, followed by the breakpoints
 *      needed for larger screens
 *      
 *      place important or important-{breakpoint} at the end of the
 *      classes to change the order of the content in the html flow
\*****************************************************************************/
/*****************************************************************************\
 *      SKEL CONVERSION INSTRUCTIONS
 *      
 *      1) @import 'responsive';
 *      2) delete @import "libs/skell"
 *      3) convert @include skel-layout to @include xeno-layout
 *      4) @include xeno-layout adjustments
 *          a) delete grid: ...
 *          b) conditionals: ...
 *          c) first containers is 'mobile first'
 *          d) every breakpoint container should be defined
 *      5) remove all @include vendor mixins; autoprefixer will do its magic
 *      6) @include breakpoint -> @include skel_breakpoint 
\*****************************************************************************/
.section-heading, .page-heading {
  text-align: center;
}
.section-heading span, .page-heading span {
  font-size: 0.9375em;
  font-weight: 500;
  color: #2a54b3;
  line-height: 200%;
  margin-bottom: 10px;
}
.section-heading h2, .page-heading h2,
.section-heading h3,
.page-heading h3 {
  position: relative;
  font-weight: 400;
  line-height: 140%;
}
.section-heading h2, .page-heading h2 {
  font-size: 1.5em;
  color: #1b2150;
  margin-bottom: 10px;
}
@media only screen and (min-width: 768px) {
  .section-heading h2, .page-heading h2 {
    font-size: 2.0625em;
  }
}
@media only screen and (min-width: 980px) {
  .section-heading h2, .page-heading h2 {
    font-size: 2.625em;
  }
}
.section-heading .section-heading-line, .page-heading .section-heading-line, .page-heading .page-heading-line,
.section-heading .section-heading-line-left,
.page-heading .section-heading-line-left {
  content: "";
  display: block;
  width: 150px;
  height: 11px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Crect x='1.8' y='1.8' width='6.4' height='6.4' transform='rotate(45 5 5)' fill='%23f2b632'/%3E%3C/svg%3E") center center/11px 11px no-repeat, linear-gradient(#2a54b3, #2a54b3) left center/58px 2px no-repeat, linear-gradient(#2a54b3, #2a54b3) right center/58px 2px no-repeat;
}
.section-heading .section-heading-line, .page-heading .section-heading-line, .page-heading .page-heading-line {
  margin: 0.9375em auto 5px;
}
.section-heading p, .page-heading p {
  max-width: 438px;
  font-size: 0.9375em;
  font-weight: 400;
  color: #807f7f;
  line-height: 160%;
  padding-top: 0.9375em;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
}
.section-heading p.event-meta, .page-heading p.event-meta {
  font-family: "roboto-slab", "Rockwell", "Georgia", serif;
  font-size: 1.35em;
  font-weight: 600;
  color: #1b2150;
  max-width: none;
  line-height: 150%;
}

.page-heading p {
  font-size: 1.5em;
  padding-top: 0;
}

/**************************************
 *  BASE RULES
 *  Variables, Reset, General Library
 *************************************/
/*****************************************************************************\
 *      LAYOUT FRAMEWORK
 *      REPONSIVE 3.1
 *      
 *      Usage Examples
 *      <div class="grid-sys padded">
 *          <div class="_12u _6u-tablet _4u-normal">Content 1</div>
 *          <div class="_12u _6u-tablet _8u-normal">Content 2</div>
 *      </div>
 *      Place mobile breakpoints first, followed by the breakpoints
 *      needed for larger screens
 *      
 *      place important or important-{breakpoint} at the end of the
 *      classes to change the order of the content in the html flow
\*****************************************************************************/
/*****************************************************************************\
 *      SKEL CONVERSION INSTRUCTIONS
 *      
 *      1) @import 'responsive';
 *      2) delete @import "libs/skell"
 *      3) convert @include skel-layout to @include xeno-layout
 *      4) @include xeno-layout adjustments
 *          a) delete grid: ...
 *          b) conditionals: ...
 *          c) first containers is 'mobile first'
 *          d) every breakpoint container should be defined
 *      5) remove all @include vendor mixins; autoprefixer will do its magic
 *      6) @include breakpoint -> @include skel_breakpoint 
\*****************************************************************************/
.article-simple {
  position: relative;
  background: #fff;
  height: 100%;
  border: 1px solid #ececec;
  border-radius: 5px;
  padding-bottom: 5em;
  box-shadow: 0 0.5em 1em 0 rgba(50, 50, 50, 0.16);
}
.article-simple .article-simple-inner {
  position: relative;
  padding: 25px 25px 20px;
}
.article-simple .article-simple-inner:after {
  content: "";
  display: block;
  height: 1px;
  clear: both;
}
.article-simple .article-simple-inner h3 {
  font-size: 20px;
  color: #111;
  font-weight: 500;
}
.article-simple .article-simple-inner h3.plain-header + strong {
  display: block;
  margin-bottom: 10px;
}
.article-simple .article-simple-inner h3:not(.plain-header) {
  margin-left: 22px;
  text-indent: -22px;
  margin-bottom: 10px;
}
.article-simple .article-simple-inner h3:not(.plain-header):before {
  content: "●";
  color: #2a54b3;
  margin-right: 10px;
}
.article-simple .article-simple-inner img {
  float: left;
  margin: 0 1em 1em 0;
}
@media only screen and (min-width: 320px) and (orientation: portrait) {
  .article-simple .article-simple-inner img {
    display: block;
    float: unset;
    margin: 0 auto 1em auto;
  }
}
.article-simple .article-simple-inner .taller {
  max-height: 7em;
}
.article-simple .article-simple-inner .wider {
  max-width: 7em;
}
@media only screen and (min-width: 980px) {
  .article-simple .article-simple-inner .taller {
    max-height: 10em;
  }
  .article-simple .article-simple-inner .wider {
    max-width: 10em;
  }
}
.article-simple .article-simple-inner p {
  font-size: 15px;
  color: #807f7f;
  line-height: 1.7;
  margin-bottom: 0;
}
.article-simple .article-simple-inner p ul {
  font-size: 0.9em;
}
.article-simple .article-simple-inner ul {
  padding-left: 1.2em;
}
.article-simple .article-simple-inner ul.comp {
  margin: 0 0 0.25em 2.5em;
  font-size: 0.7em;
}
.article-simple .article-simple-inner ul.dash {
  padding-left: 1em;
}
.article-simple .article-button-place {
  height: 5.1875em;
  width: 100%;
  position: absolute;
  bottom: 0;
  padding: 0 25px 20px 25px;
  text-align: center;
}
.article-simple .article-button-place .article-simple-button a {
  display: inline-block;
  background: #111;
  color: #fff;
  border-radius: 5px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  width: 100%;
  margin: 0 2px;
  padding: 15px 20px;
  transition: all 0.4s ease;
}
.article-simple .article-button-place .article-simple-button a:hover {
  background: #2a54b3;
}
.article-simple .article-button-place .article-simple-img-btn {
  display: inline-block;
  margin-top: 0.5em;
  padding-right: 0.75em;
}
.article-simple .article-button-place .article-simple-img-btn img {
  width: auto;
  max-height: 1.85em;
}
.article-simple .article-button-place .article-simple-img-btn:last-of-type {
  padding-right: 0;
}
@media only screen and (min-width: 375px) {
  .article-simple .article-button-place .article-simple-img-btn img {
    max-height: 2.2em;
  }
}
@media only screen and (min-width: 768px) {
  .article-simple .article-button-place .article-simple-img-btn {
    margin-top: 1em;
    padding-right: 1em;
  }
  .article-simple .article-button-place .article-simple-img-btn img {
    max-height: 2.5em;
  }
}

/**************************************
 *  BASE RULES
 *  Variables, Reset, General Library
 *************************************/
.accordion {
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  margin: 0 0 0.25em 0;
}
.accordion .accordion-heading {
  padding: 0;
}
.accordion .accordion-heading .accordion-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1em;
  color: inherit;
}
.accordion .accordion-heading .accordion-title label {
  font-family: "roboto-slab", "Rockwell", "Georgia", serif;
  font-size: 0.9375em;
  font-weight: 600;
  color: #1b2150;
  line-height: 1;
  display: block;
  padding: 1.25em 0.9375em 1.5625em 0.9375em;
  border-radius: 5px;
  background-color: rgba(27, 33, 80, 0.06);
  border-left: 3px solid #f2b632;
  cursor: pointer;
}
.accordion .accordion-heading .accordion-title label span {
  font-size: 1.125em;
  color: #2a54b3;
  float: right;
  transition-duration: 0.5s;
}
.accordion .accordion-heading .accordion-title label span.close {
  color: #d21e2b;
  transform: rotate(45deg);
  transition-duration: 0.5s;
}
.accordion .accordion-body {
  font-size: 0.9375em;
  font-weight: 400;
  color: #807f7f;
  line-height: 170%;
  text-align: left;
  padding: 1.125em 1em 1.875em 1em;
}

.collapse {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease;
  transition-delay: 0s;
}

.hidden:checked ~ .collapse {
  max-height: 1000px;
  transition: max-height 1s ease;
  transition-delay: 0.5s;
}
.hidden:checked ~ .accordion-heading .accordion-title label span {
  color: #d21e2b !important;
  transform: rotate(45deg) !important;
  transition-duration: 0.5s;
}

.quote {
  position: relative;
  background: #fff;
  border-radius: 5px;
  padding: 1em 2em;
  border: 1px solid #ececec;
  margin: 1em 0;
  box-shadow: 0 0.3em 1em 0 rgba(50, 50, 50, 0.16);
}
.quote p:before {
  content: "";
  display: inline-block;
  width: 1.1rem;
  height: 0.9rem;
  background-image: url(/images/qm.svg);
  background-size: auto 0.9rem;
  background-position: 0 0;
  background-repeat: no-repeat;
  margin-right: 0.35rem;
}
.quote p span {
  margin: 0 0 0.25rem 0;
  opacity: 1;
  display: block;
  font-size: 0.8rem;
  line-height: 1.1rem;
}
.quote p span:before {
  content: "~";
  margin-right: 0.35rem;
  font-size: 0.8rem;
}

/**************************************
 *  BASE RULES
 *  Variables, Reset, General Library
 *************************************/
/*****************************************************************************\
 *      LAYOUT FRAMEWORK
 *      REPONSIVE 3.1
 *      
 *      Usage Examples
 *      <div class="grid-sys padded">
 *          <div class="_12u _6u-tablet _4u-normal">Content 1</div>
 *          <div class="_12u _6u-tablet _8u-normal">Content 2</div>
 *      </div>
 *      Place mobile breakpoints first, followed by the breakpoints
 *      needed for larger screens
 *      
 *      place important or important-{breakpoint} at the end of the
 *      classes to change the order of the content in the html flow
\*****************************************************************************/
/*****************************************************************************\
 *      SKEL CONVERSION INSTRUCTIONS
 *      
 *      1) @import 'responsive';
 *      2) delete @import "libs/skell"
 *      3) convert @include skel-layout to @include xeno-layout
 *      4) @include xeno-layout adjustments
 *          a) delete grid: ...
 *          b) conditionals: ...
 *          c) first containers is 'mobile first'
 *          d) every breakpoint container should be defined
 *      5) remove all @include vendor mixins; autoprefixer will do its magic
 *      6) @include breakpoint -> @include skel_breakpoint 
\*****************************************************************************/
.reponsive_table {
  width: calc(100% - 2em);
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 0.5em;
  margin: 0 1em 0 1em;
  box-shadow: 0 0.3em 1em 0 rgba(50, 50, 50, 0.16);
}
.reponsive_table .td {
  vertical-align: top;
  padding: 0.25em 0.75em;
  text-align: left;
  font-weight: 300;
  display: inline-flex;
  width: 100%;
}
.reponsive_table .td:before {
  content: attr(data-th);
  min-width: 6em;
  padding-right: 0.5em;
}
.reponsive_table .td:nth-child(3):empty {
  display: none;
}
.reponsive_table .td strong,
.reponsive_table .td span,
.reponsive_table .td a {
  display: inline;
  display: -mox-initial;
  display: initial;
}
.reponsive_table .td b,
.reponsive_table .td strong {
  font-weight: 500;
}
.reponsive_table .td .hotel_info {
  float: right;
  text-decoration: underline;
}
.reponsive_table .th {
  text-align: center;
  display: none;
}
.reponsive_table:first-of-type {
  margin: 2em 1em 0 1em;
}
.reponsive_table:first-of-type .thead .tr .th:first-of-type {
  border-top-left-radius: 0.5em;
}
.reponsive_table:first-of-type .thead .tr .th:last-of-type {
  border-top-right-radius: 0.5em;
}
.reponsive_table:first-of-type .tbody .tr:first-of-type {
  border-top-left-radius: 0.5em;
  border-top-right-radius: 0.5em;
}
.reponsive_table .thead .tr {
  background-color: #2a54b3;
  color: #ffffff;
}
.reponsive_table .thead .tr .th {
  font-weight: 500;
  padding: 0.75em;
}
.reponsive_table:last-of-type {
  margin: 0 1em 1em 1em;
}
.reponsive_table:last-of-type .tr:last-of-type {
  border-bottom-left-radius: 0.5em;
  border-bottom-right-radius: 0.5em;
}
.reponsive_table:last-of-type .tr:last-of-type .td:first-of-type {
  border-bottom-left-radius: 0.5em;
}
.reponsive_table:last-of-type .tr:last-of-type .td:last-of-type {
  border-bottom-right-radius: 0.5em;
}
.reponsive_table .tbody .tr:nth-child(even) {
  background-color: rgba(128, 127, 127, 0.3);
}
.reponsive_table .tbody .tr:nth-child(odd) {
  background-color: rgba(217, 217, 217, 0.3);
}
@media only screen and (min-width: 768px) {
  .reponsive_table {
    display: table;
  }
  .reponsive_table .thead {
    display: table-header-group;
  }
  .reponsive_table .tbody {
    display: table-row-group;
  }
  .reponsive_table .tbody .tr:first-of-type .td:first-of-type {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .reponsive_table .tr {
    display: table-row;
  }
  .reponsive_table .th {
    display: table-cell;
  }
  .reponsive_table .td {
    display: table-cell;
    width: auto;
    text-align: left;
  }
  .reponsive_table .td:nth-child(1), .reponsive_table .td:nth-child(3), .reponsive_table .td:nth-child(4) {
    text-align: center;
  }
  .reponsive_table .td:nth-child(3):empty {
    display: table-cell;
    background-color: #2a54b3;
  }
  .reponsive_table .td:before {
    display: none;
  }
}
.reponsive_table.conf-table {
  display: table;
}
.reponsive_table.conf-table:first-of-type {
  margin-top: 0;
}
.reponsive_table.conf-table .thead {
  display: table-header-group;
}
.reponsive_table.conf-table .tbody {
  display: table-row-group;
}
.reponsive_table.conf-table .tr {
  display: table-row;
}
.reponsive_table.conf-table .th {
  display: table-cell;
}
.reponsive_table.conf-table .th:empty {
  display: table-cell;
}
.reponsive_table.conf-table .td {
  display: table-cell;
  width: auto;
}
.reponsive_table.conf-table .td:nth-child(1) {
  text-align: right;
  font-weight: bold;
}
.reponsive_table.conf-table .td:nth-child(2), .reponsive_table.conf-table .td:nth-child(3), .reponsive_table.conf-table .td:nth-child(4) {
  text-align: center;
}
.reponsive_table.conf-table .td:before {
  display: none;
}
.reponsive_table.missions-table {
  display: table;
}
.reponsive_table.missions-table .thead {
  display: table-header-group;
}
.reponsive_table.missions-table .tbody {
  display: table-row-group;
}
.reponsive_table.missions-table .tbody .tr:first-of-type .td:first-of-type {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.reponsive_table.missions-table .tbody .td:first-of-type {
  text-align: left;
}
.reponsive_table.missions-table .tbody .tr {
  background-color: rgba(217, 217, 217, 0.3);
}
.reponsive_table.missions-table .tbody .tr.darker {
  background-color: rgba(128, 127, 127, 0.3);
}
.reponsive_table.missions-table .tr {
  display: table-row;
}
.reponsive_table.missions-table .th {
  display: table-cell;
}
.reponsive_table.missions-table .td {
  display: table-cell;
  width: auto;
  text-align: left;
}
.reponsive_table.missions-table .td:nth-child(1), .reponsive_table.missions-table .td:nth-child(3), .reponsive_table.missions-table .td:nth-child(4) {
  text-align: center;
}
.reponsive_table.missions-table .td:nth-child(3):empty {
  display: table-cell;
  background-color: #2a54b3;
}
.reponsive_table.missions-table .td:before {
  display: none;
}

/**************************************
 *  BASE RULES
 *  Variables, Reset, General Library
 *************************************/
/*
 * Simple semantic-table styling (real <table> markup, e.g. the Universal
 * ticket pricing on nationals/universal.php). Navy header, zebra rows,
 * FCT price column emphasized.
 */
.table-wrapper {
  overflow-x: auto;
  margin: 1.5em 0;
}

table.responsive-table {
  width: 100%;
  max-width: 44em;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0.3em 1em 0 rgba(50, 50, 50, 0.16);
}
table.responsive-table th,
table.responsive-table td {
  padding: 0.8em 1.4em;
  text-align: left;
}
table.responsive-table th:not(:first-child),
table.responsive-table td:not(:first-child) {
  text-align: right;
  font-variant-numeric: tabular-nums;
}
table.responsive-table thead th {
  background: #1b2150;
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 0.04em;
}
table.responsive-table tbody tr:nth-child(odd) {
  background: rgba(217, 217, 217, 0.3);
}
table.responsive-table tbody tr:nth-child(even) {
  background: #ffffff;
}
table.responsive-table tbody td:nth-child(2) {
  color: #807f7f;
  text-decoration: line-through;
}
table.responsive-table tbody td:last-child {
  font-family: "roboto-slab", "Rockwell", "Georgia", serif;
  color: #1b2150;
  font-weight: 700;
}

/**************************************
 *  BASE RULES
 *  Variables, Reset, General Library
 *************************************/
ul.stars {
  list-style-type: none;
}
ul.stars li {
  margin-left: 2em;
  padding-left: 0;
}
ul.stars li:before {
  content: "***";
  display: inline-block;
  width: 2em;
  margin-left: -2em;
  color: #d21e2b;
}

.cContainer {
  background-color: #f9f9f9;
  border: 1px solid #d4d4d4;
  padding: 15px 30px 15px 30px;
  position: relative;
  display: inline-block;
}
.cContainer:after {
  content: "";
  height: 0px;
  clear: both;
  display: block;
}

.cWrapper {
  position: relative;
  line-height: 0;
  float: left;
  width: 24px;
}

.cLabel {
  font-family: "Trebuchet MS", sans-serif;
  font-weight: 700;
  color: #4a4a4a;
  padding: 2px 0 0 10px;
  position: relative;
  display: block;
  float: left;
  height: 24px;
  line-height: 1.25;
  text-shadow: none;
  margin-bottom: 0 !important;
}

.cBox {
  width: 24px;
  height: 24px;
  padding: 0;
  outline: none;
  border: 2px solid #b9b9b9;
  border-radius: 2px;
  z-index: 100000;
}

.boxHover {
  background-color: #fff;
}

.boxHover:hover {
  cursor: pointer !important;
  border: 2px solid #1e88e5 !important;
}

.scaleDown {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
  transform: scale(0.2, 0.2);
}

.circle {
  border-top: 2px solid #1e88e5;
  border-right-color: transparent;
  border-bottom: 2px solid #1e88e5;
  border-left-color: transparent;
  border-radius: 12px;
  background-color: #fafafa;
}

.check {
  position: relative;
  border: none !important;
}
.check:after {
  position: absolute;
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M470.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L192 338.7 425.4 105.4c12.5-12.5 32.8-12.5 45.3 0z' fill='%23039F53' /%3E%3C/svg%3E");
  width: 24px;
  height: 24px;
  top: 0;
  left: 0;
  -webkit-transition: all 0.7s;
  -moz-transition: all 0.7s;
  -ms-transition: all 0.7s;
  transition: all 0.7s;
}

.scaleUp {
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  transition: all 0.6s ease;
  transform: scale(1, 1);
}

.rotation {
  -webkit-transition: all 2s ease-out;
  -moz-transition: all 2s ease-out;
  -ms-transition: all 2s ease-out;
  transition: all 2s ease-out;
  transform: rotate(1080deg);
}

.fadeOut {
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  transition: all 0.6s ease;
  border-color: transparent;
}

/**************************************
 *  BASE RULES
 *  Variables, Reset, General Library
 *************************************/
/*
 * Pricing blocks styled as admission-ticket stubs: slab display type,
 * a dashed "tear here" perforation under the ticket name, navy/gold
 * accents. Used on nationals/pricing.php.
 */
.price-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5em;
  justify-content: center;
  margin: 1.5em 0;
}
.price-cards .price-card {
  flex: 1 1 16em;
  max-width: 20em;
  border: 1px solid rgba(27, 33, 80, 0.25);
  border-top: 5px solid #1b2150;
  border-radius: 8px;
  background: #fffdf6;
  padding: 1.5em;
  text-align: center;
}
.price-cards .price-card h4 {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.95em;
}
.price-cards .price-card h4:after {
  content: "";
  display: block;
  margin: 0.9em -1.5em 0;
  border-bottom: 2px dashed rgba(27, 33, 80, 0.3);
}
.price-cards .price-card .price {
  font-family: "roboto-slab", "Rockwell", "Georgia", serif;
  font-weight: 700;
  font-size: 2.6em;
  color: #1b2150;
  display: block;
  margin: 0.25em 0 0.1em;
}
.price-cards .price-card .price-unit {
  color: #807f7f;
  font-size: 0.9em;
}
.price-cards .price-card.accent {
  border-top-color: #f2b632;
}
.price-cards .price-card.accent .price {
  color: #1d84c4;
}

.includes-cols {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5em;
  margin: 1.5em 0;
}
.includes-cols > div {
  flex: 1 1 18em;
  border-radius: 8px;
  padding: 1.25em 1.5em;
}
.includes-cols > div h4 {
  margin-top: 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.95em;
}
.includes-cols > div ul {
  margin: 0.75em 0 0;
  padding-left: 1.25em;
}
.includes-cols > div ul li {
  margin-bottom: 0.4em;
}
.includes-cols .includes {
  background: rgba(42, 84, 179, 0.07);
  border: 1px solid rgba(42, 84, 179, 0.25);
}
.includes-cols .not-includes {
  background: rgba(128, 127, 127, 0.07);
  border: 1px solid #d9d9d9;
}

.early-bird {
  background: rgba(242, 182, 50, 0.14);
  border-left: 4px solid #f2b632;
  border-radius: 0 8px 8px 0;
  padding: 1em 1.5em;
  margin: 1.5em 0;
}

/**************************************
 *  BASE RULES
 *  Variables, Reset, General Library
 *************************************/
/*
 * Registration "coming soon" panel styled as a backstage pass: navy card,
 * lanyard slot, gold dashed edge. Used on register.php.
 */
.coming-soon {
  position: relative;
  text-align: center;
  background: linear-gradient(180deg, #1b2150, #12163a);
  border-radius: 12px;
  outline: 2px dashed rgba(242, 182, 50, 0.6);
  outline-offset: -10px;
  padding: 3.2em 1.5em 2.5em;
  margin: 1.5em 0;
}
.coming-soon:before {
  content: "";
  position: absolute;
  top: 1.1em;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 9px;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.55);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.8), 0 1px 0 rgba(255, 255, 255, 0.12);
}
.coming-soon h3 {
  color: #f2b632;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0;
}
.coming-soon p {
  color: #eef1fb;
  max-width: 38em;
  margin-left: auto;
  margin-right: auto;
}
.coming-soon a {
  color: #f2b632;
}
.coming-soon a:visited {
  color: #f2b632;
}
.coming-soon a:hover, .coming-soon a:active {
  color: #f6c65b;
}

/**************************************
 *  STATE RULES
 *  Hidden, Animation, etc.
 *************************************/
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -300%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 300%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}

.fadeInUp {
  animation-name: fadeInUp;
}

.animated {
  animation-delay: 0.5s;
  animation-duration: 1.5s;
  animation-fill-mode: both;
}

.hidden {
  display: none;
}

/**************************************
 *  THEME RULES
 *  Atomic Components
 *************************************/
/**************************************
 *  BASE RULES
 *  Variables, Reset, General Library
 *************************************/
.red,
[data-color=red] {
  color: #d21e2b !important;
}

.black,
[data-color=black] {
  color: #000 !important;
}

[data-color="primary(standard)"] {
  color: #2a54b3 !important;
}

[data-color="primary(dark)"] {
  color: #031ba3 !important;
}

[data-color="primary(light)"] {
  color: #4f60c1 !important;
}

[data-color="secondary(standard)"] {
  color: #d9d9d9 !important;
}

[data-color="secondary(dark)"] {
  color: #807f7f !important;
}

[data-color="secondary(light)"] {
  color: #ffffff !important;
}

[data-color="tertiary(standard)"] {
  color: #37a9eb !important;
}

[data-color="tertiary(dark)"] {
  color: #807f7f !important;
}

[data-color="tertiary(light)"] {
  color: #ffffff !important;
}

.full-height {
  height: 100%;
}

.mt-25 {
  margin-top: 1.5625em;
}

.mt-20 {
  margin-top: 1.25em;
}

.center {
  text-align: center;
}

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

.mw-200 {
  max-width: 200px !important;
}
