@charset "UTF-8";
/**
 * The CSS for this project is organized according to the ITCSS methodology.
 * The principles of ITCSS organize file structure to guide specificity in a
 * downward flow, from wide-reaching to very specific.
 *
 * ITCSS ORGANIZATION:
 *
 * 1_Settings.......Variables that are public to the project
 *
 * 2_Tools..........Mixins and functions that are public to the project
 *
 * 3_Generic........High-level, far reaching styles. Ex: reset.scss, *, html, etc.
 *
 * 4_Elements.......Bare, unclassed HTML elements Ex: h1, p, etc.
 *
 * 5_Objects........Non-cosmetic design patterns. Ex: grid classes, sidebar classes, etc.
 *
 * 6_Components.....Small, cosmetic design patterns. Ex: buttons, icons
 *
 * 7_Modules........Complex, multi-element layouts. Ex: site-header, double-callout, etc.
 *
 * 8_Utilities......Classes with very specific purposes. They are useful for reuse but
 *                  specific and succinct in their implementation. Ex: cover, caps, etc.
 *
 * 9_Misc...........Use this to store miscellaneous stuff
 *
 *
 * CLASS NAMING CONVENTIONS:
 * Classes are implemented in a BEM (Block/Element/Modifier) structure, and prepended with
 * their ITCSS type. This means that `Objects` are prepended with `o-`, `modules` are prepended
 * with `m-`, etc.
 *
 * @link https://www.creativebloq.com/web-design/manage-large-css-projects-itcss-101517528
 *
 *
 */
/**
 * Breakpoint Sizes
 * for use in flexgrid and break() mixin
 *
 */
/**
 * Max width for .wrapper
 *
 */
/**
 * Max width for inner containers (.container and .container-fluid)
 *
 */
/********************
** Grid
********************/
.container-fluid {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto;
  -ms-flex-preferred-size: 91.66666667%;
  -webkit-flex-basis: 91.66666667%;
          flex-basis: 91.66666667%;
  max-width: 91.66666667%;
  padding-left: 8.33333333%; }

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

.row {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  -webkit-flex: 0 1 auto;
          flex: 0 1 auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap; }

.row-lg {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  -webkit-flex: 0 1 auto;
          flex: 0 1 auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap; }

.row.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
          flex-direction: row-reverse; }

.col.reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  -webkit-flex-direction: column-reverse;
          flex-direction: column-reverse; }

.col-xs,
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-offset-0,
.col-xs-offset-1,
.col-xs-offset-2,
.col-xs-offset-3,
.col-xs-offset-4,
.col-xs-offset-5,
.col-xs-offset-6,
.col-xs-offset-7,
.col-xs-offset-8,
.col-xs-offset-9,
.col-xs-offset-10,
.col-xs-offset-11,
.col-xs-offset-12 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  -webkit-flex: 0 0 auto;
          flex: 0 0 auto; }

.col-xs {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  -webkit-flex-grow: 1;
          flex-grow: 1;
  -ms-flex-preferred-size: 0;
  -webkit-flex-basis: 0;
          flex-basis: 0;
  max-width: 100%; }

.col-xs-1 {
  -ms-flex-preferred-size: 8.33333333%;
  -webkit-flex-basis: 8.33333333%;
          flex-basis: 8.33333333%;
  max-width: 8.33333333%; }

.col-xs-2 {
  -ms-flex-preferred-size: 16.66666667%;
  -webkit-flex-basis: 16.66666667%;
          flex-basis: 16.66666667%;
  max-width: 16.66666667%; }

.col-xs-3 {
  -ms-flex-preferred-size: 25%;
  -webkit-flex-basis: 25%;
          flex-basis: 25%;
  max-width: 25%; }

.col-xs-4 {
  -ms-flex-preferred-size: 33.33333333%;
  -webkit-flex-basis: 33.33333333%;
          flex-basis: 33.33333333%;
  max-width: 33.33333333%; }

.col-xs-5 {
  -ms-flex-preferred-size: 41.66666667%;
  -webkit-flex-basis: 41.66666667%;
          flex-basis: 41.66666667%;
  max-width: 41.66666667%; }

.col-xs-6 {
  -ms-flex-preferred-size: 50%;
  -webkit-flex-basis: 50%;
          flex-basis: 50%;
  max-width: 50%; }

.col-xs-7 {
  -ms-flex-preferred-size: 58.33333333%;
  -webkit-flex-basis: 58.33333333%;
          flex-basis: 58.33333333%;
  max-width: 58.33333333%; }

.col-xs-8 {
  -ms-flex-preferred-size: 66.66666667%;
  -webkit-flex-basis: 66.66666667%;
          flex-basis: 66.66666667%;
  max-width: 66.66666667%; }

.col-xs-9 {
  -ms-flex-preferred-size: 75%;
  -webkit-flex-basis: 75%;
          flex-basis: 75%;
  max-width: 75%; }

.col-xs-10 {
  -ms-flex-preferred-size: 83.33333333%;
  -webkit-flex-basis: 83.33333333%;
          flex-basis: 83.33333333%;
  max-width: 83.33333333%; }

.col-xs-11 {
  -ms-flex-preferred-size: 91.66666667%;
  -webkit-flex-basis: 91.66666667%;
          flex-basis: 91.66666667%;
  max-width: 91.66666667%; }

.col-xs-12 {
  -ms-flex-preferred-size: 100%;
  -webkit-flex-basis: 100%;
          flex-basis: 100%;
  max-width: 100%; }

.col-xs-offset-0 {
  margin-left: 0; }

.col-xs-offset-1 {
  margin-left: 8.33333333%; }

.col-xs-offset-2 {
  margin-left: 16.66666667%; }

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

.col-xs-offset-4 {
  margin-left: 33.33333333%; }

.col-xs-offset-5 {
  margin-left: 41.66666667%; }

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

.col-xs-offset-7 {
  margin-left: 58.33333333%; }

.col-xs-offset-8 {
  margin-left: 66.66666667%; }

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

.col-xs-offset-10 {
  margin-left: 83.33333333%; }

.col-xs-offset-11 {
  margin-left: 91.66666667%; }

.start-xs {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
  text-align: start; }

.center-xs {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  text-align: center; }

.end-xs {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
  text-align: end; }

.top-xs {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
          align-items: flex-start; }

.middle-xs {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
          align-items: center; }

.bottom-xs {
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
          align-items: flex-end; }

.around-xs {
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
          justify-content: space-around; }

.between-xs {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between; }

.first-xs {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  -webkit-order: -1;
          order: -1; }

.last-xs {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  -webkit-order: 1;
          order: 1; }

@media only screen and (min-width: 45em) {
  .container {
    width: 46rem; }
  .col-sm,
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12,
  .col-sm-offset-0,
  .col-sm-offset-1,
  .col-sm-offset-2,
  .col-sm-offset-3,
  .col-sm-offset-4,
  .col-sm-offset-5,
  .col-sm-offset-6,
  .col-sm-offset-7,
  .col-sm-offset-8,
  .col-sm-offset-9,
  .col-sm-offset-10,
  .col-sm-offset-11,
  .col-sm-offset-12 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    -webkit-flex: 0 0 auto;
            flex: 0 0 auto; }
  .col-sm {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    -webkit-flex-grow: 1;
            flex-grow: 1;
    -ms-flex-preferred-size: 0;
    -webkit-flex-basis: 0;
            flex-basis: 0;
    max-width: 100%; }
  .col-sm-1 {
    -ms-flex-preferred-size: 8.33333333%;
    -webkit-flex-basis: 8.33333333%;
            flex-basis: 8.33333333%;
    max-width: 8.33333333%; }
  .col-sm-2 {
    -ms-flex-preferred-size: 16.66666667%;
    -webkit-flex-basis: 16.66666667%;
            flex-basis: 16.66666667%;
    max-width: 16.66666667%; }
  .col-sm-3 {
    -ms-flex-preferred-size: 25%;
    -webkit-flex-basis: 25%;
            flex-basis: 25%;
    max-width: 25%; }
  .col-sm-4 {
    -ms-flex-preferred-size: 33.33333333%;
    -webkit-flex-basis: 33.33333333%;
            flex-basis: 33.33333333%;
    max-width: 33.33333333%; }
  .col-sm-5 {
    -ms-flex-preferred-size: 41.66666667%;
    -webkit-flex-basis: 41.66666667%;
            flex-basis: 41.66666667%;
    max-width: 41.66666667%; }
  .col-sm-6 {
    -ms-flex-preferred-size: 50%;
    -webkit-flex-basis: 50%;
            flex-basis: 50%;
    max-width: 50%; }
  .col-sm-7 {
    -ms-flex-preferred-size: 58.33333333%;
    -webkit-flex-basis: 58.33333333%;
            flex-basis: 58.33333333%;
    max-width: 58.33333333%; }
  .col-sm-8 {
    -ms-flex-preferred-size: 66.66666667%;
    -webkit-flex-basis: 66.66666667%;
            flex-basis: 66.66666667%;
    max-width: 66.66666667%; }
  .col-sm-9 {
    -ms-flex-preferred-size: 75%;
    -webkit-flex-basis: 75%;
            flex-basis: 75%;
    max-width: 75%; }
  .col-sm-10 {
    -ms-flex-preferred-size: 83.33333333%;
    -webkit-flex-basis: 83.33333333%;
            flex-basis: 83.33333333%;
    max-width: 83.33333333%; }
  .col-sm-11 {
    -ms-flex-preferred-size: 91.66666667%;
    -webkit-flex-basis: 91.66666667%;
            flex-basis: 91.66666667%;
    max-width: 91.66666667%; }
  .col-sm-12 {
    -ms-flex-preferred-size: 100%;
    -webkit-flex-basis: 100%;
            flex-basis: 100%;
    max-width: 100%; }
  .col-sm-offset-0 {
    margin-left: 0; }
  .col-sm-offset-1 {
    margin-left: 8.33333333%; }
  .col-sm-offset-2 {
    margin-left: 16.66666667%; }
  .col-sm-offset-3 {
    margin-left: 25%; }
  .col-sm-offset-4 {
    margin-left: 33.33333333%; }
  .col-sm-offset-5 {
    margin-left: 41.66666667%; }
  .col-sm-offset-6 {
    margin-left: 50%; }
  .col-sm-offset-7 {
    margin-left: 58.33333333%; }
  .col-sm-offset-8 {
    margin-left: 66.66666667%; }
  .col-sm-offset-9 {
    margin-left: 75%; }
  .col-sm-offset-10 {
    margin-left: 83.33333333%; }
  .col-sm-offset-11 {
    margin-left: 91.66666667%; }
  .start-sm {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
            justify-content: flex-start;
    text-align: start; }
  .center-sm {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
            justify-content: center;
    text-align: center; }
  .end-sm {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
            justify-content: flex-end;
    text-align: end; }
  .top-sm {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
            align-items: flex-start; }
  .middle-sm {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
            align-items: center; }
  .bottom-sm {
    -webkit-box-align: end;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
            align-items: flex-end; }
  .around-sm {
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
            justify-content: space-around; }
  .between-sm {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
            justify-content: space-between; }
  .first-sm {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    -webkit-order: -1;
            order: -1; }
  .last-sm {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    -webkit-order: 1;
            order: 1; } }

@media only screen and (min-width: 67.5em) {
  .container {
    width: 68.5rem; }
  .col-md,
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12,
  .col-md-offset-0,
  .col-md-offset-1,
  .col-md-offset-2,
  .col-md-offset-3,
  .col-md-offset-4,
  .col-md-offset-5,
  .col-md-offset-6,
  .col-md-offset-7,
  .col-md-offset-8,
  .col-md-offset-9,
  .col-md-offset-10,
  .col-md-offset-11,
  .col-md-offset-12 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    -webkit-flex: 0 0 auto;
            flex: 0 0 auto; }
  .col-md {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    -webkit-flex-grow: 1;
            flex-grow: 1;
    -ms-flex-preferred-size: 0;
    -webkit-flex-basis: 0;
            flex-basis: 0;
    max-width: 100%; }
  .col-md-1 {
    -ms-flex-preferred-size: 8.33333333%;
    -webkit-flex-basis: 8.33333333%;
            flex-basis: 8.33333333%;
    max-width: 8.33333333%; }
  .col-md-2 {
    -ms-flex-preferred-size: 16.66666667%;
    -webkit-flex-basis: 16.66666667%;
            flex-basis: 16.66666667%;
    max-width: 16.66666667%; }
  .col-md-3 {
    -ms-flex-preferred-size: 25%;
    -webkit-flex-basis: 25%;
            flex-basis: 25%;
    max-width: 25%; }
  .col-md-4 {
    -ms-flex-preferred-size: 33.33333333%;
    -webkit-flex-basis: 33.33333333%;
            flex-basis: 33.33333333%;
    max-width: 33.33333333%; }
  .col-md-5 {
    -ms-flex-preferred-size: 41.66666667%;
    -webkit-flex-basis: 41.66666667%;
            flex-basis: 41.66666667%;
    max-width: 41.66666667%; }
  .col-md-6 {
    -ms-flex-preferred-size: 50%;
    -webkit-flex-basis: 50%;
            flex-basis: 50%;
    max-width: 50%; }
  .col-md-7 {
    -ms-flex-preferred-size: 58.33333333%;
    -webkit-flex-basis: 58.33333333%;
            flex-basis: 58.33333333%;
    max-width: 58.33333333%; }
  .col-md-8 {
    -ms-flex-preferred-size: 66.66666667%;
    -webkit-flex-basis: 66.66666667%;
            flex-basis: 66.66666667%;
    max-width: 66.66666667%; }
  .col-md-9 {
    -ms-flex-preferred-size: 75%;
    -webkit-flex-basis: 75%;
            flex-basis: 75%;
    max-width: 75%; }
  .col-md-10 {
    -ms-flex-preferred-size: 83.33333333%;
    -webkit-flex-basis: 83.33333333%;
            flex-basis: 83.33333333%;
    max-width: 83.33333333%; }
  .col-md-11 {
    -ms-flex-preferred-size: 91.66666667%;
    -webkit-flex-basis: 91.66666667%;
            flex-basis: 91.66666667%;
    max-width: 91.66666667%; }
  .col-md-12 {
    -ms-flex-preferred-size: 100%;
    -webkit-flex-basis: 100%;
            flex-basis: 100%;
    max-width: 100%; }
  .col-md-offset-0 {
    margin-left: 0; }
  .col-md-offset-1 {
    margin-left: 8.33333333%; }
  .col-md-offset-2 {
    margin-left: 16.66666667%; }
  .col-md-offset-3 {
    margin-left: 25%; }
  .col-md-offset-4 {
    margin-left: 33.33333333%; }
  .col-md-offset-5 {
    margin-left: 41.66666667%; }
  .col-md-offset-6 {
    margin-left: 50%; }
  .col-md-offset-7 {
    margin-left: 58.33333333%; }
  .col-md-offset-8 {
    margin-left: 66.66666667%; }
  .col-md-offset-9 {
    margin-left: 75%; }
  .col-md-offset-10 {
    margin-left: 83.33333333%; }
  .col-md-offset-11 {
    margin-left: 91.66666667%; }
  .start-md {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
            justify-content: flex-start;
    text-align: start; }
  .center-md {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
            justify-content: center;
    text-align: center; }
  .end-md {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
            justify-content: flex-end;
    text-align: end; }
  .top-md {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
            align-items: flex-start; }
  .middle-md {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
            align-items: center; }
  .bottom-md {
    -webkit-box-align: end;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
            align-items: flex-end; }
  .around-md {
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
            justify-content: space-around; }
  .between-md {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
            justify-content: space-between; }
  .first-md {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    -webkit-order: -1;
            order: -1; }
  .last-md {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    -webkit-order: 1;
            order: 1; } }

@media only screen and (min-width: 76.25em) {
  .container {
    width: 76rem; }
  .col-lg,
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12,
  .col-lg-offset-0,
  .col-lg-offset-1,
  .col-lg-offset-2,
  .col-lg-offset-3,
  .col-lg-offset-4,
  .col-lg-offset-5,
  .col-lg-offset-6,
  .col-lg-offset-7,
  .col-lg-offset-8,
  .col-lg-offset-9,
  .col-lg-offset-10,
  .col-lg-offset-11,
  .col-lg-offset-12 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    -webkit-flex: 0 0 auto;
            flex: 0 0 auto; }
  .col-lg {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    -webkit-flex-grow: 1;
            flex-grow: 1;
    -ms-flex-preferred-size: 0;
    -webkit-flex-basis: 0;
            flex-basis: 0;
    max-width: 100%; }
  .col-lg-1 {
    -ms-flex-preferred-size: 8.33333333%;
    -webkit-flex-basis: 8.33333333%;
            flex-basis: 8.33333333%;
    max-width: 8.33333333%; }
  .col-lg-2 {
    -ms-flex-preferred-size: 16.66666667%;
    -webkit-flex-basis: 16.66666667%;
            flex-basis: 16.66666667%;
    max-width: 16.66666667%; }
  .col-lg-3 {
    -ms-flex-preferred-size: 25%;
    -webkit-flex-basis: 25%;
            flex-basis: 25%;
    max-width: 25%; }
  .col-lg-4 {
    -ms-flex-preferred-size: 33.33333333%;
    -webkit-flex-basis: 33.33333333%;
            flex-basis: 33.33333333%;
    max-width: 33.33333333%; }
  .col-lg-5 {
    -ms-flex-preferred-size: 41.66666667%;
    -webkit-flex-basis: 41.66666667%;
            flex-basis: 41.66666667%;
    max-width: 41.66666667%; }
  .col-lg-6 {
    -ms-flex-preferred-size: 50%;
    -webkit-flex-basis: 50%;
            flex-basis: 50%;
    max-width: 50%; }
  .col-lg-7 {
    -ms-flex-preferred-size: 58.33333333%;
    -webkit-flex-basis: 58.33333333%;
            flex-basis: 58.33333333%;
    max-width: 58.33333333%; }
  .col-lg-8 {
    -ms-flex-preferred-size: 66.66666667%;
    -webkit-flex-basis: 66.66666667%;
            flex-basis: 66.66666667%;
    max-width: 66.66666667%; }
  .col-lg-9 {
    -ms-flex-preferred-size: 75%;
    -webkit-flex-basis: 75%;
            flex-basis: 75%;
    max-width: 75%; }
  .col-lg-10 {
    -ms-flex-preferred-size: 83.33333333%;
    -webkit-flex-basis: 83.33333333%;
            flex-basis: 83.33333333%;
    max-width: 83.33333333%; }
  .col-lg-11 {
    -ms-flex-preferred-size: 91.66666667%;
    -webkit-flex-basis: 91.66666667%;
            flex-basis: 91.66666667%;
    max-width: 91.66666667%; }
  .col-lg-12 {
    -ms-flex-preferred-size: 100%;
    -webkit-flex-basis: 100%;
            flex-basis: 100%;
    max-width: 100%; }
  .col-lg-offset-0 {
    margin-left: 0; }
  .col-lg-offset-1 {
    margin-left: 8.33333333%; }
  .col-lg-offset-2 {
    margin-left: 16.66666667%; }
  .col-lg-offset-3 {
    margin-left: 25%; }
  .col-lg-offset-4 {
    margin-left: 33.33333333%; }
  .col-lg-offset-5 {
    margin-left: 41.66666667%; }
  .col-lg-offset-6 {
    margin-left: 50%; }
  .col-lg-offset-7 {
    margin-left: 58.33333333%; }
  .col-lg-offset-8 {
    margin-left: 66.66666667%; }
  .col-lg-offset-9 {
    margin-left: 75%; }
  .col-lg-offset-10 {
    margin-left: 83.33333333%; }
  .col-lg-offset-11 {
    margin-left: 91.66666667%; }
  .start-lg {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
            justify-content: flex-start;
    text-align: start; }
  .center-lg {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
            justify-content: center;
    text-align: center; }
  .end-lg {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
            justify-content: flex-end;
    text-align: end; }
  .top-lg {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
            align-items: flex-start; }
  .middle-lg {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
            align-items: center; }
  .bottom-lg {
    -webkit-box-align: end;
    -ms-flex-align: end;
    -webkit-align-items: flex-end;
            align-items: flex-end; }
  .around-lg {
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
            justify-content: space-around; }
  .between-lg {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
            justify-content: space-between; }
  .first-lg {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    -webkit-order: -1;
            order: -1; }
  .last-lg {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    -webkit-order: 1;
            order: 1; } }

/**
 * Font Face
 * @param {string} $name - Name for font-family
 * @param {string} $path - Relative path to files from output css sheet
 * @param {string} $weight [normal] - `font-weight`
 * @param {string} $style [normal] - 'font-style'
 * @param {string} $exts [eot woff2 woff ttf svg] - List of file extensions to include, sep with a space
 * @link https://gist.github.com/jonathantneal/d0460e5c2d5d7f9bc5e6
 * @example scss - Basic Usage Sass
 *   @include font-face { 'Circular', '../fonts/circular-book' }
 *   @include font-face { 'Circular', '../fonts/circular-bold', 600 }
 *   @include font-face { 'Circular', '../fonts/circular-book-italic', 400, italic }
 *
 */
/**
 * Font Sizes
 */
/**
 * Cover
 * 
 */
/**
 * Visually hidden mixin
 * Hides element visibily but allows access to screen readers
 * 
 */
/*
 * Create a new breakpoint. Use in conjunction with breakpoint variables.
 *
 * @param {various} $size  - Either string (900px) or map (min-height: 900px), or false
 * @param {string}  $media [only screen] - Media type
 *
 * @require {variable} default-breakpoint-attr
 *
 * @example scss - Basic Usage Sass
 *   div {
 *     font-size: 12px;
 *
 *     // Use a breakpoint variable
 *     @include break($medium) {
 *       font-size: 16px;
 *     }
 *
 *     // Use a px, em, or rem value
 *     @include break(1024px) {
 *       font-size: 16px;
 *     }
 *   }
 *
 *
 *   div {
 *     font-size: 16px;
 *
 *     // Use a map to include multiple breakpoint queries
 *     @include break((min-width: 1024px, min-height: 1031px)) {
 *       font-size: 10px;
 *     }
 *
 *     // Set $size to false to only query by media type
 *     @include break(false, print) {
 *       font-size: 10px;
 *     }
 *   }
 *
 *
 */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
picture {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
picture {
  display: block; }

body {
  line-height: 1; }

ol,
ul {
  list-style: none; }

blockquote,
q {
  quotes: none; }

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

table {
  border-collapse: collapse;
  border-spacing: 0; }

abbr {
  text-decoration: none; }

a[role="button"],
input[type="submit"],
input[type="reset"],
input[type="button"],
button {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  background: none;
  border: 0;
  color: inherit;
  cursor: default;
  font: inherit;
  line-height: normal;
  overflow: visible;
  display: inline-block;
  padding: 0;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-decoration: none; }
  a[role="button"]:hover,
  input[type="submit"]:hover,
  input[type="reset"]:hover,
  input[type="button"]:hover,
  button:hover {
    cursor: pointer; }

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; }

.center {
  display: table;
  height: 100%;
  width: 100%; }
  .center .vert-center {
    display: table-cell;
    height: 100%;
    vertical-align: middle; }

@font-face {
  font-family: "Geomanist";
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/geomanist-regular-webfont.woff2") format("woff2"), url("../fonts/geomanist-regular-webfont.woff") format("woff"), url("../fonts/geomanist-regular-webfont.ttf") format("truetype"); }

@font-face {
  font-family: "Geomanist";
  font-style: italic;
  font-weight: normal;
  src: url("../fonts/geomanist-regular-italic-webfont.woff2") format("woff2"), url("../fonts/geomanist-regular-italic-webfont.woff") format("woff"), url("../fonts/geomanist-regular-italic-webfont.ttf") format("truetype"); }

@font-face {
  font-family: "Geomanist";
  font-style: normal;
  font-weight: bold;
  src: url("../fonts/geomanist-bold-webfont.woff2") format("woff2"), url("../fonts/geomanist-bold-webfont.woff") format("woff"), url("../fonts/geomanist-bold-webfont.ttf") format("truetype"); }

@font-face {
  font-family: "Geomanist";
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/geomanist-black-webfont.woff2") format("woff2"), url("../fonts/geomanist-black-webfont.woff") format("woff"), url("../fonts/geomanist-black-webfont.ttf") format("truetype"); }

@font-face {
  font-family: "Geomanist";
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/geomanist-ultra-webfont.woff2") format("woff2"), url("../fonts/geomanist-ultra-webfont.woff") format("woff"), url("../fonts/geomanist-ultra-webfont.ttf") format("truetype"); }

@font-face {
  font-family: "Krona One";
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/kronaone-regular-webfont.woff2") format("woff2"), url("../fonts/kronaone-regular-webfont.woff") format("woff"); }

:root {
  font-size: 62.5%; }

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

html,
body {
  min-height: 100%; }
  html.is-locked,
  body.is-locked {
    overflow: hidden;
    position: relative; }

body {
  font-size: 1.8rem;
  font-family: "Geomanist", Arial, sans-serif;
  line-height: 1.6; }
  body.invert {
    background-color: #242426;
    color: #ffffff; }
    body.invert .page-module__accordion .accordion__toggle .heading--toggle {
      background: #ffffff; }
    body.invert .event-subscribe.modal--is-open:after {
      background: #242426; }
    body.invert .main svg {
      fill: #ffffff; }
    body.invert .main .btn--white svg {
      fill: #242426; }
    body.invert .main .btn--black {
      border: 1px solid #ffffff; }
    body.invert .c-wysiwyg-content a,
    body.invert .dark-blue {
      color: #6ce7fb; }
      body.invert .c-wysiwyg-content a:hover,
      body.invert .dark-blue:hover {
        color: #0C5F6E; }
  body:not(.u-keyboard-user) *:focus {
    outline: none; }
  body:not(.home) {
    padding-top: 13.6rem; }
    @media only screen and (min-width: 60.625em) {
      body:not(.home) {
        padding-top: 15rem; } }
  body.is-lock {
    overflow: hidden; }
  body a.skip-main {
    left: -999px;
    position: absolute;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: -999;
    color: #242426;
    font-weight: bold;
    background: #ffffff;
    padding: 1rem; }
  body a.skip-main:focus,
  body a.skip-main:active {
    left: auto;
    top: auto;
    height: auto;
    overflow: auto;
    z-index: 9999;
    font-size: inherit;
    width: auto; }
  body.admin-bar .site-header {
    margin-top: 32px; }
    @media screen and (max-width: 782px) {
      body.admin-bar .site-header {
        margin-top: 46px; } }
  body.admin-bar .nav-modal__inner {
    padding-top: 16.8rem; }
    @media screen and (max-width: 782px) {
      body.admin-bar .nav-modal__inner {
        padding-top: 18.2rem; } }

@media screen and (max-width: 600px) {
  #wpadminbar {
    position: fixed; } }

@media screen and (max-width: 782px) {
  #wpadminbar #wp-admin-bar-wpseo-menu {
    display: none; } }

.title--xl {
  font-size: 4.8rem;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase; }
  @media only screen and (min-width: 60.625em) {
    .title--xl {
      font-size: 5.8rem;
      line-height: 1; } }

.title--lg, .events-list__header span, .title--lg--lower, .title--lg--alt {
  font-size: 3rem;
  line-height: 1;
  font-weight: 900; }
  @media only screen and (min-width: 60.625em) {
    .title--lg, .events-list__header span, .title--lg--lower, .title--lg--alt {
      font-size: 4.8rem; } }

.title--lg, .events-list__header span {
  text-transform: uppercase; }
  .title--lg--alt {
    font-size: 3.6rem;
    text-transform: uppercase; }
    @media only screen and (min-width: 60.625em) {
      .title--lg--alt {
        font-size: 4.0rem; } }

.title--md {
  font-size: 2.4rem;
  line-height: 1.25;
  font-weight: 800; }
  @media only screen and (min-width: 60.625em) {
    .title--md {
      font-size: 3.6rem; } }

.title--sm, .c-wysiwyg-content h2 {
  font-size: 2.4rem;
  line-height: 1.33;
  font-weight: bold; }

.title--label, .c-wysiwyg-content h3 {
  font-size: 2rem;
  line-height: 1.25;
  font-weight: bold;
  text-transform: uppercase; }

.title--teaser, .c-wysiwyg-content h4 {
  font-size: 1.8rem;
  line-height: 1.111;
  font-weight: 800; }

.title--excerpt, .c-wysiwyg-content h5, .tgs-search-results .gsc-result-info {
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.33; }

.title--nav {
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
  font-weight: bold; }
  .title--nav a {
    color: #ffffff; }

.menu-item .btn-icon svg {
  fill: #ffffff;
  display: inline-block;
  height: 1.3rem;
  width: 1.6rem;
  margin-left: 1rem;
  position: relative;
  top: -0.1rem;
  -webkit-transition: margin-left 0.35s cubic-bezier(0.5, 0, 0.5, 1);
  transition: margin-left 0.35s cubic-bezier(0.5, 0, 0.5, 1); }

.menu-item:hover .btn-icon svg {
  margin-left: 1.4rem; }
  @media only screen and (min-width: 45em) {
    .menu-item:hover .btn-icon svg {
      margin-left: 1.8rem; } }

strong,
b {
  font-weight: bold; }

i,
em {
  font-style: italic; }

a {
  text-decoration: none;
  color: #3cc9e0;
  -webkit-transition: color 350ms ease-in-out;
  transition: color 350ms ease-in-out; }

button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; }

pre {
  padding: 3rem;
  background-color: #eeeeee;
  font-family: 'Hack', Menlo, monospace;
  font-size: 1.4rem;
  line-height: 1.4; }

.utility-caps {
  font-size: 1.6rem;
  line-height: 1;
  color: #ffffff;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  font-weight: bold; }

.utility-legal {
  font-size: 1.2rem;
  line-height: 1.3;
  color: #ffffff;
  font-weight: normal; }
  .utility-legal--link {
    text-decoration: underline;
    color: #ffffff; }

.utility-caption {
  font-size: 1.6rem;
  line-height: 1.3; }

.utility-label, .utility-label--lg, .utility-label--caps {
  font-size: 1.6rem;
  line-height: 1.3;
  color: #242426;
  font-weight: bold; }

.utility-label--lg {
  font-size: 2rem; }

.utility-label--caps {
  text-transform: uppercase; }

.utility-link {
  -webkit-transition: color 0.35s cubic-bezier(0.5, 0, 0.5, 1);
  transition: color 0.35s cubic-bezier(0.5, 0, 0.5, 1); }
  .utility-link:hover {
    color: #242426; }

.type-button {
  font-size: 1.2rem;
  line-height: 1;
  font-weight: bold;
  text-transform: uppercase; }
  @media only screen and (min-width: 45em) {
    .type-button {
      font-size: 1.4rem; } }

img,
video,
audio {
  display: block;
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d; }

.bars__title {
  padding-bottom: 0 !important; }
  .bars__title--lg {
    display: none; }
  @media only screen and (min-width: 76.25em) {
    .bars__title.bars__title--sm {
      display: none; }
    .bars__title.bars__title--lg {
      display: initial; } }

.bars__image {
  opacity: 0;
  width: 100%;
  -webkit-align-self: flex-end;
      -ms-flex-item-align: end;
          align-self: flex-end; }
  .bars__image-wrap {
    position: relative;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    margin-top: 1.5rem; }
    @media only screen and (min-width: 76.25em) {
      .bars__image-wrap {
        margin-top: 0;
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
            -ms-flex-order: 2;
                order: 2;
        padding-left: 0;
        max-width: 100%; } }
  .bars__image ~ .logo-bars {
    position: absolute;
    height: auto;
    width: 100%;
    bottom: 0;
    padding-left: 8.33333333%; }
    @media only screen and (min-width: 76.25em) {
      .bars__image ~ .logo-bars {
        padding-left: 0; } }
    .bars__image ~ .logo-bars .g-bar-one {
      -webkit-transform: translate(420px, 100%);
              transform: translate(420px, 100%); }
    .bars__image ~ .logo-bars .g-bar-two {
      -webkit-transform: translate(855px, 100%);
              transform: translate(855px, 100%); }
    .bars__image ~ .logo-bars .g-bar-three {
      -webkit-transform: translate(1292px, 100%);
              transform: translate(1292px, 100%); }
    .bars__image ~ .logo-bars .g-bar-four {
      -webkit-transform: translate(1728px, 100%);
              transform: translate(1728px, 100%); }
    .bars__image ~ .logo-bars .logo-bar {
      -webkit-transform: rotate(180deg);
              transform: rotate(180deg);
      fill: #ffffff; }

input {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  border: 0; }

.searchandfilter {
  position: relative;
  max-width: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none; }
  .searchandfilter ::-webkit-scrollbar {
    display: none;
    width: 0px;
    max-width: 0px;
    height: 0px;
    background: transparent; }
  .all-videos .searchandfilter .children {
    display: none; }
  .topics .searchandfilter .children {
    margin-left: 0; }
  .topics .searchandfilter .sf-level-0:not(:first-of-type) {
    margin-right: 0; }
    .topics .searchandfilter .sf-level-0:not(:first-of-type) > input,
    .topics .searchandfilter .sf-level-0:not(:first-of-type) > label {
      display: none; }
  .searchandfilter > ul {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row nowrap;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 0;
    margin-bottom: 0; }
    .searchandfilter > ul:before {
      content: "Filter By Topic";
      font-size: 1.4rem;
      line-height: 1;
      margin-top: 4px;
      margin-right: 1rem;
      color: #242426;
      text-transform: uppercase;
      font-weight: bold;
      font-family: 'Geomanist';
      white-space: nowrap; }
    .searchandfilter > ul li {
      width: 100%; }
      .searchandfilter > ul li ul {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-flow: row nowrap;
            -ms-flex-flow: row nowrap;
                flex-flow: row nowrap; }
        .searchandfilter > ul li ul li {
          width: auto;
          white-space: nowrap; }
  .searchandfilter .sf-level-0,
  .searchandfilter .sf-level-1 {
    display: inline-block;
    margin-right: 1rem;
    padding: 0; }
  .searchandfilter input {
    display: none; }
    .searchandfilter input:checked + label {
      color: #242426;
      font-weight: bold; }
  .searchandfilter label {
    font-size: 1.4rem;
    line-height: 1;
    color: #666666;
    text-transform: uppercase;
    font-weight: bold;
    font-family: 'Geomanist';
    cursor: pointer;
    -webkit-transition: color 0.35s cubic-bezier(0.5, 0, 0.5, 1);
    transition: color 0.35s cubic-bezier(0.5, 0, 0.5, 1); }
    .searchandfilter label:hover {
      color: #242426; }

.search-filter-results {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 4rem; }
  @media only screen and (min-width: 45em) {
    .search-filter-results {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-flow: row wrap;
          -ms-flex-flow: row wrap;
              flex-flow: row wrap; } }

.pagination {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 1rem; }
  @media only screen and (max-width: 45em) {
    .pagination .wp-pagenavi {
      -webkit-box-ordinal-group: 3;
      -webkit-order: 2;
          -ms-flex-order: 2;
              order: 2; } }
  @media only screen and (min-width: 45em) {
    .pagination {
      margin-top: 7rem; }
      .pagination:before {
        content: "";
        background: #aaaaaa;
        height: 1px;
        width: 100%;
        position: absolute;
        left: 0;
        bottom: 10.5rem; } }
  .pagination--bg-white {
    position: relative; }
    .pagination--bg-white .pagination__button {
      background: #242426; }
      .pagination--bg-white .pagination__button-arrow {
        fill: #ffffff; }
    .pagination--bg-white .wp-pagenavi a:hover {
      background: #242426;
      color: #ffffff; }
    .pagination--bg-white .wp-pagenavi span.current {
      background: #242426;
      color: #ffffff; }
  .pagination--bg-black {
    position: relative; }
    @media only screen and (min-width: 45em) {
      .pagination--bg-black:before {
        background: #666666; } }
    .pagination--bg-black .pagination__button {
      background: #ffffff; }
      .pagination--bg-black .pagination__button-arrow {
        fill: #242426; }
      .pagination--bg-black .pagination__button.disabled a,
      .pagination--bg-black .pagination__button.disabled span {
        color: #ffffff; }
    .pagination--bg-black .wp-pagenavi a,
    .pagination--bg-black .wp-pagenavi span {
      color: #aaaaaa; }
      .pagination--bg-black .wp-pagenavi a:hover,
      .pagination--bg-black .wp-pagenavi span:hover {
        background: #ffffff;
        color: #242426; }
    .pagination--bg-black .wp-pagenavi span.current {
      background: #ffffff;
      color: #242426; }
  .pagination__buttons {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end; }
  .pagination__button {
    position: relative; }
    .pagination__button.active:hover {
      cursor: pointer; }
      .pagination__button.active:hover .pagination__button-arrow {
        opacity: 1; }
      .pagination__button.active:hover .pagination__button-next {
        padding-left: 0; }
      .pagination__button.active:hover .pagination__button-prev {
        padding-right: 0; }
    @media only screen and (min-width: 45em) {
      .pagination__button.active .pagination__button-prev ~ .pagination__button-arrow {
        left: 20%; } }
    @media only screen and (min-width: 45em) {
      .pagination__button.active .pagination__button-next ~ .pagination__button-arrow {
        left: 80%; } }
    @media only screen and (min-width: 45em) {
      .pagination__button.active .pagination__button-arrow {
        right: 0;
        opacity: 0;
        -webkit-transition: all 0.35s cubic-bezier(0.5, 0, 0.5, 1);
        transition: all 0.35s cubic-bezier(0.5, 0, 0.5, 1); }
        .pagination__button.active .pagination__button-arrow svg {
          width: 15px;
          height: 15px; } }
    .pagination__button-arrow {
      position: absolute;
      left: 50%;
      top: 50%;
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%); }
    .pagination__button.disabled {
      background: #aaaaaa; }
      .pagination__button.disabled .pagination__button-arrow {
        fill: #666666; }
        @media only screen and (min-width: 45em) {
          .pagination__button.disabled .pagination__button-arrow {
            display: none; } }
    .pagination__button-link {
      -webkit-transition: all 0.35s cubic-bezier(0.5, 0, 0.5, 1);
      transition: all 0.35s cubic-bezier(0.5, 0, 0.5, 1);
      text-indent: -99999px; }
      @media only screen and (max-width: 45em) {
        .pagination__button-link {
          width: 30px;
          height: 30px; } }
      .pagination__button-link a {
        width: 100%;
        height: 100%;
        position: absolute;
        z-index: 10;
        color: #ffffff;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center; }
      .pagination__button-link.black a {
        color: #242426; }
      .pagination__button-link.white a {
        color: #ffffff; }
      @media only screen and (min-width: 45em) {
        .pagination__button-link {
          text-indent: 0; } }
    .pagination__button.nav-previous {
      margin-right: .25rem; }
      @media only screen and (min-width: 45em) {
        .pagination__button.nav-previous {
          margin-right: 1rem; } }
  .pagination .current {
    margin-right: 20px;
    font-weight: bold;
    position: relative; }
    .pagination .current:after {
      content: "";
      width: 100%;
      background: black;
      height: 2px;
      position: absolute;
      bottom: 0;
      left: 0; }

.wp-pagenavi .pages,
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  display: none; }

.wp-pagenavi a,
.wp-pagenavi span {
  border: none;
  font-weight: bold;
  color: #242426;
  padding: 3px 12px;
  -webkit-transition: all 0.35s cubic-bezier(0.5, 0, 0.5, 1);
  transition: all 0.35s cubic-bezier(0.5, 0, 0.5, 1); }
  .wp-pagenavi a:after,
  .wp-pagenavi span:after {
    display: none; }

.wp-pagenavi span.current {
  margin-right: .5rem; }

.container-editor h1 {
  font-size: 4rem;
  line-height: 5rem;
  margin-bottom: 1.5rem; }

.container-editor h2 {
  font-size: 3.5rem;
  line-height: 4.5rem;
  margin-bottom: 1.5rem; }

.container-editor h3 {
  font-size: 3rem;
  line-height: 4rem;
  margin-bottom: 1.5rem; }

.container-editor h4 {
  font-size: 2.5rem;
  line-height: 3.5rem;
  margin-bottom: 1.5rem; }

.container-editor h5 {
  font-size: 2rem;
  line-height: 3rem;
  margin-bottom: 1.5rem; }

.container-editor h6 {
  font-size: 1.5rem;
  line-height: 2.5rem;
  margin-bottom: 1.5rem; }

.container-editor p {
  margin-bottom: 1.5rem; }

.g-container {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  max-width: 144rem; }

.g-container-fluid {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 144rem;
  padding-right: 2rem;
  padding-left: 2rem; }

.g-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0,;
  -webkit-flex: 0, 1, auto;
      -ms-flex: 0, 1, auto;
          flex: 0, 1, auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-right: -1.5rem;
  margin-left: -1.5rem; }
  .g-row--normal {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row; }
  .g-row--reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse; }
  .g-row--start {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    text-align: start; }
  .g-row--center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center; }
  .g-row--end {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    text-align: end; }
  .g-row--top {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start; }
  .g-row--middle {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
  .g-row--bottom {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end; }
  .g-row--around {
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around; }
  .g-row--between {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between; }

.g-col {
  -webkit-box-flex: 0,;
  -webkit-flex: 0, 0, auto;
      -ms-flex: 0, 0, auto;
          flex: 0, 0, auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  width: 100%;
  -webkit-flex-basis: auto;
      -ms-flex-preferred-size: auto;
          flex-basis: auto; }

.g-col-1 {
  -webkit-box-flex: 0,;
  -webkit-flex: 0, 0, auto;
      -ms-flex: 0, 0, auto;
          flex: 0, 0, auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  -webkit-flex-basis: 8.33333%;
      -ms-flex-preferred-size: 8.33333%;
          flex-basis: 8.33333%;
  max-width: 8.33333%; }

.g-col--offset-1 {
  margin-left: 8.33333%; }

.g-col-2 {
  -webkit-box-flex: 0,;
  -webkit-flex: 0, 0, auto;
      -ms-flex: 0, 0, auto;
          flex: 0, 0, auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  -webkit-flex-basis: 16.66667%;
      -ms-flex-preferred-size: 16.66667%;
          flex-basis: 16.66667%;
  max-width: 16.66667%; }

.g-col--offset-2 {
  margin-left: 16.66667%; }

.g-col-3 {
  -webkit-box-flex: 0,;
  -webkit-flex: 0, 0, auto;
      -ms-flex: 0, 0, auto;
          flex: 0, 0, auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  -webkit-flex-basis: 25%;
      -ms-flex-preferred-size: 25%;
          flex-basis: 25%;
  max-width: 25%; }

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

.g-col-4 {
  -webkit-box-flex: 0,;
  -webkit-flex: 0, 0, auto;
      -ms-flex: 0, 0, auto;
          flex: 0, 0, auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  -webkit-flex-basis: 33.33333%;
      -ms-flex-preferred-size: 33.33333%;
          flex-basis: 33.33333%;
  max-width: 33.33333%; }

.g-col--offset-4 {
  margin-left: 33.33333%; }

.g-col-5 {
  -webkit-box-flex: 0,;
  -webkit-flex: 0, 0, auto;
      -ms-flex: 0, 0, auto;
          flex: 0, 0, auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  -webkit-flex-basis: 41.66667%;
      -ms-flex-preferred-size: 41.66667%;
          flex-basis: 41.66667%;
  max-width: 41.66667%; }

.g-col--offset-5 {
  margin-left: 41.66667%; }

.g-col-6 {
  -webkit-box-flex: 0,;
  -webkit-flex: 0, 0, auto;
      -ms-flex: 0, 0, auto;
          flex: 0, 0, auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  -webkit-flex-basis: 50%;
      -ms-flex-preferred-size: 50%;
          flex-basis: 50%;
  max-width: 50%; }

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

.g-col-7 {
  -webkit-box-flex: 0,;
  -webkit-flex: 0, 0, auto;
      -ms-flex: 0, 0, auto;
          flex: 0, 0, auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  -webkit-flex-basis: 58.33333%;
      -ms-flex-preferred-size: 58.33333%;
          flex-basis: 58.33333%;
  max-width: 58.33333%; }

.g-col--offset-7 {
  margin-left: 58.33333%; }

.g-col-8 {
  -webkit-box-flex: 0,;
  -webkit-flex: 0, 0, auto;
      -ms-flex: 0, 0, auto;
          flex: 0, 0, auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  -webkit-flex-basis: 66.66667%;
      -ms-flex-preferred-size: 66.66667%;
          flex-basis: 66.66667%;
  max-width: 66.66667%; }

.g-col--offset-8 {
  margin-left: 66.66667%; }

.g-col-9 {
  -webkit-box-flex: 0,;
  -webkit-flex: 0, 0, auto;
      -ms-flex: 0, 0, auto;
          flex: 0, 0, auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  -webkit-flex-basis: 75%;
      -ms-flex-preferred-size: 75%;
          flex-basis: 75%;
  max-width: 75%; }

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

.g-col-10 {
  -webkit-box-flex: 0,;
  -webkit-flex: 0, 0, auto;
      -ms-flex: 0, 0, auto;
          flex: 0, 0, auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  -webkit-flex-basis: 83.33333%;
      -ms-flex-preferred-size: 83.33333%;
          flex-basis: 83.33333%;
  max-width: 83.33333%; }

.g-col--offset-10 {
  margin-left: 83.33333%; }

.g-col-11 {
  -webkit-box-flex: 0,;
  -webkit-flex: 0, 0, auto;
      -ms-flex: 0, 0, auto;
          flex: 0, 0, auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  -webkit-flex-basis: 91.66667%;
      -ms-flex-preferred-size: 91.66667%;
          flex-basis: 91.66667%;
  max-width: 91.66667%; }

.g-col--offset-11 {
  margin-left: 91.66667%; }

.g-col-12 {
  -webkit-box-flex: 0,;
  -webkit-flex: 0, 0, auto;
      -ms-flex: 0, 0, auto;
          flex: 0, 0, auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  -webkit-flex-basis: 100%;
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%;
  max-width: 100%; }

.g-col--offset-12 {
  margin-left: 100%; }

@media only screen and (min-width: 30em) {
  .g-container {
    width: 28em; }
  .g-row-xs {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0,;
    -webkit-flex: 0, 1, auto;
        -ms-flex: 0, 1, auto;
            flex: 0, 1, auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-right: -1.5rem;
    margin-left: -1.5rem; }
    .g-row-xs--normal {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-direction: row;
          -ms-flex-direction: row;
              flex-direction: row; }
    .g-row-xs--reverse {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
      -webkit-flex-direction: row-reverse;
          -ms-flex-direction: row-reverse;
              flex-direction: row-reverse; }
    .g-row-xs--start {
      -webkit-box-pack: start;
      -webkit-justify-content: flex-start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      text-align: start; }
    .g-row-xs--center {
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      text-align: center; }
    .g-row-xs--end {
      -webkit-box-pack: end;
      -webkit-justify-content: flex-end;
          -ms-flex-pack: end;
              justify-content: flex-end;
      text-align: end; }
    .g-row-xs--top {
      -webkit-box-align: start;
      -webkit-align-items: flex-start;
          -ms-flex-align: start;
              align-items: flex-start; }
    .g-row-xs--middle {
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center; }
    .g-row-xs--bottom {
      -webkit-box-align: end;
      -webkit-align-items: flex-end;
          -ms-flex-align: end;
              align-items: flex-end; }
    .g-row-xs--around {
      -webkit-justify-content: space-around;
          -ms-flex-pack: distribute;
              justify-content: space-around; }
    .g-row-xs--between {
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between; }
  .g-col-xs-1 {
    -webkit-flex-basis: 8.33333%;
        -ms-flex-preferred-size: 8.33333%;
            flex-basis: 8.33333%;
    max-width: 8.33333%; }
  .g-col-xs--offset-1 {
    margin-left: 8.33333%; }
  .g-col-xs-2 {
    -webkit-flex-basis: 16.66667%;
        -ms-flex-preferred-size: 16.66667%;
            flex-basis: 16.66667%;
    max-width: 16.66667%; }
  .g-col-xs--offset-2 {
    margin-left: 16.66667%; }
  .g-col-xs-3 {
    -webkit-flex-basis: 25%;
        -ms-flex-preferred-size: 25%;
            flex-basis: 25%;
    max-width: 25%; }
  .g-col-xs--offset-3 {
    margin-left: 25%; }
  .g-col-xs-4 {
    -webkit-flex-basis: 33.33333%;
        -ms-flex-preferred-size: 33.33333%;
            flex-basis: 33.33333%;
    max-width: 33.33333%; }
  .g-col-xs--offset-4 {
    margin-left: 33.33333%; }
  .g-col-xs-5 {
    -webkit-flex-basis: 41.66667%;
        -ms-flex-preferred-size: 41.66667%;
            flex-basis: 41.66667%;
    max-width: 41.66667%; }
  .g-col-xs--offset-5 {
    margin-left: 41.66667%; }
  .g-col-xs-6 {
    -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%;
    max-width: 50%; }
  .g-col-xs--offset-6 {
    margin-left: 50%; }
  .g-col-xs-7 {
    -webkit-flex-basis: 58.33333%;
        -ms-flex-preferred-size: 58.33333%;
            flex-basis: 58.33333%;
    max-width: 58.33333%; }
  .g-col-xs--offset-7 {
    margin-left: 58.33333%; }
  .g-col-xs-8 {
    -webkit-flex-basis: 66.66667%;
        -ms-flex-preferred-size: 66.66667%;
            flex-basis: 66.66667%;
    max-width: 66.66667%; }
  .g-col-xs--offset-8 {
    margin-left: 66.66667%; }
  .g-col-xs-9 {
    -webkit-flex-basis: 75%;
        -ms-flex-preferred-size: 75%;
            flex-basis: 75%;
    max-width: 75%; }
  .g-col-xs--offset-9 {
    margin-left: 75%; }
  .g-col-xs-10 {
    -webkit-flex-basis: 83.33333%;
        -ms-flex-preferred-size: 83.33333%;
            flex-basis: 83.33333%;
    max-width: 83.33333%; }
  .g-col-xs--offset-10 {
    margin-left: 83.33333%; }
  .g-col-xs-11 {
    -webkit-flex-basis: 91.66667%;
        -ms-flex-preferred-size: 91.66667%;
            flex-basis: 91.66667%;
    max-width: 91.66667%; }
  .g-col-xs--offset-11 {
    margin-left: 91.66667%; }
  .g-col-xs-12 {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    max-width: 100%; }
  .g-col-xs--offset-12 {
    margin-left: 100%; }
  .g-col-xs {
    -webkit-box-flex: 0,;
    -webkit-flex: 0, 0, auto;
        -ms-flex: 0, 0, auto;
            flex: 0, 0, auto;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
    width: 100%;
    -webkit-flex-basis: auto;
        -ms-flex-preferred-size: auto;
            flex-basis: auto; } }

@media only screen and (min-width: 45em) {
  .g-container {
    width: 43em; }
  .g-row-sm {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0,;
    -webkit-flex: 0, 1, auto;
        -ms-flex: 0, 1, auto;
            flex: 0, 1, auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-right: -1.5rem;
    margin-left: -1.5rem; }
    .g-row-sm--normal {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-direction: row;
          -ms-flex-direction: row;
              flex-direction: row; }
    .g-row-sm--reverse {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
      -webkit-flex-direction: row-reverse;
          -ms-flex-direction: row-reverse;
              flex-direction: row-reverse; }
    .g-row-sm--start {
      -webkit-box-pack: start;
      -webkit-justify-content: flex-start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      text-align: start; }
    .g-row-sm--center {
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      text-align: center; }
    .g-row-sm--end {
      -webkit-box-pack: end;
      -webkit-justify-content: flex-end;
          -ms-flex-pack: end;
              justify-content: flex-end;
      text-align: end; }
    .g-row-sm--top {
      -webkit-box-align: start;
      -webkit-align-items: flex-start;
          -ms-flex-align: start;
              align-items: flex-start; }
    .g-row-sm--middle {
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center; }
    .g-row-sm--bottom {
      -webkit-box-align: end;
      -webkit-align-items: flex-end;
          -ms-flex-align: end;
              align-items: flex-end; }
    .g-row-sm--around {
      -webkit-justify-content: space-around;
          -ms-flex-pack: distribute;
              justify-content: space-around; }
    .g-row-sm--between {
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between; }
  .g-col-sm-1 {
    -webkit-flex-basis: 8.33333%;
        -ms-flex-preferred-size: 8.33333%;
            flex-basis: 8.33333%;
    max-width: 8.33333%; }
  .g-col-sm--offset-1 {
    margin-left: 8.33333%; }
  .g-col-sm-2 {
    -webkit-flex-basis: 16.66667%;
        -ms-flex-preferred-size: 16.66667%;
            flex-basis: 16.66667%;
    max-width: 16.66667%; }
  .g-col-sm--offset-2 {
    margin-left: 16.66667%; }
  .g-col-sm-3 {
    -webkit-flex-basis: 25%;
        -ms-flex-preferred-size: 25%;
            flex-basis: 25%;
    max-width: 25%; }
  .g-col-sm--offset-3 {
    margin-left: 25%; }
  .g-col-sm-4 {
    -webkit-flex-basis: 33.33333%;
        -ms-flex-preferred-size: 33.33333%;
            flex-basis: 33.33333%;
    max-width: 33.33333%; }
  .g-col-sm--offset-4 {
    margin-left: 33.33333%; }
  .g-col-sm-5 {
    -webkit-flex-basis: 41.66667%;
        -ms-flex-preferred-size: 41.66667%;
            flex-basis: 41.66667%;
    max-width: 41.66667%; }
  .g-col-sm--offset-5 {
    margin-left: 41.66667%; }
  .g-col-sm-6 {
    -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%;
    max-width: 50%; }
  .g-col-sm--offset-6 {
    margin-left: 50%; }
  .g-col-sm-7 {
    -webkit-flex-basis: 58.33333%;
        -ms-flex-preferred-size: 58.33333%;
            flex-basis: 58.33333%;
    max-width: 58.33333%; }
  .g-col-sm--offset-7 {
    margin-left: 58.33333%; }
  .g-col-sm-8 {
    -webkit-flex-basis: 66.66667%;
        -ms-flex-preferred-size: 66.66667%;
            flex-basis: 66.66667%;
    max-width: 66.66667%; }
  .g-col-sm--offset-8 {
    margin-left: 66.66667%; }
  .g-col-sm-9 {
    -webkit-flex-basis: 75%;
        -ms-flex-preferred-size: 75%;
            flex-basis: 75%;
    max-width: 75%; }
  .g-col-sm--offset-9 {
    margin-left: 75%; }
  .g-col-sm-10 {
    -webkit-flex-basis: 83.33333%;
        -ms-flex-preferred-size: 83.33333%;
            flex-basis: 83.33333%;
    max-width: 83.33333%; }
  .g-col-sm--offset-10 {
    margin-left: 83.33333%; }
  .g-col-sm-11 {
    -webkit-flex-basis: 91.66667%;
        -ms-flex-preferred-size: 91.66667%;
            flex-basis: 91.66667%;
    max-width: 91.66667%; }
  .g-col-sm--offset-11 {
    margin-left: 91.66667%; }
  .g-col-sm-12 {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    max-width: 100%; }
  .g-col-sm--offset-12 {
    margin-left: 100%; }
  .g-col-sm {
    -webkit-box-flex: 0,;
    -webkit-flex: 0, 0, auto;
        -ms-flex: 0, 0, auto;
            flex: 0, 0, auto;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
    width: 100%;
    -webkit-flex-basis: auto;
        -ms-flex-preferred-size: auto;
            flex-basis: auto; } }

@media only screen and (min-width: 60.625em) {
  .g-container {
    width: 58.625em; }
  .g-row-sm-md {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0,;
    -webkit-flex: 0, 1, auto;
        -ms-flex: 0, 1, auto;
            flex: 0, 1, auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-right: -1.5rem;
    margin-left: -1.5rem; }
    .g-row-sm-md--normal {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-direction: row;
          -ms-flex-direction: row;
              flex-direction: row; }
    .g-row-sm-md--reverse {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
      -webkit-flex-direction: row-reverse;
          -ms-flex-direction: row-reverse;
              flex-direction: row-reverse; }
    .g-row-sm-md--start {
      -webkit-box-pack: start;
      -webkit-justify-content: flex-start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      text-align: start; }
    .g-row-sm-md--center {
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      text-align: center; }
    .g-row-sm-md--end {
      -webkit-box-pack: end;
      -webkit-justify-content: flex-end;
          -ms-flex-pack: end;
              justify-content: flex-end;
      text-align: end; }
    .g-row-sm-md--top {
      -webkit-box-align: start;
      -webkit-align-items: flex-start;
          -ms-flex-align: start;
              align-items: flex-start; }
    .g-row-sm-md--middle {
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center; }
    .g-row-sm-md--bottom {
      -webkit-box-align: end;
      -webkit-align-items: flex-end;
          -ms-flex-align: end;
              align-items: flex-end; }
    .g-row-sm-md--around {
      -webkit-justify-content: space-around;
          -ms-flex-pack: distribute;
              justify-content: space-around; }
    .g-row-sm-md--between {
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between; }
  .g-col-sm-md-1 {
    -webkit-flex-basis: 8.33333%;
        -ms-flex-preferred-size: 8.33333%;
            flex-basis: 8.33333%;
    max-width: 8.33333%; }
  .g-col-sm-md--offset-1 {
    margin-left: 8.33333%; }
  .g-col-sm-md-2 {
    -webkit-flex-basis: 16.66667%;
        -ms-flex-preferred-size: 16.66667%;
            flex-basis: 16.66667%;
    max-width: 16.66667%; }
  .g-col-sm-md--offset-2 {
    margin-left: 16.66667%; }
  .g-col-sm-md-3 {
    -webkit-flex-basis: 25%;
        -ms-flex-preferred-size: 25%;
            flex-basis: 25%;
    max-width: 25%; }
  .g-col-sm-md--offset-3 {
    margin-left: 25%; }
  .g-col-sm-md-4 {
    -webkit-flex-basis: 33.33333%;
        -ms-flex-preferred-size: 33.33333%;
            flex-basis: 33.33333%;
    max-width: 33.33333%; }
  .g-col-sm-md--offset-4 {
    margin-left: 33.33333%; }
  .g-col-sm-md-5 {
    -webkit-flex-basis: 41.66667%;
        -ms-flex-preferred-size: 41.66667%;
            flex-basis: 41.66667%;
    max-width: 41.66667%; }
  .g-col-sm-md--offset-5 {
    margin-left: 41.66667%; }
  .g-col-sm-md-6 {
    -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%;
    max-width: 50%; }
  .g-col-sm-md--offset-6 {
    margin-left: 50%; }
  .g-col-sm-md-7 {
    -webkit-flex-basis: 58.33333%;
        -ms-flex-preferred-size: 58.33333%;
            flex-basis: 58.33333%;
    max-width: 58.33333%; }
  .g-col-sm-md--offset-7 {
    margin-left: 58.33333%; }
  .g-col-sm-md-8 {
    -webkit-flex-basis: 66.66667%;
        -ms-flex-preferred-size: 66.66667%;
            flex-basis: 66.66667%;
    max-width: 66.66667%; }
  .g-col-sm-md--offset-8 {
    margin-left: 66.66667%; }
  .g-col-sm-md-9 {
    -webkit-flex-basis: 75%;
        -ms-flex-preferred-size: 75%;
            flex-basis: 75%;
    max-width: 75%; }
  .g-col-sm-md--offset-9 {
    margin-left: 75%; }
  .g-col-sm-md-10 {
    -webkit-flex-basis: 83.33333%;
        -ms-flex-preferred-size: 83.33333%;
            flex-basis: 83.33333%;
    max-width: 83.33333%; }
  .g-col-sm-md--offset-10 {
    margin-left: 83.33333%; }
  .g-col-sm-md-11 {
    -webkit-flex-basis: 91.66667%;
        -ms-flex-preferred-size: 91.66667%;
            flex-basis: 91.66667%;
    max-width: 91.66667%; }
  .g-col-sm-md--offset-11 {
    margin-left: 91.66667%; }
  .g-col-sm-md-12 {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    max-width: 100%; }
  .g-col-sm-md--offset-12 {
    margin-left: 100%; }
  .g-col-sm-md {
    -webkit-box-flex: 0,;
    -webkit-flex: 0, 0, auto;
        -ms-flex: 0, 0, auto;
            flex: 0, 0, auto;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
    width: 100%;
    -webkit-flex-basis: auto;
        -ms-flex-preferred-size: auto;
            flex-basis: auto; } }

@media only screen and (min-width: 67.5em) {
  .g-container {
    width: 65.5em; }
  .g-row-md {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0,;
    -webkit-flex: 0, 1, auto;
        -ms-flex: 0, 1, auto;
            flex: 0, 1, auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-right: -1.5rem;
    margin-left: -1.5rem; }
    .g-row-md--normal {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-direction: row;
          -ms-flex-direction: row;
              flex-direction: row; }
    .g-row-md--reverse {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
      -webkit-flex-direction: row-reverse;
          -ms-flex-direction: row-reverse;
              flex-direction: row-reverse; }
    .g-row-md--start {
      -webkit-box-pack: start;
      -webkit-justify-content: flex-start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      text-align: start; }
    .g-row-md--center {
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      text-align: center; }
    .g-row-md--end {
      -webkit-box-pack: end;
      -webkit-justify-content: flex-end;
          -ms-flex-pack: end;
              justify-content: flex-end;
      text-align: end; }
    .g-row-md--top {
      -webkit-box-align: start;
      -webkit-align-items: flex-start;
          -ms-flex-align: start;
              align-items: flex-start; }
    .g-row-md--middle {
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center; }
    .g-row-md--bottom {
      -webkit-box-align: end;
      -webkit-align-items: flex-end;
          -ms-flex-align: end;
              align-items: flex-end; }
    .g-row-md--around {
      -webkit-justify-content: space-around;
          -ms-flex-pack: distribute;
              justify-content: space-around; }
    .g-row-md--between {
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between; }
  .g-col-md-1 {
    -webkit-flex-basis: 8.33333%;
        -ms-flex-preferred-size: 8.33333%;
            flex-basis: 8.33333%;
    max-width: 8.33333%; }
  .g-col-md--offset-1 {
    margin-left: 8.33333%; }
  .g-col-md-2 {
    -webkit-flex-basis: 16.66667%;
        -ms-flex-preferred-size: 16.66667%;
            flex-basis: 16.66667%;
    max-width: 16.66667%; }
  .g-col-md--offset-2 {
    margin-left: 16.66667%; }
  .g-col-md-3 {
    -webkit-flex-basis: 25%;
        -ms-flex-preferred-size: 25%;
            flex-basis: 25%;
    max-width: 25%; }
  .g-col-md--offset-3 {
    margin-left: 25%; }
  .g-col-md-4 {
    -webkit-flex-basis: 33.33333%;
        -ms-flex-preferred-size: 33.33333%;
            flex-basis: 33.33333%;
    max-width: 33.33333%; }
  .g-col-md--offset-4 {
    margin-left: 33.33333%; }
  .g-col-md-5 {
    -webkit-flex-basis: 41.66667%;
        -ms-flex-preferred-size: 41.66667%;
            flex-basis: 41.66667%;
    max-width: 41.66667%; }
  .g-col-md--offset-5 {
    margin-left: 41.66667%; }
  .g-col-md-6 {
    -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%;
    max-width: 50%; }
  .g-col-md--offset-6 {
    margin-left: 50%; }
  .g-col-md-7 {
    -webkit-flex-basis: 58.33333%;
        -ms-flex-preferred-size: 58.33333%;
            flex-basis: 58.33333%;
    max-width: 58.33333%; }
  .g-col-md--offset-7 {
    margin-left: 58.33333%; }
  .g-col-md-8 {
    -webkit-flex-basis: 66.66667%;
        -ms-flex-preferred-size: 66.66667%;
            flex-basis: 66.66667%;
    max-width: 66.66667%; }
  .g-col-md--offset-8 {
    margin-left: 66.66667%; }
  .g-col-md-9 {
    -webkit-flex-basis: 75%;
        -ms-flex-preferred-size: 75%;
            flex-basis: 75%;
    max-width: 75%; }
  .g-col-md--offset-9 {
    margin-left: 75%; }
  .g-col-md-10 {
    -webkit-flex-basis: 83.33333%;
        -ms-flex-preferred-size: 83.33333%;
            flex-basis: 83.33333%;
    max-width: 83.33333%; }
  .g-col-md--offset-10 {
    margin-left: 83.33333%; }
  .g-col-md-11 {
    -webkit-flex-basis: 91.66667%;
        -ms-flex-preferred-size: 91.66667%;
            flex-basis: 91.66667%;
    max-width: 91.66667%; }
  .g-col-md--offset-11 {
    margin-left: 91.66667%; }
  .g-col-md-12 {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    max-width: 100%; }
  .g-col-md--offset-12 {
    margin-left: 100%; }
  .g-col-md {
    -webkit-box-flex: 0,;
    -webkit-flex: 0, 0, auto;
        -ms-flex: 0, 0, auto;
            flex: 0, 0, auto;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
    width: 100%;
    -webkit-flex-basis: auto;
        -ms-flex-preferred-size: auto;
            flex-basis: auto; } }

@media only screen and (min-width: 76.25em) {
  .g-container {
    width: 74.25em; }
  .g-row-lg {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0,;
    -webkit-flex: 0, 1, auto;
        -ms-flex: 0, 1, auto;
            flex: 0, 1, auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-right: -1.5rem;
    margin-left: -1.5rem; }
    .g-row-lg--normal {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-direction: row;
          -ms-flex-direction: row;
              flex-direction: row; }
    .g-row-lg--reverse {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
      -webkit-flex-direction: row-reverse;
          -ms-flex-direction: row-reverse;
              flex-direction: row-reverse; }
    .g-row-lg--start {
      -webkit-box-pack: start;
      -webkit-justify-content: flex-start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      text-align: start; }
    .g-row-lg--center {
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      text-align: center; }
    .g-row-lg--end {
      -webkit-box-pack: end;
      -webkit-justify-content: flex-end;
          -ms-flex-pack: end;
              justify-content: flex-end;
      text-align: end; }
    .g-row-lg--top {
      -webkit-box-align: start;
      -webkit-align-items: flex-start;
          -ms-flex-align: start;
              align-items: flex-start; }
    .g-row-lg--middle {
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center; }
    .g-row-lg--bottom {
      -webkit-box-align: end;
      -webkit-align-items: flex-end;
          -ms-flex-align: end;
              align-items: flex-end; }
    .g-row-lg--around {
      -webkit-justify-content: space-around;
          -ms-flex-pack: distribute;
              justify-content: space-around; }
    .g-row-lg--between {
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between; }
  .g-col-lg-1 {
    -webkit-flex-basis: 8.33333%;
        -ms-flex-preferred-size: 8.33333%;
            flex-basis: 8.33333%;
    max-width: 8.33333%; }
  .g-col-lg--offset-1 {
    margin-left: 8.33333%; }
  .g-col-lg-2 {
    -webkit-flex-basis: 16.66667%;
        -ms-flex-preferred-size: 16.66667%;
            flex-basis: 16.66667%;
    max-width: 16.66667%; }
  .g-col-lg--offset-2 {
    margin-left: 16.66667%; }
  .g-col-lg-3 {
    -webkit-flex-basis: 25%;
        -ms-flex-preferred-size: 25%;
            flex-basis: 25%;
    max-width: 25%; }
  .g-col-lg--offset-3 {
    margin-left: 25%; }
  .g-col-lg-4 {
    -webkit-flex-basis: 33.33333%;
        -ms-flex-preferred-size: 33.33333%;
            flex-basis: 33.33333%;
    max-width: 33.33333%; }
  .g-col-lg--offset-4 {
    margin-left: 33.33333%; }
  .g-col-lg-5 {
    -webkit-flex-basis: 41.66667%;
        -ms-flex-preferred-size: 41.66667%;
            flex-basis: 41.66667%;
    max-width: 41.66667%; }
  .g-col-lg--offset-5 {
    margin-left: 41.66667%; }
  .g-col-lg-6 {
    -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%;
    max-width: 50%; }
  .g-col-lg--offset-6 {
    margin-left: 50%; }
  .g-col-lg-7 {
    -webkit-flex-basis: 58.33333%;
        -ms-flex-preferred-size: 58.33333%;
            flex-basis: 58.33333%;
    max-width: 58.33333%; }
  .g-col-lg--offset-7 {
    margin-left: 58.33333%; }
  .g-col-lg-8 {
    -webkit-flex-basis: 66.66667%;
        -ms-flex-preferred-size: 66.66667%;
            flex-basis: 66.66667%;
    max-width: 66.66667%; }
  .g-col-lg--offset-8 {
    margin-left: 66.66667%; }
  .g-col-lg-9 {
    -webkit-flex-basis: 75%;
        -ms-flex-preferred-size: 75%;
            flex-basis: 75%;
    max-width: 75%; }
  .g-col-lg--offset-9 {
    margin-left: 75%; }
  .g-col-lg-10 {
    -webkit-flex-basis: 83.33333%;
        -ms-flex-preferred-size: 83.33333%;
            flex-basis: 83.33333%;
    max-width: 83.33333%; }
  .g-col-lg--offset-10 {
    margin-left: 83.33333%; }
  .g-col-lg-11 {
    -webkit-flex-basis: 91.66667%;
        -ms-flex-preferred-size: 91.66667%;
            flex-basis: 91.66667%;
    max-width: 91.66667%; }
  .g-col-lg--offset-11 {
    margin-left: 91.66667%; }
  .g-col-lg-12 {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    max-width: 100%; }
  .g-col-lg--offset-12 {
    margin-left: 100%; }
  .g-col-lg {
    -webkit-box-flex: 0,;
    -webkit-flex: 0, 0, auto;
        -ms-flex: 0, 0, auto;
            flex: 0, 0, auto;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
    width: 100%;
    -webkit-flex-basis: auto;
        -ms-flex-preferred-size: auto;
            flex-basis: auto; } }

@media only screen and (min-width: 87.5em) {
  .g-container {
    width: 85.5em; }
  .g-row-xl {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0,;
    -webkit-flex: 0, 1, auto;
        -ms-flex: 0, 1, auto;
            flex: 0, 1, auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-right: -1.5rem;
    margin-left: -1.5rem; }
    .g-row-xl--normal {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-direction: row;
          -ms-flex-direction: row;
              flex-direction: row; }
    .g-row-xl--reverse {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
      -webkit-flex-direction: row-reverse;
          -ms-flex-direction: row-reverse;
              flex-direction: row-reverse; }
    .g-row-xl--start {
      -webkit-box-pack: start;
      -webkit-justify-content: flex-start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      text-align: start; }
    .g-row-xl--center {
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      text-align: center; }
    .g-row-xl--end {
      -webkit-box-pack: end;
      -webkit-justify-content: flex-end;
          -ms-flex-pack: end;
              justify-content: flex-end;
      text-align: end; }
    .g-row-xl--top {
      -webkit-box-align: start;
      -webkit-align-items: flex-start;
          -ms-flex-align: start;
              align-items: flex-start; }
    .g-row-xl--middle {
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center; }
    .g-row-xl--bottom {
      -webkit-box-align: end;
      -webkit-align-items: flex-end;
          -ms-flex-align: end;
              align-items: flex-end; }
    .g-row-xl--around {
      -webkit-justify-content: space-around;
          -ms-flex-pack: distribute;
              justify-content: space-around; }
    .g-row-xl--between {
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between; }
  .g-col-xl-1 {
    -webkit-flex-basis: 8.33333%;
        -ms-flex-preferred-size: 8.33333%;
            flex-basis: 8.33333%;
    max-width: 8.33333%; }
  .g-col-xl--offset-1 {
    margin-left: 8.33333%; }
  .g-col-xl-2 {
    -webkit-flex-basis: 16.66667%;
        -ms-flex-preferred-size: 16.66667%;
            flex-basis: 16.66667%;
    max-width: 16.66667%; }
  .g-col-xl--offset-2 {
    margin-left: 16.66667%; }
  .g-col-xl-3 {
    -webkit-flex-basis: 25%;
        -ms-flex-preferred-size: 25%;
            flex-basis: 25%;
    max-width: 25%; }
  .g-col-xl--offset-3 {
    margin-left: 25%; }
  .g-col-xl-4 {
    -webkit-flex-basis: 33.33333%;
        -ms-flex-preferred-size: 33.33333%;
            flex-basis: 33.33333%;
    max-width: 33.33333%; }
  .g-col-xl--offset-4 {
    margin-left: 33.33333%; }
  .g-col-xl-5 {
    -webkit-flex-basis: 41.66667%;
        -ms-flex-preferred-size: 41.66667%;
            flex-basis: 41.66667%;
    max-width: 41.66667%; }
  .g-col-xl--offset-5 {
    margin-left: 41.66667%; }
  .g-col-xl-6 {
    -webkit-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
            flex-basis: 50%;
    max-width: 50%; }
  .g-col-xl--offset-6 {
    margin-left: 50%; }
  .g-col-xl-7 {
    -webkit-flex-basis: 58.33333%;
        -ms-flex-preferred-size: 58.33333%;
            flex-basis: 58.33333%;
    max-width: 58.33333%; }
  .g-col-xl--offset-7 {
    margin-left: 58.33333%; }
  .g-col-xl-8 {
    -webkit-flex-basis: 66.66667%;
        -ms-flex-preferred-size: 66.66667%;
            flex-basis: 66.66667%;
    max-width: 66.66667%; }
  .g-col-xl--offset-8 {
    margin-left: 66.66667%; }
  .g-col-xl-9 {
    -webkit-flex-basis: 75%;
        -ms-flex-preferred-size: 75%;
            flex-basis: 75%;
    max-width: 75%; }
  .g-col-xl--offset-9 {
    margin-left: 75%; }
  .g-col-xl-10 {
    -webkit-flex-basis: 83.33333%;
        -ms-flex-preferred-size: 83.33333%;
            flex-basis: 83.33333%;
    max-width: 83.33333%; }
  .g-col-xl--offset-10 {
    margin-left: 83.33333%; }
  .g-col-xl-11 {
    -webkit-flex-basis: 91.66667%;
        -ms-flex-preferred-size: 91.66667%;
            flex-basis: 91.66667%;
    max-width: 91.66667%; }
  .g-col-xl--offset-11 {
    margin-left: 91.66667%; }
  .g-col-xl-12 {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
    max-width: 100%; }
  .g-col-xl--offset-12 {
    margin-left: 100%; }
  .g-col-xl {
    -webkit-box-flex: 0,;
    -webkit-flex: 0, 0, auto;
        -ms-flex: 0, 0, auto;
            flex: 0, 0, auto;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
    width: 100%;
    -webkit-flex-basis: auto;
        -ms-flex-preferred-size: auto;
            flex-basis: auto; } }

@media only screen and (min-width: 45em) {
  .g-container-fluid {
    width: 98%;
    margin-left: auto;
    margin-right: auto;
    max-width: 144rem;
    padding-right: 2rem;
    padding-left: 2rem; } }

@media only screen and (min-width: 67.5em) {
  .g-container-fluid {
    width: 90%; } }

.mod-fill-lg {
  padding-top: 4rem;
  padding-bottom: 4rem; }
  @media only screen and (min-width: 45em) {
    .mod-fill-lg {
      padding-top: 6rem;
      padding-bottom: 6rem; } }
  @media only screen and (min-width: 67.5em) {
    .mod-fill-lg {
      padding-top: 8rem;
      padding-bottom: 8rem; } }

.mod-lg {
  margin-top: 4rem;
  margin-bottom: 4rem; }
  @media only screen and (min-width: 45em) {
    .mod-lg {
      margin-top: 6rem;
      margin-bottom: 6rem; } }
  @media only screen and (min-width: 67.5em) {
    .mod-lg {
      margin-top: 8rem;
      margin-bottom: 8rem; } }

@-webkit-keyframes barOneSm {
  0% {
    height: 0px; }
  100% {
    height: 5.5px; } }

@keyframes barOneSm {
  0% {
    height: 0px; }
  100% {
    height: 5.5px; } }

@-webkit-keyframes barTwoSm {
  0% {
    height: 5px; }
  100% {
    height: 29px; } }

@keyframes barTwoSm {
  0% {
    height: 5px; }
  100% {
    height: 29px; } }

@-webkit-keyframes barThreeSm {
  0% {
    height: 0px; }
  100% {
    height: 26px; } }

@keyframes barThreeSm {
  0% {
    height: 0px; }
  100% {
    height: 26px; } }

@-webkit-keyframes barFourSm {
  0% {
    height: 0px; }
  100% {
    height: 33px; } }

@keyframes barFourSm {
  0% {
    height: 0px; }
  100% {
    height: 33px; } }

.js-bars-img.animate .bar-one {
  animation: barOneLg 0.3s 0.35s ease-out forwards, barOneLg 0.3s 0.85s ease-in reverse forwards; }

.js-bars-img.animate .bar-two {
  animation: barTwoLg 0.3s 0.5s ease-out forwards, barTwoLg 0.3s 1s ease-in reverse forwards; }

.js-bars-img.animate .bar-three {
  animation: barThreeLg 0.3s 0.65s ease-out forwards, barThreeLg 0.3s 1.15s ease-in reverse forwards; }

.js-bars-img.animate .bar-four {
  animation: barFourLg 0.3s 0.8s ease-out forwards, barFourLg 0.3s 1.3s ease-in reverse forwards; }

.js-bars-img.animate .bars__image {
  -webkit-animation: showHidden 300ms 1400ms ease-out forwards;
          animation: showHidden 300ms 1400ms ease-out forwards; }

@-webkit-keyframes barOneLg {
  0% {
    height: 0px; }
  100% {
    height: 340px; } }

@keyframes barOneLg {
  0% {
    height: 0px; }
  100% {
    height: 340px; } }

@-webkit-keyframes barTwoLg {
  0% {
    height: 0px; }
  100% {
    height: 1058px; } }

@keyframes barTwoLg {
  0% {
    height: 0px; }
  100% {
    height: 1058px; } }

@-webkit-keyframes barThreeLg {
  0% {
    height: 0px; }
  100% {
    height: 944px; } }

@keyframes barThreeLg {
  0% {
    height: 0px; }
  100% {
    height: 944px; } }

@-webkit-keyframes barFourLg {
  0% {
    height: 0px; }
  100% {
    height: 1228px; } }

@keyframes barFourLg {
  0% {
    height: 0px; }
  100% {
    height: 1228px; } }

.u-hi-lite {
  opacity: 0; }

.u-hi-lite,
.u-hi-lite-timed {
  font-style: inherit;
  padding: 1rem 1rem 0.8rem; }
  @media only screen and (min-width: 60.625em) {
    .u-hi-lite,
    .u-hi-lite-timed {
      padding: 1.2rem 2rem 1rem; } }
  .u-hi-lite.u-hi-lite--processed,
  .u-hi-lite-timed.u-hi-lite--processed {
    padding: 0;
    overflow: hidden; }
  .u-hi-lite__bar,
  .u-hi-lite-timed__bar {
    background-color: #ffffff;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 2; }
  .u-hi-lite__wrap,
  .u-hi-lite-timed__wrap {
    position: relative;
    float: left;
    clear: both; }
    .u-hi-lite__wrap + .u-hi-lite__wrap,
    .u-hi-lite-timed__wrap + .u-hi-lite__wrap, .u-hi-lite__wrap +
    .u-hi-lite-timed__wrap,
    .u-hi-lite-timed__wrap +
    .u-hi-lite-timed__wrap {
      margin-top: -0.3rem; }
    .u-hi-lite__wrap:nth-child(1) .u-hi-lite__bar,
    .u-hi-lite__wrap:nth-child(1) .u-hi-lite-timed__bar,
    .u-hi-lite-timed__wrap:nth-child(1) .u-hi-lite__bar,
    .u-hi-lite-timed__wrap:nth-child(1) .u-hi-lite-timed__bar {
      opacity: 0; }
      .u-hi-lite__wrap:nth-child(1) .u-hi-lite__bar.animate,
      .u-hi-lite__wrap:nth-child(1) .u-hi-lite-timed__bar.animate,
      .u-hi-lite-timed__wrap:nth-child(1) .u-hi-lite__bar.animate,
      .u-hi-lite-timed__wrap:nth-child(1) .u-hi-lite-timed__bar.animate {
        -webkit-animation: expandRight 350ms 0.15s ease-out forwards;
                animation: expandRight 350ms 0.15s ease-out forwards; }
    .u-hi-lite__wrap:nth-child(2) .u-hi-lite__bar,
    .u-hi-lite__wrap:nth-child(2) .u-hi-lite-timed__bar,
    .u-hi-lite-timed__wrap:nth-child(2) .u-hi-lite__bar,
    .u-hi-lite-timed__wrap:nth-child(2) .u-hi-lite-timed__bar {
      opacity: 0; }
      .u-hi-lite__wrap:nth-child(2) .u-hi-lite__bar.animate,
      .u-hi-lite__wrap:nth-child(2) .u-hi-lite-timed__bar.animate,
      .u-hi-lite-timed__wrap:nth-child(2) .u-hi-lite__bar.animate,
      .u-hi-lite-timed__wrap:nth-child(2) .u-hi-lite-timed__bar.animate {
        -webkit-animation: expandRight 350ms 0.3s ease-out forwards;
                animation: expandRight 350ms 0.3s ease-out forwards; }
    .u-hi-lite__wrap:nth-child(3) .u-hi-lite__bar,
    .u-hi-lite__wrap:nth-child(3) .u-hi-lite-timed__bar,
    .u-hi-lite-timed__wrap:nth-child(3) .u-hi-lite__bar,
    .u-hi-lite-timed__wrap:nth-child(3) .u-hi-lite-timed__bar {
      opacity: 0; }
      .u-hi-lite__wrap:nth-child(3) .u-hi-lite__bar.animate,
      .u-hi-lite__wrap:nth-child(3) .u-hi-lite-timed__bar.animate,
      .u-hi-lite-timed__wrap:nth-child(3) .u-hi-lite__bar.animate,
      .u-hi-lite-timed__wrap:nth-child(3) .u-hi-lite-timed__bar.animate {
        -webkit-animation: expandRight 350ms 0.45s ease-out forwards;
                animation: expandRight 350ms 0.45s ease-out forwards; }
    .u-hi-lite__wrap:nth-child(4) .u-hi-lite__bar,
    .u-hi-lite__wrap:nth-child(4) .u-hi-lite-timed__bar,
    .u-hi-lite-timed__wrap:nth-child(4) .u-hi-lite__bar,
    .u-hi-lite-timed__wrap:nth-child(4) .u-hi-lite-timed__bar {
      opacity: 0; }
      .u-hi-lite__wrap:nth-child(4) .u-hi-lite__bar.animate,
      .u-hi-lite__wrap:nth-child(4) .u-hi-lite-timed__bar.animate,
      .u-hi-lite-timed__wrap:nth-child(4) .u-hi-lite__bar.animate,
      .u-hi-lite-timed__wrap:nth-child(4) .u-hi-lite-timed__bar.animate {
        -webkit-animation: expandRight 350ms 0.6s ease-out forwards;
                animation: expandRight 350ms 0.6s ease-out forwards; }
    .u-hi-lite__wrap:nth-child(5) .u-hi-lite__bar,
    .u-hi-lite__wrap:nth-child(5) .u-hi-lite-timed__bar,
    .u-hi-lite-timed__wrap:nth-child(5) .u-hi-lite__bar,
    .u-hi-lite-timed__wrap:nth-child(5) .u-hi-lite-timed__bar {
      opacity: 0; }
      .u-hi-lite__wrap:nth-child(5) .u-hi-lite__bar.animate,
      .u-hi-lite__wrap:nth-child(5) .u-hi-lite-timed__bar.animate,
      .u-hi-lite-timed__wrap:nth-child(5) .u-hi-lite__bar.animate,
      .u-hi-lite-timed__wrap:nth-child(5) .u-hi-lite-timed__bar.animate {
        -webkit-animation: expandRight 350ms 0.75s ease-out forwards;
                animation: expandRight 350ms 0.75s ease-out forwards; }
    .u-hi-lite__wrap:nth-child(6) .u-hi-lite__bar,
    .u-hi-lite__wrap:nth-child(6) .u-hi-lite-timed__bar,
    .u-hi-lite-timed__wrap:nth-child(6) .u-hi-lite__bar,
    .u-hi-lite-timed__wrap:nth-child(6) .u-hi-lite-timed__bar {
      opacity: 0; }
      .u-hi-lite__wrap:nth-child(6) .u-hi-lite__bar.animate,
      .u-hi-lite__wrap:nth-child(6) .u-hi-lite-timed__bar.animate,
      .u-hi-lite-timed__wrap:nth-child(6) .u-hi-lite__bar.animate,
      .u-hi-lite-timed__wrap:nth-child(6) .u-hi-lite-timed__bar.animate {
        -webkit-animation: expandRight 350ms 0.9s ease-out forwards;
                animation: expandRight 350ms 0.9s ease-out forwards; }
    .u-hi-lite__wrap:nth-child(7) .u-hi-lite__bar,
    .u-hi-lite__wrap:nth-child(7) .u-hi-lite-timed__bar,
    .u-hi-lite-timed__wrap:nth-child(7) .u-hi-lite__bar,
    .u-hi-lite-timed__wrap:nth-child(7) .u-hi-lite-timed__bar {
      opacity: 0; }
      .u-hi-lite__wrap:nth-child(7) .u-hi-lite__bar.animate,
      .u-hi-lite__wrap:nth-child(7) .u-hi-lite-timed__bar.animate,
      .u-hi-lite-timed__wrap:nth-child(7) .u-hi-lite__bar.animate,
      .u-hi-lite-timed__wrap:nth-child(7) .u-hi-lite-timed__bar.animate {
        -webkit-animation: expandRight 350ms 1.05s ease-out forwards;
                animation: expandRight 350ms 1.05s ease-out forwards; }
    .u-hi-lite__wrap:nth-child(8) .u-hi-lite__bar,
    .u-hi-lite__wrap:nth-child(8) .u-hi-lite-timed__bar,
    .u-hi-lite-timed__wrap:nth-child(8) .u-hi-lite__bar,
    .u-hi-lite-timed__wrap:nth-child(8) .u-hi-lite-timed__bar {
      opacity: 0; }
      .u-hi-lite__wrap:nth-child(8) .u-hi-lite__bar.animate,
      .u-hi-lite__wrap:nth-child(8) .u-hi-lite-timed__bar.animate,
      .u-hi-lite-timed__wrap:nth-child(8) .u-hi-lite__bar.animate,
      .u-hi-lite-timed__wrap:nth-child(8) .u-hi-lite-timed__bar.animate {
        -webkit-animation: expandRight 350ms 1.2s ease-out forwards;
                animation: expandRight 350ms 1.2s ease-out forwards; }
    .u-hi-lite__wrap:nth-child(9) .u-hi-lite__bar,
    .u-hi-lite__wrap:nth-child(9) .u-hi-lite-timed__bar,
    .u-hi-lite-timed__wrap:nth-child(9) .u-hi-lite__bar,
    .u-hi-lite-timed__wrap:nth-child(9) .u-hi-lite-timed__bar {
      opacity: 0; }
      .u-hi-lite__wrap:nth-child(9) .u-hi-lite__bar.animate,
      .u-hi-lite__wrap:nth-child(9) .u-hi-lite-timed__bar.animate,
      .u-hi-lite-timed__wrap:nth-child(9) .u-hi-lite__bar.animate,
      .u-hi-lite-timed__wrap:nth-child(9) .u-hi-lite-timed__bar.animate {
        -webkit-animation: expandRight 350ms 1.35s ease-out forwards;
                animation: expandRight 350ms 1.35s ease-out forwards; }
    .u-hi-lite__wrap:nth-child(10) .u-hi-lite__bar,
    .u-hi-lite__wrap:nth-child(10) .u-hi-lite-timed__bar,
    .u-hi-lite-timed__wrap:nth-child(10) .u-hi-lite__bar,
    .u-hi-lite-timed__wrap:nth-child(10) .u-hi-lite-timed__bar {
      opacity: 0; }
      .u-hi-lite__wrap:nth-child(10) .u-hi-lite__bar.animate,
      .u-hi-lite__wrap:nth-child(10) .u-hi-lite-timed__bar.animate,
      .u-hi-lite-timed__wrap:nth-child(10) .u-hi-lite__bar.animate,
      .u-hi-lite-timed__wrap:nth-child(10) .u-hi-lite-timed__bar.animate {
        -webkit-animation: expandRight 350ms 1.5s ease-out forwards;
                animation: expandRight 350ms 1.5s ease-out forwards; }
    .u-hi-lite__wrap:nth-child(11) .u-hi-lite__bar,
    .u-hi-lite__wrap:nth-child(11) .u-hi-lite-timed__bar,
    .u-hi-lite-timed__wrap:nth-child(11) .u-hi-lite__bar,
    .u-hi-lite-timed__wrap:nth-child(11) .u-hi-lite-timed__bar {
      opacity: 0; }
      .u-hi-lite__wrap:nth-child(11) .u-hi-lite__bar.animate,
      .u-hi-lite__wrap:nth-child(11) .u-hi-lite-timed__bar.animate,
      .u-hi-lite-timed__wrap:nth-child(11) .u-hi-lite__bar.animate,
      .u-hi-lite-timed__wrap:nth-child(11) .u-hi-lite-timed__bar.animate {
        -webkit-animation: expandRight 350ms 1.65s ease-out forwards;
                animation: expandRight 350ms 1.65s ease-out forwards; }
    .u-hi-lite__wrap:nth-child(12) .u-hi-lite__bar,
    .u-hi-lite__wrap:nth-child(12) .u-hi-lite-timed__bar,
    .u-hi-lite-timed__wrap:nth-child(12) .u-hi-lite__bar,
    .u-hi-lite-timed__wrap:nth-child(12) .u-hi-lite-timed__bar {
      opacity: 0; }
      .u-hi-lite__wrap:nth-child(12) .u-hi-lite__bar.animate,
      .u-hi-lite__wrap:nth-child(12) .u-hi-lite-timed__bar.animate,
      .u-hi-lite-timed__wrap:nth-child(12) .u-hi-lite__bar.animate,
      .u-hi-lite-timed__wrap:nth-child(12) .u-hi-lite-timed__bar.animate {
        -webkit-animation: expandRight 350ms 1.8s ease-out forwards;
                animation: expandRight 350ms 1.8s ease-out forwards; }
    .u-hi-lite__wrap:nth-child(13) .u-hi-lite__bar,
    .u-hi-lite__wrap:nth-child(13) .u-hi-lite-timed__bar,
    .u-hi-lite-timed__wrap:nth-child(13) .u-hi-lite__bar,
    .u-hi-lite-timed__wrap:nth-child(13) .u-hi-lite-timed__bar {
      opacity: 0; }
      .u-hi-lite__wrap:nth-child(13) .u-hi-lite__bar.animate,
      .u-hi-lite__wrap:nth-child(13) .u-hi-lite-timed__bar.animate,
      .u-hi-lite-timed__wrap:nth-child(13) .u-hi-lite__bar.animate,
      .u-hi-lite-timed__wrap:nth-child(13) .u-hi-lite-timed__bar.animate {
        -webkit-animation: expandRight 350ms 1.95s ease-out forwards;
                animation: expandRight 350ms 1.95s ease-out forwards; }
    .u-hi-lite__wrap:nth-child(14) .u-hi-lite__bar,
    .u-hi-lite__wrap:nth-child(14) .u-hi-lite-timed__bar,
    .u-hi-lite-timed__wrap:nth-child(14) .u-hi-lite__bar,
    .u-hi-lite-timed__wrap:nth-child(14) .u-hi-lite-timed__bar {
      opacity: 0; }
      .u-hi-lite__wrap:nth-child(14) .u-hi-lite__bar.animate,
      .u-hi-lite__wrap:nth-child(14) .u-hi-lite-timed__bar.animate,
      .u-hi-lite-timed__wrap:nth-child(14) .u-hi-lite__bar.animate,
      .u-hi-lite-timed__wrap:nth-child(14) .u-hi-lite-timed__bar.animate {
        -webkit-animation: expandRight 350ms 2.1s ease-out forwards;
                animation: expandRight 350ms 2.1s ease-out forwards; }
    .u-hi-lite__wrap:nth-child(15) .u-hi-lite__bar,
    .u-hi-lite__wrap:nth-child(15) .u-hi-lite-timed__bar,
    .u-hi-lite-timed__wrap:nth-child(15) .u-hi-lite__bar,
    .u-hi-lite-timed__wrap:nth-child(15) .u-hi-lite-timed__bar {
      opacity: 0; }
      .u-hi-lite__wrap:nth-child(15) .u-hi-lite__bar.animate,
      .u-hi-lite__wrap:nth-child(15) .u-hi-lite-timed__bar.animate,
      .u-hi-lite-timed__wrap:nth-child(15) .u-hi-lite__bar.animate,
      .u-hi-lite-timed__wrap:nth-child(15) .u-hi-lite-timed__bar.animate {
        -webkit-animation: expandRight 350ms 2.25s ease-out forwards;
                animation: expandRight 350ms 2.25s ease-out forwards; }
    .u-hi-lite__wrap:nth-child(16) .u-hi-lite__bar,
    .u-hi-lite__wrap:nth-child(16) .u-hi-lite-timed__bar,
    .u-hi-lite-timed__wrap:nth-child(16) .u-hi-lite__bar,
    .u-hi-lite-timed__wrap:nth-child(16) .u-hi-lite-timed__bar {
      opacity: 0; }
      .u-hi-lite__wrap:nth-child(16) .u-hi-lite__bar.animate,
      .u-hi-lite__wrap:nth-child(16) .u-hi-lite-timed__bar.animate,
      .u-hi-lite-timed__wrap:nth-child(16) .u-hi-lite__bar.animate,
      .u-hi-lite-timed__wrap:nth-child(16) .u-hi-lite-timed__bar.animate {
        -webkit-animation: expandRight 350ms 2.4s ease-out forwards;
                animation: expandRight 350ms 2.4s ease-out forwards; }
    .u-hi-lite__wrap:nth-child(17) .u-hi-lite__bar,
    .u-hi-lite__wrap:nth-child(17) .u-hi-lite-timed__bar,
    .u-hi-lite-timed__wrap:nth-child(17) .u-hi-lite__bar,
    .u-hi-lite-timed__wrap:nth-child(17) .u-hi-lite-timed__bar {
      opacity: 0; }
      .u-hi-lite__wrap:nth-child(17) .u-hi-lite__bar.animate,
      .u-hi-lite__wrap:nth-child(17) .u-hi-lite-timed__bar.animate,
      .u-hi-lite-timed__wrap:nth-child(17) .u-hi-lite__bar.animate,
      .u-hi-lite-timed__wrap:nth-child(17) .u-hi-lite-timed__bar.animate {
        -webkit-animation: expandRight 350ms 2.55s ease-out forwards;
                animation: expandRight 350ms 2.55s ease-out forwards; }
    .u-hi-lite__wrap:nth-child(18) .u-hi-lite__bar,
    .u-hi-lite__wrap:nth-child(18) .u-hi-lite-timed__bar,
    .u-hi-lite-timed__wrap:nth-child(18) .u-hi-lite__bar,
    .u-hi-lite-timed__wrap:nth-child(18) .u-hi-lite-timed__bar {
      opacity: 0; }
      .u-hi-lite__wrap:nth-child(18) .u-hi-lite__bar.animate,
      .u-hi-lite__wrap:nth-child(18) .u-hi-lite-timed__bar.animate,
      .u-hi-lite-timed__wrap:nth-child(18) .u-hi-lite__bar.animate,
      .u-hi-lite-timed__wrap:nth-child(18) .u-hi-lite-timed__bar.animate {
        -webkit-animation: expandRight 350ms 2.7s ease-out forwards;
                animation: expandRight 350ms 2.7s ease-out forwards; }
    .u-hi-lite__wrap:nth-child(19) .u-hi-lite__bar,
    .u-hi-lite__wrap:nth-child(19) .u-hi-lite-timed__bar,
    .u-hi-lite-timed__wrap:nth-child(19) .u-hi-lite__bar,
    .u-hi-lite-timed__wrap:nth-child(19) .u-hi-lite-timed__bar {
      opacity: 0; }
      .u-hi-lite__wrap:nth-child(19) .u-hi-lite__bar.animate,
      .u-hi-lite__wrap:nth-child(19) .u-hi-lite-timed__bar.animate,
      .u-hi-lite-timed__wrap:nth-child(19) .u-hi-lite__bar.animate,
      .u-hi-lite-timed__wrap:nth-child(19) .u-hi-lite-timed__bar.animate {
        -webkit-animation: expandRight 350ms 2.85s ease-out forwards;
                animation: expandRight 350ms 2.85s ease-out forwards; }
    .u-hi-lite__wrap:nth-child(20) .u-hi-lite__bar,
    .u-hi-lite__wrap:nth-child(20) .u-hi-lite-timed__bar,
    .u-hi-lite-timed__wrap:nth-child(20) .u-hi-lite__bar,
    .u-hi-lite-timed__wrap:nth-child(20) .u-hi-lite-timed__bar {
      opacity: 0; }
      .u-hi-lite__wrap:nth-child(20) .u-hi-lite__bar.animate,
      .u-hi-lite__wrap:nth-child(20) .u-hi-lite-timed__bar.animate,
      .u-hi-lite-timed__wrap:nth-child(20) .u-hi-lite__bar.animate,
      .u-hi-lite-timed__wrap:nth-child(20) .u-hi-lite-timed__bar.animate {
        -webkit-animation: expandRight 350ms 3s ease-out forwards;
                animation: expandRight 350ms 3s ease-out forwards; }
  .u-hi-lite .u-hi-lite__line,
  .u-hi-lite .u-hi-lite-timed__line,
  .u-hi-lite-timed .u-hi-lite__line,
  .u-hi-lite-timed .u-hi-lite-timed__line {
    opacity: 0;
    color: #242426;
    padding: 1rem 1rem 0.8rem;
    float: left;
    clear: both;
    position: relative;
    line-height: 0.8;
    z-index: 3; }
    @media only screen and (min-width: 60.625em) {
      .u-hi-lite .u-hi-lite__line,
      .u-hi-lite .u-hi-lite-timed__line,
      .u-hi-lite-timed .u-hi-lite__line,
      .u-hi-lite-timed .u-hi-lite-timed__line {
        padding: 1.2rem 2rem 1rem; } }
    .u-hi-lite .u-hi-lite__line.animate,
    .u-hi-lite .u-hi-lite-timed__line.animate,
    .u-hi-lite-timed .u-hi-lite__line.animate,
    .u-hi-lite-timed .u-hi-lite-timed__line.animate {
      -webkit-animation: showHidden 350ms 750ms linear forwards;
              animation: showHidden 350ms 750ms linear forwards; }

.u-hi-lite-watch__line.js-scroll-animate {
  opacity: 1;
  -webkit-transition: -webkit-transform 0.35s cubic-bezier(0.5, 0, 0.5, 1);
  transition: -webkit-transform 0.35s cubic-bezier(0.5, 0, 0.5, 1);
  transition: transform 0.35s cubic-bezier(0.5, 0, 0.5, 1);
  transition: transform 0.35s cubic-bezier(0.5, 0, 0.5, 1), -webkit-transform 0.35s cubic-bezier(0.5, 0, 0.5, 1);
  -webkit-transform: translate3d(0, 100%, 0);
          transform: translate3d(0, 100%, 0); }

.u-hi-lite-watch__line.js-scroll-animated {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0); }

.u-hi-lite-watch__wrap {
  overflow: hidden; }
  .u-hi-lite-watch__wrap:nth-child(1) .u-hi-lite-watch__line {
    -webkit-transition-delay: 0.15s;
            transition-delay: 0.15s; }
  .u-hi-lite-watch__wrap:nth-child(2) .u-hi-lite-watch__line {
    -webkit-transition-delay: 0.3s;
            transition-delay: 0.3s; }
  .u-hi-lite-watch__wrap:nth-child(3) .u-hi-lite-watch__line {
    -webkit-transition-delay: 0.45s;
            transition-delay: 0.45s; }
  .u-hi-lite-watch__wrap:nth-child(4) .u-hi-lite-watch__line {
    -webkit-transition-delay: 0.6s;
            transition-delay: 0.6s; }
  .u-hi-lite-watch__wrap:nth-child(5) .u-hi-lite-watch__line {
    -webkit-transition-delay: 0.75s;
            transition-delay: 0.75s; }
  .u-hi-lite-watch__wrap:nth-child(6) .u-hi-lite-watch__line {
    -webkit-transition-delay: 0.9s;
            transition-delay: 0.9s; }
  .u-hi-lite-watch__wrap:nth-child(7) .u-hi-lite-watch__line {
    -webkit-transition-delay: 1.05s;
            transition-delay: 1.05s; }
  .u-hi-lite-watch__wrap:nth-child(8) .u-hi-lite-watch__line {
    -webkit-transition-delay: 1.2s;
            transition-delay: 1.2s; }
  .u-hi-lite-watch__wrap:nth-child(9) .u-hi-lite-watch__line {
    -webkit-transition-delay: 1.35s;
            transition-delay: 1.35s; }
  .u-hi-lite-watch__wrap:nth-child(10) .u-hi-lite-watch__line {
    -webkit-transition-delay: 1.5s;
            transition-delay: 1.5s; }
  .u-hi-lite-watch__wrap:nth-child(11) .u-hi-lite-watch__line {
    -webkit-transition-delay: 1.65s;
            transition-delay: 1.65s; }
  .u-hi-lite-watch__wrap:nth-child(12) .u-hi-lite-watch__line {
    -webkit-transition-delay: 1.8s;
            transition-delay: 1.8s; }
  .u-hi-lite-watch__wrap:nth-child(13) .u-hi-lite-watch__line {
    -webkit-transition-delay: 1.95s;
            transition-delay: 1.95s; }
  .u-hi-lite-watch__wrap:nth-child(14) .u-hi-lite-watch__line {
    -webkit-transition-delay: 2.1s;
            transition-delay: 2.1s; }
  .u-hi-lite-watch__wrap:nth-child(15) .u-hi-lite-watch__line {
    -webkit-transition-delay: 2.25s;
            transition-delay: 2.25s; }
  .u-hi-lite-watch__wrap:nth-child(16) .u-hi-lite-watch__line {
    -webkit-transition-delay: 2.4s;
            transition-delay: 2.4s; }
  .u-hi-lite-watch__wrap:nth-child(17) .u-hi-lite-watch__line {
    -webkit-transition-delay: 2.55s;
            transition-delay: 2.55s; }
  .u-hi-lite-watch__wrap:nth-child(18) .u-hi-lite-watch__line {
    -webkit-transition-delay: 2.7s;
            transition-delay: 2.7s; }
  .u-hi-lite-watch__wrap:nth-child(19) .u-hi-lite-watch__line {
    -webkit-transition-delay: 2.85s;
            transition-delay: 2.85s; }
  .u-hi-lite-watch__wrap:nth-child(20) .u-hi-lite-watch__line {
    -webkit-transition-delay: 3s;
            transition-delay: 3s; }

@-webkit-keyframes expandRight {
  0% {
    width: 0%; }
  25% {
    opacity: 1; }
  100% {
    width: 100%;
    opacity: 1; } }

@keyframes expandRight {
  0% {
    width: 0%; }
  25% {
    opacity: 1; }
  100% {
    width: 100%;
    opacity: 1; } }

@-webkit-keyframes showHidden {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes showHidden {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.b-lazy-hero,
.b-lazy {
  opacity: 0;
  -webkit-transition: opacity 1000ms ease-out;
  transition: opacity 1000ms ease-out; }
  .b-lazy-hero.b-loaded,
  .b-lazy.b-loaded {
    opacity: 1; }

.js-scroll-animate {
  opacity: 0;
  visibility: visible;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 1s, -webkit-transform 0.75s;
  transition: opacity 1s, -webkit-transform 0.75s;
  transition: opacity 1s, transform 0.75s;
  transition: opacity 1s, transform 0.75s, -webkit-transform 0.75s; }
  @media only screen and (min-width: 45em) {
    .js-scroll-animate {
      -webkit-transform: translateY(40px);
              transform: translateY(40px); } }

.js-scroll-animated {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0); }

body.is-locked {
  overflow: hidden; }

.modal {
  display: none; }
  .modal--is-open {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 9999; }

.btn {
  height: 5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  line-height: 1.1;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 0.3rem 1rem;
  position: relative; }
  .event-subscribe__calendars .btn {
    height: 7rem;
    font-weight: normal;
    text-transform: none; }
  .btn.o-btn-animate {
    -webkit-transition: all 0.35s cubic-bezier(0.5, 0, 0.5, 1);
    transition: all 0.35s cubic-bezier(0.5, 0, 0.5, 1); }
    .btn.o-btn-animate:after,
    .btn.o-btn-animate .btn-icon {
      position: relative;
      display: inline-block;
      right: 0;
      top: 1px;
      width: 0;
      height: 15px;
      opacity: 0;
      -webkit-transition: all 0.35s cubic-bezier(0.5, 0, 0.5, 1);
      transition: all 0.35s cubic-bezier(0.5, 0, 0.5, 1); }
    @media only screen and (min-width: 45em) {
      .btn.o-btn-animate:hover {
        padding: .3rem 1rem; }
        .btn.o-btn-animate:hover:after,
        .btn.o-btn-animate:hover .btn-icon {
          opacity: 1;
          width: 15px;
          margin-left: 8px; }
        .btn.o-btn-animate:hover.o-btn-animate--support:after {
          width: 18px;
          margin-right: 0; } }
  .btn.btn-hover-wipe {
    position: relative;
    overflow: hidden; }
    .btn.btn-hover-wipe:before {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: rgba(255, 255, 255, 0.1);
      -webkit-transition: -webkit-transform 0.25s cubic-bezier(0.5, 0, 0.5, 1);
      transition: -webkit-transform 0.25s cubic-bezier(0.5, 0, 0.5, 1);
      transition: transform 0.25s cubic-bezier(0.5, 0, 0.5, 1);
      transition: transform 0.25s cubic-bezier(0.5, 0, 0.5, 1), -webkit-transform 0.25s cubic-bezier(0.5, 0, 0.5, 1);
      -webkit-transform: translate3d(-105%, 0, 0);
              transform: translate3d(-105%, 0, 0); }
    .btn.btn-hover-wipe:hover:before {
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0); }
    .btn.btn-hover-wipe.event-teaser__tickets:before {
      background-color: rgba(255, 255, 255, 0.3); }
  @media only screen and (min-width: 45em) {
    .btn {
      padding: 0.3rem 1.4rem;
      width: 15.5rem;
      font-size: 1.4rem; } }
  @media only screen and (min-width: 45em) {
    .btn--full {
      width: 100%; } }
  @media only screen and (max-width: 45em) {
    .btn--mobile {
      width: 100%; } }
  .btn--black {
    background-color: #242426;
    fill: #ffffff;
    color: #ffffff;
    -webkit-transition: all 0.3s cubic-bezier(0.5, 0, 0.5, 1);
    transition: all 0.3s cubic-bezier(0.5, 0, 0.5, 1); }
  .btn--white {
    background-color: #ffffff;
    fill: #242426;
    color: #242426; }
    .btn--white.btn-hover-wipe:before {
      background-color: rgba(36, 36, 38, 0.08); }
  .btn--pink {
    background-color: #ff00ce;
    fill: #ffffff;
    color: #ffffff; }
  .btn--tickets {
    background-color: #ff00ce;
    fill: #ffffff;
    color: #ffffff;
    padding-left: 0.4rem; }
    .btn--tickets--sold-out {
      background-color: #aaaaaa;
      color: #242426;
      fill: #242426;
      opacity: 0.8; }
    .btn--tickets--hidden {
      display: none !important; }
  .btn--subscribe {
    padding-right: 1.1rem; }
    .btn--subscribe svg {
      width: 2.8rem;
      height: 2.8rem;
      margin-left: 0.6rem; }
  .btn--play {
    position: absolute;
    background-color: #ffdd3c;
    z-index: 1; }
    .btn--play-lg {
      width: 75px;
      height: 75px;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%); }
      .btn--play-lg:before {
        border-width: 15px 0 15px 23px; }
      @media only screen and (min-width: 67.5em) {
        .btn--play-lg {
          width: 100px;
          height: 100px; }
          .btn--play-lg:before {
            border-width: 20px 0 20px 28px; } }
    .btn--play-md {
      width: 5.4rem;
      height: 5.4rem; }
      .btn--play-md:before {
        border-width: 10px 0 10px 18px; }
    .btn--play-sm {
      width: 3.5rem;
      height: 3.5rem; }
      .btn--play-sm:before {
        border-width: 6px 0 6px 13px; }
    .btn--play-teaser {
      left: -0.8rem;
      top: -0.8rem; }
    .btn--play:before {
      content: '';
      display: block;
      width: 0;
      height: 0;
      border-style: solid;
      border-color: transparent transparent transparent #242426;
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%); }
  .btn--disabled {
    opacity: 0.5; }

.c-date-icon,
.c-date-icon--offset {
  z-index: 1;
  line-height: 1;
  display: block;
  width: 5.4rem;
  height: 5.4rem;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center; }

.c-date-icon--offset {
  position: absolute;
  left: -0.8rem;
  top: -0.8rem; }

.c-date-icon--black {
  background-color: #242426;
  color: #ffffff; }

.c-date-icon--white {
  background-color: #ffffff;
  color: #242426; }

.event-teaser {
  margin-bottom: 4.0rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 0.8rem; }
  @media only screen and (min-width: 45em) {
    .event-teaser {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-direction: row;
          -ms-flex-direction: row;
              flex-direction: row;
      -webkit-box-align: start;
      -webkit-align-items: flex-start;
          -ms-flex-align: start;
              align-items: flex-start; } }
  .event-teaser__badges {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
    margin-top: 1rem; }
  .event-teaser__image {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1; }
    .event-teaser__image-inner {
      position: relative; }
    .event-teaser__image .event-thumb {
      overflow: hidden; }
      .event-teaser__image .event-thumb__image {
        padding-top: 56.25%; }
        .event-teaser__image .event-thumb__image img,
        .event-teaser__image .event-thumb__image source {
          -webkit-transform-origin: top left;
                  transform-origin: top left;
          -webkit-backface-visibility: hidden;
                  backface-visibility: hidden;
          -webkit-transition: -webkit-transform 0.35s cubic-bezier(0.5, 0, 0.5, 1);
          transition: -webkit-transform 0.35s cubic-bezier(0.5, 0, 0.5, 1);
          transition: transform 0.35s cubic-bezier(0.5, 0, 0.5, 1);
          transition: transform 0.35s cubic-bezier(0.5, 0, 0.5, 1), -webkit-transform 0.35s cubic-bezier(0.5, 0, 0.5, 1); }
    .event-teaser__image:hover .event-thumb__image img,
    .event-teaser__image:hover .event-thumb__image source {
      -webkit-transform: scale(1.08, 1.08) translate(-50%, -50%);
              transform: scale(1.08, 1.08) translate(-50%, -50%); }
  .event-teaser__month {
    font-size: 1.4rem;
    text-transform: uppercase;
    margin-bottom: 0.2rem; }
  .event-teaser__day {
    font-size: 2.4rem;
    font-weight: 600; }
  .event-teaser__content {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    @media only screen and (max-width: 67.5em) {
      .event-teaser__content {
        min-height: 150px; } }
    @media only screen and (min-width: 45em) {
      .event-teaser__content {
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
            -ms-flex-pack: start;
                justify-content: flex-start; } }
    @media only screen and (min-width: 67.5em) {
      .event-teaser__content {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
            -ms-flex-direction: row;
                flex-direction: row;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
            -ms-flex-align: start;
                align-items: flex-start; } }
  .event-teaser__header {
    margin-top: 1.5rem; }
    @media only screen and (min-width: 45em) {
      .event-teaser__header {
        margin-top: 0; } }
    @media only screen and (min-width: 67.5em) {
      .event-teaser__header {
        width: 100%; } }
    .event-teaser__header a {
      color: inherit; }
  .event-teaser__title .u-hover-line {
    display: inline-block; }
  .event-teaser__title {
    margin-bottom: 1.6rem; }
    @media only screen and (min-width: 45em) {
      .event-teaser__title {
        margin-bottom: 0; } }
  .event-teaser__time {
    margin-top: 0.5rem;
    font-weight: bold; }
  .event-teaser__subtitle {
    margin-top: 1.2rem;
    color: #666666; }
  .event-teaser__excerpt {
    margin: 1.6rem 0;
    max-width: 60rem; }
  .event-teaser__live {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex; }
    .event-teaser__live-text {
      font-weight: bold;
      font-size: 0.75em;
      line-height: 2em;
      text-transform: uppercase;
      background: #6ce7fb;
      padding: 0 10px;
      color: #242426; }
      .event-teaser__live-text--now {
        background: #ffdd3c; }
  .event-teaser__person {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex; }
    .event-teaser__person-text {
      font-weight: bold;
      font-size: 0.75em;
      line-height: 2em;
      text-transform: uppercase;
      background: #ffdd3c;
      padding: 0 10px;
      color: #242426; }
  .event-teaser__active {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center; }
    .event-teaser__active span {
      display: inline-block; }
    .event-teaser__active-icon {
      height: 2rem;
      width: 2rem;
      background-color: #ffdd3c;
      position: relative; }
      .event-teaser__active-icon:before {
        content: '';
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 4px 0 4px 6px;
        border-color: transparent transparent transparent #242426;
        -webkit-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%); }
    .event-teaser__active-text {
      font-weight: normal;
      font-size: 1.2rem;
      text-decoration: underline;
      margin-left: 1rem; }
  .event-teaser__options {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
        -ms-flex-order: 4;
            order: 4; }
    @media only screen and (min-width: 45em) {
      .event-teaser__options {
        margin-top: 2rem; } }
    @media only screen and (min-width: 67.5em) {
      .event-teaser__options {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-flex: 1;
        -webkit-flex: 1 1 auto;
            -ms-flex: 1 1 auto;
                flex: 1 1 auto;
        width: 100%;
        margin-top: 0; } }
    .event-teaser__options .event-teaser__btn {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-align-content: center;
          -ms-flex-line-pack: center;
              align-content: center;
      margin-right: 0.4rem; }
      @media only screen and (min-width: 30em) {
        .event-teaser__options .event-teaser__btn {
          margin-right: 0.8rem; } }
      @media only screen and (min-width: 67.5em) {
        .event-teaser__options .event-teaser__btn {
          margin-right: 0;
          margin-bottom: 0.8rem;
          width: 100%;
          max-width: 14.5rem; } }

.video-teaser {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  position: relative;
  color: #242426; }
  .video-teaser__header {
    margin-top: 1.6rem; }
  .video-teaser__subtitle {
    margin-top: 0.8rem; }
  .video-teaser__image {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    -webkit-transition: -webkit-transform 0.35s cubic-bezier(0.5, 0, 0.5, 1);
    transition: -webkit-transform 0.35s cubic-bezier(0.5, 0, 0.5, 1);
    transition: transform 0.35s cubic-bezier(0.5, 0, 0.5, 1);
    transition: transform 0.35s cubic-bezier(0.5, 0, 0.5, 1), -webkit-transform 0.35s cubic-bezier(0.5, 0, 0.5, 1); }
    .video-teaser__image-wrapper {
      padding-top: 56.25%; }
      .video-teaser__image-wrapper:hover .video-teaser__image {
        -webkit-transform: scale(1.08, 1.08) translate(-50%, -50%);
                transform: scale(1.08, 1.08) translate(-50%, -50%); }
  .video-teaser .half-width__video {
    position: relative; }
  .video-teaser--small {
    padding: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 3rem; }
    .video-teaser--small .video-teaser__header {
      padding-left: 1rem; }
  @media only screen and (min-width: 45em) {
    .video-teaser.topic-teaser {
      -webkit-box-pack: start;
      -webkit-justify-content: flex-start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
      -webkit-flex-direction: column-reverse;
          -ms-flex-direction: column-reverse;
              flex-direction: column-reverse; }
      .video-teaser.topic-teaser .btn--play-xs {
        width: 5.4rem;
        height: 5.4rem; }
        .video-teaser.topic-teaser .btn--play-xs:before {
          border-width: 10px 0 10px 18px; } }
  .video-teaser.topic-teaser .video-teaser__header {
    padding-left: 1rem; }
    @media only screen and (min-width: 45em) {
      .video-teaser.topic-teaser .video-teaser__header {
        padding-left: 0; } }
  .video-teaser.topic-teaser .half-width__video {
    position: relative; }
    @media only screen and (min-width: 45em) {
      .video-teaser.topic-teaser .half-width__video {
        max-width: 100%;
        width: 100%;
        height: 100%; } }
  .video-teaser.topic-teaser .topic-teaser__length {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    background: #242426;
    color: #ffffff;
    font-weight: bold;
    padding: 6px;
    font-size: 12px; }
    @media only screen and (min-width: 45em) {
      .video-teaser.topic-teaser .topic-teaser__length {
        display: block; } }

.watch__list {
  margin-top: 3rem; }

.watch__teaser--sm:not(:last-child) {
  margin-bottom: 4rem; }

.watch__teaser--sm .video-teaser__header {
  margin-top: 0; }

a.video-teaser .video-teaser__title {
  display: inline-block; }
  @media (pointer: fine) {
    a.video-teaser .video-teaser__title {
      position: relative; }
      a.video-teaser .video-teaser__title:after {
        content: '';
        display: block;
        position: absolute;
        left: 0;
        bottom: -4px;
        height: 4px;
        background: #242426;
        width: 0;
        -webkit-transition: width 0.3s cubic-bezier(0.5, 0, 0.5, 1);
        transition: width 0.3s cubic-bezier(0.5, 0, 0.5, 1); }
      a.video-teaser .video-teaser__title:hover:after {
        width: 100%; } }
  a.video-teaser .video-teaser__title:after {
    max-width: 4rem; }

a.video-teaser:hover .video-teaser__title:after {
  width: 100%; }

a.video-teaser:hover .video-teaser__image {
  -webkit-transform: scale(1.08, 1.08) translate(-50%, -50%);
          transform: scale(1.08, 1.08) translate(-50%, -50%); }

.hot-topic__teaser a.video-teaser .video-teaser__title:after {
  background-color: #ffffff; }

.series-teaser {
  margin-bottom: 4rem; }
  .series-teaser:hover .video-teaser__image {
    -webkit-transform: scale(1.08, 1.08) translate(-50%, -50%);
            transform: scale(1.08, 1.08) translate(-50%, -50%); }
  .series-teaser:hover .series-teaser__title:after {
    width: 100%; }
  @media only screen and (min-width: 45em) {
    .series-teaser {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
      -webkit-flex-direction: row-reverse;
          -ms-flex-direction: row-reverse;
              flex-direction: row-reverse; } }
  .series-teaser__title {
    margin-top: 2rem;
    display: inline-block; }
    @media only screen and (min-width: 45em) {
      .series-teaser__title {
        margin-top: 0; } }
  .series-teaser__content {
    padding-left: 0; }
    @media only screen and (min-width: 45em) {
      .series-teaser__content {
        padding-left: 2rem; } }
  .series-teaser__excerpt, .series-teaser__date {
    margin-top: 1.5rem; }
  .series-teaser__image {
    width: 100%; }
  @media only screen and (max-width: 45em) {
    .series-teaser .video-teaser__img .btn--play {
      width: 3.5rem;
      height: 3.5rem; }
      .series-teaser .video-teaser__img .btn--play:before {
        border-width: 6px 0 6px 13px; } }

.filter-menu {
  position: relative;
  margin-bottom: 3rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid #aaaaaa;
  border-bottom: 1px solid #aaaaaa; }
  .filter-menu .container-fluid {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    overflow-y: hidden;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none; }
    @media only screen and (max-width: 1024px) {
      .filter-menu .container-fluid {
        max-width: 100%;
        width: 100%;
        -webkit-flex-basis: 100%;
            -ms-flex-preferred-size: 100%;
                flex-basis: 100%; }
        .filter-menu .container-fluid .topics-filter {
          padding-right: 60px; } }
    .filter-menu .container-fluid::-webkit-scrollbar {
      display: none;
      width: 0px;
      max-width: 0px;
      height: 0px;
      background: transparent; }
  .filter-menu h4 {
    font-size: 1.4rem;
    line-height: 1;
    margin: 0 2rem 0 0;
    color: #242426;
    text-transform: uppercase;
    font-weight: bold;
    font-family: 'Geomanist', Arial, sans-serif;
    white-space: nowrap; }

.side-gradient-right {
  position: absolute;
  right: 0;
  width: 75px;
  height: 55px;
  background: white;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(75%, white));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, white 75%); }
  @media only screen and (min-width: 1000px) {
    .side-gradient-right {
      display: none; } }

.view-toggle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 17.5px; }
  .view-toggle ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex; }
    .view-toggle ul li.active {
      background: #ff00ce; }
      .view-toggle ul li.active svg path {
        fill: #ffffff; }
  .view-toggle svg {
    max-height: 25px;
    max-width: 25px; }
  .view-toggle a {
    display: block;
    padding: 17.5px;
    line-height: 0; }
    .view-toggle a svg path {
      -webkit-transition: fill 0.35s cubic-bezier(0.5, 0, 0.5, 1);
      transition: fill 0.35s cubic-bezier(0.5, 0, 0.5, 1); }
    .view-toggle a:hover svg path {
      fill: #ff00ce; }

.topics-filter {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }
  .topics-filter ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex; }
    .topics-filter ul li {
      margin-right: 2rem; }
      .topics-filter ul li.active a {
        color: #242426; }
        .topics-filter ul li.active a::after {
          width: 100%; }
      .topics-filter ul li a {
        margin: 17.5px 0;
        padding: 5px 0;
        display: block;
        font-size: 1.4rem;
        font-weight: bold;
        line-height: 1;
        color: #666666;
        text-transform: uppercase;
        font-family: 'Geomanist', Arial, sans-serif;
        white-space: nowrap;
        -webkit-transition: color 0.35s cubic-bezier(0.5, 0, 0.5, 1);
        transition: color 0.35s cubic-bezier(0.5, 0, 0.5, 1); }
        .topics-filter ul li a:hover {
          color: #242426; }

.c-wysiwyg-content {
  padding-bottom: 2rem; }
  .c-wysiwyg-content a {
    text-decoration: underline;
    color: #0C5F6E;
    font-weight: normal;
    -webkit-transition: color 0.35s cubic-bezier(0.5, 0, 0.5, 1);
    transition: color 0.35s cubic-bezier(0.5, 0, 0.5, 1); }
    .c-wysiwyg-content a:hover {
      color: #242426; }
  .c-wysiwyg-content p {
    line-height: 1.6; }
  .c-wysiwyg-content p + p {
    margin-top: 3rem; }
  .c-wysiwyg-content h2,
  .c-wysiwyg-content h3,
  .c-wysiwyg-content h4,
  .c-wysiwyg-content h5 {
    font-weight: 800;
    color: #242426;
    font-family: 'Geomanist'; }
  .c-wysiwyg-content h2 {
    margin: 5rem 0 3rem; }
  .c-wysiwyg-content h3 {
    margin: 4rem 0 2.5rem; }
  .c-wysiwyg-content h4 {
    margin: 3rem 0 2rem; }
  .c-wysiwyg-content h5 {
    margin: 3rem 0 2rem;
    font-weight: bold;
    text-transform: uppercase; }
  .c-wysiwyg-content ul {
    list-style: disc; }
  .c-wysiwyg-content ol {
    list-style: decimal; }
  .c-wysiwyg-content ul,
  .c-wysiwyg-content ol {
    margin: 3rem 0 3rem 3rem; }
    .c-wysiwyg-content ul li,
    .c-wysiwyg-content ol li {
      padding-left: 0.5rem; }
    .c-wysiwyg-content ul li + li,
    .c-wysiwyg-content ol li + li {
      margin-top: 1.2rem; }
  .c-wysiwyg-content img.alignright {
    float: right;
    margin: 0 0 1em 1em; }
  .c-wysiwyg-content img.alignleft {
    float: left;
    margin: 0 1em 1em 0; }
  .c-wysiwyg-content img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto; }
  .c-wysiwyg-content a img.alignright {
    float: right;
    margin: 0 0 1em 1em; }
  .c-wysiwyg-content a img.alignleft {
    float: left;
    margin: 0 1em 1em 0; }
  .c-wysiwyg-content a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto; }
  .c-wysiwyg-content hr {
    margin: 2.4rem 0; }

.c-oembed-wrapper {
  margin: 3rem 0; }
  @media only screen and (min-width: 60.625em) {
    .c-oembed-wrapper {
      margin: 5rem 0; } }
  .c-oembed-wrapper.c-oembed-wrapper--video {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%; }
    .c-oembed-wrapper.c-oembed-wrapper--video iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: 0; }

.nypr-brand-header-overlay-bg {
  pointer-events: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  opacity: 0;
  z-index: 500;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  background-color: #000; }
  @media only screen and (min-width: 60.625em) {
    .nypr-brand-header-overlay-bg {
      display: none; } }

.nypr-brand-header__logo-list {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  display: none;
  -webkit-flex-basis: 100%;
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 838px;
  padding: 0 2rem; }
  @media only screen and (min-width: 60.625em) {
    .nypr-brand-header__logo-list {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex; } }

a.support-link {
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  height: 4.8rem; }
  @media only screen and (min-width: 60.625em) {
    a.support-link {
      height: 6.2rem; } }

.nypr-brand-header__logo-list svg {
  display: none; }
  .nypr-brand-header__logo-list svg:first-child {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex; }
  @media only screen and (min-width: 60.625em) {
    .nypr-brand-header__logo-list svg {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex; } }

.nypr-brand-header__logo-list svg,
.nypr-brand-header__logo-list svg g {
  fill: #666666;
  pointer-events: none; }

.nypr-brand-header__logo-list a {
  text-decoration: none;
  border: none;
  margin: 0 1rem; }
  .nypr-brand-header__logo-list a:hover {
    text-decoration: none;
    border: none;
    opacity: 1; }

.nypr-brand-header__logo svg,
.nypr-brand-header__logo svg g {
  -webkit-transition: all 0.35s cubic-bezier(0.5, 0, 0.5, 1);
  transition: all 0.35s cubic-bezier(0.5, 0, 0.5, 1); }

.nypr-brand-header__logo:hover svg,
.nypr-brand-header__logo:hover svg g {
  fill: #242426; }

.nypr-brand-header__logo:hover .nypr-brand-header__nypr-logo {
  opacity: 1; }

.nypr-brand-header__nypr-logo {
  width: 7.6rem;
  height: 3.2rem;
  opacity: 0.6;
  margin-left: 1em; }
  @media only screen and (min-width: 60.625em) {
    .nypr-brand-header__nypr-logo {
      width: 85px;
      height: 62px; } }

.logo-link__logo-wnyc-logo {
  width: 64px; }
  @media only screen and (max-width: 60.625em) {
    .logo-link__logo-wnyc-logo {
      width: 100px; } }

.logo-link__logo-gothamist-logo {
  width: 50px;
  height: 36px; }
  @media only screen and (max-width: 800px) {
    .logo-link__logo-gothamist-logo {
      width: 75px;
      height: 77px; } }

.logo-link__logo-wnyc-studios-logo {
  width: 55px; }
  @media only screen and (max-width: 800px) {
    .logo-link__logo-wnyc-studios-logo {
      width: 100px; } }

.logo-link__logo-njpr-logo {
  width: 77px; }
  @media only screen and (max-width: 800px) {
    .logo-link__logo-njpr-logo {
      width: 100px; } }

.logo-link__logo-wqxr-logo {
  width: 85px; }
  @media only screen and (max-width: 800px) {
    .logo-link__logo-wqxr-logo {
      width: 100px; } }

.logo-link__logo-new-sounds-logo {
  width: 119px; }
  @media only screen and (max-width: 800px) {
    .logo-link__logo-new-sounds-logo {
      width: 100px; } }

.logo-link__logo-greene-space-logo {
  width: 44px; }
  @media only screen and (max-width: 800px) {
    .logo-link__logo-greene-space-logo {
      width: 100px; } }
  .logo-link__logo-greene-space-logo .bump {
    fill: white; }

.nypr-brand-header__square-bracket-open,
.nypr-brand-header__square-bracket-close {
  opacity: 0.5;
  height: 31px;
  width: 25px; }

.modal--is-ready .nypr-brand-header-overlay-bg {
  opacity: 0.3;
  pointer-events: all;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out; }

.nypr-brand-header-menu .bm-menu-container .bm-menu,
.nypr-brand-header-menu .bm-outlet > .bm-menu-container .bm-menu {
  position: fixed;
  z-index: 1110;
  background-color: #ffffff;
  padding: 0 10px; }

.nypr-brand-header-menu,
.nypr-brand-header-menu .bm-outlet > .bm-content {
  position: static;
  overflow: visible; }

.nypr-brand-header {
  background-color: #ffffff;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: space-between;
  -webkit-align-items: space-between;
      -ms-flex-align: space-between;
          align-items: space-between;
  width: 100%;
  margin-bottom: 0;
  height: 4.8rem; }
  @media only screen and (min-width: 60.625em) {
    .nypr-brand-header {
      height: 62px;
      overflow: hidden; } }

.nypr-brand-header-button {
  font-family: "Geomanist", Arial, sans-serif;
  padding: 9px 15px;
  font-size: 14px;
  line-height: 18px;
  display: inline-block;
  color: #242426;
  font-weight: 700;
  width: auto;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit; }
  .nypr-brand-header-button:hover {
    text-decoration: underline; }

.nypr-brand-header-caret {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  width: auto;
  height: 14px;
  top: 3px;
  position: relative;
  margin-left: 6px; }
  .nypr-brand-header-caret path {
    fill: #666666; }

.nypr-brand-header-button.mod-donate {
  background-color: white;
  color: #fff; }

.nypr-brand-header-button.mod-network {
  font-family: "Geomanist", Arial, sans-serif; }
  @media only screen and (min-width: 60.625em) {
    .nypr-brand-header-button.mod-network {
      display: none; } }

button.nypr-brand-header-close {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 0;
  font-weight: bold;
  height: 4.8rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  vertical-align: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-transition: none;
  transition: none;
  white-space: nowrap;
  padding-right: 0;
  font-family: "Geomanist", Arial, sans-serif; }
  button.nypr-brand-header-close > span {
    display: block; }
  button.nypr-brand-header-close:hover {
    text-decoration: none;
    border-bottom: 0;
    opacity: 0.8; }
  button.nypr-brand-header-close span {
    padding-right: 22px; }

.nypr-brand-header-close-icon {
  width: auto;
  height: 12px;
  margin-top: 2px;
  margin-left: 5px;
  top: 1px;
  position: relative;
  margin-left: 6px; }
  .nypr-brand-header-close-icon path {
    fill: #242426; }

.nypr-brand-header-menu-items {
  border-top: 1px solid rgba(204, 204, 204, 0.36);
  list-style-type: none;
  margin: 0;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 28px 10px 0;
  max-height: 530px;
  height: 85vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  overflow-y: scroll; }

.nypr-brand-header-menu-items svg {
  pointer-events: none; }

.nypr-brand-header-menu-items li {
  padding: 8px 0;
  line-height: 15px;
  margin: 0; }

.nypr-brand-header-menu-items a {
  display: block;
  padding: 5px 0;
  font-size: 15px;
  line-height: 18px;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 0;
  opacity: 1; }
  .nypr-brand-header-menu-items a:hover {
    text-decoration: underline;
    border-bottom: 0;
    opacity: 0.6; }

.nypr-brand-header-menu .bm-menu-container .bm-menu {
  position: fixed;
  z-index: 1110;
  background-color: #ffffff;
  top: 0;
  bottom: 0;
  text-align: right;
  padding: 0 10px;
  right: 0;
  left: initial;
  -webkit-transform: translate3d(100%, 0, 0);
          transform: translate3d(100%, 0, 0);
  visibility: hidden;
  -webkit-transition: all .3s;
  transition: all .3s; }

.nypr-brand-header-menu.modal--is-ready .bm-menu-container .bm-menu {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  visibility: visible;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s; }
  @media only screen and (min-width: 60.625em) {
    .nypr-brand-header-menu.modal--is-ready .bm-menu-container .bm-menu {
      display: none; } }

@-webkit-keyframes blinkAnimation {
  0% {
    opacity: 1; }
  50% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes blinkAnimation {
  0% {
    opacity: 1; }
  50% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9998;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.5, 0, 0.5, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.5, 0, 0.5, 1);
  transition: transform 0.3s cubic-bezier(0.5, 0, 0.5, 1);
  transition: transform 0.3s cubic-bezier(0.5, 0, 0.5, 1), -webkit-transform 0.3s cubic-bezier(0.5, 0, 0.5, 1); }
  .site-header.hide {
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0); }

.site-menu {
  background-color: #242426;
  padding: 1.2rem 0; }
  @media only screen and (min-width: 60.625em) {
    .site-menu {
      padding: 0; } }
  .home .site-menu,
  .watch-live .site-menu {
    background: transparent;
    -webkit-transition: background 0.25s ease-in-out;
    transition: background 0.25s ease-in-out; }
  .home .add-bkg .site-menu,
  .home.modal--nav-modal .site-menu {
    background: #242426; }
  .site-menu__inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between; }
  .site-menu a {
    color: #ffffff;
    display: block; }
  .site-menu__logo {
    fill: #ffffff;
    position: relative; }
    .site-menu__logo .logo-stage {
      position: relative; }
    .site-menu__logo .bars {
      height: 3.3rem;
      width: 100%;
      position: absolute;
      top: 0;
      left: 0; }
    .site-menu__logo .bar-white {
      position: absolute;
      width: 1.8rem;
      background-color: #ffffff;
      bottom: 0;
      display: block;
      height: 0;
      will-change: height;
      -webkit-transition: height 0.3s ease-in-out;
      transition: height 0.3s ease-in-out; }
      .site-menu__logo .bar-white.bar-one {
        left: 0.1rem; }
        .site-menu__logo .bar-white.bar-one.animate {
          height: 5.5px; }
      .site-menu__logo .bar-white.bar-two {
        left: 22px; }
        .site-menu__logo .bar-white.bar-two.animate {
          height: 29px; }
      .site-menu__logo .bar-white.bar-three {
        left: 44px; }
        .site-menu__logo .bar-white.bar-three.animate {
          height: 26px; }
      .site-menu__logo .bar-white.bar-four {
        left: 66px; }
        .site-menu__logo .bar-white.bar-four.animate {
          height: 33px; }
    .site-menu__logo svg {
      width: 8.4rem;
      height: 6.4rem;
      display: block; }

.primary-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }
  .primary-nav__menu li {
    display: none;
    position: relative; }
    @media only screen and (min-width: 60.625em) {
      .primary-nav__menu li {
        display: inline-block;
        padding-left: 1rem;
        padding-right: 1rem; }
        body.post-type-archive-videos .primary-nav__menu li.menu-item-35 a, .primary-nav__menu li.current-menu-item a {
          border-color: #aaaaaa; }
        body.live-video.post-type-archive-videos .primary-nav__menu li.menu-item-35 a {
          border-color: #ffdd3c; } }
    @media only screen and (min-width: 76.25em) {
      .primary-nav__menu li {
        padding-left: 1.6rem;
        padding-right: 1.6rem; } }
    .primary-nav__menu li.show-mobile {
      display: inline-block; }
  .primary-nav__menu a {
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 0.05rem;
    text-transform: uppercase;
    padding: 1.2rem 0.8rem;
    display: block; }
    @media only screen and (min-width: 30em) {
      .primary-nav__menu a {
        padding: 1.2rem; } }
    @media only screen and (min-width: 45em) {
      .primary-nav__menu a {
        font-size: 1.8rem;
        padding: 1rem; } }
    @media only screen and (min-width: 60.625em) {
      .primary-nav__menu a {
        padding: 3rem 0 2.8rem;
        border-bottom: 6px solid #242426;
        -webkit-transition: border-color 0.3s ease-in-out;
        transition: border-color 0.3s ease-in-out; }
        .primary-nav__menu a:hover {
          border-color: #ffffff; } }
    body.front-page .primary-nav__menu a {
      border-color: transparent; }
      body.front-page .primary-nav__menu a:hover {
        border-color: #ffffff; }
  .primary-nav__search {
    display: none; }
    @media only screen and (min-width: 67.5em) {
      .primary-nav__search {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: row-reverse;
            -ms-flex-direction: row-reverse;
                flex-direction: row-reverse; } }
    .primary-nav__search-toggle {
      height: 4.4rem;
      width: 4.4rem;
      fill: #ffffff; }
      .primary-nav__search-toggle .primary-nav__search-toggle--close {
        display: none; }
      .search-open .primary-nav__search-toggle .primary-nav__search-toggle--open {
        display: none; }
      .search-open .primary-nav__search-toggle .primary-nav__search-toggle--close {
        display: block; }
      .primary-nav__search-toggle svg {
        width: 20px;
        height: 20px; }
    .primary-nav__search-wrapper {
      width: 0;
      overflow: hidden;
      -webkit-transition: all 0.25s ease-in-out;
      transition: all 0.25s ease-in-out;
      position: relative;
      height: 3.4rem; }
      .search-open .primary-nav__search-wrapper {
        width: 20rem; }
      .primary-nav__search-wrapper .search-form__group {
        position: static; }
  .primary-nav__toggle {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center; }
    .primary-nav__toggle--mobile {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      width: 4rem;
      height: 4rem; }
      @media only screen and (min-width: 30em) {
        .primary-nav__toggle--mobile {
          margin-left: 1rem; } }
      @media only screen and (min-width: 60.625em) {
        .primary-nav__toggle--mobile {
          display: none; } }
      .primary-nav__toggle--mobile.modal--will-focus .primary-nav__toggle-slice:first-child {
        -webkit-transform: rotate(45deg);
                transform: rotate(45deg);
        top: 0.8rem; }
      .primary-nav__toggle--mobile.modal--will-focus .primary-nav__toggle-slice:nth-child(2n) {
        opacity: 0; }
      .primary-nav__toggle--mobile.modal--will-focus .primary-nav__toggle-slice:last-child {
        -webkit-transform: rotate(-45deg);
                transform: rotate(-45deg);
        bottom: 0.8rem; }
    .primary-nav__toggle--desktop {
      display: none;
      -webkit-transition: all 0.35s cubic-bezier(0.5, 0, 0.5, 1);
      transition: all 0.35s cubic-bezier(0.5, 0, 0.5, 1); }
      .primary-nav__toggle--desktop:hover {
        color: #ff00ce; }
        .primary-nav__toggle--desktop:hover span {
          border-color: #ff00ce transparent transparent transparent; }
          body.modal--nav-modal .primary-nav__toggle--desktop:hover span {
            border-color: transparent transparent #ff00ce transparent; }
      @media only screen and (min-width: 60.625em) {
        .primary-nav__toggle--desktop {
          display: -webkit-box;
          display: -webkit-flex;
          display: -ms-flexbox;
          display: flex;
          font-weight: bold;
          font-size: 1.8rem;
          letter-spacing: 0.05rem;
          text-transform: uppercase;
          color: #ffffff;
          padding: 3rem 1rem 2.8rem;
          border-bottom: 6px solid #242426; }
          body.front-page .primary-nav__toggle--desktop {
            border-color: transparent; } }
      @media only screen and (min-width: 67.5em) {
        .primary-nav__toggle--desktop {
          padding: 3rem 1.6rem 2.8rem; } }
      .primary-nav__toggle--desktop span {
        display: block;
        width: 0;
        height: 0;
        border-style: solid;
        margin-left: 1rem;
        border-width: 10px 6px 0 6px;
        border-color: #ffffff transparent transparent transparent;
        -webkit-transition: border-color 0.35s cubic-bezier(0.5, 0, 0.5, 1);
        transition: border-color 0.35s cubic-bezier(0.5, 0, 0.5, 1); }
        body.modal--nav-modal .primary-nav__toggle--desktop span {
          border-width: 0 6px 10px 6px;
          border-color: transparent transparent #ffffff transparent; }
    .primary-nav__toggle-inner {
      display: block;
      width: 2.4rem;
      height: 1.8rem;
      position: absolute; }
    .primary-nav__toggle-slice {
      display: block;
      width: 100%;
      height: 0.2rem;
      background: #ffffff;
      position: absolute;
      left: 0;
      -webkit-transition: all 0.2s ease;
      transition: all 0.2s ease; }
      .primary-nav__toggle-slice:first-child {
        top: 0; }
      .primary-nav__toggle-slice:nth-child(2) {
        top: 50%;
        margin-top: -0.1rem; }
      .primary-nav__toggle-slice:last-child {
        bottom: 0; }
  .primary-nav__social {
    display: none; }
    @media only screen and (min-width: 60.625em) {
      .primary-nav__social {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        margin-left: 2.2rem; } }
    @media only screen and (min-width: 67.5em) {
      .primary-nav__social {
        margin-left: 1.6rem; } }
    @media only screen and (min-width: 76.25em) {
      .primary-nav__social {
        margin-left: 3rem; } }
  body.live-video .primary-nav li.attach-live-label {
    position: relative; }
    body.live-video .primary-nav li.attach-live-label:after {
      content: 'Live';
      display: inline-block;
      background-color: #ffdd3c;
      color: #242426;
      position: absolute;
      bottom: -3rem;
      left: 50%;
      padding: .5rem 2.4rem 0.5rem 3.2rem;
      font-size: 1.2rem;
      font-weight: normal;
      letter-spacing: 0.5px;
      -webkit-transform: translate3d(-50%, 0, 0);
              transform: translate3d(-50%, 0, 0);
      -webkit-backface-visibility: hidden;
              backface-visibility: hidden;
      z-index: 1;
      -webkit-transition: -webkit-transform 0.2s ease;
      transition: -webkit-transform 0.2s ease;
      transition: transform 0.2s ease;
      transition: transform 0.2s ease, -webkit-transform 0.2s ease; }
      @media only screen and (min-width: 60.625em) {
        body.live-video .primary-nav li.attach-live-label:after {
          bottom: -1.4rem; } }
    body.live-video .primary-nav li.attach-live-label:before {
      content: '•';
      display: block;
      color: #242426;
      position: absolute;
      z-index: 2;
      bottom: -3rem;
      left: 50%;
      -webkit-transform: translate3d(-50%, 0, 0);
              transform: translate3d(-50%, 0, 0);
      padding-right: 4.3rem;
      -webkit-transition: -webkit-transform 0.3s ease;
      transition: -webkit-transform 0.3s ease;
      transition: transform 0.3s ease;
      transition: transform 0.3s ease, -webkit-transform 0.3s ease;
      -webkit-animation: blinkAnimation 1.5s cubic-bezier(0.5, 0, 1, 1) 0s infinite;
              animation: blinkAnimation 1.5s cubic-bezier(0.5, 0, 1, 1) 0s infinite; }
      @media only screen and (min-width: 60.625em) {
        body.live-video .primary-nav li.attach-live-label:before {
          bottom: -1.4rem; } }
    body.live-video .primary-nav li.attach-live-label .live-label-tooltip {
      position: absolute;
      left: 50%;
      -webkit-transform: translateX(-50%);
              transform: translateX(-50%);
      bottom: -.2rem;
      width: 0;
      height: 0;
      border-left: 8px solid transparent;
      border-right: 8px solid transparent;
      border-bottom: 8px solid #ffdd3c; }
      @media only screen and (min-width: 60.625em) {
        body.live-video .primary-nav li.attach-live-label .live-label-tooltip {
          bottom: 1.4rem; } }
  body.live-video .site-header.hide .primary-nav li.attach-live-label:after {
    -webkit-transform: translate3d(-50%, -80%, 0);
            transform: translate3d(-50%, -80%, 0); }
  body.live-video .site-header.hide .primary-nav li.attach-live-label:before {
    -webkit-transform: translate3d(-50%, -80%, 0);
            transform: translate3d(-50%, -80%, 0); }
  body.live-video.post-type-archive-videos .primary-nav li.attach-live-label .live-label-tooltip, body.live-video.post-type-archive-videos .primary-nav li.attach-live-label:before, body.live-video.post-type-archive-videos .primary-nav li.attach-live-label:after {
    display: none; }

.bar-white {
  height: 0;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0; }

.nav-modal {
  background-color: #242426;
  color: #ffffff;
  -webkit-transform: translate3d(0, -100%, 0);
          transform: translate3d(0, -100%, 0);
  overflow: hidden;
  z-index: 9997;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.5, 0, 0.5, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.5, 0, 0.5, 1);
  transition: transform 0.3s cubic-bezier(0.5, 0, 0.5, 1);
  transition: transform 0.3s cubic-bezier(0.5, 0, 0.5, 1), -webkit-transform 0.3s cubic-bezier(0.5, 0, 0.5, 1); }
  @media only screen and (min-width: 45em) {
    .nav-modal {
      padding-top: 3rem; } }
  @media only screen and (min-width: 60.625em) {
    .nav-modal {
      padding-top: 5rem; } }
  @media only screen and (max-width: 60.625em) {
    .nav-modal .g-container-fluid {
      padding-left: 0;
      padding-right: 0; } }
  @media only screen and (max-width: 60.625em) {
    .nav-modal .g-row {
      margin-left: 0;
      margin-right: 0; } }
  .nav-modal__toggle {
    position: absolute;
    top: -9999px;
    left: -9999px; }
    .u-keyboard-user .nav-modal__toggle:focus {
      top: 0;
      left: 0;
      padding: 0.8rem 2rem;
      font-size: 1.4rem;
      text-transform: uppercase;
      background-color: #ffffff;
      color: #242426;
      letter-spacing: 0.05rem;
      font-weight: bold; }
  .nav-modal.modal--is-ready {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); }
  .nav-modal, .nav-modal__inner {
    height: 100vh; }
  .nav-modal__inner {
    overflow: auto;
    padding-top: 13.6rem; }
  .nav-modal a {
    color: #ffffff;
    display: block; }
  @media only screen and (max-width: 60.625em) {
    .nav-modal .g-col {
      padding-left: 2rem;
      padding-right: 2rem; } }
  .nav-modal__primary, .nav-modal__search, .nav-modal__secondary, .nav-modal__topics, .nav-modal__newsletter {
    padding-top: 2.8rem;
    padding-bottom: 2.8rem;
    border-bottom: 1px solid #4F4E51; }
    @media only screen and (min-width: 60.625em) {
      .nav-modal__primary, .nav-modal__search, .nav-modal__secondary, .nav-modal__topics, .nav-modal__newsletter {
        padding-top: 0;
        padding-bottom: 0;
        border-bottom: none; } }
  .nav-modal__primary {
    border-bottom: 1px solid #4F4E51; }
    @media only screen and (min-width: 60.625em) {
      .nav-modal__primary {
        display: none; } }
    .nav-modal__primary li {
      display: block; }
    .nav-modal__primary a {
      display: block;
      padding: 1.2rem 0;
      font-size: 4rem;
      line-height: 1;
      font-weight: 900;
      text-transform: uppercase; }
    body.live-video .nav-modal__primary .attach-live-label {
      position: relative; }
      body.live-video .nav-modal__primary .attach-live-label:after {
        content: 'Live';
        display: inline-block;
        position: absolute;
        right: -1.5rem;
        top: 50%;
        top: calc(50% - 2px);
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
        background-color: #ffdd3c;
        color: #242426;
        padding: 0.3rem 1.4rem 0.3rem 2.2rem;
        font-size: 1.2rem;
        pointer-events: none; }
      body.live-video .nav-modal__primary .attach-live-label:before {
        content: '•';
        display: block;
        position: absolute;
        z-index: 2;
        top: 50%;
        top: calc(50% - 2px);
        color: #242426;
        right: -1.5rem;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
        padding-right: 4rem;
        -webkit-transition: -webkit-transform 0.3s ease;
        transition: -webkit-transform 0.3s ease;
        transition: transform 0.3s ease;
        transition: transform 0.3s ease, -webkit-transform 0.3s ease;
        -webkit-animation: blinkAnimation 1.5s cubic-bezier(0.5, 0, 1, 1) 0s infinite;
                animation: blinkAnimation 1.5s cubic-bezier(0.5, 0, 1, 1) 0s infinite;
        pointer-events: none; }
  .nav-modal__search {
    padding: 2.8rem 0; }
    .nav-modal__search .input-active .search-form__label {
      top: 3%; }
    .nav-modal__search .search-form__input::-webkit-input-placeholder {
      color: #ffffff; }
    .nav-modal__search .search-form__input::-moz-placeholder {
      color: #ffffff; }
    .nav-modal__search .search-form__input::-ms-input-placeholder {
      color: #ffffff; }
    .nav-modal__search .search-form__input::placeholder {
      color: #ffffff; }
    @media only screen and (min-width: 60.625em) {
      .nav-modal__search.search-sm {
        display: none; } }
    .nav-modal__search.search-lg {
      display: none; }
      @media only screen and (min-width: 60.625em) {
        .nav-modal__search.search-lg {
          display: block;
          padding: 0 3rem 0 0;
          margin-top: 2.8rem;
          margin-left: 0;
          margin-right: 0; } }
  .nav-modal__secondary-menu li, .nav-modal__topics li {
    display: block; }
    .nav-modal__secondary-menu li a, .nav-modal__topics li a {
      padding: 1.2rem 0; }
    @media only screen and (min-width: 60.625em) {
      .nav-modal__secondary-menu li:first-child a, .nav-modal__topics li:first-child a {
        padding-top: 0; } }
  .nav-modal__secondary-menu a, .nav-modal__topics a {
    white-space: nowrap;
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 0.05rem;
    text-transform: uppercase;
    display: block; }
    .nav-modal__secondary-menu a:after, .nav-modal__topics a:after {
      display: inline-block;
      background-size: 1.6rem 1.3rem;
      height: 1.3rem;
      width: 1.6rem;
      margin-left: 1rem;
      position: relative;
      top: -0.1rem;
      -webkit-transition: margin 0.25s ease;
      transition: margin 0.25s ease; }
    .nav-modal__secondary-menu a:hover:after, .nav-modal__topics a:hover:after {
      margin-left: 1.8rem; }
  .nav-modal__topics-title {
    font-size: 4rem;
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 2.5rem; }
  .nav-modal__newsletter {
    border-bottom: 0; }
    @media only screen and (min-width: 45em) {
      .nav-modal__newsletter {
        padding-bottom: 5rem; } }
    .nav-modal__newsletter-confirm {
      padding-bottom: 8rem; }
      @media only screen and (max-width: 60.625em) {
        .nav-modal__newsletter-confirm {
          margin-left: 0; } }
      .nav-modal__newsletter-confirm .newsletter-confirm {
        max-width: 400px; }
        @media only screen and (min-width: 60.625em) {
          .nav-modal__newsletter-confirm .newsletter-confirm {
            max-width: 100%; }
            .nav-modal__newsletter-confirm .newsletter-confirm__inner {
              position: absolute;
              bottom: 2rem;
              right: 0;
              width: 48%; } }
        @media only screen and (min-width: 67.5em) {
          .nav-modal__newsletter-confirm .newsletter-confirm__inner {
            width: 100%; } }
  .nav-modal__social-nav {
    margin-top: 3rem; }

.search-form__group {
  position: relative; }

.search-form input {
  height: 3.4rem;
  padding: 0 3rem 0.5rem 0;
  background: none;
  border: 0;
  border-bottom: 2px solid #ffffff;
  display: block;
  width: 100%;
  font-size: 1.6rem;
  color: #ffffff;
  font-family: inherit; }
  .search-form input::-webkit-input-placeholder {
    color: #ffffff;
    font-family: "Geomanist", Arial, sans-serif;
    font-size: 1.6rem;
    line-height: 1.3; }
  .search-form input::-moz-placeholder {
    color: #ffffff;
    font-family: "Geomanist", Arial, sans-serif;
    font-size: 1.6rem;
    line-height: 1.3; }
  .search-form input::-ms-input-placeholder {
    color: #ffffff;
    font-family: "Geomanist", Arial, sans-serif;
    font-size: 1.6rem;
    line-height: 1.3; }
  .search-form input::placeholder {
    color: #ffffff;
    font-family: "Geomanist", Arial, sans-serif;
    font-size: 1.6rem;
    line-height: 1.3; }
  main.main .search-form input {
    color: #242426;
    border-color: #242426; }
    main.main .search-form input::-webkit-input-placeholder {
      color: #242426; }
    main.main .search-form input::-moz-placeholder {
      color: #242426; }
    main.main .search-form input::-ms-input-placeholder {
      color: #242426; }
    main.main .search-form input::placeholder {
      color: #242426; }

.search-form__submit {
  height: 3rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  fill: #ffffff; }
  .search-form__submit svg {
    width: 20px;
    height: 20px; }
  main.main .search-form__submit {
    fill: #242426; }

.alert-enabled.home .site-menu, .alert-enabled.watch-live .site-menu {
  background: #242426; }

.alert-enabled.home .hero-slideshow__slides {
  padding-top: 0 !important; }
  .alert-enabled.home .hero-slideshow__slides::before {
    background: transparent !important; }

.alert-enabled.home .site-alert {
  margin-top: 7.55em; }
  @media only screen and (min-width: 67.5em) {
    .alert-enabled.home .site-alert {
      margin-top: 8.55em; } }

.site-alert {
  min-height: 175px;
  height: auto;
  padding: 26.5px 0;
  background: #6ce7fb;
  color: #242426;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }
  .site-alert.blue-background {
    background: #6ce7fb;
    color: #242426; }
  .site-alert.pink-background {
    background: #ff00ce;
    color: #ffffff; }
  .site-alert .container-fluid {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch; }
    @media only screen and (min-width: 67.5em) {
      .site-alert .container-fluid {
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
            -ms-flex-direction: row;
                flex-direction: row; } }
  .site-alert .alert-image {
    max-width: 200px;
    display: none; }
    .site-alert .alert-image img {
      max-height: 150px; }
  .site-alert .alert-content h2 {
    margin-bottom: 5px;
    font-size: 26px; }
    @media only screen and (min-width: 67.5em) {
      .site-alert .alert-content h2 {
        font-size: 36px; } }
  @media only screen and (min-width: 67.5em) {
    .site-alert .alert-content {
      padding: 0 20px;
      -webkit-box-flex: 1;
      -webkit-flex-grow: 1;
          -ms-flex-positive: 1;
              flex-grow: 1; } }
  .site-alert .alert-content__inner {
    max-width: 650px; }
    @media only screen and (min-width: 87.5em) {
      .site-alert .alert-content__inner {
        max-width: 800px; } }
  .site-alert .alert-button {
    padding-top: 16px; }
    .site-alert .alert-button a {
      float: right;
      max-width: 150px; }
      @media only screen and (min-width: 67.5em) {
        .site-alert .alert-button a {
          max-width: none; } }
    @media only screen and (min-width: 67.5em) {
      .site-alert .alert-button {
        padding-top: 0; } }

@media only screen and (min-width: 67.5em) {
  .site-alert .alert-image {
    display: block; } }

.global-footer {
  background-color: #242426; }
  .global-footer__wrap {
    background-color: #242426; }
    @media only screen and (min-width: 67.5em) {
      .global-footer__wrap {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-flow: row wrap;
            -ms-flex-flow: row wrap;
                flex-flow: row wrap;
        -webkit-box-pack: end;
        -webkit-justify-content: flex-end;
            -ms-flex-pack: end;
                justify-content: flex-end; } }
  @media only screen and (min-width: 67.5em) {
    .global-footer__mid {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between;
      width: 100%;
      -webkit-box-align: end;
      -webkit-align-items: flex-end;
          -ms-flex-align: end;
              align-items: flex-end; } }
  .global-footer--border:before {
    top: 0;
    left: 0;
    width: 100%;
    content: "";
    position: absolute;
    border-top: solid 2px #aaaaaa;
    opacity: .4; }
    @media only screen and (min-width: 67.5em) {
      .global-footer--border:before {
        display: none; } }
  .global-footer__address {
    padding-bottom: 4rem;
    line-height: 1.3; }
    @media only screen and (min-width: 67.5em) {
      .global-footer__address {
        padding: 0; } }
  @media only screen and (min-width: 67.5em) {
    .global-footer__copyright {
      display: inline-block; } }
  .global-footer__copyright {
    margin-top: 2rem; }
    @media only screen and (min-width: 67.5em) {
      .global-footer__copyright {
        margin-left: 3rem; } }
  .global-footer__bottom {
    position: relative;
    padding-top: 4rem; }
    @media only screen and (min-width: 67.5em) {
      .global-footer__bottom {
        padding: 0; } }
    .global-footer__bottom .menu-bottom-menu-container {
      display: inline-block; }
    .global-footer__bottom .menu-item {
      display: inline-block;
      margin-right: 5px; }
      .global-footer__bottom .menu-item:last-child {
        margin-right: 0; }
      .global-footer__bottom .menu-item a {
        font-size: 1.2rem;
        line-height: 1.3;
        color: #fff;
        font-weight: 400;
        text-decoration: underline; }
  .global-footer__newsletter {
    position: relative;
    padding-top: 4rem;
    padding-bottom: 4rem; }
    @media only screen and (min-width: 67.5em) {
      .global-footer__newsletter {
        padding: 0; } }
    .global-footer__newsletter-confirm .newsletter-confirm {
      max-width: 400px;
      margin-bottom: 4rem; }
      @media only screen and (min-width: 67.5em) {
        .global-footer__newsletter-confirm .newsletter-confirm {
          margin-top: 2rem;
          margin-bottom: 0;
          max-width: 100%; } }
  .global-footer__sponsor {
    position: relative;
    padding-top: 4rem;
    padding-bottom: 4rem; }
    .global-footer__sponsor p {
      line-height: 1.3; }
    .global-footer__sponsor br {
      display: none; }
      @media only screen and (min-width: 67.5em) {
        .global-footer__sponsor br {
          display: block; } }
    .global-footer__sponsor .sponsor-logo {
      line-height: 1;
      display: block; }
      .global-footer__sponsor .sponsor-logo svg {
        margin-top: 2rem;
        width: 275px;
        display: block; }
        .global-footer__sponsor .sponsor-logo svg g {
          fill: #ffffff; }
        @media only screen and (min-width: 67.5em) {
          .global-footer__sponsor .sponsor-logo svg {
            margin-top: 1rem;
            width: 175px; } }
    @media only screen and (min-width: 67.5em) {
      .global-footer__sponsor {
        padding-top: 0;
        padding-bottom: 0; } }
  .global-footer__social {
    position: relative;
    padding-top: 4rem;
    padding-bottom: 4rem; }
    @media only screen and (min-width: 67.5em) {
      .global-footer__social {
        padding-bottom: 2rem;
        margin-right: 0; } }

.newsletter {
  position: relative; }
  .newsletter-hide {
    display: none; }
  .newsletter input[type="submit"] {
    width: 50px;
    height: 100%;
    opacity: 0; }
  .newsletter__cta {
    font-size: 2.4rem;
    line-height: 1.5;
    color: #ffffff;
    font-weight: 800; }
    @media only screen and (min-width: 60.625em) {
      .newsletter__cta {
        font-size: 1.8rem;
        line-height: 1.66; } }
  .newsletter__arrow-wrap {
    position: absolute;
    top: 0;
    height: 100%;
    right: 0;
    cursor: pointer; }
    .newsletter__arrow-wrap:hover .newsletter__input-arrow {
      -webkit-transform: translateX(5px);
              transform: translateX(5px); }
  .newsletter__input {
    position: relative; }
    @media only screen and (min-width: 30em) {
      .newsletter__input {
        width: 75%; } }
    @media only screen and (min-width: 60.625em) {
      .newsletter__input {
        width: 100%; } }
    .newsletter__input-field {
      margin: 1.5rem 0;
      padding: 1rem 1rem;
      width: 100%;
      height: 50px;
      line-height: 50px;
      border: none; }
      .newsletter__input-field[placeholder] {
        font-size: 14px;
        color: #242426;
        font-family: "Geomanist";
        line-height: 1; }
      .newsletter__input-field:focus {
        outline: none; }
      @media only screen and (min-width: 60.625em) {
        .newsletter__input-field {
          padding: 1rem 5.5rem 1rem 2rem; } }
    .newsletter__input-arrow {
      display: block;
      position: absolute;
      right: 2rem;
      top: 2.85rem;
      -webkit-transition: all 0.35s cubic-bezier(0.5, 0, 0.5, 1);
      transition: all 0.35s cubic-bezier(0.5, 0, 0.5, 1); }
  .newsletter__checkbox {
    width: 20px;
    height: 20px;
    margin-right: .5rem;
    display: block;
    position: relative;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    cursor: pointer; }
    .newsletter__checkbox input {
      position: absolute;
      opacity: 0;
      cursor: pointer;
      height: 0;
      width: 0;
      height: 100%;
      width: 100%;
      z-index: 10; }
    .newsletter__checkbox input:checked ~ .checkbox:after {
      display: block; }
    .newsletter__checkbox .checkbox {
      border: solid 1px #ffffff;
      width: 20px;
      height: 20px;
      position: absolute;
      top: 0;
      left: 0; }
      .newsletter__checkbox .checkbox:after {
        left: 6px;
        top: 2px;
        width: 4px;
        height: 8px;
        border: solid white;
        border-width: 0 2px 2px 0;
        -webkit-transform: rotate(45deg);
                transform: rotate(45deg);
        position: absolute;
        content: "";
        display: none; }
      .newsletter__checkbox .checkbox.remove:after {
        display: none; }
  .newsletter__terms {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
    .newsletter__terms-agree {
      margin-left: .5rem;
      width: 85%; }
      @media only screen and (min-width: 45em) {
        .newsletter__terms-agree {
          width: 90%; } }
      .newsletter__terms-agree a {
        display: inline-block; }

.newsletter__success {
  display: none; }
  .is-success .newsletter__success {
    -webkit-transition: opacity 0.25s cubic-bezier(0.5, 0, 0.5, 1);
    transition: opacity 0.25s cubic-bezier(0.5, 0, 0.5, 1);
    display: block;
    opacity: 0;
    color: #ffffff;
    font-size: 1.6rem;
    width: 100%;
    font-style: italic;
    margin-top: 1rem;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; }
  .is-ready .newsletter__success {
    opacity: 1; }

.newsletter__error {
  display: none; }
  .is-error .newsletter__error {
    -webkit-transition: opacity 0.25s cubic-bezier(0.5, 0, 0.5, 1);
    transition: opacity 0.25s cubic-bezier(0.5, 0, 0.5, 1);
    display: block;
    margin-top: 1rem;
    background-color: #ffdd3c;
    color: #242426;
    padding: 1.5rem;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    font-weight: 600;
    max-height: 100%;
    font-size: 1.6rem; }
  .is-ready .newsletter__error {
    opacity: 1; }
  .newsletter__error a {
    display: block;
    color: #242426;
    font-size: 1.2rem;
    text-decoration: underline;
    margin-top: 1rem;
    font-weight: 400; }

.mc_embed_signup {
  position: relative; }
  .mc_embed_signup form {
    text-align: left;
    -webkit-transition: opacity 0.25s cubic-bezier(0.5, 0, 0.5, 1);
    transition: opacity 0.25s cubic-bezier(0.5, 0, 0.5, 1); }
    .is-submitted .mc_embed_signup form {
      opacity: 0;
      visibility: hidden;
      pointer-events: none; }

.mc_embed_signup label {
  text-align: left; }

.mc_embed_signup input.email {
  border: transparent; }

.global-footer .secondary-nav {
  position: relative;
  padding-top: 4rem;
  padding-bottom: 4rem; }
  @media only screen and (min-width: 67.5em) {
    .global-footer .secondary-nav {
      padding: 0;
      margin-top: .65rem; } }
  .global-footer .secondary-nav__arrow {
    fill: #ffffff;
    width: 15px;
    height: 100%;
    vertical-align: middle;
    margin-left: 8px; }
  .global-footer .secondary-nav__menu li {
    position: relative; }
    .global-footer .secondary-nav__menu li:not(:last-of-type) {
      margin-bottom: 2rem; }

#tribe-events-content {
  overflow: visible; }

.events-list__header {
  margin-bottom: 3.2rem; }
  @media only screen and (min-width: 45em) {
    .events-list__header {
      margin-bottom: 3.6rem; } }
  .event-teaser + .events-list__header {
    margin-top: 6.5rem; }
    @media only screen and (min-width: 45em) {
      .event-teaser + .events-list__header {
        margin-top: 9.6rem; } }

.events-list__no-entries {
  padding-bottom: 5rem; }

.tribe-events-list {
  overflow-x: visible; }

.upcoming-lists {
  overflow: hidden; }
  @media only screen and (max-width: 45em) {
    .upcoming-lists a.btn--black {
      width: 100%; } }

@media only screen and (min-width: 67.5em) {
  .event-list {
    padding-right: 3rem; } }

@media only screen and (min-width: 76.25em) {
  .event-list {
    padding-right: 5rem; } }

.event-list .flickity-viewport {
  min-height: 32.5rem; }

.event-list__title {
  padding-right: 4rem;
  margin-bottom: 1.6rem; }

.event-list__entries {
  margin-bottom: 4rem;
  position: relative;
  padding-top: 3rem; }
  body:not(.u-keyboard-user) .event-list__entries:focus {
    outline: none; }
  .event-list__entries:after {
    content: 'flickity';
    display: none; }
    @media only screen and (min-width: 45em) {
      .event-list__entries:after {
        content: ''; } }

.event-list__entry {
  margin-right: 2rem;
  width: 90%;
  min-height: 100%; }
  @media only screen and (min-width: 45em) {
    .event-list__entry {
      width: 100%;
      margin-right: 0; } }

@media only screen and (max-width: 45em) {
  .event-list .event-teaser {
    margin-bottom: 0; } }

.event-list .event-teaser__options {
  overflow: hidden; }
  @media only screen and (max-width: 30em) {
    .event-list .event-teaser__options {
      margin-top: 0; } }

.event-list .flickity-page-dots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }
  .event-list .flickity-page-dots .dot {
    background-color: #aaaaaa;
    border-radius: 1px;
    height: 2px;
    display: inline-block;
    width: auto;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -webkit-flex-basis: 0;
        -ms-flex-preferred-size: 0;
            flex-basis: 0;
    margin: 0 0.4rem;
    -webkit-transition: background-color 0.2s ease;
    transition: background-color 0.2s ease; }
    .event-list .flickity-page-dots .dot.is-selected {
      background-color: #242426; }
    .event-list .flickity-page-dots .dot:first-child {
      margin-left: 0; }
    .event-list .flickity-page-dots .dot:last-child {
      margin-right: 0; }

.event-filter {
  position: fixed;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 8000; }
  .event-filter__container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap; }
    @media only screen and (min-width: 45em) {
      .event-filter__container {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
            -ms-flex-direction: row;
                flex-direction: row;
        -webkit-flex-wrap: wrap;
            -ms-flex-wrap: wrap;
                flex-wrap: wrap; } }
  .event-filter__bar {
    background-color: #ff00ce;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 1.7rem 0;
    min-height: 60px;
    -webkit-transition: min-height 250ms ease-out;
    transition: min-height 250ms ease-out; }
    .event-filter__bar-toggle {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      color: #ffffff;
      text-align: left;
      padding-right: 2.4rem; }
      .event-filter__bar-toggle:hover .event-filter__bar-icon svg, .event-filter__bar-toggle:focus .event-filter__bar-icon svg {
        fill: #242426; }
      .event-filter__bar-toggle:hover .event-filter__bar-label:after, .event-filter__bar-toggle:focus .event-filter__bar-label:after {
        width: 100%; }
    .event-filter__bar-icon {
      background-color: #ffffff;
      display: -webkit-inline-box;
      display: -webkit-inline-flex;
      display: -ms-inline-flexbox;
      display: inline-flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      width: 4.8rem;
      height: 4.8rem;
      text-align: center;
      margin-right: 2.4rem; }
      .event-filter__bar-icon svg {
        fill: #666666;
        height: 4.0rem;
        width: 4.0rem;
        display: inline-block;
        margin: 0 auto;
        -webkit-transition: all 0.3s cubic-bezier(0.5, 0, 0.5, 1);
        transition: all 0.3s cubic-bezier(0.5, 0, 0.5, 1); }
    .event-filter__bar-label {
      display: inline-block;
      position: relative;
      white-space: nowrap; }
    .event-filter__bar-clear {
      position: relative;
      line-height: 1;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      margin-top: 2rem; }
      @media only screen and (min-width: 45em) {
        .event-filter__bar-clear {
          margin-left: 1rem;
          margin-top: 0; } }
      .event-filter__bar-clear-label {
        margin-left: 3rem; }
      .event-filter__bar-clear-icon {
        width: 16px;
        height: 16px;
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%); }
        .event-filter__bar-clear-icon:before, .event-filter__bar-clear-icon:after {
          content: "";
          position: absolute;
          top: 50%;
          left: 0;
          height: 2px;
          width: 16px;
          background: #ffffff; }
        .event-filter__bar-clear-icon:before {
          -webkit-transform: translateY(-50%) rotate(45deg);
                  transform: translateY(-50%) rotate(45deg); }
        .event-filter__bar-clear-icon:after {
          -webkit-transform: translateY(-50%) rotate(-45deg);
                  transform: translateY(-50%) rotate(-45deg); }
  .event-filter__modal {
    bottom: 11rem; }
    @media only screen and (min-width: 45em) {
      .event-filter__modal {
        bottom: 8rem; } }
    .event-filter__modal.modal--is-open {
      background: transparent; }
      .event-filter__modal.modal--is-open:after {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        width: 0;
        opacity: 0.93;
        background-color: #ffffff;
        -webkit-transition: width 0.25s cubic-bezier(0.5, 0, 0.5, 1);
        transition: width 0.25s cubic-bezier(0.5, 0, 0.5, 1); }
    .event-filter__modal.modal--is-ready:after {
      width: 100%; }
    .event-filter__modal-toggle {
      text-indent: -9999px;
      z-index: 1;
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      width: 100%;
      display: block; }
      .event-filter__modal-toggle:hover {
        cursor: default; }
    .event-filter__modal-inner {
      position: absolute;
      bottom: 1rem;
      left: 0;
      width: 100%;
      z-index: 2;
      -webkit-backface-visibility: hidden;
              backface-visibility: hidden;
      pointer-events: none;
      opacity: 0;
      -webkit-transition: opacity 0.2s cubic-bezier(0.5, 0, 0.5, 1);
      transition: opacity 0.2s cubic-bezier(0.5, 0, 0.5, 1); }
      .modal--is-ready .event-filter__modal-inner {
        opacity: 1;
        -webkit-transition: opacity 0.25s cubic-bezier(0.5, 0, 0.5, 1) 0.1s;
        transition: opacity 0.25s cubic-bezier(0.5, 0, 0.5, 1) 0.1s; }
      .event-filter__modal-inner > .g-container-fluid {
        position: relative; }
  .event-filter__animation {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    z-index: 3;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 8.33333333%;
    pointer-events: none;
    width: 83.33333334%;
    max-width: 31.2rem;
    border-radius: 0.5rem; }
    @media only screen and (min-width: 45em) {
      .event-filter__animation {
        width: 100%; } }
    .event-filter__animation span {
      display: block;
      width: 0%;
      -webkit-box-flex: 1;
      -webkit-flex: 1 1;
          -ms-flex: 1 1;
              flex: 1 1;
      background-color: #ff00ce;
      -webkit-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out; }
      .event-filter__animation span:nth-child(2) {
        -webkit-transition-delay: 0.2s;
                transition-delay: 0.2s; }
      .event-filter__animation span:nth-child(3) {
        -webkit-transition-delay: 0.5s;
                transition-delay: 0.5s; }
      .ajax-start .event-filter__animation span {
        width: 100%; }
        .ajax-start .event-filter__animation span:nth-child(2) {
          -webkit-transition-delay: 0.3s;
                  transition-delay: 0.3s; }
        .ajax-start .event-filter__animation span:nth-child(3) {
          -webkit-transition-delay: 0.4s;
                  transition-delay: 0.4s; }

.modal--event-filter-modal .event-filter__bar {
  min-height: 100px;
  -webkit-transition: min-height 250ms ease-out;
  transition: min-height 250ms ease-out; }
  @media only screen and (min-width: 45em) {
    .modal--event-filter-modal .event-filter__bar {
      min-height: 60px; } }

.event-filter__modal .tribe-mini-calendar-wrapper {
  background-color: #ffffff;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
          box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
  position: relative;
  max-width: 31.0rem;
  padding-bottom: 0.5rem; }
  .event-filter__modal .tribe-mini-calendar-wrapper:after {
    content: '▼';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    margin-left: -1.2rem;
    display: inline-block;
    color: #ffffff;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.5);
    font-size: 1.2rem;
    -webkit-transform: scaleX(2);
            transform: scaleX(2); }

.event-filter__modal .tribe-mini-calendar-grid-wrapper {
  margin: 0;
  pointer-events: all;
  position: relative; }

.event-filter__modal table.tribe-mini-calendar {
  border: none;
  border-radius: 0.5rem;
  width: 100%;
  width: calc(100% + 0.2rem);
  margin-left: -0.1rem;
  margin-right: -0.1rem; }
  .event-filter__modal table.tribe-mini-calendar th, .event-filter__modal table.tribe-mini-calendar td {
    border: 0; }

.event-filter__modal .tribe-mini-calendar-nav-link {
  fill: #ffffff;
  -webkit-transition: all 0.25s cubic-bezier(0.5, 0, 0.5, 1);
  transition: all 0.25s cubic-bezier(0.5, 0, 0.5, 1); }
  .event-filter__modal .tribe-mini-calendar-nav-link svg {
    width: 2.5rem;
    height: 2.3rem; }
  .event-filter__modal .tribe-mini-calendar-nav-link.next-month:hover {
    -webkit-transform: translate3d(4px, 0, 0);
            transform: translate3d(4px, 0, 0); }
  .event-filter__modal .tribe-mini-calendar-nav-link.prev-month:hover {
    -webkit-transform: translate3d(-4px, 0, 0);
            transform: translate3d(-4px, 0, 0); }

.event-filter__modal .tribe-mini-calendar-nav {
  border: 0;
  opacity: 0;
  -webkit-transition: opacity 0.2s cubic-bezier(0.5, 0, 0.5, 1);
  transition: opacity 0.2s cubic-bezier(0.5, 0, 0.5, 1); }
  .event-filter__modal .tribe-mini-calendar-nav td {
    background-color: #242426;
    color: #ffffff;
    font-weight: bold;
    padding: 1.8rem 2rem;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
    border: 0; }
    .event-filter__modal .tribe-mini-calendar-nav td a {
      color: #ffffff;
      padding: 0.5rem 0; }
      .event-filter__modal .tribe-mini-calendar-nav td a span {
        margin: 0; }
  .event-filter__modal .tribe-mini-calendar-nav th {
    font-size: 1.2rem; }
    @media only screen and (min-width: 45em) {
      .event-filter__modal .tribe-mini-calendar-nav th {
        font-size: 1.6rem; } }
  .event-filter__modal .tribe-mini-calendar-nav div {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
    .event-filter__modal .tribe-mini-calendar-nav div > span {
      padding: 0 1.5rem;
      margin: 0;
      font-size: 2.4rem;
      display: inline-block !important; }
  .event-filter__modal .tribe-mini-calendar-nav .prev-month {
    text-align: left; }
  .event-filter__modal .tribe-mini-calendar-nav .next-month {
    text-align: right; }

.event-filter__modal .tribe-mini-calendar-dayofweek {
  height: 4.0rem;
  vertical-align: middle;
  padding: 0; }

.event-filter__modal tbody {
  opacity: 0;
  -webkit-transition: opacity 0.2s cubic-bezier(0.5, 0, 0.5, 1);
  transition: opacity 0.2s cubic-bezier(0.5, 0, 0.5, 1); }
  .event-filter__modal tbody td {
    height: 3rem;
    font-size: 1.2rem;
    color: #666666; }
    @media only screen and (min-width: 45em) {
      .event-filter__modal tbody td {
        font-size: 1.4rem; } }
  .event-filter__modal tbody .tribe-events-has-events a {
    color: #242426;
    font-weight: bold;
    -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0.5, 1);
    transition: all 0.2s cubic-bezier(0.5, 0, 0.5, 1);
    border: 2px solid transparent;
    position: relative; }
    .event-filter__modal tbody .tribe-events-has-events a:before {
      content: '';
      height: 3px;
      width: 0;
      background-color: #6ce7fb;
      position: absolute;
      bottom: 2px;
      left: 10%;
      -webkit-transition: width 0.2s cubic-bezier(0.5, 0, 0.5, 1);
      transition: width 0.2s cubic-bezier(0.5, 0, 0.5, 1);
      z-index: 0; }
    .event-filter__modal tbody .tribe-events-has-events a:hover:before {
      width: 80%; }

.event-filter__modal .tribe-events-othermonth {
  opacity: 0.25; }

.event-filter__modal.modal--is-ready tbody {
  opacity: 1;
  -webkit-transition: opacity 0.25s cubic-bezier(0.5, 0, 0.5, 1) 0.25s;
  transition: opacity 0.25s cubic-bezier(0.5, 0, 0.5, 1) 0.25s; }

.event-filter__modal.modal--is-ready .tribe-mini-calendar-nav {
  opacity: 1;
  -webkit-transition: opacity 0.25s cubic-bezier(0.5, 0, 0.5, 1) 0.15s;
  transition: opacity 0.25s cubic-bezier(0.5, 0, 0.5, 1) 0.15s; }

.events-gridview .filter-menu {
  margin-bottom: 0; }

body #tribe-events-content {
  line-height: 1; }

#tribe-events-content {
  padding-top: 0;
  padding-bottom: 0; }
  #tribe-events-content #tribe-events-footer, #tribe-events-content #tribe-events-header {
    background: #242426; }
  #tribe-events-content #tribe-events-footer {
    margin-bottom: 0; }
  #tribe-events-content .tribe-events-sub-nav,
  #tribe-events-content .tribe-events-sub-nav a {
    color: #ffffff; }
  #tribe-events-content ul.tribe-events-sub-nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 10px 0; }
  #tribe-events-content .tribe-events-nav-current {
    text-align: center;
    font-weight: bold;
    font-size: 19px; }
  #tribe-events-content .tribe-events-nav-previous,
  #tribe-events-content .tribe-events-nav-next {
    text-align: right; }
    #tribe-events-content .tribe-events-nav-previous .btn-icon svg,
    #tribe-events-content .tribe-events-nav-next .btn-icon svg {
      fill: #ffffff;
      display: inline-block;
      height: 1.3rem;
      width: 1.6rem;
      margin-left: 1rem;
      position: relative;
      top: -0.1rem;
      -webkit-transition: margin-left 0.35s cubic-bezier(0.5, 0, 0.5, 1);
      transition: margin-left 0.35s cubic-bezier(0.5, 0, 0.5, 1); }
  #tribe-events-content .tribe-events-calendar td,
  #tribe-events-content table.tribe-events-calendar {
    border: 0; }
  #tribe-events-content th {
    text-transform: none;
    font-size: 3rem;
    line-height: 1;
    margin: 0 2rem 0 0;
    color: #242426;
    font-weight: bold; }
  #tribe-events-content .tribe-events-calendar {
    border-collapse: initial; }
    #tribe-events-content .tribe-events-calendar td {
      border: 20px solid #ffffff;
      position: initial; }
    #tribe-events-content .tribe-events-calendar div[id^=tribe-events-daynum] {
      display: inline-block;
      width: 40px;
      height: 34px;
      line-height: 22px;
      text-align: center;
      margin: -5px;
      font-size: 1.6rem;
      color: #C6C6C6;
      font-weight: bold; }
      #tribe-events-content .tribe-events-calendar div[id^=tribe-events-daynum] a {
        color: #ffffff;
        font-weight: bold;
        font-size: 1.6rem; }
    #tribe-events-content .tribe-events-calendar .tribe-events-past h3 a,
    #tribe-events-content .tribe-events-calendar .tribe-events-present h3 a,
    #tribe-events-content .tribe-events-calendar .tribe-events-future h3 a {
      font-size: 1.4rem;
      line-height: 1.8rem;
      font-weight: bold; }
      #tribe-events-content .tribe-events-calendar .tribe-events-past h3 a.u-hover-line,
      #tribe-events-content .tribe-events-calendar .tribe-events-present h3 a.u-hover-line,
      #tribe-events-content .tribe-events-calendar .tribe-events-future h3 a.u-hover-line {
        position: relative; }
        #tribe-events-content .tribe-events-calendar .tribe-events-past h3 a.u-hover-line:after,
        #tribe-events-content .tribe-events-calendar .tribe-events-present h3 a.u-hover-line:after,
        #tribe-events-content .tribe-events-calendar .tribe-events-future h3 a.u-hover-line:after {
          position: relative;
          bottom: 0; }
    #tribe-events-content .tribe-events-calendar .tribe-events-past h3 .tribe-events-month-event-time,
    #tribe-events-content .tribe-events-calendar .tribe-events-present h3 .tribe-events-month-event-time,
    #tribe-events-content .tribe-events-calendar .tribe-events-future h3 .tribe-events-month-event-time {
      font-weight: normal;
      color: #8b8b8b;
      font-size: 1.2rem; }
    #tribe-events-content .tribe-events-calendar .tribe-events-past {
      background-color: #E8E8E8; }
      #tribe-events-content .tribe-events-calendar .tribe-events-past div[id^=tribe-events-daynum] {
        color: #6a6a6a;
        font-weight: bold; }
        #tribe-events-content .tribe-events-calendar .tribe-events-past div[id^=tribe-events-daynum] a {
          font-weight: bold;
          color: #6a6a6a;
          font-size: 1.6rem; }
      #tribe-events-content .tribe-events-calendar .tribe-events-past h3 a {
        color: #8B8B8B; }
    #tribe-events-content .tribe-events-calendar .tribe-events-present {
      background-color: #ff00ce; }
      #tribe-events-content .tribe-events-calendar .tribe-events-present h3 a {
        color: #ffffff; }
      #tribe-events-content .tribe-events-calendar .tribe-events-present h3 .tribe-events-month-event-time {
        color: #ffffff; }
    #tribe-events-content .tribe-events-calendar .tribe-events-future {
      -webkit-box-shadow: inset 0px 0px 1px 0px black;
      box-shadow: inset 0px 0px 1px 0px black; }
      #tribe-events-content .tribe-events-calendar .tribe-events-future h3 a {
        color: #242426; }
  #tribe-events-content div[id^=tribe-events-daynum] {
    background-color: #242426;
    font-size: 1.6rem; }

.events-archive.events-gridview #tribe-events-content table .type-tribe_events {
  margin: 5%;
  border-bottom: none; }

.event-subscribe {
  color: #ffffff;
  fill: #ffffff; }
  .event-subscribe.modal--is-open {
    background: transparent; }
    .event-subscribe.modal--is-open:after {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      width: 0;
      opacity: 0.98;
      background-color: #ffffff;
      -webkit-transition: width 0.25s cubic-bezier(0.5, 0, 0.5, 1);
      transition: width 0.25s cubic-bezier(0.5, 0, 0.5, 1); }
  .event-subscribe.modal--is-ready:after {
    width: 100%; }
  .event-subscribe__inner {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    max-width: 90%;
    z-index: 2;
    padding-bottom: 1.5rem; }
    .event-subscribe__inner:before {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      width: 0;
      background-color: #242426;
      z-index: 1;
      -webkit-transition: width 0.25s cubic-bezier(0.5, 0, 0.5, 1);
      transition: width 0.25s cubic-bezier(0.5, 0, 0.5, 1); }
    .modal--is-ready .event-subscribe__inner {
      opacity: 1; }
      .modal--is-ready .event-subscribe__inner:before {
        width: 100%;
        -webkit-transition: width 0.25s cubic-bezier(0.5, 0, 0.5, 1) 0.18s;
        transition: width 0.25s cubic-bezier(0.5, 0, 0.5, 1) 0.18s; }
  .event-subscribe__header, .event-subscribe__calendars, .event-subscribe__newsletter, .event-subscribe__newsletter-reveal {
    position: relative;
    z-index: 2; }
  .event-subscribe__header, .event-subscribe__calendars, .event-subscribe__newsletter, .event-subscribe__toggle, .event-subscribe__newsletter-reveal {
    opacity: 0;
    -webkit-transition: opacity 0.2s cubic-bezier(0.5, 0, 0.5, 1);
    transition: opacity 0.2s cubic-bezier(0.5, 0, 0.5, 1); }
    .modal--is-ready .event-subscribe__header, .modal--is-ready .event-subscribe__calendars, .modal--is-ready .event-subscribe__newsletter, .modal--is-ready .event-subscribe__toggle, .modal--is-ready .event-subscribe__newsletter-reveal {
      -webkit-transition: opacity 0.25s cubic-bezier(0.5, 0, 0.5, 1) 0.4s;
      transition: opacity 0.25s cubic-bezier(0.5, 0, 0.5, 1) 0.4s;
      opacity: 1; }
  .event-subscribe__header {
    padding: 1.5rem 1.4rem 2rem;
    text-align: center; }
  .event-subscribe__lead {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 1.5rem; }
  .event-subscribe__icon {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1; }
    .event-subscribe__icon svg {
      width: 3rem;
      height: 3rem; }
  .event-subscribe__message {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.22; }
  .event-subscribe__title, .event-subscribe__subtitle, .event-subscribe__date {
    font-size: 1.3rem;
    font-weight: normal;
    line-height: 1.46; }
  .event-subscribe__calendars {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    border-top: 1px solid #666666;
    border-bottom: 1px solid #666666; }
    .event-subscribe__calendars a {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-flex: 1;
      -webkit-flex: 1 1 50%;
          -ms-flex: 1 1 50%;
              flex: 1 1 50%;
      text-align: center;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      color: #ffffff;
      font-size: 1.6rem;
      line-height: 1.5rem;
      text-decoration: none;
      padding: 1.6rem 0;
      min-width: 15rem; }
  .event-subscribe__ical {
    border-right: 1px solid #666666; }
  .event-subscribe img {
    width: 3.8rem;
    height: auto;
    margin-right: 1.1rem; }
  .event-subscribe__newsletter {
    padding: 3rem 4rem 1.5rem;
    text-align: center; }
    .event-subscribe__newsletter p {
      font-size: 1.5rem;
      font-weight: bold;
      line-height: 1.26; }
    .event-subscribe__newsletter a {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      color: #ffffff;
      font-size: 1.3rem;
      font-weight: normal;
      line-height: 1;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
          -ms-flex-pack: center;
              justify-content: center;
      margin-top: 1rem; }
    .event-subscribe__newsletter .btn-icon {
      -webkit-transition: all 0.35s cubic-bezier(0.5, 0, 0.5, 1);
      transition: all 0.35s cubic-bezier(0.5, 0, 0.5, 1);
      fill: #ffffff;
      margin-left: 1rem; }
      .event-subscribe__newsletter .btn-icon svg {
        vertical-align: bottom; }
    .event-subscribe__newsletter:hover .btn-icon {
      margin-left: 1.5rem; }
    .event-subscribe__newsletter span {
      display: inline-block; }
  .event-subscribe__toggle {
    position: absolute;
    padding: 0.5rem;
    top: 1.2rem;
    right: 1.2rem;
    fill: #aaaaaa;
    z-index: 2; }
    .event-subscribe__toggle:hover svg {
      fill: #ffffff; }
    .event-subscribe__toggle svg {
      width: 1.7rem;
      height: 1.7rem;
      -webkit-transition: fill 0.35s cubic-bezier(0.5, 0, 0.5, 1);
      transition: fill 0.35s cubic-bezier(0.5, 0, 0.5, 1); }
  .event-subscribe__newsletter-reveal {
    display: none; }
    .event-subscribe__newsletter-reveal.active {
      display: block;
      color: #ffffff;
      padding: 0 3rem 3rem; }
    .event-subscribe__newsletter-reveal .newsletter {
      max-width: 26rem;
      margin: 0 auto; }
    .event-subscribe__newsletter-reveal label {
      border: 0;
      clip: rect(1px, 1px, 1px, 1px);
      -webkit-clip-path: inset(50%);
              clip-path: inset(50%);
      height: 1px;
      margin: -1px;
      overflow: hidden;
      padding: 0;
      position: absolute !important;
      width: 1px;
      word-wrap: normal !important; }
    .event-subscribe__newsletter-reveal .newsletter__checkbox {
      -webkit-box-flex: 1;
      -webkit-flex: 1 1 0;
          -ms-flex: 1 1 0px;
              flex: 1 1 0; }
    .event-subscribe__newsletter-reveal .newsletter__input-arrow {
      fill: #242426; }

.single-event__header {
  background: #242426; }
  @media only screen and (min-width: 45em) {
    .single-event__header {
      width: 100%; } }

.event-detail {
  padding-bottom: 4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 5rem; }
  .event-detail__title {
    color: #ffffff; }
  .event-detail__media {
    position: relative;
    width: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding-top: 56.25%; }
    .event-detail__media--container {
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0; }
    .event-detail__media .live-header__play-button {
      position: absolute;
      left: 50%;
      top: 50%;
      z-index: 1;
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%); }
  .event-detail__month {
    font-size: 1.4rem;
    text-transform: uppercase;
    margin-bottom: 0.2rem; }
  .event-detail__day {
    font-size: 2.4rem;
    font-weight: 600; }
  .event-detail__caption {
    margin-top: 1rem; }
  .event-detail__credit {
    font-size: 12px;
    margin-top: 1rem; }
  .event-detail__content {
    margin-bottom: 3rem; }
    @media only screen and (min-width: 45em) {
      .event-detail__content {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-flow: row wrap;
            -ms-flex-flow: row wrap;
                flex-flow: row wrap; } }
  .event-detail__header {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem; }
    @media only screen and (min-width: 45em) {
      .event-detail__header {
        -webkit-box-flex: 1;
        -webkit-flex: 1 100%;
            -ms-flex: 1 100%;
                flex: 1 100%;
        margin-top: 0; } }
    .event-detail__header a {
      color: inherit; }
  .event-detail__subtitle {
    margin-top: 1.2rem; }
  .event-detail__options {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex: 1 100%;
        -ms-flex: 1 100%;
            flex: 1 100%; }
    @media only screen and (min-width: 45em) {
      .event-detail__options {
        -webkit-box-flex: 1;
        -webkit-flex: 1 auto;
            -ms-flex: 1 auto;
                flex: 1 auto; } }
    .event-detail__options .btn-hover-wipe:hover svg {
      -webkit-transform: translateY(-3px);
              transform: translateY(-3px); }
    .event-detail__options > *:first-child {
      margin-left: 0; }
      @media only screen and (min-width: 45em) {
        .event-detail__options > *:first-child {
          margin-left: auto; } }
    .event-detail__options span,
    .event-detail__options .btn {
      margin-right: 1rem; }
      .event-detail__options span:last-child,
      .event-detail__options .btn:last-child {
        margin-right: 0; }
      .event-detail__options span svg,
      .event-detail__options .btn svg {
        -webkit-transition: all 0.35s cubic-bezier(0.5, 0, 0.5, 1);
        transition: all 0.35s cubic-bezier(0.5, 0, 0.5, 1); }
    @media only screen and (min-width: 67.5em) {
      .event-detail__options {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
            -ms-flex-direction: row;
                flex-direction: row;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center; } }
    .event-detail__options a {
      margin-right: 0.4rem; }
      @media only screen and (min-width: 30em) {
        .event-detail__options a {
          margin-right: 0.8rem; } }
      @media only screen and (min-width: 67.5em) {
        .event-detail__options a {
          margin-right: 1rem;
          margin-bottom: 0; } }
  .event-detail__start-time {
    position: relative; }
    .event-detail__start-time:before {
      content: "\2022";
      position: absolute;
      top: 0;
      left: .25rem;
      display: none; }
    @media only screen and (min-width: 60.625em) {
      .event-detail__start-time {
        padding-left: 1.5rem; }
        .event-detail__start-time:before {
          display: block; } }
  .event-detail__meta {
    margin-top: 1.5rem; }
    .event-detail__meta-item {
      color: #ffffff;
      display: block; }
      .event-detail__meta-item + .event-detail__meta-item {
        margin-top: .5rem; }
        @media only screen and (min-width: 60.625em) {
          .event-detail__meta-item + .event-detail__meta-item {
            margin-top: 0; } }
      @media only screen and (min-width: 60.625em) {
        .event-detail__meta-item {
          display: inline-block; } }
    @media only screen and (min-width: 67.5em) {
      .event-detail__meta {
        display: inline-block;
        margin-top: 3rem; } }
  .event-detail .event-thumb__image {
    padding-top: 56.25%; }
  .event-detail .event-teaser__live {
    color: #ffffff;
    -webkit-box-flex: 1;
    -webkit-flex: 1 100%;
        -ms-flex: 1 100%;
            flex: 1 100%;
    -webkit-box-ordinal-group: unset;
    -webkit-order: unset;
        -ms-flex-order: unset;
            order: unset;
    display: block; }
    @media only screen and (min-width: 45em) {
      .event-detail .event-teaser__live {
        -webkit-box-flex: 1;
        -webkit-flex: 1 auto;
            -ms-flex: 1 auto;
                flex: 1 auto; } }
    .event-detail .event-teaser__live .event-teaser__live-text {
      padding: 5px 10px; }

@media only screen and (min-width: 67.5em) {
  .event-details__sidebar .event-details__group--lg {
    margin-bottom: 6rem; } }

.sponsor__image {
  display: inline-block; }

.event-details {
  padding-right: 2rem; }
  @media only screen and (min-width: 67.5em) {
    .event-details__heading {
      padding-left: 40px; } }
  .event-details__icon svg {
    width: 30px;
    height: 30px;
    vertical-align: top; }
  .event-details__length-info {
    line-height: 1.7; }
  .event-details__info {
    margin-left: 1rem; }
  .event-details__cost-vip {
    margin-top: .5rem; }
  .event-details__cost li {
    font-weight: bold;
    line-height: 1.5; }
  .event-details__address span {
    line-height: 1.3; }
  @media only screen and (min-width: 67.5em) {
    .event-details {
      -webkit-box-ordinal-group: 4;
      -webkit-order: 3;
          -ms-flex-order: 3;
              order: 3;
      padding-right: 0; } }

.event-tags__heading {
  margin-bottom: 1.5rem; }

.event-tags__list-item {
  display: inline-block;
  text-decoration: underline;
  text-transform: lowercase;
  margin-right: 1rem;
  font-weight: normal; }
  .event-tags__list-item a {
    -webkit-transition: color 0.35s cubic-bezier(0.5, 0, 0.5, 1);
    transition: color 0.35s cubic-bezier(0.5, 0, 0.5, 1); }
    .event-tags__list-item a:hover {
      color: #242426; }

@media only screen and (min-width: 67.5em) {
  .event-tags {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
        -ms-flex-order: 6;
            order: 6; } }

.event-panelists {
  display: none; }
  .event-panelists p {
    margin-bottom: .75rem; }
  @media only screen and (min-width: 67.5em) {
    .event-panelists {
      display: block;
      -webkit-box-ordinal-group: 5;
      -webkit-order: 4;
          -ms-flex-order: 4;
              order: 4; } }

@media only screen and (min-width: 67.5em) {
  .event-right-col {
    margin-left: 5rem; } }

.tribe-postal-code,
.tribe-country-name {
  display: none; }

#tribe-events-content {
  margin-bottom: 0; }

.mod-events {
  overflow: hidden; }
  @media only screen and (min-width: 45em) {
    .mod-events__entry {
      max-width: 48%; }
      .mod-events__entry:nth-child(3) {
        display: none; } }
  @media only screen and (min-width: 67.5em) {
    .mod-events__entry {
      max-width: 31%; }
      .mod-events__entry:nth-child(3) {
        display: block; } }
  @media only screen and (min-width: 45em) {
    .mod-events__entries {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-flow: row wrap;
          -ms-flex-flow: row wrap;
              flex-flow: row wrap; } }
  .mod-events__list {
    overflow: hidden; }
    .mod-events__list.event-list {
      padding-right: 0; }
    @media only screen and (min-width: 45em) {
      .mod-events__list .event-teaser {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
            -ms-flex-direction: column;
                flex-direction: column; }
        .mod-events__list .event-teaser__content {
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -webkit-flex-direction: column;
              -ms-flex-direction: column;
                  flex-direction: column; }
          .mod-events__list .event-teaser__content .event-teaser__options {
            min-height: 100px; } }
    @media only screen and (min-width: 45em) {
      .mod-events__list .event-teaser__header {
        margin-top: 1.5rem; } }
    .mod-events__list .event-teaser .event-teaser__options {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-direction: row;
          -ms-flex-direction: row;
              flex-direction: row;
      -webkit-box-align: end;
      -webkit-align-items: flex-end;
          -ms-flex-align: end;
              align-items: flex-end;
      width: 100%; }
      .mod-events__list .event-teaser .event-teaser__options .event-teaser__tickets {
        margin-bottom: 0;
        margin-right: 1rem; }
    @media only screen and (min-width: 60.625em) {
      .mod-events__list .event-teaser__btn {
        margin-bottom: 0; } }

.premium .single-event__header {
  background: url("../images/premium_bg.jpg");
  background-size: cover;
  position: relative; }
  .premium .single-event__header:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 275px;
    background: -webkit-gradient(linear, left top, left bottom, from(#242426), to(rgba(36, 36, 38, 0)));
    background: linear-gradient(180deg, #242426 0%, rgba(36, 36, 38, 0) 100%); }

.premium .event-detail__media--container {
  -webkit-box-shadow: 0 0 15px 3px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 15px 3px rgba(0, 0, 0, 0.5); }

.videos-list {
  position: relative; }
  .videos-list__entries {
    padding-top: 3rem;
    margin-bottom: 4rem;
    position: relative; }
    @media only screen and (min-width: 45em) {
      .videos-list__entries {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex; } }
    @media only screen and (min-width: 67.5em) {
      .videos-list__entries {
        display: block; } }
  .videos-list:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -2rem;
    right: -2rem;
    background-color: #6ce7fb;
    z-index: 1; }
    @media only screen and (min-width: 60.625em) {
      .videos-list:before {
        right: -200%; } }
  .videos-list__entry {
    width: 100%; }
    @media only screen and (min-width: 45em) {
      .videos-list__entry {
        width: 47%;
        margin-bottom: 3rem; } }
    @media only screen and (min-width: 67.5em) {
      .videos-list__entry {
        width: 100%; } }
    @media only screen and (min-width: 45em) {
      .videos-list__entry:first-child {
        margin-right: 2rem; } }
    @media only screen and (min-width: 67.5em) {
      .videos-list__entry:first-child {
        margin-right: 0; } }
    @media only screen and (min-width: 45em) {
      .videos-list__entry:last-child {
        margin-left: 2rem; } }
    @media only screen and (min-width: 67.5em) {
      .videos-list__entry:last-child {
        margin-left: 0; } }
    .videos-list__entry + .videos-list__entry {
      margin-top: 4rem; }
      @media only screen and (min-width: 45em) {
        .videos-list__entry + .videos-list__entry {
          margin-top: 0; } }
      @media only screen and (min-width: 67.5em) {
        .videos-list__entry + .videos-list__entry {
          margin-top: 4rem; } }
  .videos-list__inner {
    position: relative;
    z-index: 2; }

.related-videos .row {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between; }

.related-videos__title {
  margin-bottom: 4rem; }
  @media only screen and (min-width: 45em) {
    .related-videos__title {
      margin-bottom: 8rem; } }

.related-videos__btn {
  margin-top: 3rem; }

@media only screen and (min-width: 45em) {
  .related-videos__teaser {
    max-width: 48%; } }

.related-videos__teaser:nth-child(3) {
  display: none; }

@media only screen and (min-width: 67.5em) {
  .related-videos__teaser {
    max-width: 32%; }
    .related-videos__teaser:nth-child(3) {
      display: block; } }

.related-videos__teaser:not(:last-child) {
  margin-bottom: 4rem; }

@media only screen and (min-width: 67.5em) {
  .single-video__content .event-sponsors {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3; } }

@media only screen and (min-width: 67.5em) {
  .single-video-sponsors {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3; } }

.hot-topic {
  background: #242426; }
  .hot-topic__heading {
    padding-bottom: 4rem; }
    @media only screen and (min-width: 45em) {
      .hot-topic__heading br {
        display: none; } }
    @media only screen and (min-width: 67.5em) {
      .hot-topic__heading br {
        display: block; } }
  .hot-topic__teaser .title--teaser, .hot-topic__teaser .c-wysiwyg-content h4, .c-wysiwyg-content .hot-topic__teaser h4 {
    color: #ffffff; }
  .hot-topic__teaser .title--excerpt, .hot-topic__teaser .c-wysiwyg-content h5, .c-wysiwyg-content .hot-topic__teaser h5, .hot-topic__teaser .tgs-search-results .gsc-result-info, .tgs-search-results .hot-topic__teaser .gsc-result-info {
    color: #aaaaaa; }

.all-videos {
  padding-top: 4rem;
  position: relative; }
  @media only screen and (min-width: 45em) {
    .all-videos {
      padding-top: 6rem; } }
  .all-videos__subheading {
    margin: .5rem 0 2rem;
    color: #666666; }
  .all-videos__teaser {
    width: 100%; }
    @media only screen and (min-width: 67.5em) {
      .all-videos__teaser {
        width: 33%; } }
  .all-videos .video-teaser {
    width: 100%;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start; }
    @media only screen and (min-width: 45em) {
      .all-videos .video-teaser {
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
            -ms-flex-align: start;
                align-items: flex-start; }
        .all-videos .video-teaser .btn--play-teaser {
          width: 5.4rem;
          height: 5.4rem; }
          .all-videos .video-teaser .btn--play-teaser:before {
            border-width: 10px 0 10px 18px; } }
    .all-videos .video-teaser .title--excerpt, .all-videos .video-teaser .c-wysiwyg-content h5, .c-wysiwyg-content .all-videos .video-teaser h5, .all-videos .video-teaser .tgs-search-results .gsc-result-info, .tgs-search-results .all-videos .video-teaser .gsc-result-info {
      color: #666666; }
    .all-videos .video-teaser__header {
      margin-top: 0; }
      @media only screen and (min-width: 45em) {
        .all-videos .video-teaser__header {
          margin-top: 1.6rem; } }

.topic-filter form::-webkit-scrollbar {
  display: none;
  width: 0px;
  max-width: 0px;
  height: 0px;
  background: transparent; }

.topic-filter form {
  overflow: auto; }

.topic-filter .filter-list {
  padding-top: .65rem;
  position: relative;
  margin-bottom: 3rem; }
  .topic-filter .filter-list .filter-by {
    line-height: 1.5; }
  .topic-filter .filter-list__inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap; }
  .topic-filter .filter-list__item {
    font-size: 1.4rem;
    line-height: 1;
    color: #aaaaaa;
    text-transform: uppercase;
    font-weight: bold;
    font-family: 'Geomanist';
    display: inline-block;
    margin-right: 1rem; }
    .topic-filter .filter-list__item.filter-by {
      color: #242426; }

@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .filter-list .video-teaser .half-width__video.col-sm-12,
  .filter-list .video-teaser .video-teaser__header.col-sm-12 {
    -webkit-flex-basis: auto !important;
        -ms-flex-preferred-size: auto !important;
            flex-basis: auto !important; }
  .filter-list .wp-pagenavi,
  .filter-list .pagination__buttons {
    width: 100%; }
  .filter-list .pagination__buttons .pagination__button-link {
    white-space: nowrap; }
    .filter-list .pagination__buttons .pagination__button-link:after {
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%); } }

.recent-videos {
  background: #6ce7fb; }
  .recent-videos__heading {
    padding-bottom: 4rem; }
    @media only screen and (min-width: 45em) {
      .recent-videos__heading {
        width: 100%; } }
  .recent-videos__teasers {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between; }
  .recent-videos__teaser {
    width: 100%; }
    .recent-videos__teaser:not(:last-child) {
      margin-bottom: 3.5rem; }
    @media only screen and (min-width: 45em) {
      .recent-videos__teaser {
        width: 47%; } }

@media only screen and (min-width: 67.5em) {
  .watch__recent-videos {
    padding-right: 3rem; } }

@media only screen and (min-width: 76.25em) {
  .watch__recent-videos {
    padding-right: 5rem; } }

.topics .video-teaser {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%; }
  @media only screen and (min-width: 45em) {
    .topics .video-teaser {
      -webkit-box-align: start;
      -webkit-align-items: start;
          -ms-flex-align: start;
              align-items: start; } }

@media only screen and (min-width: 45em) {
  .topic-teaser {
    padding-right: 3rem; } }

.topic-teaser__header {
  margin-top: 2rem; }

.upcoming-header {
  display: none; }
  .upcoming-header.is-active {
    display: block; }
  .upcoming-header__notice {
    margin-bottom: 2rem; }
    @media only screen and (min-width: 45em) {
      .upcoming-header__notice br:nth-child(2) {
        display: none; } }

.watch-header__media-stage {
  padding-top: 56.95%; }

.live-header__media-stage,
.watch-header__media-stage {
  position: relative;
  height: 100vh;
  max-height: calc(100vh - 180px);
  overflow: hidden;
  width: 100%;
  -webkit-transition: height 0.25s cubic-bezier(0.5, 0, 0.5, 1);
  transition: height 0.25s cubic-bezier(0.5, 0, 0.5, 1); }
  @media only screen and (min-width: 30em) {
    .live-header__media-stage,
    .watch-header__media-stage {
      max-height: none; } }
  .is-playing .live-header__media-stage, .is-playing
  .watch-header__media-stage {
    height: 60vw; }
  @media only screen and (min-width: 45em) {
    .live-header__media-stage,
    .watch-header__media-stage {
      height: 56.25vw;
      max-height: 50rem;
      max-height: calc(100vh - 200px); }
      .is-playing .live-header__media-stage, .is-playing
      .watch-header__media-stage {
        height: 56.25vw; } }
  @media only screen and (min-width: 87.5em) {
    .live-header__media-stage,
    .watch-header__media-stage {
      max-height: 72rem;
      max-height: calc(100vh - 154px); } }

.live-header__preview,
.watch-header__preview {
  background-size: cover;
  background-position-x: 50%;
  background-position-y: 50%; }

.live-header__preview, .live-header__embed,
.watch-header__preview,
.watch-header__embed {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  display: block;
  max-width: 100%; }

.live-header__embed,
.watch-header__embed {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  font-family: "object-fit: cover; object-position: center center"; }

.live-header__preview,
.watch-header__preview {
  -webkit-transition: opacity 0.25s cubic-bezier(0.5, 0, 0.5, 1);
  transition: opacity 0.25s cubic-bezier(0.5, 0, 0.5, 1);
  opacity: 1; }
  .live-header__preview.is-disabled,
  .watch-header__preview.is-disabled {
    opacity: 0; }

.live-header img,
.live-header video,
.watch-header img,
.watch-header video {
  height: 100%;
  width: 100%;
  display: block;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  font-family: "object-fit: cover; object-position: center center";
  position: relative; }
  .live-header img.live-header__desktop,
  .live-header video.live-header__desktop,
  .watch-header img.live-header__desktop,
  .watch-header video.live-header__desktop {
    display: none; }
    @media only screen and (min-width: 45em) {
      .live-header img.live-header__desktop,
      .live-header video.live-header__desktop,
      .watch-header img.live-header__desktop,
      .watch-header video.live-header__desktop {
        display: block; } }
  @media only screen and (min-width: 45em) {
    .live-header img.live-header__mobile,
    .live-header video.live-header__mobile,
    .watch-header img.live-header__mobile,
    .watch-header video.live-header__mobile {
      display: none; } }

.live-header img,
.watch-header img {
  z-index: 1; }

.live-header video,
.watch-header video {
  z-index: 2; }

.live-header iframe,
.watch-header iframe {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border: 0;
  width: 100%; }

.live-header {
  width: 100%;
  display: none; }
  .live-header.is-active {
    display: block; }
  .live-header__content {
    position: absolute;
    bottom: 6rem;
    left: 0;
    width: 100%;
    z-index: 4; }
    .live-header__content-inner {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
      -webkit-flex-direction: column-reverse;
          -ms-flex-direction: column-reverse;
              flex-direction: column-reverse; }
  .live-header__title {
    margin-top: 0.6rem; }
  .live-header__play-button {
    margin-bottom: 2.4rem; }
  .live-header__play-icon {
    position: relative;
    display: block;
    top: auto;
    left: auto;
    -webkit-transform: none;
            transform: none; }
  .live-header__embed {
    background-color: #242426; }

.watch-header {
  background: #242426;
  padding: 3rem 0 4rem; }
  @media only screen and (min-width: 60.625em) {
    .watch-header {
      padding: 5rem 0 8rem; } }
  @media only screen and (max-width: 45em) {
    .watch-header .btn--play {
      width: 50px;
      height: 50px; }
      .watch-header .btn--play:before {
        border-width: 11px 0 11px 19px; } }
  .watch-header__content {
    margin-bottom: 4rem; }
  .watch-header__subtitle {
    display: block;
    margin: 1.6rem 0 3rem; }
  .watch-header__date {
    margin-top: 2rem;
    color: #aaaaaa; }
  @media only screen and (min-width: 45em) {
    .watch-header iframe {
      width: 100%; } }

.watch-header__image-credit {
  margin-top: 10px;
  margin-bottom: -20px;
  -webkit-transition: opacity 0.25s cubic-bezier(0.5, 0, 0.5, 1);
  transition: opacity 0.25s cubic-bezier(0.5, 0, 0.5, 1); }
  .watch-header__image-credit.is-hidden {
    opacity: 0; }

.single-series__header {
  background: #242426; }
  .single-series__header-wrap {
    padding: 10rem 0;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between; }
  @media only screen and (max-width: 45em) {
    .single-series__header-title {
      margin-bottom: 3rem; } }
  .single-series__header-image .image-caption {
    margin-top: 1rem; }
  .single-series__header-image .image-credit {
    font-size: 12px;
    margin-top: .5rem; }

.single-series__archive {
  background: #242426; }
  .single-series__archive-heading {
    margin-bottom: 8rem; }
  .single-series__archive-teasers {
    padding-bottom: 1rem; }

.single-series__wrap {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  .single-series__wrap .detail__sidebar {
    padding-left: 0; }

.inactive-series {
  background: #242426; }
  .inactive-series__list {
    margin-top: 5rem; }
    .inactive-series__list-item {
      margin-top: 2rem; }
      .inactive-series__list-item:not(:last-child) {
        padding-right: 2rem; }

.active-series .series-teaser {
  margin-bottom: 2rem; }
  @media only screen and (min-width: 45em) {
    .active-series .series-teaser {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-direction: row;
          -ms-flex-direction: row;
              flex-direction: row; } }
  .active-series .series-teaser__title {
    line-height: 1; }
  .active-series .series-teaser__content {
    margin-top: 2rem; }
    @media only screen and (min-width: 45em) {
      .active-series .series-teaser__content {
        margin-top: 0;
        padding-left: 3rem; } }

@media only screen and (min-width: 45em) {
  .active-series .series-list__upcoming {
    padding-left: 3rem; } }

.active-series .series-list__dates {
  margin-top: 2rem; }

.active-series .series-list__date-link {
  margin-top: 1rem; }
  .active-series .series-list__date-link:hover .series-list__arrow {
    margin-left: 1rem; }

.active-series .series-list__arrow {
  -webkit-transition: margin-left 0.35s cubic-bezier(0.5, 0, 0.5, 1);
  transition: margin-left 0.35s cubic-bezier(0.5, 0, 0.5, 1);
  margin-left: .5rem;
  vertical-align: middle; }
  .active-series .series-list__arrow svg {
    width: 15px;
    height: 15px;
    margin-bottom: 5px;
    vertical-align: middle; }

.active-series__list-item {
  margin-bottom: 5rem; }
  @media only screen and (min-width: 45em) {
    .active-series__list-item {
      margin-bottom: 3rem; } }

.flickity-slider {
  display: block;
  width: 100%; }

.hero-slideshow {
  width: 100%;
  position: relative;
  background-color: #242426; }
  .hero-slideshow .flickity-viewport {
    overflow: hidden; }
  .hero-slideshow__slides {
    position: relative;
    padding-top: 4.8rem; }
    @media only screen and (min-width: 60.625em) {
      .hero-slideshow__slides {
        padding-top: 6.2rem; } }
    .hero-slideshow__slides:before {
      content: '';
      position: absolute;
      top: 4.8rem;
      left: 0;
      width: 100%;
      height: 15vh;
      background: -webkit-gradient(linear, left top, left bottom, from(rgba(36, 36, 38, 0.9)), to(rgba(36, 36, 38, 0)));
      background: linear-gradient(to bottom, rgba(36, 36, 38, 0.9) 0%, rgba(36, 36, 38, 0) 100%);
      z-index: 1; }
      @media only screen and (min-width: 60.625em) {
        .hero-slideshow__slides:before {
          top: 6.2rem; } }
  .hero-slideshow__slide {
    width: 100%;
    position: relative;
    overflow: hidden; }
    .hero-slideshow__slide .g-row {
      width: 100%; }
    .hero-slideshow__slide-inner {
      height: 100vh;
      height: calc(100vh - 4.8rem - 6rem);
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      position: relative;
      z-index: 2; }
      @media only screen and (min-width: 60.625em) {
        .hero-slideshow__slide-inner {
          max-height: 72rem;
          height: calc(100vh - 6.2rem); } }
    .hero-slideshow__slide-content {
      max-width: 65rem;
      width: 100%;
      -webkit-align-self: flex-end;
          -ms-flex-item-align: end;
              align-self: flex-end;
      padding-bottom: 7rem; }
      @media only screen and (min-width: 45em) {
        .hero-slideshow__slide-content {
          width: 80%; } }
      @media only screen and (min-width: 60.625em) {
        .hero-slideshow__slide-content {
          width: 50%;
          margin-left: 3rem; } }
      .hero-slideshow__slide-content .btn {
        max-width: 15.5rem; }
    .hero-slideshow__slide-text {
      margin-bottom: 2.4rem;
      overflow: hidden;
      display: block; }
      @media only screen and (max-width: 45em) {
        .hero-slideshow__slide-text {
          font-size: 3rem; } }
  .hero-slideshow__slide-images {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1; }
    @media only screen and (min-width: 60.625em) {
      .hero-slideshow__slide--half .hero-slideshow__slide-images {
        left: auto;
        width: 63.824%;
        max-width: 91rem; } }
  .hero-slideshow__slide-img--full, .hero-slideshow__slide-img--half, .hero-slideshow__slide-img--mobile {
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    font-family: "object-fit: cover; object-position: center";
    width: 100%;
    height: 100%; }
  .hero-slideshow__slide-img--full, .hero-slideshow__slide-img--half {
    display: none; }
    @media only screen and (min-width: 60.625em) {
      .hero-slideshow__slide-img--full, .hero-slideshow__slide-img--half {
        display: block; } }
  @media only screen and (min-width: 60.625em) {
    .hero-slideshow__slide-img--half {
      -o-object-fit: cover;
      object-fit: cover;
      font-family: "object-fit: cover";
      width: auto;
      height: 100%;
      max-width: none; } }
  @media only screen and (min-width: 76.25em) {
    .hero-slideshow__slide-img--half {
      -o-object-fit: cover;
      object-fit: cover;
      -o-object-position: bottom right;
      object-position: bottom right;
      font-family: "object-fit: cover; object-position: bottom right"; } }
  @media only screen and (min-width: 87.5em) {
    .hero-slideshow__slide-img--half {
      -o-object-fit: cover;
      object-fit: cover;
      -o-object-position: bottom right;
      object-position: bottom right;
      font-family: "object-fit: cover; object-position: bottom right"; } }
  @media only screen and (min-width: 60.625em) {
    .hero-slideshow__slide-img--mobile {
      display: none; } }
  .hero-slideshow .btn--play {
    right: -54px;
    top: 0; }

.slide-timer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.5rem;
  background-color: #aaaaaa;
  overflow: hidden;
  z-index: 4; }
  .slide-timer .progress-bar {
    -webkit-animation-play-state: paused;
            animation-play-state: paused; }
  .slide-timer.stopped {
    -webkit-animation-play-state: initial;
            animation-play-state: initial; }
  .slide-timer.playing .progress-bar {
    position: relative;
    width: 0;
    height: 100%;
    background-color: #666666;
    -webkit-animation-play-state: running;
            animation-play-state: running;
    -webkit-animation: slideProgress 8s ease-in-out forwards infinite;
            animation: slideProgress 8s ease-in-out forwards infinite; }

@-webkit-keyframes slideProgress {
  from {
    width: 0; }
  to {
    width: 100%; } }

@keyframes slideProgress {
  from {
    width: 0; }
  to {
    width: 100%; } }

.slider-controls {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 14.4rem;
  padding-top: 0.5rem; }
  .slider-controls__buttons {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
  .slider-controls__button {
    width: 4.8rem;
    height: 4.8rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center; }
    .slider-controls__button svg {
      display: block;
      fill: #242426;
      -webkit-transition: all 0.35s cubic-bezier(0.5, 0, 0.5, 1);
      transition: all 0.35s cubic-bezier(0.5, 0, 0.5, 1); }
    .slider-controls__button:hover.slider-controls__next svg {
      margin-left: 5px; }
    .slider-controls__button:hover.slider-controls__prev svg {
      margin-right: 5px; }
  .slider-controls__pause {
    background: #ffdd3c; }
    .slider-controls__pause.is-playing .status-playing {
      display: inline-block; }
    .slider-controls__pause.is-playing .status-paused {
      display: none; }
    .slider-controls__pause.is-paused .status-playing {
      display: none; }
    .slider-controls__pause.is-paused .status-paused {
      display: inline-block; }
  .slider-controls__toggle {
    background-color: #ffffff; }

.basic-page {
  margin-bottom: 6rem; }
  .basic-page__header {
    margin-top: 5rem;
    margin-bottom: 4rem; }
    @media only screen and (min-width: 45em) {
      .basic-page__header {
        margin-top: 9rem; } }
  .basic-page__heading {
    margin-bottom: .5rem; }
  .basic-page__content {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between; }
  @media only screen and (min-width: 87.5em) {
    .basic-page__sidebar {
      padding-left: 125px !important; } }
  .basic-page .share {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
    margin-bottom: 4rem; }
    @media only screen and (min-width: 67.5em) {
      .basic-page .share {
        margin-top: 9rem;
        margin-bottom: 0;
        -webkit-box-ordinal-group: 0;
        -webkit-order: -1;
            -ms-flex-order: -1;
                order: -1;
        margin-left: -8.5%; } }
    .basic-page .share:before {
      display: none; }

.page-module:not(:first-of-type) {
  margin: 5rem 0; }

.page-module__image .image {
  width: auto;
  height: auto; }
  .page-module__image .image__caption {
    margin: 1.5rem 0 1rem; }
  .page-module__image .image__credit {
    font-size: 12px; }

.page-module__blockquote .blockquote__quote {
  margin-bottom: 2rem; }
  .page-module__blockquote .blockquote__quote:before {
    content: "\201C";
    color: #ff00ce;
    left: 0;
    top: 0;
    margin-right: 7px;
    margin-left: 0; }
  @media only screen and (min-width: 67.5em) {
    .page-module__blockquote .blockquote__quote:before {
      margin-left: -37px; } }

.page-module__list .list__item {
  list-style: initial;
  list-style-position: inside; }
  .page-module__list .list__item:not(:last-child) {
    margin-bottom: 2rem; }

.page-module__list .list__cta {
  margin-top: 4rem; }

.page-module__accordion .accordion {
  border-top: solid 1px #aaaaaa; }
  .page-module__accordion .accordion__item {
    border-bottom: solid 1px #aaaaaa; }
  .page-module__accordion .accordion__toggle {
    position: relative;
    cursor: pointer;
    display: block;
    width: 100%;
    text-align: left;
    padding: 2rem 4rem 2rem 0; }
    .page-module__accordion .accordion__toggle .heading--toggle {
      -webkit-transition: -webkit-transform 350ms ease-in-out;
      transition: -webkit-transform 350ms ease-in-out;
      transition: transform 350ms ease-in-out;
      transition: transform 350ms ease-in-out, -webkit-transform 350ms ease-in-out;
      background: #242426;
      width: 25px;
      height: 2px;
      position: absolute;
      right: 0;
      top: 50%;
      -webkit-transform: translateY(51%);
              transform: translateY(51%); }
      .page-module__accordion .accordion__toggle .heading--toggle.right {
        -webkit-transform: rotate(90deg);
                transform: rotate(90deg); }
    .page-module__accordion .accordion__toggle.active .heading--toggle.left {
      -webkit-transform: rotate(-45deg);
              transform: rotate(-45deg); }
    .page-module__accordion .accordion__toggle.active .heading--toggle.right {
      -webkit-transform: rotate(45deg);
              transform: rotate(45deg); }
  .page-module__accordion .accordion__panel {
    display: none;
    overflow: hidden;
    padding-bottom: 2rem; }
    .page-module__accordion .accordion__panel.visible {
      display: block;
      opacity: 0;
      height: 0;
      -webkit-transition: all 350ms ease-in-out;
      transition: all 350ms ease-in-out; }
    .page-module__accordion .accordion__panel.active {
      opacity: 1;
      height: inherit; }

.basic-page__subpages {
  margin-top: 4rem; }
  .basic-page__subpages .subpage {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
        -ms-flex-flow: column;
            flex-flow: column; }
    @media only screen and (min-width: 45em) {
      .basic-page__subpages .subpage {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-flow: row nowrap;
            -ms-flex-flow: row nowrap;
                flex-flow: row nowrap; } }
    .basic-page__subpages .subpage:not(:last-child) {
      margin-bottom: 5rem; }
    .basic-page__subpages .subpage:hover .subpage__image {
      -webkit-transform: scale(1.08, 1.08) translate(-50%, -50%);
              transform: scale(1.08, 1.08) translate(-50%, -50%); }
    .basic-page__subpages .subpage:hover .subpage__title:after {
      width: 100%; }
    .basic-page__subpages .subpage__heading {
      margin-bottom: 4rem; }
    .basic-page__subpages .subpage__title {
      display: inline; }
    .basic-page__subpages .subpage__subtitle {
      margin-top: .75rem; }
    .basic-page__subpages .subpage__text {
      margin-top: 3rem; }
      @media only screen and (min-width: 45em) {
        .basic-page__subpages .subpage__text {
          margin-top: 0;
          margin-left: 2rem; } }
    .basic-page__subpages .subpage__image-wrap {
      display: block;
      width: 100%;
      height: auto;
      position: relative;
      overflow: hidden;
      padding-top: 66.66667%; }
    .basic-page__subpages .subpage__image {
      display: block;
      width: 100%;
      height: auto;
      -o-object-fit: cover;
         object-fit: cover;
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      -webkit-transition: -webkit-transform 0.35s cubic-bezier(0.5, 0, 0.5, 1);
      transition: -webkit-transform 0.35s cubic-bezier(0.5, 0, 0.5, 1);
      transition: transform 0.35s cubic-bezier(0.5, 0, 0.5, 1);
      transition: transform 0.35s cubic-bezier(0.5, 0, 0.5, 1), -webkit-transform 0.35s cubic-bezier(0.5, 0, 0.5, 1); }

.breadcrumbs {
  border-bottom: 1px solid #aaaaaa;
  padding-bottom: 2rem;
  margin-top: 2rem; }
  .breadcrumbs a,
  .breadcrumbs p, .breadcrumbs__label {
    display: inline-block; }
  .breadcrumbs:hover .breadcrumbs__arrow {
    margin-left: -.5rem;
    margin-right: 1.5rem; }
  .breadcrumbs--bottom {
    border-bottom: none; }
  .breadcrumbs__arrow {
    margin-right: 1rem;
    -webkit-transition: all 0.35s cubic-bezier(0.5, 0, 0.5, 1);
    transition: all 0.35s cubic-bezier(0.5, 0, 0.5, 1); }
    .breadcrumbs__arrow svg {
      width: 20px;
      height: 20px;
      vertical-align: middle; }

.page-header {
  width: 100%;
  padding: 5rem 0; }

.social-nav__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }

.social-nav__item {
  display: inline-block;
  width: 25px; }
  .social-nav__item + .social-nav__item {
    margin-left: 3.4rem; }
    @media only screen and (min-width: 67.5em) {
      .social-nav__item + .social-nav__item {
        margin-left: 2.4rem; } }
    @media only screen and (min-width: 76.25em) {
      .social-nav__item + .social-nav__item {
        margin-left: 4rem; } }
  .social-nav__item:hover {
    cursor: pointer; }
    .social-nav__item:hover svg {
      fill: #ff00ce; }

.social-nav svg {
  fill: #ffffff;
  display: block;
  -webkit-transition: fill 0.35s cubic-bezier(0.5, 0, 0.5, 1);
  transition: fill 0.35s cubic-bezier(0.5, 0, 0.5, 1); }

.subscription-callout {
  background-color: #ff00ce; }
  @media only screen and (min-width: 45em) {
    .subscription-callout__wrap {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: start;
      -webkit-align-items: flex-start;
          -ms-flex-align: start;
              align-items: flex-start; } }
  .subscription-callout__desc {
    padding: 3rem 0; }
    @media only screen and (min-width: 45em) {
      .subscription-callout__desc {
        padding-top: 0;
        padding-bottom: 1rem; } }
  @media only screen and (min-width: 45em) {
    .subscription-callout__info {
      padding-left: 3rem; } }
  .subscription-callout__links {
    margin-top: 2rem; }
    @media only screen and (min-width: 30em) {
      .subscription-callout__links {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center; } }
  .subscription-callout__link-top {
    margin-bottom: 1.5rem; }
    @media only screen and (min-width: 30em) {
      .subscription-callout__link-top {
        margin-bottom: 0;
        margin-right: 1.5rem; } }

.featured-series {
  background: #242426;
  width: 100%;
  position: relative; }
  .featured-series__wrap {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column nowrap;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
    height: 100%; }
  .featured-series__content {
    z-index: 1;
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3; }
  .featured-series__title {
    width: 50%;
    height: 100%;
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
        -ms-flex-order: 0;
            order: 0; }
    @media only screen and (min-width: 45em) {
      .featured-series__title {
        width: 100%; } }
  .featured-series__quote {
    position: relative;
    margin: 3rem 0 1.75rem; }
    .featured-series__quote:before {
      content: "\201C";
      position: absolute;
      left: 0;
      top: -2.5rem;
      color: #ff00ce; }
    @media only screen and (min-width: 76.25em) {
      .featured-series__quote {
        margin: 5rem 0 1.75rem; }
        .featured-series__quote:before {
          top: 0;
          left: -3.5rem; } }
  .featured-series__name {
    width: 65%; }
    @media only screen and (min-width: 45em) {
      .featured-series__name {
        width: 45%; }
        .featured-series__name br {
          display: none; } }
  .featured-series__link {
    margin-top: 5rem; }

.series__wrap {
  background-color: #ffffff; }

.series__title {
  margin-bottom: 3rem; }

.series__list {
  overflow: hidden; }
  .series__list-item {
    display: inline-block;
    width: 100%; }
    @media only screen and (min-width: 45em) {
      .series__list-item {
        width: initial;
        margin-left: -14px;
        padding-right: 14px; }
        .series__list-item:before {
          padding-right: 5px;
          content: "\2022";
          color: #242426; } }

.series__all .btn {
  margin-top: 3rem; }
  @media only screen and (max-width: 30em) {
    .series__all .btn {
      width: 100%; } }

.series__link:after {
  bottom: 0 !important; }

.single-series__archive-wrapper.is-fetching .single-series__archive-list,
.single-series__archive-wrapper.is-fetching .single-series__archive-pagination {
  opacity: 0.2; }

.single-series__archive-list,
.single-series__archive-pagination {
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out; }

.more-series {
  background: #242426;
  position: relative;
  min-height: 500px; }
  .more-series__wrap {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2; }
  .more-series__list {
    width: 100%; }
    @media only screen and (min-width: 76.25em) {
      .more-series__list {
        margin-top: 5rem; } }
    .more-series__list--event .more-series__list-item {
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-flow: row nowrap;
          -ms-flex-flow: row nowrap;
              flex-flow: row nowrap;
      margin-bottom: 4rem; }
    .more-series__list--event .more-series__title {
      line-height: 1;
      display: inline; }
    .more-series__list--event .more-series__content {
      margin-left: 2rem; }
    .more-series__list--video .video-teaser__header {
      display: none; }
    .more-series__list--video .more-series__list-item {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -webkit-flex-flow: row nowrap;
          -ms-flex-flow: row nowrap;
              flex-flow: row nowrap; }
    .more-series__list-item:not(:first-child) {
      margin-top: 4rem; }
    @media (pointer: fine) {
      .more-series__list-item:hover .more-series__title {
        position: relative; }
        .more-series__list-item:hover .more-series__title:after {
          content: '';
          display: block;
          position: absolute;
          left: 0;
          bottom: -4px;
          height: 4px;
          background: #6ce7fb;
          width: 0;
          -webkit-transition: width 0.3s cubic-bezier(0.5, 0, 0.5, 1);
          transition: width 0.3s cubic-bezier(0.5, 0, 0.5, 1); }
        .more-series__list-item:hover .more-series__title:hover:after {
          width: 100%; } }
    .more-series__list-item:hover .more-series__title:after {
      width: 100%; }
  .more-series__heading {
    margin-bottom: 2rem; }
    @media only screen and (min-width: 67.5em) {
      .more-series__heading {
        margin-bottom: 4rem; } }
  .more-series__info {
    margin-top: .5rem; }
  .more-series__excerpt {
    color: #aaaaaa;
    margin-top: 1rem; }

.detail__group {
  margin-bottom: 4rem;
  overflow: auto; }
  @media only screen and (min-width: 67.5em) {
    .detail__group {
      margin-bottom: 2rem; } }

.detail__heading {
  line-height: 1;
  margin-bottom: 2rem; }

.detail__sidebar {
  margin-top: 4rem; }
  @media only screen and (min-width: 67.5em) {
    .detail__sidebar {
      margin-top: 0;
      -webkit-box-ordinal-group: 6;
      -webkit-order: 5;
          -ms-flex-order: 5;
              order: 5;
      padding-left: 45px; } }

@media only screen and (min-width: 67.5em) {
  .detail__group--lg {
    margin-bottom: 6rem; } }

@media only screen and (min-width: 67.5em) {
  .overview {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2; } }

.overview figure {
  width: 100%;
  max-width: 100%; }

.sponsors__group,
.partners__group {
  margin-bottom: 3rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap; }

.sponsors__image,
.partners__image {
  margin-right: 2rem;
  margin-bottom: 2rem; }

.sponsors__logo,
.partners__logo {
  padding: 0;
  display: inline-block; }

.share {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding-top: 4rem;
  margin-top: 1rem; }
  .share:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #aaaaaa;
    height: 1px; }
  @media only screen and (min-width: 67.5em) {
    .share {
      margin-top: 0; } }
  .share__heading {
    margin-right: 2.5rem; }
    @media only screen and (min-width: 67.5em) {
      .share__heading {
        display: none; } }
  .share__heading,
  .share svg {
    -webkit-transition: fill 0.35s cubic-bezier(0.5, 0, 0.5, 1);
    transition: fill 0.35s cubic-bezier(0.5, 0, 0.5, 1); }
  .share__icon {
    display: block;
    margin-right: 2.5rem;
    height: 25px; }
    @media only screen and (min-width: 67.5em) {
      .share__icon {
        margin-right: 0;
        margin-bottom: 3.5rem; } }
    .share__icon:hover svg {
      fill: #ff00ce; }
  .share__tweet, .share__fb {
    display: none; }
    @media only screen and (min-width: 67.5em) {
      .share__tweet, .share__fb {
        display: block;
        margin-bottom: 2rem; } }
  @media only screen and (min-width: 67.5em) {
    .share {
      -webkit-box-ordinal-group: 2;
      -webkit-order: 1;
          -ms-flex-order: 1;
              order: 1;
      padding: 0;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: start;
      -webkit-justify-content: flex-start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-flow: column;
          -ms-flex-flow: column;
              flex-flow: column; }
      .share:before {
        display: none; } }

.message-404 {
  padding-top: 150px;
  padding-bottom: 150px; }
  .message-404__excerpt {
    margin-top: 1.5rem;
    margin-bottom: 4rem; }
    .message-404__excerpt a {
      text-decoration: underline; }

.search__header {
  margin-bottom: 0.4rem;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end; }

.search__heading {
  margin-bottom: 1rem; }
  @media only screen and (min-width: 45em) {
    .search__heading {
      margin-bottom: 0; } }
  .search__heading.results {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row nowrap;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap; }

.search-form input[type="search"]::-webkit-search-cancel-button {
  display: none !important;
  -webkit-appearance: none !important; }

.search__form .search-form__input {
  border-bottom: 2px solid #242426;
  color: #242426; }

.search__form .search-form__submit {
  fill: #242426; }

.search__form .search-form__label {
  display: none; }

.search-result a {
  display: block; }

.search-result:hover .search-result__title:after {
  width: 100%; }

.search-result:hover .search-result__link {
  color: #242426; }

.search-result:not(:last-child) {
  margin-bottom: 7rem; }

.search-result__title {
  display: inline-block; }
  @media (pointer: fine) {
    .search-result__title {
      position: relative; }
      .search-result__title:after {
        content: '';
        display: block;
        position: absolute;
        left: 0;
        bottom: -4px;
        height: 4px;
        background: #6ce7fb;
        width: 0;
        -webkit-transition: width 0.3s cubic-bezier(0.5, 0, 0.5, 1);
        transition: width 0.3s cubic-bezier(0.5, 0, 0.5, 1); }
      .search-result__title:hover:after {
        width: 100%; } }

.search-result__count {
  text-align: right;
  width: 100%; }

.search-result__link {
  margin: .75rem 0 .5rem;
  text-decoration: underline;
  -webkit-transition: color 0.35s cubic-bezier(0.5, 0, 0.5, 1);
  transition: color 0.35s cubic-bezier(0.5, 0, 0.5, 1); }

.search-result__excerpt {
  color: #242426;
  margin-top: 0.5rem;
  line-height: 1.6; }

.search-result .c-wysiwyg-content ~ p {
  color: #242426;
  font-size: 16px;
  font-weight: normal; }

.tgs-search-results {
  margin-top: 3rem; }
  @media only screen and (min-width: 60.625em) {
    .tgs-search-results {
      margin-top: 0; } }
  .tgs-search-results * {
    font-family: "Geomanist", Arial, sans-serif; }
  .tgs-search-results .gsc-results-wrapper-nooverlay.gsc-results-wrapper-visible {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column; }
  .tgs-search-results .cse .gsc-control-cse,
  .tgs-search-results .gsc-control-cse {
    padding: 0; }
  .tgs-search-results .gsc-above-wrapper-area {
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #aaaaaa;
    margin-bottom: 4rem;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1; }
  .tgs-search-results .gsc-tabsArea {
    border: 0;
    margin-bottom: 2rem;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2; }
  .tgs-search-results .gsc-tabHeader.gsc-tabhInactive,
  .tgs-search-results .gsc-refinementHeader.gsc-refinementhInactive {
    color: #242426;
    font-size: 1.8rem;
    font-weight: bold;
    font-family: "Geomanist", Arial, sans-serif;
    margin-bottom: 2.0rem;
    margin-bottom: 0;
    -webkit-transition: all 0.35s cubic-bezier(0.5, 0, 0.5, 1);
    transition: all 0.35s cubic-bezier(0.5, 0, 0.5, 1);
    border-bottom: 2px solid transparent;
    padding-bottom: 0.2rem; }
    .tgs-search-results .gsc-tabHeader.gsc-tabhInactive:hover,
    .tgs-search-results .gsc-refinementHeader.gsc-refinementhInactive:hover {
      border-color: #242426; }
  .tgs-search-results .gsc-tabHeader.gsc-tabhActive,
  .tgs-search-results .gsc-refinementHeader.gsc-refinementhActive {
    color: #ff00ce;
    border-bottom: 2px solid #ff00ce;
    padding-bottom: 0.2rem;
    font-size: 1.8rem;
    font-weight: bold;
    font-family: "Geomanist", Arial, sans-serif;
    margin-bottom: 2.0rem;
    margin-bottom: 0; }
  .tgs-search-results .gsc-result-info {
    color: #242426; }
  .tgs-search-results .gsc-control-cse .gs-result .gs-title {
    text-decoration: none !important; }
  .tgs-search-results .gsc-control-cse .gs-result .gs-title * {
    font-size: 2.4rem;
    line-height: 1.25;
    font-weight: 800;
    text-decoration: none;
    -webkit-transition: color 0.25s cubic-bezier(0.5, 0, 0.5, 1);
    transition: color 0.25s cubic-bezier(0.5, 0, 0.5, 1); }
    @media only screen and (min-width: 60.625em) {
      .tgs-search-results .gsc-control-cse .gs-result .gs-title * {
        font-size: 3.6rem; } }
  .tgs-search-results .gsc-control-cse .gs-result .gs-title a:hover {
    color: #ff00ce; }
    .tgs-search-results .gsc-control-cse .gs-result .gs-title a:hover b {
      color: #ff00ce; }
  .tgs-search-results .gs-webResult div.gs-visibleUrl, .tgs-search-results .gs-imageResult div.gs-visibleUrl {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.25;
    margin: .75rem 0 .5rem;
    text-decoration: underline; }
  .tgs-search-results .gsc-thumbnail-inside {
    padding: 0;
    line-height: 1.25; }
  .tgs-search-results .gsc-preview-reviews, .tgs-search-results .gsc-control-cse .gs-snippet, .tgs-search-results .gsc-control-cse .gs-promotion em, .tgs-search-results .gsc-control-cse .gs-snippet, .tgs-search-results .gsc-control-cse .gs-promotion em {
    font-size: 1.8rem;
    font-family: "Geomanist", Arial, sans-serif;
    line-height: 1.6; }
  .tgs-search-results .gsc-webResult .gsc-result {
    padding: 0;
    margin-bottom: 7rem; }
  .tgs-search-results .gsc-adBlockInvisible {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3; }
  .tgs-search-results .gsc-wrapper {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
        -ms-flex-order: 4;
            order: 4; }
  .tgs-search-results .gsc-results .gsc-cursor-box .gsc-cursor-page {
    font-weight: bold;
    padding: 3px 12px;
    -webkit-transition: all 0.35s cubic-bezier(0.5, 0, 0.5, 1);
    transition: all 0.35s cubic-bezier(0.5, 0, 0.5, 1);
    font-size: 1.8rem;
    color: #242426; }
    .tgs-search-results .gsc-results .gsc-cursor-box .gsc-cursor-page:hover {
      background-color: #242426;
      color: #ffffff;
      text-decoration: none; }
  .tgs-search-results .gsc-results .gsc-cursor-box .gsc-cursor-current-page {
    background-color: #242426;
    color: #ffffff; }
  .tgs-search-results .gcsc-more-maybe-branding-root {
    display: none; }
  .tgs-search-results .gs-no-results-result .gs-snippet, .tgs-search-results .gs-error-result .gs-snippet {
    padding: 0;
    margin: 1rem auto;
    border: 0;
    background: none; }

.myportfolio-container {
  margin-left: -250px;
  margin-right: -250px; }
  @media only screen and (max-width: 600px) {
    .myportfolio-container {
      margin-left: 0;
      margin-right: 0; } }

@media only screen and (max-width: 600px) {
  .esg-grid {
    padding: 0 !important; } }

.page-template-page-full-width .main {
  max-width: 872.74px;
  margin: 0 auto; }

.back-to-gallery {
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 2rem;
  margin-left: 1.8rem; }
  @media only screen and (min-width: 45em) {
    .back-to-gallery {
      margin-left: 0; } }
  .back-to-gallery .btn-icon svg {
    position: relative;
    margin-left: 0;
    left: -0.4rem;
    -webkit-transition: left 0.35s cubic-bezier(0.5, 0, 0.5, 1);
    transition: left 0.35s cubic-bezier(0.5, 0, 0.5, 1); }
  .back-to-gallery:hover .btn-icon svg {
    margin-left: 0;
    left: -0.8rem; }

.single-artists .basic-page__header {
  margin-top: 40px; }

.single-artists .main-content {
  max-width: 872.74px;
  margin: 0 auto;
  padding-top: 26px; }

.single-artists h1 {
  font-family: "Krona One", Arial, sans-serif;
  text-transform: none;
  font-size: 4rem;
  line-height: 5rem; }

.single-artists h2 {
  font-family: "Krona One", Arial, sans-serif;
  font-size: 2.5rem;
  line-height: 3.5rem; }

.newsletter-modal {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 9999;
  background-color: rgba(255, 255, 255, 0.85);
  opacity: 0;
  -webkit-transition: opacity 0.25s cubic-bezier(0.5, 0, 0.5, 1);
  transition: opacity 0.25s cubic-bezier(0.5, 0, 0.5, 1); }
  .newsletter-modal.modal--is-ready {
    -webkit-transition: opacity 0.25s cubic-bezier(0.5, 0, 0.5, 1) 0.4s;
    transition: opacity 0.25s cubic-bezier(0.5, 0, 0.5, 1) 0.4s;
    opacity: 1; }
  .newsletter-modal__container {
    width: 100%;
    max-width: 800px;
    min-height: 300px;
    background-color: rgba(0, 0, 0, 0.85);
    top: 50%;
    left: 50%;
    position: absolute;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    color: #ffffff;
    padding: 8rem 3rem; }
  .newsletter-modal__header {
    margin-bottom: 1rem; }
  .newsletter-modal__fields {
    margin: 1.5rem 0;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 2fr 2fr;
        grid-template-columns: 2fr 2fr;
    gap: 1.5rem; }
    @media only screen and (max-width: 45em) {
      .newsletter-modal__fields {
        -ms-grid-columns: 1fr;
            grid-template-columns: 1fr; } }
  .newsletter-modal__field {
    height: 5rem; }
  .newsletter-modal__toggle {
    position: absolute;
    fill: #ffffff;
    right: 2rem;
    top: 2rem; }

/**
 * Text, background, and fill color classes
 * See $color-styles in ./src/toolkit/settings/_settings.colors.scss
 *
 */
.white {
  color: #ffffff; }

._white {
  background-color: #ffffff; }

.fill-white {
  fill: #ffffff; }

.stroke-white {
  stroke: #ffffff; }

.black {
  color: #242426; }

._black {
  background-color: #242426; }

.fill-black {
  fill: #242426; }

.stroke-black {
  stroke: #242426; }

.blue {
  color: #6ce7fb; }

._blue {
  background-color: #6ce7fb; }

.fill-blue {
  fill: #6ce7fb; }

.stroke-blue {
  stroke: #6ce7fb; }

.dark-grey {
  color: #666666; }

._dark-grey {
  background-color: #666666; }

.fill-dark-grey {
  fill: #666666; }

.stroke-dark-grey {
  stroke: #666666; }

.light-grey {
  color: #aaaaaa; }

._light-grey {
  background-color: #aaaaaa; }

.fill-light-grey {
  fill: #aaaaaa; }

.stroke-light-grey {
  stroke: #aaaaaa; }

.dark-blue {
  color: #0C5F6E; }

._dark-blue {
  background-color: #0C5F6E; }

.fill-dark-blue {
  fill: #0C5F6E; }

.stroke-dark-blue {
  stroke: #0C5F6E; }

.pink {
  color: #ff00ce; }

._pink {
  background-color: #ff00ce; }

.fill-pink {
  fill: #ff00ce; }

.stroke-pink {
  stroke: #ff00ce; }

.yellow {
  color: #ffdd3c; }

._yellow {
  background-color: #ffdd3c; }

.fill-yellow {
  fill: #ffdd3c; }

.stroke-yellow {
  stroke: #ffdd3c; }

.u-padding--sm {
  padding-top: 4rem;
  padding-bottom: 4rem; }

@media only screen and (min-width: 60.625em) {
  .u-padding--sm-md {
    padding-top: 6.2rem;
    padding-bottom: 6.2rem; } }

.u-row-outside--md {
  margin-bottom: 2em; }
  .u-row-outside--md:last-child {
    margin-bottom: 0; }

.u-pos--relative {
  position: relative; }

.u-bkg-img {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain; }

.u-img-wrap {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden; }
  .u-img-wrap img,
  .u-img-wrap source {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover"; }

@media only screen and (min-width: 67.5em) {
  .u-sidebar {
    padding-left: 3rem;
    padding-right: 3rem; } }

@media only screen and (min-width: 76.25em) {
  .u-sidebar {
    padding-left: 5rem;
    padding-right: 5rem; } }

/**
 * Text, background, and fill color classes
 * See $color-styles in ./src/toolkit/settings/_settings.colors.scss
 *
 */
.white {
  color: #ffffff; }

._white {
  background-color: #ffffff; }

.fill-white {
  fill: #ffffff; }

.stroke-white {
  stroke: #ffffff; }

.black {
  color: #242426; }

._black {
  background-color: #242426; }

.fill-black {
  fill: #242426; }

.stroke-black {
  stroke: #242426; }

.blue {
  color: #6ce7fb; }

._blue {
  background-color: #6ce7fb; }

.fill-blue {
  fill: #6ce7fb; }

.stroke-blue {
  stroke: #6ce7fb; }

.dark-grey {
  color: #666666; }

._dark-grey {
  background-color: #666666; }

.fill-dark-grey {
  fill: #666666; }

.stroke-dark-grey {
  stroke: #666666; }

.light-grey {
  color: #aaaaaa; }

._light-grey {
  background-color: #aaaaaa; }

.fill-light-grey {
  fill: #aaaaaa; }

.stroke-light-grey {
  stroke: #aaaaaa; }

.dark-blue {
  color: #0C5F6E; }

._dark-blue {
  background-color: #0C5F6E; }

.fill-dark-blue {
  fill: #0C5F6E; }

.stroke-dark-blue {
  stroke: #0C5F6E; }

.pink {
  color: #ff00ce; }

._pink {
  background-color: #ff00ce; }

.fill-pink {
  fill: #ff00ce; }

.stroke-pink {
  stroke: #ff00ce; }

.yellow {
  color: #ffdd3c; }

._yellow {
  background-color: #ffdd3c; }

.fill-yellow {
  fill: #ffdd3c; }

.stroke-yellow {
  stroke: #ffdd3c; }

@media (pointer: fine) {
  .u-hover-line {
    position: relative; }
    .u-hover-line:after {
      content: '';
      display: block;
      position: absolute;
      left: 0;
      bottom: -4px;
      height: 4px;
      background: #242426;
      width: 0;
      -webkit-transition: width 0.3s cubic-bezier(0.5, 0, 0.5, 1);
      transition: width 0.3s cubic-bezier(0.5, 0, 0.5, 1); }
    .u-hover-line:hover:after {
      width: 100%; } }

.u-hover-line--blue:after {
  background: #6ce7fb; }

html .u-keyboard-user a:focus,
html .u-keyboard-user button:focus {
  outline: 2px dashed blue;
  border: 0;
  -webkit-transition: none;
  transition: none;
  -webkit-transition-delay: 0;
          transition-delay: 0;
  -webkit-clip-path: none;
          clip-path: none; }

.sr-only,
.u-sr-only {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important; }

.live-alert {
  display: none;
  background: yellow;
  font-weight: bold;
  padding: 10px; }
  .active-live .live-alert {
    display: inline-block; }

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