/*
/ _tools.functions.scss
*/
/**
 * Breakout from container by X amount of columns
 * @param {number} $columns - The amount of columns to breakout of container
 * @param {string} $breakpoint - The Foundation breakpoint key to detemine gutter width ('small' or 'medium')
 * @returns {string} - Returns CSS calc string
 */
/**
 * Converts PX to REM
 * @param {string} $size - Value to be converted in PX
 * @returns {string} - Returns REM string
 */
/**
 * Unitless line-height
 */
/*
/ _tools.mixin.scss
*/
/*
/ _settings.colors.scss
*/
/*
/ _settings.fonts.scss
*/
@font-face {
  font-family: proxima-nova;
  src: url("/assets/fonts/geneco/31F984_5_0.woff");
}

@font-face {
  font-family: proxima-nova-bold;
  src: url("/assets/fonts/geneco/31F984_2_0.woff");
}

@font-face {
  font-family: brownfox-geometria-extrabold;
  src: url("/assets/fonts/geneco/Brownfox-Geometria-ExtraBold.woff");
}

@font-face {
  font-family: brownfox-geometria;
  src: url("/assets/fonts/geneco/Brownfox-Geometria.woff");
}

/*
/ _settings.animation.scss
*/
@-webkit-keyframes shake {
  0% {
    -webkit-transform: none;
            transform: none;
  }
  15% {
    -webkit-transform: translate3d(-5%, 0, 0);
            transform: translate3d(-5%, 0, 0);
  }
  30% {
    -webkit-transform: translate3d(4%, 0, 0);
            transform: translate3d(4%, 0, 0);
  }
  45% {
    -webkit-transform: translate3d(-3%, 0, 0);
            transform: translate3d(-3%, 0, 0);
  }
  60% {
    -webkit-transform: translate3d(2%, 0, 0);
            transform: translate3d(2%, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-1%, 0, 0);
            transform: translate3d(-1%, 0, 0);
  }
  100% {
    -webkit-transform: none;
            transform: none;
  }
}
@keyframes shake {
  0% {
    -webkit-transform: none;
            transform: none;
  }
  15% {
    -webkit-transform: translate3d(-5%, 0, 0);
            transform: translate3d(-5%, 0, 0);
  }
  30% {
    -webkit-transform: translate3d(4%, 0, 0);
            transform: translate3d(4%, 0, 0);
  }
  45% {
    -webkit-transform: translate3d(-3%, 0, 0);
            transform: translate3d(-3%, 0, 0);
  }
  60% {
    -webkit-transform: translate3d(2%, 0, 0);
            transform: translate3d(2%, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-1%, 0, 0);
            transform: translate3d(-1%, 0, 0);
  }
  100% {
    -webkit-transform: none;
            transform: none;
  }
}

@-webkit-keyframes bounce {
  0%,
  100%,
  20%,
  53%,
  80% {
    -webkit-animation-timing-function: cubic-bezier(0.2, 0.1, 0.4, 1);
            animation-timing-function: cubic-bezier(0.2, 0.1, 0.4, 1);
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.8, 0.05, 0.9, 0.06);
            animation-timing-function: cubic-bezier(0.8, 0.05, 0.9, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
            transform: translate3d(0, -15px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.8, 0.05, 0.9, 0.06);
            animation-timing-function: cubic-bezier(0.8, 0.05, 0.9, 0.06);
    -webkit-transform: translate3d(0, -7px, 0);
            transform: translate3d(0, -7px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -2px, 0);
            transform: translate3d(0, -2px, 0);
  }
}

@keyframes bounce {
  0%,
  100%,
  20%,
  53%,
  80% {
    -webkit-animation-timing-function: cubic-bezier(0.2, 0.1, 0.4, 1);
            animation-timing-function: cubic-bezier(0.2, 0.1, 0.4, 1);
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.8, 0.05, 0.9, 0.06);
            animation-timing-function: cubic-bezier(0.8, 0.05, 0.9, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
            transform: translate3d(0, -15px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.8, 0.05, 0.9, 0.06);
            animation-timing-function: cubic-bezier(0.8, 0.05, 0.9, 0.06);
    -webkit-transform: translate3d(0, -7px, 0);
            transform: translate3d(0, -7px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -2px, 0);
            transform: translate3d(0, -2px, 0);
  }
}

@-webkit-keyframes flash {
  0%,
  100%,
  50% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}

@keyframes flash {
  0%,
  100%,
  50% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}

/*
/ _settings.breakpoints.scss
*/
/*
  https://foundation.zurb.com/sites/docs/media-queries.html 
  We use EM in our breakpoints to ensure the layout adapts automatically to cater (at least from a general layout switching point of view) for differently set font sizes.<br>Since we write our source CSS in Sass, all our media queries are available via Sass mixins:

      // Only affects medium screens and smaller
      @include breakpoint(medium down) { }
      
      // Only affects medium screens, not small or large
      @include breakpoint(medium only) { }
*/
/**
 * Foundation for Sites by ZURB
 * Version 6.4.4-rc1
 * foundation.zurb.com
 * Licensed under MIT Open Source
 */
.grid-container {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  max-width: 75rem;
  margin: 0 auto;
}

@media print, screen and (min-width: 46.25em) {
  .grid-container {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}

.grid-container.fluid {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  max-width: 100%;
  margin: 0 auto;
}

@media print, screen and (min-width: 46.25em) {
  .grid-container.fluid {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}

.grid-container.full {
  padding-right: 0;
  padding-left: 0;
  max-width: 100%;
  margin: 0 auto;
}

.grid-x {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}

.cell {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  min-height: 0px;
  min-width: 0px;
  width: 100%;
}

.cell.auto {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0px;
}

.cell.shrink {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.grid-x > .auto {
  width: auto;
}

.grid-x > .shrink {
  width: auto;
}

.grid-x > .small-shrink, .grid-x > .small-full, .grid-x > .small-1, .grid-x > .small-2, .grid-x > .small-3, .grid-x > .small-4, .grid-x > .small-5, .grid-x > .small-6, .grid-x > .small-7, .grid-x > .small-8, .grid-x > .small-9, .grid-x > .small-10, .grid-x > .small-11, .grid-x > .small-12 {
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
}

@media print, screen and (min-width: 20em) {
  .grid-x > .smallish-shrink, .grid-x > .smallish-full, .grid-x > .smallish-1, .grid-x > .smallish-2, .grid-x > .smallish-3, .grid-x > .smallish-4, .grid-x > .smallish-5, .grid-x > .smallish-6, .grid-x > .smallish-7, .grid-x > .smallish-8, .grid-x > .smallish-9, .grid-x > .smallish-10, .grid-x > .smallish-11, .grid-x > .smallish-12 {
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
}

@media print, screen and (min-width: 46.25em) {
  .grid-x > .medium-shrink, .grid-x > .medium-full, .grid-x > .medium-1, .grid-x > .medium-2, .o-columns__four--alt-1.grid-x > div.cell:nth-child(1), .o-columns__four--alt-1.grid-x > div.cell:nth-child(2), .o-columns__six.grid-x > div.cell, .grid-x > .medium-3, .o-columns__two--alt-1.grid-x > div.cell:nth-child(1), .o-columns__two--alt-4.grid-x > div.cell:nth-child(2), .o-columns__three--alt-1.grid-x > div.cell:nth-child(1), .o-columns__three--alt-1.grid-x > div.cell:nth-child(2), .o-columns__three--alt-2.grid-x > div.cell:nth-child(2), .o-columns__three--alt-2.grid-x > div.cell:nth-child(3), .o-columns__three--alt-3.grid-x > div.cell:nth-child(2), .o-columns__four.grid-x > div.cell, .grid-x > .medium-4, .o-columns__two--alt-2.grid-x > div.cell:nth-child(1), .o-columns__two--alt-3.grid-x > div.cell:nth-child(2), .o-columns__two--narrow.grid-x > div.cell:nth-child(1), .o-columns__two--narrow.grid-x > div.cell:nth-child(2), .o-columns__three.grid-x > div.cell, .o-columns__three--alt-3.grid-x > div.cell:nth-child(3), .o-columns__four--alt-1.grid-x > div.cell:nth-child(3), .o-columns__four--alt-1.grid-x > div.cell:nth-child(4), .grid-x > .medium-5, .o-columns__three--alt-3.grid-x > div.cell:nth-child(1), .grid-x > .medium-6, .o-columns__two.grid-x > div.cell, .o-columns__three--alt-1.grid-x > div.cell:nth-child(3), .o-columns__three--alt-2.grid-x > div.cell:nth-child(1), .grid-x > .medium-7, .grid-x > .medium-8, .o-columns__one--narrow.grid-x > div.cell, .o-columns__two--alt-2.grid-x > div.cell:nth-child(2), .o-columns__two--alt-3.grid-x > div.cell:nth-child(1), .o-columns__two--alt-4.grid-x > div.cell:nth-child(1), .grid-x > .medium-9, .o-columns__two--alt-1.grid-x > div.cell:nth-child(2), .grid-x > .medium-10, .o-columns__one--alt-1.grid-x > div.cell:nth-child(1), .grid-x > .medium-11, .grid-x > .medium-12 {
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
}

@media print, screen and (min-width: 61.25em) {
  .grid-x > .large-shrink, .grid-x > .large-full, .grid-x > .large-1, .grid-x > .large-2, .grid-x > .large-3, .grid-x > .large-4, .grid-x > .large-5, .grid-x > .large-6, .grid-x > .large-7, .grid-x > .large-8, .grid-x > .large-9, .grid-x > .large-10, .grid-x > .large-11, .grid-x > .large-12 {
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
}

@media screen and (min-width: 64em) {
  .grid-x > .largish-shrink, .grid-x > .largish-full, .grid-x > .largish-1, .grid-x > .largish-2, .grid-x > .largish-3, .grid-x > .largish-4, .grid-x > .largish-5, .grid-x > .largish-6, .grid-x > .largish-7, .grid-x > .largish-8, .grid-x > .largish-9, .grid-x > .largish-10, .grid-x > .largish-11, .grid-x > .largish-12 {
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
}

@media screen and (min-width: 75em) {
  .grid-x > .xlarge-shrink, .grid-x > .xlarge-full, .grid-x > .xlarge-1, .grid-x > .xlarge-2, .grid-x > .xlarge-3, .grid-x > .xlarge-4, .grid-x > .xlarge-5, .grid-x > .xlarge-6, .grid-x > .xlarge-7, .grid-x > .xlarge-8, .grid-x > .xlarge-9, .grid-x > .xlarge-10, .grid-x > .xlarge-11, .grid-x > .xlarge-12 {
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
}

@media screen and (min-width: 87.5em) {
  .grid-x > .xxlarge-shrink, .grid-x > .xxlarge-full, .grid-x > .xxlarge-1, .grid-x > .xxlarge-2, .grid-x > .xxlarge-3, .grid-x > .xxlarge-4, .grid-x > .xxlarge-5, .grid-x > .xxlarge-6, .grid-x > .xxlarge-7, .grid-x > .xxlarge-8, .grid-x > .xxlarge-9, .grid-x > .xxlarge-10, .grid-x > .xxlarge-11, .grid-x > .xxlarge-12 {
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
}

.grid-x > .small-1 {
  width: 8.33333%;
}

.grid-x > .small-2 {
  width: 16.66667%;
}

.grid-x > .small-3 {
  width: 25%;
}

.grid-x > .small-4 {
  width: 33.33333%;
}

.grid-x > .small-5 {
  width: 41.66667%;
}

.grid-x > .small-6 {
  width: 50%;
}

.grid-x > .small-7 {
  width: 58.33333%;
}

.grid-x > .small-8 {
  width: 66.66667%;
}

.grid-x > .small-9 {
  width: 75%;
}

.grid-x > .small-10 {
  width: 83.33333%;
}

.grid-x > .small-11 {
  width: 91.66667%;
}

.grid-x > .small-12 {
  width: 100%;
}

@media print, screen and (min-width: 20em) {
  .grid-x > .smallish-auto {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0px;
    width: auto;
  }
  .grid-x > .smallish-shrink {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .grid-x > .smallish-1 {
    width: 8.33333%;
  }
  .grid-x > .smallish-2 {
    width: 16.66667%;
  }
  .grid-x > .smallish-3 {
    width: 25%;
  }
  .grid-x > .smallish-4 {
    width: 33.33333%;
  }
  .grid-x > .smallish-5 {
    width: 41.66667%;
  }
  .grid-x > .smallish-6 {
    width: 50%;
  }
  .grid-x > .smallish-7 {
    width: 58.33333%;
  }
  .grid-x > .smallish-8 {
    width: 66.66667%;
  }
  .grid-x > .smallish-9 {
    width: 75%;
  }
  .grid-x > .smallish-10 {
    width: 83.33333%;
  }
  .grid-x > .smallish-11 {
    width: 91.66667%;
  }
  .grid-x > .smallish-12 {
    width: 100%;
  }
}

@media print, screen and (min-width: 46.25em) {
  .grid-x > .medium-auto {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0px;
    width: auto;
  }
  .grid-x > .medium-shrink {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .grid-x > .medium-1 {
    width: 8.33333%;
  }
  .grid-x > .medium-2, .o-columns__four--alt-1.grid-x > div.cell:nth-child(1), .o-columns__four--alt-1.grid-x > div.cell:nth-child(2), .o-columns__six.grid-x > div.cell {
    width: 16.66667%;
  }
  .grid-x > .medium-3, .o-columns__two--alt-1.grid-x > div.cell:nth-child(1), .o-columns__two--alt-4.grid-x > div.cell:nth-child(2), .o-columns__three--alt-1.grid-x > div.cell:nth-child(1), .o-columns__three--alt-1.grid-x > div.cell:nth-child(2), .o-columns__three--alt-2.grid-x > div.cell:nth-child(2), .o-columns__three--alt-2.grid-x > div.cell:nth-child(3), .o-columns__three--alt-3.grid-x > div.cell:nth-child(2), .o-columns__four.grid-x > div.cell {
    width: 25%;
  }
  .grid-x > .medium-4, .o-columns__two--alt-2.grid-x > div.cell:nth-child(1), .o-columns__two--alt-3.grid-x > div.cell:nth-child(2), .o-columns__two--narrow.grid-x > div.cell:nth-child(1), .o-columns__two--narrow.grid-x > div.cell:nth-child(2), .o-columns__three.grid-x > div.cell, .o-columns__three--alt-3.grid-x > div.cell:nth-child(3), .o-columns__four--alt-1.grid-x > div.cell:nth-child(3), .o-columns__four--alt-1.grid-x > div.cell:nth-child(4) {
    width: 33.33333%;
  }
  .grid-x > .medium-5, .o-columns__three--alt-3.grid-x > div.cell:nth-child(1) {
    width: 41.66667%;
  }
  .grid-x > .medium-6, .o-columns__two.grid-x > div.cell, .o-columns__three--alt-1.grid-x > div.cell:nth-child(3), .o-columns__three--alt-2.grid-x > div.cell:nth-child(1) {
    width: 50%;
  }
  .grid-x > .medium-7 {
    width: 58.33333%;
  }
  .grid-x > .medium-8, .o-columns__one--narrow.grid-x > div.cell, .o-columns__two--alt-2.grid-x > div.cell:nth-child(2), .o-columns__two--alt-3.grid-x > div.cell:nth-child(1), .o-columns__two--alt-4.grid-x > div.cell:nth-child(1) {
    width: 66.66667%;
  }
  .grid-x > .medium-9, .o-columns__two--alt-1.grid-x > div.cell:nth-child(2) {
    width: 75%;
  }
  .grid-x > .medium-10, .o-columns__one--alt-1.grid-x > div.cell:nth-child(1) {
    width: 83.33333%;
  }
  .grid-x > .medium-11 {
    width: 91.66667%;
  }
  .grid-x > .medium-12 {
    width: 100%;
  }
}

@media print, screen and (min-width: 61.25em) {
  .grid-x > .large-auto {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0px;
    width: auto;
  }
  .grid-x > .large-shrink {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .grid-x > .large-1 {
    width: 8.33333%;
  }
  .grid-x > .large-2 {
    width: 16.66667%;
  }
  .grid-x > .large-3 {
    width: 25%;
  }
  .grid-x > .large-4 {
    width: 33.33333%;
  }
  .grid-x > .large-5 {
    width: 41.66667%;
  }
  .grid-x > .large-6 {
    width: 50%;
  }
  .grid-x > .large-7 {
    width: 58.33333%;
  }
  .grid-x > .large-8 {
    width: 66.66667%;
  }
  .grid-x > .large-9 {
    width: 75%;
  }
  .grid-x > .large-10 {
    width: 83.33333%;
  }
  .grid-x > .large-11 {
    width: 91.66667%;
  }
  .grid-x > .large-12 {
    width: 100%;
  }
}

@media screen and (min-width: 64em) {
  .grid-x > .largish-auto {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0px;
    width: auto;
  }
  .grid-x > .largish-shrink {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .grid-x > .largish-1 {
    width: 8.33333%;
  }
  .grid-x > .largish-2 {
    width: 16.66667%;
  }
  .grid-x > .largish-3 {
    width: 25%;
  }
  .grid-x > .largish-4 {
    width: 33.33333%;
  }
  .grid-x > .largish-5 {
    width: 41.66667%;
  }
  .grid-x > .largish-6 {
    width: 50%;
  }
  .grid-x > .largish-7 {
    width: 58.33333%;
  }
  .grid-x > .largish-8 {
    width: 66.66667%;
  }
  .grid-x > .largish-9 {
    width: 75%;
  }
  .grid-x > .largish-10 {
    width: 83.33333%;
  }
  .grid-x > .largish-11 {
    width: 91.66667%;
  }
  .grid-x > .largish-12 {
    width: 100%;
  }
}

@media screen and (min-width: 75em) {
  .grid-x > .xlarge-auto {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0px;
    width: auto;
  }
  .grid-x > .xlarge-shrink {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .grid-x > .xlarge-1 {
    width: 8.33333%;
  }
  .grid-x > .xlarge-2 {
    width: 16.66667%;
  }
  .grid-x > .xlarge-3 {
    width: 25%;
  }
  .grid-x > .xlarge-4 {
    width: 33.33333%;
  }
  .grid-x > .xlarge-5 {
    width: 41.66667%;
  }
  .grid-x > .xlarge-6 {
    width: 50%;
  }
  .grid-x > .xlarge-7 {
    width: 58.33333%;
  }
  .grid-x > .xlarge-8 {
    width: 66.66667%;
  }
  .grid-x > .xlarge-9 {
    width: 75%;
  }
  .grid-x > .xlarge-10 {
    width: 83.33333%;
  }
  .grid-x > .xlarge-11 {
    width: 91.66667%;
  }
  .grid-x > .xlarge-12 {
    width: 100%;
  }
}

@media screen and (min-width: 87.5em) {
  .grid-x > .xxlarge-auto {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0px;
    width: auto;
  }
  .grid-x > .xxlarge-shrink {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }
  .grid-x > .xxlarge-1 {
    width: 8.33333%;
  }
  .grid-x > .xxlarge-2 {
    width: 16.66667%;
  }
  .grid-x > .xxlarge-3 {
    width: 25%;
  }
  .grid-x > .xxlarge-4 {
    width: 33.33333%;
  }
  .grid-x > .xxlarge-5 {
    width: 41.66667%;
  }
  .grid-x > .xxlarge-6 {
    width: 50%;
  }
  .grid-x > .xxlarge-7 {
    width: 58.33333%;
  }
  .grid-x > .xxlarge-8 {
    width: 66.66667%;
  }
  .grid-x > .xxlarge-9 {
    width: 75%;
  }
  .grid-x > .xxlarge-10 {
    width: 83.33333%;
  }
  .grid-x > .xxlarge-11 {
    width: 91.66667%;
  }
  .grid-x > .xxlarge-12 {
    width: 100%;
  }
}

.grid-margin-x:not(.grid-x) > .cell {
  width: auto;
}

.grid-margin-y:not(.grid-y) > .cell {
  height: auto;
}

.grid-margin-x {
  margin-left: -0.625rem;
  margin-right: -0.625rem;
}

@media print, screen and (min-width: 46.25em) {
  .grid-margin-x {
    margin-left: -0.9375rem;
    margin-right: -0.9375rem;
  }
}

.grid-margin-x > .cell {
  width: calc(100% - 1.25rem);
  margin-left: 0.625rem;
  margin-right: 0.625rem;
}

@media print, screen and (min-width: 46.25em) {
  .grid-margin-x > .cell {
    width: calc(100% - 1.875rem);
    margin-left: 0.9375rem;
    margin-right: 0.9375rem;
  }
}

.grid-margin-x > .auto {
  width: auto;
}

.grid-margin-x > .shrink {
  width: auto;
}

.grid-margin-x > .small-1 {
  width: calc(8.33333% - 1.25rem);
}

.grid-margin-x > .small-2 {
  width: calc(16.66667% - 1.25rem);
}

.grid-margin-x > .small-3 {
  width: calc(25% - 1.25rem);
}

.grid-margin-x > .small-4 {
  width: calc(33.33333% - 1.25rem);
}

.grid-margin-x > .small-5 {
  width: calc(41.66667% - 1.25rem);
}

.grid-margin-x > .small-6 {
  width: calc(50% - 1.25rem);
}

.grid-margin-x > .small-7 {
  width: calc(58.33333% - 1.25rem);
}

.grid-margin-x > .small-8 {
  width: calc(66.66667% - 1.25rem);
}

.grid-margin-x > .small-9 {
  width: calc(75% - 1.25rem);
}

.grid-margin-x > .small-10 {
  width: calc(83.33333% - 1.25rem);
}

.grid-margin-x > .small-11 {
  width: calc(91.66667% - 1.25rem);
}

.grid-margin-x > .small-12 {
  width: calc(100% - 1.25rem);
}

@media print, screen and (min-width: 20em) {
  .grid-margin-x > .smallish-auto {
    width: auto;
  }
  .grid-margin-x > .smallish-shrink {
    width: auto;
  }
  .grid-margin-x > .smallish-1 {
    width: calc(8.33333% - 1.25rem);
  }
  .grid-margin-x > .smallish-2 {
    width: calc(16.66667% - 1.25rem);
  }
  .grid-margin-x > .smallish-3 {
    width: calc(25% - 1.25rem);
  }
  .grid-margin-x > .smallish-4 {
    width: calc(33.33333% - 1.25rem);
  }
  .grid-margin-x > .smallish-5 {
    width: calc(41.66667% - 1.25rem);
  }
  .grid-margin-x > .smallish-6 {
    width: calc(50% - 1.25rem);
  }
  .grid-margin-x > .smallish-7 {
    width: calc(58.33333% - 1.25rem);
  }
  .grid-margin-x > .smallish-8 {
    width: calc(66.66667% - 1.25rem);
  }
  .grid-margin-x > .smallish-9 {
    width: calc(75% - 1.25rem);
  }
  .grid-margin-x > .smallish-10 {
    width: calc(83.33333% - 1.25rem);
  }
  .grid-margin-x > .smallish-11 {
    width: calc(91.66667% - 1.25rem);
  }
  .grid-margin-x > .smallish-12 {
    width: calc(100% - 1.25rem);
  }
}

@media print, screen and (min-width: 46.25em) {
  .grid-margin-x > .auto {
    width: auto;
  }
  .grid-margin-x > .shrink {
    width: auto;
  }
  .grid-margin-x > .small-1 {
    width: calc(8.33333% - 1.875rem);
  }
  .grid-margin-x > .small-2 {
    width: calc(16.66667% - 1.875rem);
  }
  .grid-margin-x > .small-3 {
    width: calc(25% - 1.875rem);
  }
  .grid-margin-x > .small-4 {
    width: calc(33.33333% - 1.875rem);
  }
  .grid-margin-x > .small-5 {
    width: calc(41.66667% - 1.875rem);
  }
  .grid-margin-x > .small-6 {
    width: calc(50% - 1.875rem);
  }
  .grid-margin-x > .small-7 {
    width: calc(58.33333% - 1.875rem);
  }
  .grid-margin-x > .small-8 {
    width: calc(66.66667% - 1.875rem);
  }
  .grid-margin-x > .small-9 {
    width: calc(75% - 1.875rem);
  }
  .grid-margin-x > .small-10 {
    width: calc(83.33333% - 1.875rem);
  }
  .grid-margin-x > .small-11 {
    width: calc(91.66667% - 1.875rem);
  }
  .grid-margin-x > .small-12 {
    width: calc(100% - 1.875rem);
  }
  .grid-margin-x > .medium-auto {
    width: auto;
  }
  .grid-margin-x > .medium-shrink {
    width: auto;
  }
  .grid-margin-x > .medium-1 {
    width: calc(8.33333% - 1.875rem);
  }
  .grid-margin-x > .medium-2, .o-columns__four--alt-1.grid-margin-x > div.cell:nth-child(1), .o-columns__four--alt-1.grid-margin-x > div.cell:nth-child(2), .o-columns__six.grid-margin-x > div.cell {
    width: calc(16.66667% - 1.875rem);
  }
  .grid-margin-x > .medium-3, .o-columns__two--alt-1.grid-margin-x > div.cell:nth-child(1), .o-columns__two--alt-4.grid-margin-x > div.cell:nth-child(2), .o-columns__three--alt-1.grid-margin-x > div.cell:nth-child(1), .o-columns__three--alt-1.grid-margin-x > div.cell:nth-child(2), .o-columns__three--alt-2.grid-margin-x > div.cell:nth-child(2), .o-columns__three--alt-2.grid-margin-x > div.cell:nth-child(3), .o-columns__three--alt-3.grid-margin-x > div.cell:nth-child(2), .o-columns__four.grid-margin-x > div.cell {
    width: calc(25% - 1.875rem);
  }
  .grid-margin-x > .medium-4, .o-columns__two--alt-2.grid-margin-x > div.cell:nth-child(1), .o-columns__two--alt-3.grid-margin-x > div.cell:nth-child(2), .o-columns__two--narrow.grid-margin-x > div.cell:nth-child(1), .o-columns__two--narrow.grid-margin-x > div.cell:nth-child(2), .o-columns__three.grid-margin-x > div.cell, .o-columns__three--alt-3.grid-margin-x > div.cell:nth-child(3), .o-columns__four--alt-1.grid-margin-x > div.cell:nth-child(3), .o-columns__four--alt-1.grid-margin-x > div.cell:nth-child(4) {
    width: calc(33.33333% - 1.875rem);
  }
  .grid-margin-x > .medium-5, .o-columns__three--alt-3.grid-margin-x > div.cell:nth-child(1) {
    width: calc(41.66667% - 1.875rem);
  }
  .grid-margin-x > .medium-6, .o-columns__two.grid-margin-x > div.cell, .o-columns__three--alt-1.grid-margin-x > div.cell:nth-child(3), .o-columns__three--alt-2.grid-margin-x > div.cell:nth-child(1) {
    width: calc(50% - 1.875rem);
  }
  .grid-margin-x > .medium-7 {
    width: calc(58.33333% - 1.875rem);
  }
  .grid-margin-x > .medium-8, .o-columns__one--narrow.grid-margin-x > div.cell, .o-columns__two--alt-2.grid-margin-x > div.cell:nth-child(2), .o-columns__two--alt-3.grid-margin-x > div.cell:nth-child(1), .o-columns__two--alt-4.grid-margin-x > div.cell:nth-child(1) {
    width: calc(66.66667% - 1.875rem);
  }
  .grid-margin-x > .medium-9, .o-columns__two--alt-1.grid-margin-x > div.cell:nth-child(2) {
    width: calc(75% - 1.875rem);
  }
  .grid-margin-x > .medium-10, .o-columns__one--alt-1.grid-margin-x > div.cell:nth-child(1) {
    width: calc(83.33333% - 1.875rem);
  }
  .grid-margin-x > .medium-11 {
    width: calc(91.66667% - 1.875rem);
  }
  .grid-margin-x > .medium-12 {
    width: calc(100% - 1.875rem);
  }
}

@media print, screen and (min-width: 61.25em) {
  .grid-margin-x > .large-auto {
    width: auto;
  }
  .grid-margin-x > .large-shrink {
    width: auto;
  }
  .grid-margin-x > .large-1 {
    width: calc(8.33333% - 1.875rem);
  }
  .grid-margin-x > .large-2 {
    width: calc(16.66667% - 1.875rem);
  }
  .grid-margin-x > .large-3 {
    width: calc(25% - 1.875rem);
  }
  .grid-margin-x > .large-4 {
    width: calc(33.33333% - 1.875rem);
  }
  .grid-margin-x > .large-5 {
    width: calc(41.66667% - 1.875rem);
  }
  .grid-margin-x > .large-6 {
    width: calc(50% - 1.875rem);
  }
  .grid-margin-x > .large-7 {
    width: calc(58.33333% - 1.875rem);
  }
  .grid-margin-x > .large-8 {
    width: calc(66.66667% - 1.875rem);
  }
  .grid-margin-x > .large-9 {
    width: calc(75% - 1.875rem);
  }
  .grid-margin-x > .large-10 {
    width: calc(83.33333% - 1.875rem);
  }
  .grid-margin-x > .large-11 {
    width: calc(91.66667% - 1.875rem);
  }
  .grid-margin-x > .large-12 {
    width: calc(100% - 1.875rem);
  }
}

@media screen and (min-width: 64em) {
  .grid-margin-x > .largish-auto {
    width: auto;
  }
  .grid-margin-x > .largish-shrink {
    width: auto;
  }
  .grid-margin-x > .largish-1 {
    width: calc(8.33333% - 1.875rem);
  }
  .grid-margin-x > .largish-2 {
    width: calc(16.66667% - 1.875rem);
  }
  .grid-margin-x > .largish-3 {
    width: calc(25% - 1.875rem);
  }
  .grid-margin-x > .largish-4 {
    width: calc(33.33333% - 1.875rem);
  }
  .grid-margin-x > .largish-5 {
    width: calc(41.66667% - 1.875rem);
  }
  .grid-margin-x > .largish-6 {
    width: calc(50% - 1.875rem);
  }
  .grid-margin-x > .largish-7 {
    width: calc(58.33333% - 1.875rem);
  }
  .grid-margin-x > .largish-8 {
    width: calc(66.66667% - 1.875rem);
  }
  .grid-margin-x > .largish-9 {
    width: calc(75% - 1.875rem);
  }
  .grid-margin-x > .largish-10 {
    width: calc(83.33333% - 1.875rem);
  }
  .grid-margin-x > .largish-11 {
    width: calc(91.66667% - 1.875rem);
  }
  .grid-margin-x > .largish-12 {
    width: calc(100% - 1.875rem);
  }
}

@media screen and (min-width: 75em) {
  .grid-margin-x > .xlarge-auto {
    width: auto;
  }
  .grid-margin-x > .xlarge-shrink {
    width: auto;
  }
  .grid-margin-x > .xlarge-1 {
    width: calc(8.33333% - 1.875rem);
  }
  .grid-margin-x > .xlarge-2 {
    width: calc(16.66667% - 1.875rem);
  }
  .grid-margin-x > .xlarge-3 {
    width: calc(25% - 1.875rem);
  }
  .grid-margin-x > .xlarge-4 {
    width: calc(33.33333% - 1.875rem);
  }
  .grid-margin-x > .xlarge-5 {
    width: calc(41.66667% - 1.875rem);
  }
  .grid-margin-x > .xlarge-6 {
    width: calc(50% - 1.875rem);
  }
  .grid-margin-x > .xlarge-7 {
    width: calc(58.33333% - 1.875rem);
  }
  .grid-margin-x > .xlarge-8 {
    width: calc(66.66667% - 1.875rem);
  }
  .grid-margin-x > .xlarge-9 {
    width: calc(75% - 1.875rem);
  }
  .grid-margin-x > .xlarge-10 {
    width: calc(83.33333% - 1.875rem);
  }
  .grid-margin-x > .xlarge-11 {
    width: calc(91.66667% - 1.875rem);
  }
  .grid-margin-x > .xlarge-12 {
    width: calc(100% - 1.875rem);
  }
}

@media screen and (min-width: 87.5em) {
  .grid-margin-x > .xxlarge-auto {
    width: auto;
  }
  .grid-margin-x > .xxlarge-shrink {
    width: auto;
  }
  .grid-margin-x > .xxlarge-1 {
    width: calc(8.33333% - 1.875rem);
  }
  .grid-margin-x > .xxlarge-2 {
    width: calc(16.66667% - 1.875rem);
  }
  .grid-margin-x > .xxlarge-3 {
    width: calc(25% - 1.875rem);
  }
  .grid-margin-x > .xxlarge-4 {
    width: calc(33.33333% - 1.875rem);
  }
  .grid-margin-x > .xxlarge-5 {
    width: calc(41.66667% - 1.875rem);
  }
  .grid-margin-x > .xxlarge-6 {
    width: calc(50% - 1.875rem);
  }
  .grid-margin-x > .xxlarge-7 {
    width: calc(58.33333% - 1.875rem);
  }
  .grid-margin-x > .xxlarge-8 {
    width: calc(66.66667% - 1.875rem);
  }
  .grid-margin-x > .xxlarge-9 {
    width: calc(75% - 1.875rem);
  }
  .grid-margin-x > .xxlarge-10 {
    width: calc(83.33333% - 1.875rem);
  }
  .grid-margin-x > .xxlarge-11 {
    width: calc(91.66667% - 1.875rem);
  }
  .grid-margin-x > .xxlarge-12 {
    width: calc(100% - 1.875rem);
  }
}

.grid-padding-x .grid-padding-x {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}

@media print, screen and (min-width: 46.25em) {
  .grid-padding-x .grid-padding-x {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}

.grid-container:not(.full) > .grid-padding-x {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}

@media print, screen and (min-width: 46.25em) {
  .grid-container:not(.full) > .grid-padding-x {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}

.grid-padding-x > .cell {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}

@media print, screen and (min-width: 46.25em) {
  .grid-padding-x > .cell {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}

.small-up-1 > .cell {
  width: 100%;
}

.small-up-2 > .cell {
  width: 50%;
}

.small-up-3 > .cell {
  width: 33.33333%;
}

.small-up-4 > .cell {
  width: 25%;
}

.small-up-5 > .cell {
  width: 20%;
}

.small-up-6 > .cell {
  width: 16.66667%;
}

.small-up-7 > .cell {
  width: 14.28571%;
}

.small-up-8 > .cell {
  width: 12.5%;
}

@media print, screen and (min-width: 20em) {
  .smallish-up-1 > .cell {
    width: 100%;
  }
  .smallish-up-2 > .cell {
    width: 50%;
  }
  .smallish-up-3 > .cell {
    width: 33.33333%;
  }
  .smallish-up-4 > .cell {
    width: 25%;
  }
  .smallish-up-5 > .cell {
    width: 20%;
  }
  .smallish-up-6 > .cell {
    width: 16.66667%;
  }
  .smallish-up-7 > .cell {
    width: 14.28571%;
  }
  .smallish-up-8 > .cell {
    width: 12.5%;
  }
}

@media print, screen and (min-width: 46.25em) {
  .medium-up-1 > .cell {
    width: 100%;
  }
  .medium-up-2 > .cell {
    width: 50%;
  }
  .medium-up-3 > .cell {
    width: 33.33333%;
  }
  .medium-up-4 > .cell {
    width: 25%;
  }
  .medium-up-5 > .cell {
    width: 20%;
  }
  .medium-up-6 > .cell {
    width: 16.66667%;
  }
  .medium-up-7 > .cell {
    width: 14.28571%;
  }
  .medium-up-8 > .cell {
    width: 12.5%;
  }
}

@media print, screen and (min-width: 61.25em) {
  .large-up-1 > .cell {
    width: 100%;
  }
  .large-up-2 > .cell {
    width: 50%;
  }
  .large-up-3 > .cell {
    width: 33.33333%;
  }
  .large-up-4 > .cell {
    width: 25%;
  }
  .large-up-5 > .cell {
    width: 20%;
  }
  .large-up-6 > .cell {
    width: 16.66667%;
  }
  .large-up-7 > .cell {
    width: 14.28571%;
  }
  .large-up-8 > .cell {
    width: 12.5%;
  }
}

@media screen and (min-width: 64em) {
  .largish-up-1 > .cell {
    width: 100%;
  }
  .largish-up-2 > .cell {
    width: 50%;
  }
  .largish-up-3 > .cell {
    width: 33.33333%;
  }
  .largish-up-4 > .cell {
    width: 25%;
  }
  .largish-up-5 > .cell {
    width: 20%;
  }
  .largish-up-6 > .cell {
    width: 16.66667%;
  }
  .largish-up-7 > .cell {
    width: 14.28571%;
  }
  .largish-up-8 > .cell {
    width: 12.5%;
  }
}

@media screen and (min-width: 75em) {
  .xlarge-up-1 > .cell {
    width: 100%;
  }
  .xlarge-up-2 > .cell {
    width: 50%;
  }
  .xlarge-up-3 > .cell {
    width: 33.33333%;
  }
  .xlarge-up-4 > .cell {
    width: 25%;
  }
  .xlarge-up-5 > .cell {
    width: 20%;
  }
  .xlarge-up-6 > .cell {
    width: 16.66667%;
  }
  .xlarge-up-7 > .cell {
    width: 14.28571%;
  }
  .xlarge-up-8 > .cell {
    width: 12.5%;
  }
}

@media screen and (min-width: 87.5em) {
  .xxlarge-up-1 > .cell {
    width: 100%;
  }
  .xxlarge-up-2 > .cell {
    width: 50%;
  }
  .xxlarge-up-3 > .cell {
    width: 33.33333%;
  }
  .xxlarge-up-4 > .cell {
    width: 25%;
  }
  .xxlarge-up-5 > .cell {
    width: 20%;
  }
  .xxlarge-up-6 > .cell {
    width: 16.66667%;
  }
  .xxlarge-up-7 > .cell {
    width: 14.28571%;
  }
  .xxlarge-up-8 > .cell {
    width: 12.5%;
  }
}

.grid-margin-x.small-up-1 > .cell {
  width: calc(100% - 1.25rem);
}

.grid-margin-x.small-up-2 > .cell {
  width: calc(50% - 1.25rem);
}

.grid-margin-x.small-up-3 > .cell {
  width: calc(33.33333% - 1.25rem);
}

.grid-margin-x.small-up-4 > .cell {
  width: calc(25% - 1.25rem);
}

.grid-margin-x.small-up-5 > .cell {
  width: calc(20% - 1.25rem);
}

.grid-margin-x.small-up-6 > .cell {
  width: calc(16.66667% - 1.25rem);
}

.grid-margin-x.small-up-7 > .cell {
  width: calc(14.28571% - 1.25rem);
}

.grid-margin-x.small-up-8 > .cell {
  width: calc(12.5% - 1.25rem);
}

@media print, screen and (min-width: 20em) {
  .grid-margin-x.smallish-up-1 > .cell {
    width: calc(100% - 1.25rem);
  }
  .grid-margin-x.smallish-up-2 > .cell {
    width: calc(50% - 1.25rem);
  }
  .grid-margin-x.smallish-up-3 > .cell {
    width: calc(33.33333% - 1.25rem);
  }
  .grid-margin-x.smallish-up-4 > .cell {
    width: calc(25% - 1.25rem);
  }
  .grid-margin-x.smallish-up-5 > .cell {
    width: calc(20% - 1.25rem);
  }
  .grid-margin-x.smallish-up-6 > .cell {
    width: calc(16.66667% - 1.25rem);
  }
  .grid-margin-x.smallish-up-7 > .cell {
    width: calc(14.28571% - 1.25rem);
  }
  .grid-margin-x.smallish-up-8 > .cell {
    width: calc(12.5% - 1.25rem);
  }
}

@media print, screen and (min-width: 46.25em) {
  .grid-margin-x.small-up-1 > .cell {
    width: calc(100% - 1.25rem);
  }
  .grid-margin-x.small-up-2 > .cell {
    width: calc(50% - 1.25rem);
  }
  .grid-margin-x.small-up-3 > .cell {
    width: calc(33.33333% - 1.25rem);
  }
  .grid-margin-x.small-up-4 > .cell {
    width: calc(25% - 1.25rem);
  }
  .grid-margin-x.small-up-5 > .cell {
    width: calc(20% - 1.25rem);
  }
  .grid-margin-x.small-up-6 > .cell {
    width: calc(16.66667% - 1.25rem);
  }
  .grid-margin-x.small-up-7 > .cell {
    width: calc(14.28571% - 1.25rem);
  }
  .grid-margin-x.small-up-8 > .cell {
    width: calc(12.5% - 1.25rem);
  }
  .grid-margin-x.medium-up-1 > .cell {
    width: calc(100% - 1.875rem);
  }
  .grid-margin-x.medium-up-2 > .cell {
    width: calc(50% - 1.875rem);
  }
  .grid-margin-x.medium-up-3 > .cell {
    width: calc(33.33333% - 1.875rem);
  }
  .grid-margin-x.medium-up-4 > .cell {
    width: calc(25% - 1.875rem);
  }
  .grid-margin-x.medium-up-5 > .cell {
    width: calc(20% - 1.875rem);
  }
  .grid-margin-x.medium-up-6 > .cell {
    width: calc(16.66667% - 1.875rem);
  }
  .grid-margin-x.medium-up-7 > .cell {
    width: calc(14.28571% - 1.875rem);
  }
  .grid-margin-x.medium-up-8 > .cell {
    width: calc(12.5% - 1.875rem);
  }
}

@media print, screen and (min-width: 61.25em) {
  .grid-margin-x.large-up-1 > .cell {
    width: calc(100% - 1.875rem);
  }
  .grid-margin-x.large-up-2 > .cell {
    width: calc(50% - 1.875rem);
  }
  .grid-margin-x.large-up-3 > .cell {
    width: calc(33.33333% - 1.875rem);
  }
  .grid-margin-x.large-up-4 > .cell {
    width: calc(25% - 1.875rem);
  }
  .grid-margin-x.large-up-5 > .cell {
    width: calc(20% - 1.875rem);
  }
  .grid-margin-x.large-up-6 > .cell {
    width: calc(16.66667% - 1.875rem);
  }
  .grid-margin-x.large-up-7 > .cell {
    width: calc(14.28571% - 1.875rem);
  }
  .grid-margin-x.large-up-8 > .cell {
    width: calc(12.5% - 1.875rem);
  }
}

@media screen and (min-width: 64em) {
  .grid-margin-x.largish-up-1 > .cell {
    width: calc(100% - 1.875rem);
  }
  .grid-margin-x.largish-up-2 > .cell {
    width: calc(50% - 1.875rem);
  }
  .grid-margin-x.largish-up-3 > .cell {
    width: calc(33.33333% - 1.875rem);
  }
  .grid-margin-x.largish-up-4 > .cell {
    width: calc(25% - 1.875rem);
  }
  .grid-margin-x.largish-up-5 > .cell {
    width: calc(20% - 1.875rem);
  }
  .grid-margin-x.largish-up-6 > .cell {
    width: calc(16.66667% - 1.875rem);
  }
  .grid-margin-x.largish-up-7 > .cell {
    width: calc(14.28571% - 1.875rem);
  }
  .grid-margin-x.largish-up-8 > .cell {
    width: calc(12.5% - 1.875rem);
  }
}

@media screen and (min-width: 75em) {
  .grid-margin-x.xlarge-up-1 > .cell {
    width: calc(100% - 1.875rem);
  }
  .grid-margin-x.xlarge-up-2 > .cell {
    width: calc(50% - 1.875rem);
  }
  .grid-margin-x.xlarge-up-3 > .cell {
    width: calc(33.33333% - 1.875rem);
  }
  .grid-margin-x.xlarge-up-4 > .cell {
    width: calc(25% - 1.875rem);
  }
  .grid-margin-x.xlarge-up-5 > .cell {
    width: calc(20% - 1.875rem);
  }
  .grid-margin-x.xlarge-up-6 > .cell {
    width: calc(16.66667% - 1.875rem);
  }
  .grid-margin-x.xlarge-up-7 > .cell {
    width: calc(14.28571% - 1.875rem);
  }
  .grid-margin-x.xlarge-up-8 > .cell {
    width: calc(12.5% - 1.875rem);
  }
}

@media screen and (min-width: 87.5em) {
  .grid-margin-x.xxlarge-up-1 > .cell {
    width: calc(100% - 1.875rem);
  }
  .grid-margin-x.xxlarge-up-2 > .cell {
    width: calc(50% - 1.875rem);
  }
  .grid-margin-x.xxlarge-up-3 > .cell {
    width: calc(33.33333% - 1.875rem);
  }
  .grid-margin-x.xxlarge-up-4 > .cell {
    width: calc(25% - 1.875rem);
  }
  .grid-margin-x.xxlarge-up-5 > .cell {
    width: calc(20% - 1.875rem);
  }
  .grid-margin-x.xxlarge-up-6 > .cell {
    width: calc(16.66667% - 1.875rem);
  }
  .grid-margin-x.xxlarge-up-7 > .cell {
    width: calc(14.28571% - 1.875rem);
  }
  .grid-margin-x.xxlarge-up-8 > .cell {
    width: calc(12.5% - 1.875rem);
  }
}

.small-margin-collapse {
  margin-right: 0;
  margin-left: 0;
}

.small-margin-collapse > .cell {
  margin-right: 0;
  margin-left: 0;
}

.small-margin-collapse > .small-1 {
  width: 8.33333%;
}

.small-margin-collapse > .small-2 {
  width: 16.66667%;
}

.small-margin-collapse > .small-3 {
  width: 25%;
}

.small-margin-collapse > .small-4 {
  width: 33.33333%;
}

.small-margin-collapse > .small-5 {
  width: 41.66667%;
}

.small-margin-collapse > .small-6 {
  width: 50%;
}

.small-margin-collapse > .small-7 {
  width: 58.33333%;
}

.small-margin-collapse > .small-8 {
  width: 66.66667%;
}

.small-margin-collapse > .small-9 {
  width: 75%;
}

.small-margin-collapse > .small-10 {
  width: 83.33333%;
}

.small-margin-collapse > .small-11 {
  width: 91.66667%;
}

.small-margin-collapse > .small-12 {
  width: 100%;
}

@media print, screen and (min-width: 20em) {
  .small-margin-collapse > .smallish-1 {
    width: 8.33333%;
  }
  .small-margin-collapse > .smallish-2 {
    width: 16.66667%;
  }
  .small-margin-collapse > .smallish-3 {
    width: 25%;
  }
  .small-margin-collapse > .smallish-4 {
    width: 33.33333%;
  }
  .small-margin-collapse > .smallish-5 {
    width: 41.66667%;
  }
  .small-margin-collapse > .smallish-6 {
    width: 50%;
  }
  .small-margin-collapse > .smallish-7 {
    width: 58.33333%;
  }
  .small-margin-collapse > .smallish-8 {
    width: 66.66667%;
  }
  .small-margin-collapse > .smallish-9 {
    width: 75%;
  }
  .small-margin-collapse > .smallish-10 {
    width: 83.33333%;
  }
  .small-margin-collapse > .smallish-11 {
    width: 91.66667%;
  }
  .small-margin-collapse > .smallish-12 {
    width: 100%;
  }
}

@media print, screen and (min-width: 46.25em) {
  .small-margin-collapse > .medium-1 {
    width: 8.33333%;
  }
  .small-margin-collapse > .medium-2, .o-columns__four--alt-1.small-margin-collapse > div.cell:nth-child(1), .o-columns__four--alt-1.small-margin-collapse > div.cell:nth-child(2), .o-columns__six.small-margin-collapse > div.cell {
    width: 16.66667%;
  }
  .small-margin-collapse > .medium-3, .o-columns__two--alt-1.small-margin-collapse > div.cell:nth-child(1), .o-columns__two--alt-4.small-margin-collapse > div.cell:nth-child(2), .o-columns__three--alt-1.small-margin-collapse > div.cell:nth-child(1), .o-columns__three--alt-1.small-margin-collapse > div.cell:nth-child(2), .o-columns__three--alt-2.small-margin-collapse > div.cell:nth-child(2), .o-columns__three--alt-2.small-margin-collapse > div.cell:nth-child(3), .o-columns__three--alt-3.small-margin-collapse > div.cell:nth-child(2), .o-columns__four.small-margin-collapse > div.cell {
    width: 25%;
  }
  .small-margin-collapse > .medium-4, .o-columns__two--alt-2.small-margin-collapse > div.cell:nth-child(1), .o-columns__two--alt-3.small-margin-collapse > div.cell:nth-child(2), .o-columns__two--narrow.small-margin-collapse > div.cell:nth-child(1), .o-columns__two--narrow.small-margin-collapse > div.cell:nth-child(2), .o-columns__three.small-margin-collapse > div.cell, .o-columns__three--alt-3.small-margin-collapse > div.cell:nth-child(3), .o-columns__four--alt-1.small-margin-collapse > div.cell:nth-child(3), .o-columns__four--alt-1.small-margin-collapse > div.cell:nth-child(4) {
    width: 33.33333%;
  }
  .small-margin-collapse > .medium-5, .o-columns__three--alt-3.small-margin-collapse > div.cell:nth-child(1) {
    width: 41.66667%;
  }
  .small-margin-collapse > .medium-6, .o-columns__two.small-margin-collapse > div.cell, .o-columns__three--alt-1.small-margin-collapse > div.cell:nth-child(3), .o-columns__three--alt-2.small-margin-collapse > div.cell:nth-child(1) {
    width: 50%;
  }
  .small-margin-collapse > .medium-7 {
    width: 58.33333%;
  }
  .small-margin-collapse > .medium-8, .o-columns__one--narrow.small-margin-collapse > div.cell, .o-columns__two--alt-2.small-margin-collapse > div.cell:nth-child(2), .o-columns__two--alt-3.small-margin-collapse > div.cell:nth-child(1), .o-columns__two--alt-4.small-margin-collapse > div.cell:nth-child(1) {
    width: 66.66667%;
  }
  .small-margin-collapse > .medium-9, .o-columns__two--alt-1.small-margin-collapse > div.cell:nth-child(2) {
    width: 75%;
  }
  .small-margin-collapse > .medium-10, .o-columns__one--alt-1.small-margin-collapse > div.cell:nth-child(1) {
    width: 83.33333%;
  }
  .small-margin-collapse > .medium-11 {
    width: 91.66667%;
  }
  .small-margin-collapse > .medium-12 {
    width: 100%;
  }
}

@media print, screen and (min-width: 61.25em) {
  .small-margin-collapse > .large-1 {
    width: 8.33333%;
  }
  .small-margin-collapse > .large-2 {
    width: 16.66667%;
  }
  .small-margin-collapse > .large-3 {
    width: 25%;
  }
  .small-margin-collapse > .large-4 {
    width: 33.33333%;
  }
  .small-margin-collapse > .large-5 {
    width: 41.66667%;
  }
  .small-margin-collapse > .large-6 {
    width: 50%;
  }
  .small-margin-collapse > .large-7 {
    width: 58.33333%;
  }
  .small-margin-collapse > .large-8 {
    width: 66.66667%;
  }
  .small-margin-collapse > .large-9 {
    width: 75%;
  }
  .small-margin-collapse > .large-10 {
    width: 83.33333%;
  }
  .small-margin-collapse > .large-11 {
    width: 91.66667%;
  }
  .small-margin-collapse > .large-12 {
    width: 100%;
  }
}

@media screen and (min-width: 64em) {
  .small-margin-collapse > .largish-1 {
    width: 8.33333%;
  }
  .small-margin-collapse > .largish-2 {
    width: 16.66667%;
  }
  .small-margin-collapse > .largish-3 {
    width: 25%;
  }
  .small-margin-collapse > .largish-4 {
    width: 33.33333%;
  }
  .small-margin-collapse > .largish-5 {
    width: 41.66667%;
  }
  .small-margin-collapse > .largish-6 {
    width: 50%;
  }
  .small-margin-collapse > .largish-7 {
    width: 58.33333%;
  }
  .small-margin-collapse > .largish-8 {
    width: 66.66667%;
  }
  .small-margin-collapse > .largish-9 {
    width: 75%;
  }
  .small-margin-collapse > .largish-10 {
    width: 83.33333%;
  }
  .small-margin-collapse > .largish-11 {
    width: 91.66667%;
  }
  .small-margin-collapse > .largish-12 {
    width: 100%;
  }
}

@media screen and (min-width: 75em) {
  .small-margin-collapse > .xlarge-1 {
    width: 8.33333%;
  }
  .small-margin-collapse > .xlarge-2 {
    width: 16.66667%;
  }
  .small-margin-collapse > .xlarge-3 {
    width: 25%;
  }
  .small-margin-collapse > .xlarge-4 {
    width: 33.33333%;
  }
  .small-margin-collapse > .xlarge-5 {
    width: 41.66667%;
  }
  .small-margin-collapse > .xlarge-6 {
    width: 50%;
  }
  .small-margin-collapse > .xlarge-7 {
    width: 58.33333%;
  }
  .small-margin-collapse > .xlarge-8 {
    width: 66.66667%;
  }
  .small-margin-collapse > .xlarge-9 {
    width: 75%;
  }
  .small-margin-collapse > .xlarge-10 {
    width: 83.33333%;
  }
  .small-margin-collapse > .xlarge-11 {
    width: 91.66667%;
  }
  .small-margin-collapse > .xlarge-12 {
    width: 100%;
  }
}

@media screen and (min-width: 87.5em) {
  .small-margin-collapse > .xxlarge-1 {
    width: 8.33333%;
  }
  .small-margin-collapse > .xxlarge-2 {
    width: 16.66667%;
  }
  .small-margin-collapse > .xxlarge-3 {
    width: 25%;
  }
  .small-margin-collapse > .xxlarge-4 {
    width: 33.33333%;
  }
  .small-margin-collapse > .xxlarge-5 {
    width: 41.66667%;
  }
  .small-margin-collapse > .xxlarge-6 {
    width: 50%;
  }
  .small-margin-collapse > .xxlarge-7 {
    width: 58.33333%;
  }
  .small-margin-collapse > .xxlarge-8 {
    width: 66.66667%;
  }
  .small-margin-collapse > .xxlarge-9 {
    width: 75%;
  }
  .small-margin-collapse > .xxlarge-10 {
    width: 83.33333%;
  }
  .small-margin-collapse > .xxlarge-11 {
    width: 91.66667%;
  }
  .small-margin-collapse > .xxlarge-12 {
    width: 100%;
  }
}

.small-padding-collapse {
  margin-right: 0;
  margin-left: 0;
}

.small-padding-collapse > .cell {
  padding-right: 0;
  padding-left: 0;
}

@media print, screen and (min-width: 20em) {
  .smallish-margin-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .smallish-margin-collapse > .cell {
    margin-right: 0;
    margin-left: 0;
  }
}

@media print, screen and (min-width: 20em) {
  .smallish-margin-collapse > .small-1 {
    width: 8.33333%;
  }
  .smallish-margin-collapse > .small-2 {
    width: 16.66667%;
  }
  .smallish-margin-collapse > .small-3 {
    width: 25%;
  }
  .smallish-margin-collapse > .small-4 {
    width: 33.33333%;
  }
  .smallish-margin-collapse > .small-5 {
    width: 41.66667%;
  }
  .smallish-margin-collapse > .small-6 {
    width: 50%;
  }
  .smallish-margin-collapse > .small-7 {
    width: 58.33333%;
  }
  .smallish-margin-collapse > .small-8 {
    width: 66.66667%;
  }
  .smallish-margin-collapse > .small-9 {
    width: 75%;
  }
  .smallish-margin-collapse > .small-10 {
    width: 83.33333%;
  }
  .smallish-margin-collapse > .small-11 {
    width: 91.66667%;
  }
  .smallish-margin-collapse > .small-12 {
    width: 100%;
  }
}

@media print, screen and (min-width: 20em) {
  .smallish-margin-collapse > .smallish-1 {
    width: 8.33333%;
  }
  .smallish-margin-collapse > .smallish-2 {
    width: 16.66667%;
  }
  .smallish-margin-collapse > .smallish-3 {
    width: 25%;
  }
  .smallish-margin-collapse > .smallish-4 {
    width: 33.33333%;
  }
  .smallish-margin-collapse > .smallish-5 {
    width: 41.66667%;
  }
  .smallish-margin-collapse > .smallish-6 {
    width: 50%;
  }
  .smallish-margin-collapse > .smallish-7 {
    width: 58.33333%;
  }
  .smallish-margin-collapse > .smallish-8 {
    width: 66.66667%;
  }
  .smallish-margin-collapse > .smallish-9 {
    width: 75%;
  }
  .smallish-margin-collapse > .smallish-10 {
    width: 83.33333%;
  }
  .smallish-margin-collapse > .smallish-11 {
    width: 91.66667%;
  }
  .smallish-margin-collapse > .smallish-12 {
    width: 100%;
  }
}

@media print, screen and (min-width: 46.25em) {
  .smallish-margin-collapse > .medium-1 {
    width: 8.33333%;
  }
  .smallish-margin-collapse > .medium-2, .o-columns__four--alt-1.smallish-margin-collapse > div.cell:nth-child(1), .o-columns__four--alt-1.smallish-margin-collapse > div.cell:nth-child(2), .o-columns__six.smallish-margin-collapse > div.cell {
    width: 16.66667%;
  }
  .smallish-margin-collapse > .medium-3, .o-columns__two--alt-1.smallish-margin-collapse > div.cell:nth-child(1), .o-columns__two--alt-4.smallish-margin-collapse > div.cell:nth-child(2), .o-columns__three--alt-1.smallish-margin-collapse > div.cell:nth-child(1), .o-columns__three--alt-1.smallish-margin-collapse > div.cell:nth-child(2), .o-columns__three--alt-2.smallish-margin-collapse > div.cell:nth-child(2), .o-columns__three--alt-2.smallish-margin-collapse > div.cell:nth-child(3), .o-columns__three--alt-3.smallish-margin-collapse > div.cell:nth-child(2), .o-columns__four.smallish-margin-collapse > div.cell {
    width: 25%;
  }
  .smallish-margin-collapse > .medium-4, .o-columns__two--alt-2.smallish-margin-collapse > div.cell:nth-child(1), .o-columns__two--alt-3.smallish-margin-collapse > div.cell:nth-child(2), .o-columns__two--narrow.smallish-margin-collapse > div.cell:nth-child(1), .o-columns__two--narrow.smallish-margin-collapse > div.cell:nth-child(2), .o-columns__three.smallish-margin-collapse > div.cell, .o-columns__three--alt-3.smallish-margin-collapse > div.cell:nth-child(3), .o-columns__four--alt-1.smallish-margin-collapse > div.cell:nth-child(3), .o-columns__four--alt-1.smallish-margin-collapse > div.cell:nth-child(4) {
    width: 33.33333%;
  }
  .smallish-margin-collapse > .medium-5, .o-columns__three--alt-3.smallish-margin-collapse > div.cell:nth-child(1) {
    width: 41.66667%;
  }
  .smallish-margin-collapse > .medium-6, .o-columns__two.smallish-margin-collapse > div.cell, .o-columns__three--alt-1.smallish-margin-collapse > div.cell:nth-child(3), .o-columns__three--alt-2.smallish-margin-collapse > div.cell:nth-child(1) {
    width: 50%;
  }
  .smallish-margin-collapse > .medium-7 {
    width: 58.33333%;
  }
  .smallish-margin-collapse > .medium-8, .o-columns__one--narrow.smallish-margin-collapse > div.cell, .o-columns__two--alt-2.smallish-margin-collapse > div.cell:nth-child(2), .o-columns__two--alt-3.smallish-margin-collapse > div.cell:nth-child(1), .o-columns__two--alt-4.smallish-margin-collapse > div.cell:nth-child(1) {
    width: 66.66667%;
  }
  .smallish-margin-collapse > .medium-9, .o-columns__two--alt-1.smallish-margin-collapse > div.cell:nth-child(2) {
    width: 75%;
  }
  .smallish-margin-collapse > .medium-10, .o-columns__one--alt-1.smallish-margin-collapse > div.cell:nth-child(1) {
    width: 83.33333%;
  }
  .smallish-margin-collapse > .medium-11 {
    width: 91.66667%;
  }
  .smallish-margin-collapse > .medium-12 {
    width: 100%;
  }
}

@media print, screen and (min-width: 61.25em) {
  .smallish-margin-collapse > .large-1 {
    width: 8.33333%;
  }
  .smallish-margin-collapse > .large-2 {
    width: 16.66667%;
  }
  .smallish-margin-collapse > .large-3 {
    width: 25%;
  }
  .smallish-margin-collapse > .large-4 {
    width: 33.33333%;
  }
  .smallish-margin-collapse > .large-5 {
    width: 41.66667%;
  }
  .smallish-margin-collapse > .large-6 {
    width: 50%;
  }
  .smallish-margin-collapse > .large-7 {
    width: 58.33333%;
  }
  .smallish-margin-collapse > .large-8 {
    width: 66.66667%;
  }
  .smallish-margin-collapse > .large-9 {
    width: 75%;
  }
  .smallish-margin-collapse > .large-10 {
    width: 83.33333%;
  }
  .smallish-margin-collapse > .large-11 {
    width: 91.66667%;
  }
  .smallish-margin-collapse > .large-12 {
    width: 100%;
  }
}

@media screen and (min-width: 64em) {
  .smallish-margin-collapse > .largish-1 {
    width: 8.33333%;
  }
  .smallish-margin-collapse > .largish-2 {
    width: 16.66667%;
  }
  .smallish-margin-collapse > .largish-3 {
    width: 25%;
  }
  .smallish-margin-collapse > .largish-4 {
    width: 33.33333%;
  }
  .smallish-margin-collapse > .largish-5 {
    width: 41.66667%;
  }
  .smallish-margin-collapse > .largish-6 {
    width: 50%;
  }
  .smallish-margin-collapse > .largish-7 {
    width: 58.33333%;
  }
  .smallish-margin-collapse > .largish-8 {
    width: 66.66667%;
  }
  .smallish-margin-collapse > .largish-9 {
    width: 75%;
  }
  .smallish-margin-collapse > .largish-10 {
    width: 83.33333%;
  }
  .smallish-margin-collapse > .largish-11 {
    width: 91.66667%;
  }
  .smallish-margin-collapse > .largish-12 {
    width: 100%;
  }
}

@media screen and (min-width: 75em) {
  .smallish-margin-collapse > .xlarge-1 {
    width: 8.33333%;
  }
  .smallish-margin-collapse > .xlarge-2 {
    width: 16.66667%;
  }
  .smallish-margin-collapse > .xlarge-3 {
    width: 25%;
  }
  .smallish-margin-collapse > .xlarge-4 {
    width: 33.33333%;
  }
  .smallish-margin-collapse > .xlarge-5 {
    width: 41.66667%;
  }
  .smallish-margin-collapse > .xlarge-6 {
    width: 50%;
  }
  .smallish-margin-collapse > .xlarge-7 {
    width: 58.33333%;
  }
  .smallish-margin-collapse > .xlarge-8 {
    width: 66.66667%;
  }
  .smallish-margin-collapse > .xlarge-9 {
    width: 75%;
  }
  .smallish-margin-collapse > .xlarge-10 {
    width: 83.33333%;
  }
  .smallish-margin-collapse > .xlarge-11 {
    width: 91.66667%;
  }
  .smallish-margin-collapse > .xlarge-12 {
    width: 100%;
  }
}

@media screen and (min-width: 87.5em) {
  .smallish-margin-collapse > .xxlarge-1 {
    width: 8.33333%;
  }
  .smallish-margin-collapse > .xxlarge-2 {
    width: 16.66667%;
  }
  .smallish-margin-collapse > .xxlarge-3 {
    width: 25%;
  }
  .smallish-margin-collapse > .xxlarge-4 {
    width: 33.33333%;
  }
  .smallish-margin-collapse > .xxlarge-5 {
    width: 41.66667%;
  }
  .smallish-margin-collapse > .xxlarge-6 {
    width: 50%;
  }
  .smallish-margin-collapse > .xxlarge-7 {
    width: 58.33333%;
  }
  .smallish-margin-collapse > .xxlarge-8 {
    width: 66.66667%;
  }
  .smallish-margin-collapse > .xxlarge-9 {
    width: 75%;
  }
  .smallish-margin-collapse > .xxlarge-10 {
    width: 83.33333%;
  }
  .smallish-margin-collapse > .xxlarge-11 {
    width: 91.66667%;
  }
  .smallish-margin-collapse > .xxlarge-12 {
    width: 100%;
  }
}

@media print, screen and (min-width: 20em) {
  .smallish-padding-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .smallish-padding-collapse > .cell {
    padding-right: 0;
    padding-left: 0;
  }
}

@media print, screen and (min-width: 46.25em) {
  .medium-margin-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .medium-margin-collapse > .cell {
    margin-right: 0;
    margin-left: 0;
  }
}

@media print, screen and (min-width: 46.25em) {
  .medium-margin-collapse > .small-1 {
    width: 8.33333%;
  }
  .medium-margin-collapse > .small-2 {
    width: 16.66667%;
  }
  .medium-margin-collapse > .small-3 {
    width: 25%;
  }
  .medium-margin-collapse > .small-4 {
    width: 33.33333%;
  }
  .medium-margin-collapse > .small-5 {
    width: 41.66667%;
  }
  .medium-margin-collapse > .small-6 {
    width: 50%;
  }
  .medium-margin-collapse > .small-7 {
    width: 58.33333%;
  }
  .medium-margin-collapse > .small-8 {
    width: 66.66667%;
  }
  .medium-margin-collapse > .small-9 {
    width: 75%;
  }
  .medium-margin-collapse > .small-10 {
    width: 83.33333%;
  }
  .medium-margin-collapse > .small-11 {
    width: 91.66667%;
  }
  .medium-margin-collapse > .small-12 {
    width: 100%;
  }
}

@media print, screen and (min-width: 46.25em) {
  .medium-margin-collapse > .smallish-1 {
    width: 8.33333%;
  }
  .medium-margin-collapse > .smallish-2 {
    width: 16.66667%;
  }
  .medium-margin-collapse > .smallish-3 {
    width: 25%;
  }
  .medium-margin-collapse > .smallish-4 {
    width: 33.33333%;
  }
  .medium-margin-collapse > .smallish-5 {
    width: 41.66667%;
  }
  .medium-margin-collapse > .smallish-6 {
    width: 50%;
  }
  .medium-margin-collapse > .smallish-7 {
    width: 58.33333%;
  }
  .medium-margin-collapse > .smallish-8 {
    width: 66.66667%;
  }
  .medium-margin-collapse > .smallish-9 {
    width: 75%;
  }
  .medium-margin-collapse > .smallish-10 {
    width: 83.33333%;
  }
  .medium-margin-collapse > .smallish-11 {
    width: 91.66667%;
  }
  .medium-margin-collapse > .smallish-12 {
    width: 100%;
  }
}

@media print, screen and (min-width: 46.25em) {
  .medium-margin-collapse > .medium-1 {
    width: 8.33333%;
  }
  .medium-margin-collapse > .medium-2, .o-columns__four--alt-1.medium-margin-collapse > div.cell:nth-child(1), .o-columns__four--alt-1.medium-margin-collapse > div.cell:nth-child(2), .o-columns__six.medium-margin-collapse > div.cell {
    width: 16.66667%;
  }
  .medium-margin-collapse > .medium-3, .o-columns__two--alt-1.medium-margin-collapse > div.cell:nth-child(1), .o-columns__two--alt-4.medium-margin-collapse > div.cell:nth-child(2), .o-columns__three--alt-1.medium-margin-collapse > div.cell:nth-child(1), .o-columns__three--alt-1.medium-margin-collapse > div.cell:nth-child(2), .o-columns__three--alt-2.medium-margin-collapse > div.cell:nth-child(2), .o-columns__three--alt-2.medium-margin-collapse > div.cell:nth-child(3), .o-columns__three--alt-3.medium-margin-collapse > div.cell:nth-child(2), .o-columns__four.medium-margin-collapse > div.cell {
    width: 25%;
  }
  .medium-margin-collapse > .medium-4, .o-columns__two--alt-2.medium-margin-collapse > div.cell:nth-child(1), .o-columns__two--alt-3.medium-margin-collapse > div.cell:nth-child(2), .o-columns__two--narrow.medium-margin-collapse > div.cell:nth-child(1), .o-columns__two--narrow.medium-margin-collapse > div.cell:nth-child(2), .o-columns__three.medium-margin-collapse > div.cell, .o-columns__three--alt-3.medium-margin-collapse > div.cell:nth-child(3), .o-columns__four--alt-1.medium-margin-collapse > div.cell:nth-child(3), .o-columns__four--alt-1.medium-margin-collapse > div.cell:nth-child(4) {
    width: 33.33333%;
  }
  .medium-margin-collapse > .medium-5, .o-columns__three--alt-3.medium-margin-collapse > div.cell:nth-child(1) {
    width: 41.66667%;
  }
  .medium-margin-collapse > .medium-6, .o-columns__two.medium-margin-collapse > div.cell, .o-columns__three--alt-1.medium-margin-collapse > div.cell:nth-child(3), .o-columns__three--alt-2.medium-margin-collapse > div.cell:nth-child(1) {
    width: 50%;
  }
  .medium-margin-collapse > .medium-7 {
    width: 58.33333%;
  }
  .medium-margin-collapse > .medium-8, .o-columns__one--narrow.medium-margin-collapse > div.cell, .o-columns__two--alt-2.medium-margin-collapse > div.cell:nth-child(2), .o-columns__two--alt-3.medium-margin-collapse > div.cell:nth-child(1), .o-columns__two--alt-4.medium-margin-collapse > div.cell:nth-child(1) {
    width: 66.66667%;
  }
  .medium-margin-collapse > .medium-9, .o-columns__two--alt-1.medium-margin-collapse > div.cell:nth-child(2) {
    width: 75%;
  }
  .medium-margin-collapse > .medium-10, .o-columns__one--alt-1.medium-margin-collapse > div.cell:nth-child(1) {
    width: 83.33333%;
  }
  .medium-margin-collapse > .medium-11 {
    width: 91.66667%;
  }
  .medium-margin-collapse > .medium-12 {
    width: 100%;
  }
}

@media print, screen and (min-width: 61.25em) {
  .medium-margin-collapse > .large-1 {
    width: 8.33333%;
  }
  .medium-margin-collapse > .large-2 {
    width: 16.66667%;
  }
  .medium-margin-collapse > .large-3 {
    width: 25%;
  }
  .medium-margin-collapse > .large-4 {
    width: 33.33333%;
  }
  .medium-margin-collapse > .large-5 {
    width: 41.66667%;
  }
  .medium-margin-collapse > .large-6 {
    width: 50%;
  }
  .medium-margin-collapse > .large-7 {
    width: 58.33333%;
  }
  .medium-margin-collapse > .large-8 {
    width: 66.66667%;
  }
  .medium-margin-collapse > .large-9 {
    width: 75%;
  }
  .medium-margin-collapse > .large-10 {
    width: 83.33333%;
  }
  .medium-margin-collapse > .large-11 {
    width: 91.66667%;
  }
  .medium-margin-collapse > .large-12 {
    width: 100%;
  }
}

@media screen and (min-width: 64em) {
  .medium-margin-collapse > .largish-1 {
    width: 8.33333%;
  }
  .medium-margin-collapse > .largish-2 {
    width: 16.66667%;
  }
  .medium-margin-collapse > .largish-3 {
    width: 25%;
  }
  .medium-margin-collapse > .largish-4 {
    width: 33.33333%;
  }
  .medium-margin-collapse > .largish-5 {
    width: 41.66667%;
  }
  .medium-margin-collapse > .largish-6 {
    width: 50%;
  }
  .medium-margin-collapse > .largish-7 {
    width: 58.33333%;
  }
  .medium-margin-collapse > .largish-8 {
    width: 66.66667%;
  }
  .medium-margin-collapse > .largish-9 {
    width: 75%;
  }
  .medium-margin-collapse > .largish-10 {
    width: 83.33333%;
  }
  .medium-margin-collapse > .largish-11 {
    width: 91.66667%;
  }
  .medium-margin-collapse > .largish-12 {
    width: 100%;
  }
}

@media screen and (min-width: 75em) {
  .medium-margin-collapse > .xlarge-1 {
    width: 8.33333%;
  }
  .medium-margin-collapse > .xlarge-2 {
    width: 16.66667%;
  }
  .medium-margin-collapse > .xlarge-3 {
    width: 25%;
  }
  .medium-margin-collapse > .xlarge-4 {
    width: 33.33333%;
  }
  .medium-margin-collapse > .xlarge-5 {
    width: 41.66667%;
  }
  .medium-margin-collapse > .xlarge-6 {
    width: 50%;
  }
  .medium-margin-collapse > .xlarge-7 {
    width: 58.33333%;
  }
  .medium-margin-collapse > .xlarge-8 {
    width: 66.66667%;
  }
  .medium-margin-collapse > .xlarge-9 {
    width: 75%;
  }
  .medium-margin-collapse > .xlarge-10 {
    width: 83.33333%;
  }
  .medium-margin-collapse > .xlarge-11 {
    width: 91.66667%;
  }
  .medium-margin-collapse > .xlarge-12 {
    width: 100%;
  }
}

@media screen and (min-width: 87.5em) {
  .medium-margin-collapse > .xxlarge-1 {
    width: 8.33333%;
  }
  .medium-margin-collapse > .xxlarge-2 {
    width: 16.66667%;
  }
  .medium-margin-collapse > .xxlarge-3 {
    width: 25%;
  }
  .medium-margin-collapse > .xxlarge-4 {
    width: 33.33333%;
  }
  .medium-margin-collapse > .xxlarge-5 {
    width: 41.66667%;
  }
  .medium-margin-collapse > .xxlarge-6 {
    width: 50%;
  }
  .medium-margin-collapse > .xxlarge-7 {
    width: 58.33333%;
  }
  .medium-margin-collapse > .xxlarge-8 {
    width: 66.66667%;
  }
  .medium-margin-collapse > .xxlarge-9 {
    width: 75%;
  }
  .medium-margin-collapse > .xxlarge-10 {
    width: 83.33333%;
  }
  .medium-margin-collapse > .xxlarge-11 {
    width: 91.66667%;
  }
  .medium-margin-collapse > .xxlarge-12 {
    width: 100%;
  }
}

@media print, screen and (min-width: 46.25em) {
  .medium-padding-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .medium-padding-collapse > .cell {
    padding-right: 0;
    padding-left: 0;
  }
}

@media print, screen and (min-width: 61.25em) {
  .large-margin-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .large-margin-collapse > .cell {
    margin-right: 0;
    margin-left: 0;
  }
}

@media print, screen and (min-width: 61.25em) {
  .large-margin-collapse > .small-1 {
    width: 8.33333%;
  }
  .large-margin-collapse > .small-2 {
    width: 16.66667%;
  }
  .large-margin-collapse > .small-3 {
    width: 25%;
  }
  .large-margin-collapse > .small-4 {
    width: 33.33333%;
  }
  .large-margin-collapse > .small-5 {
    width: 41.66667%;
  }
  .large-margin-collapse > .small-6 {
    width: 50%;
  }
  .large-margin-collapse > .small-7 {
    width: 58.33333%;
  }
  .large-margin-collapse > .small-8 {
    width: 66.66667%;
  }
  .large-margin-collapse > .small-9 {
    width: 75%;
  }
  .large-margin-collapse > .small-10 {
    width: 83.33333%;
  }
  .large-margin-collapse > .small-11 {
    width: 91.66667%;
  }
  .large-margin-collapse > .small-12 {
    width: 100%;
  }
}

@media print, screen and (min-width: 61.25em) {
  .large-margin-collapse > .smallish-1 {
    width: 8.33333%;
  }
  .large-margin-collapse > .smallish-2 {
    width: 16.66667%;
  }
  .large-margin-collapse > .smallish-3 {
    width: 25%;
  }
  .large-margin-collapse > .smallish-4 {
    width: 33.33333%;
  }
  .large-margin-collapse > .smallish-5 {
    width: 41.66667%;
  }
  .large-margin-collapse > .smallish-6 {
    width: 50%;
  }
  .large-margin-collapse > .smallish-7 {
    width: 58.33333%;
  }
  .large-margin-collapse > .smallish-8 {
    width: 66.66667%;
  }
  .large-margin-collapse > .smallish-9 {
    width: 75%;
  }
  .large-margin-collapse > .smallish-10 {
    width: 83.33333%;
  }
  .large-margin-collapse > .smallish-11 {
    width: 91.66667%;
  }
  .large-margin-collapse > .smallish-12 {
    width: 100%;
  }
}

@media print, screen and (min-width: 61.25em) {
  .large-margin-collapse > .medium-1 {
    width: 8.33333%;
  }
  .large-margin-collapse > .medium-2, .o-columns__four--alt-1.large-margin-collapse > div.cell:nth-child(1), .o-columns__four--alt-1.large-margin-collapse > div.cell:nth-child(2), .o-columns__six.large-margin-collapse > div.cell {
    width: 16.66667%;
  }
  .large-margin-collapse > .medium-3, .o-columns__two--alt-1.large-margin-collapse > div.cell:nth-child(1), .o-columns__two--alt-4.large-margin-collapse > div.cell:nth-child(2), .o-columns__three--alt-1.large-margin-collapse > div.cell:nth-child(1), .o-columns__three--alt-1.large-margin-collapse > div.cell:nth-child(2), .o-columns__three--alt-2.large-margin-collapse > div.cell:nth-child(2), .o-columns__three--alt-2.large-margin-collapse > div.cell:nth-child(3), .o-columns__three--alt-3.large-margin-collapse > div.cell:nth-child(2), .o-columns__four.large-margin-collapse > div.cell {
    width: 25%;
  }
  .large-margin-collapse > .medium-4, .o-columns__two--alt-2.large-margin-collapse > div.cell:nth-child(1), .o-columns__two--alt-3.large-margin-collapse > div.cell:nth-child(2), .o-columns__two--narrow.large-margin-collapse > div.cell:nth-child(1), .o-columns__two--narrow.large-margin-collapse > div.cell:nth-child(2), .o-columns__three.large-margin-collapse > div.cell, .o-columns__three--alt-3.large-margin-collapse > div.cell:nth-child(3), .o-columns__four--alt-1.large-margin-collapse > div.cell:nth-child(3), .o-columns__four--alt-1.large-margin-collapse > div.cell:nth-child(4) {
    width: 33.33333%;
  }
  .large-margin-collapse > .medium-5, .o-columns__three--alt-3.large-margin-collapse > div.cell:nth-child(1) {
    width: 41.66667%;
  }
  .large-margin-collapse > .medium-6, .o-columns__two.large-margin-collapse > div.cell, .o-columns__three--alt-1.large-margin-collapse > div.cell:nth-child(3), .o-columns__three--alt-2.large-margin-collapse > div.cell:nth-child(1) {
    width: 50%;
  }
  .large-margin-collapse > .medium-7 {
    width: 58.33333%;
  }
  .large-margin-collapse > .medium-8, .o-columns__one--narrow.large-margin-collapse > div.cell, .o-columns__two--alt-2.large-margin-collapse > div.cell:nth-child(2), .o-columns__two--alt-3.large-margin-collapse > div.cell:nth-child(1), .o-columns__two--alt-4.large-margin-collapse > div.cell:nth-child(1) {
    width: 66.66667%;
  }
  .large-margin-collapse > .medium-9, .o-columns__two--alt-1.large-margin-collapse > div.cell:nth-child(2) {
    width: 75%;
  }
  .large-margin-collapse > .medium-10, .o-columns__one--alt-1.large-margin-collapse > div.cell:nth-child(1) {
    width: 83.33333%;
  }
  .large-margin-collapse > .medium-11 {
    width: 91.66667%;
  }
  .large-margin-collapse > .medium-12 {
    width: 100%;
  }
}

@media print, screen and (min-width: 61.25em) {
  .large-margin-collapse > .large-1 {
    width: 8.33333%;
  }
  .large-margin-collapse > .large-2 {
    width: 16.66667%;
  }
  .large-margin-collapse > .large-3 {
    width: 25%;
  }
  .large-margin-collapse > .large-4 {
    width: 33.33333%;
  }
  .large-margin-collapse > .large-5 {
    width: 41.66667%;
  }
  .large-margin-collapse > .large-6 {
    width: 50%;
  }
  .large-margin-collapse > .large-7 {
    width: 58.33333%;
  }
  .large-margin-collapse > .large-8 {
    width: 66.66667%;
  }
  .large-margin-collapse > .large-9 {
    width: 75%;
  }
  .large-margin-collapse > .large-10 {
    width: 83.33333%;
  }
  .large-margin-collapse > .large-11 {
    width: 91.66667%;
  }
  .large-margin-collapse > .large-12 {
    width: 100%;
  }
}

@media screen and (min-width: 64em) {
  .large-margin-collapse > .largish-1 {
    width: 8.33333%;
  }
  .large-margin-collapse > .largish-2 {
    width: 16.66667%;
  }
  .large-margin-collapse > .largish-3 {
    width: 25%;
  }
  .large-margin-collapse > .largish-4 {
    width: 33.33333%;
  }
  .large-margin-collapse > .largish-5 {
    width: 41.66667%;
  }
  .large-margin-collapse > .largish-6 {
    width: 50%;
  }
  .large-margin-collapse > .largish-7 {
    width: 58.33333%;
  }
  .large-margin-collapse > .largish-8 {
    width: 66.66667%;
  }
  .large-margin-collapse > .largish-9 {
    width: 75%;
  }
  .large-margin-collapse > .largish-10 {
    width: 83.33333%;
  }
  .large-margin-collapse > .largish-11 {
    width: 91.66667%;
  }
  .large-margin-collapse > .largish-12 {
    width: 100%;
  }
}

@media screen and (min-width: 75em) {
  .large-margin-collapse > .xlarge-1 {
    width: 8.33333%;
  }
  .large-margin-collapse > .xlarge-2 {
    width: 16.66667%;
  }
  .large-margin-collapse > .xlarge-3 {
    width: 25%;
  }
  .large-margin-collapse > .xlarge-4 {
    width: 33.33333%;
  }
  .large-margin-collapse > .xlarge-5 {
    width: 41.66667%;
  }
  .large-margin-collapse > .xlarge-6 {
    width: 50%;
  }
  .large-margin-collapse > .xlarge-7 {
    width: 58.33333%;
  }
  .large-margin-collapse > .xlarge-8 {
    width: 66.66667%;
  }
  .large-margin-collapse > .xlarge-9 {
    width: 75%;
  }
  .large-margin-collapse > .xlarge-10 {
    width: 83.33333%;
  }
  .large-margin-collapse > .xlarge-11 {
    width: 91.66667%;
  }
  .large-margin-collapse > .xlarge-12 {
    width: 100%;
  }
}

@media screen and (min-width: 87.5em) {
  .large-margin-collapse > .xxlarge-1 {
    width: 8.33333%;
  }
  .large-margin-collapse > .xxlarge-2 {
    width: 16.66667%;
  }
  .large-margin-collapse > .xxlarge-3 {
    width: 25%;
  }
  .large-margin-collapse > .xxlarge-4 {
    width: 33.33333%;
  }
  .large-margin-collapse > .xxlarge-5 {
    width: 41.66667%;
  }
  .large-margin-collapse > .xxlarge-6 {
    width: 50%;
  }
  .large-margin-collapse > .xxlarge-7 {
    width: 58.33333%;
  }
  .large-margin-collapse > .xxlarge-8 {
    width: 66.66667%;
  }
  .large-margin-collapse > .xxlarge-9 {
    width: 75%;
  }
  .large-margin-collapse > .xxlarge-10 {
    width: 83.33333%;
  }
  .large-margin-collapse > .xxlarge-11 {
    width: 91.66667%;
  }
  .large-margin-collapse > .xxlarge-12 {
    width: 100%;
  }
}

@media print, screen and (min-width: 61.25em) {
  .large-padding-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .large-padding-collapse > .cell {
    padding-right: 0;
    padding-left: 0;
  }
}

@media screen and (min-width: 64em) {
  .largish-margin-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .largish-margin-collapse > .cell {
    margin-right: 0;
    margin-left: 0;
  }
}

@media screen and (min-width: 64em) {
  .largish-margin-collapse > .small-1 {
    width: 8.33333%;
  }
  .largish-margin-collapse > .small-2 {
    width: 16.66667%;
  }
  .largish-margin-collapse > .small-3 {
    width: 25%;
  }
  .largish-margin-collapse > .small-4 {
    width: 33.33333%;
  }
  .largish-margin-collapse > .small-5 {
    width: 41.66667%;
  }
  .largish-margin-collapse > .small-6 {
    width: 50%;
  }
  .largish-margin-collapse > .small-7 {
    width: 58.33333%;
  }
  .largish-margin-collapse > .small-8 {
    width: 66.66667%;
  }
  .largish-margin-collapse > .small-9 {
    width: 75%;
  }
  .largish-margin-collapse > .small-10 {
    width: 83.33333%;
  }
  .largish-margin-collapse > .small-11 {
    width: 91.66667%;
  }
  .largish-margin-collapse > .small-12 {
    width: 100%;
  }
}

@media screen and (min-width: 64em) {
  .largish-margin-collapse > .smallish-1 {
    width: 8.33333%;
  }
  .largish-margin-collapse > .smallish-2 {
    width: 16.66667%;
  }
  .largish-margin-collapse > .smallish-3 {
    width: 25%;
  }
  .largish-margin-collapse > .smallish-4 {
    width: 33.33333%;
  }
  .largish-margin-collapse > .smallish-5 {
    width: 41.66667%;
  }
  .largish-margin-collapse > .smallish-6 {
    width: 50%;
  }
  .largish-margin-collapse > .smallish-7 {
    width: 58.33333%;
  }
  .largish-margin-collapse > .smallish-8 {
    width: 66.66667%;
  }
  .largish-margin-collapse > .smallish-9 {
    width: 75%;
  }
  .largish-margin-collapse > .smallish-10 {
    width: 83.33333%;
  }
  .largish-margin-collapse > .smallish-11 {
    width: 91.66667%;
  }
  .largish-margin-collapse > .smallish-12 {
    width: 100%;
  }
}

@media screen and (min-width: 64em) {
  .largish-margin-collapse > .medium-1 {
    width: 8.33333%;
  }
  .largish-margin-collapse > .medium-2, .o-columns__four--alt-1.largish-margin-collapse > div.cell:nth-child(1), .o-columns__four--alt-1.largish-margin-collapse > div.cell:nth-child(2), .o-columns__six.largish-margin-collapse > div.cell {
    width: 16.66667%;
  }
  .largish-margin-collapse > .medium-3, .o-columns__two--alt-1.largish-margin-collapse > div.cell:nth-child(1), .o-columns__two--alt-4.largish-margin-collapse > div.cell:nth-child(2), .o-columns__three--alt-1.largish-margin-collapse > div.cell:nth-child(1), .o-columns__three--alt-1.largish-margin-collapse > div.cell:nth-child(2), .o-columns__three--alt-2.largish-margin-collapse > div.cell:nth-child(2), .o-columns__three--alt-2.largish-margin-collapse > div.cell:nth-child(3), .o-columns__three--alt-3.largish-margin-collapse > div.cell:nth-child(2), .o-columns__four.largish-margin-collapse > div.cell {
    width: 25%;
  }
  .largish-margin-collapse > .medium-4, .o-columns__two--alt-2.largish-margin-collapse > div.cell:nth-child(1), .o-columns__two--alt-3.largish-margin-collapse > div.cell:nth-child(2), .o-columns__two--narrow.largish-margin-collapse > div.cell:nth-child(1), .o-columns__two--narrow.largish-margin-collapse > div.cell:nth-child(2), .o-columns__three.largish-margin-collapse > div.cell, .o-columns__three--alt-3.largish-margin-collapse > div.cell:nth-child(3), .o-columns__four--alt-1.largish-margin-collapse > div.cell:nth-child(3), .o-columns__four--alt-1.largish-margin-collapse > div.cell:nth-child(4) {
    width: 33.33333%;
  }
  .largish-margin-collapse > .medium-5, .o-columns__three--alt-3.largish-margin-collapse > div.cell:nth-child(1) {
    width: 41.66667%;
  }
  .largish-margin-collapse > .medium-6, .o-columns__two.largish-margin-collapse > div.cell, .o-columns__three--alt-1.largish-margin-collapse > div.cell:nth-child(3), .o-columns__three--alt-2.largish-margin-collapse > div.cell:nth-child(1) {
    width: 50%;
  }
  .largish-margin-collapse > .medium-7 {
    width: 58.33333%;
  }
  .largish-margin-collapse > .medium-8, .o-columns__one--narrow.largish-margin-collapse > div.cell, .o-columns__two--alt-2.largish-margin-collapse > div.cell:nth-child(2), .o-columns__two--alt-3.largish-margin-collapse > div.cell:nth-child(1), .o-columns__two--alt-4.largish-margin-collapse > div.cell:nth-child(1) {
    width: 66.66667%;
  }
  .largish-margin-collapse > .medium-9, .o-columns__two--alt-1.largish-margin-collapse > div.cell:nth-child(2) {
    width: 75%;
  }
  .largish-margin-collapse > .medium-10, .o-columns__one--alt-1.largish-margin-collapse > div.cell:nth-child(1) {
    width: 83.33333%;
  }
  .largish-margin-collapse > .medium-11 {
    width: 91.66667%;
  }
  .largish-margin-collapse > .medium-12 {
    width: 100%;
  }
}

@media screen and (min-width: 64em) {
  .largish-margin-collapse > .large-1 {
    width: 8.33333%;
  }
  .largish-margin-collapse > .large-2 {
    width: 16.66667%;
  }
  .largish-margin-collapse > .large-3 {
    width: 25%;
  }
  .largish-margin-collapse > .large-4 {
    width: 33.33333%;
  }
  .largish-margin-collapse > .large-5 {
    width: 41.66667%;
  }
  .largish-margin-collapse > .large-6 {
    width: 50%;
  }
  .largish-margin-collapse > .large-7 {
    width: 58.33333%;
  }
  .largish-margin-collapse > .large-8 {
    width: 66.66667%;
  }
  .largish-margin-collapse > .large-9 {
    width: 75%;
  }
  .largish-margin-collapse > .large-10 {
    width: 83.33333%;
  }
  .largish-margin-collapse > .large-11 {
    width: 91.66667%;
  }
  .largish-margin-collapse > .large-12 {
    width: 100%;
  }
}

@media screen and (min-width: 64em) {
  .largish-margin-collapse > .largish-1 {
    width: 8.33333%;
  }
  .largish-margin-collapse > .largish-2 {
    width: 16.66667%;
  }
  .largish-margin-collapse > .largish-3 {
    width: 25%;
  }
  .largish-margin-collapse > .largish-4 {
    width: 33.33333%;
  }
  .largish-margin-collapse > .largish-5 {
    width: 41.66667%;
  }
  .largish-margin-collapse > .largish-6 {
    width: 50%;
  }
  .largish-margin-collapse > .largish-7 {
    width: 58.33333%;
  }
  .largish-margin-collapse > .largish-8 {
    width: 66.66667%;
  }
  .largish-margin-collapse > .largish-9 {
    width: 75%;
  }
  .largish-margin-collapse > .largish-10 {
    width: 83.33333%;
  }
  .largish-margin-collapse > .largish-11 {
    width: 91.66667%;
  }
  .largish-margin-collapse > .largish-12 {
    width: 100%;
  }
}

@media screen and (min-width: 75em) {
  .largish-margin-collapse > .xlarge-1 {
    width: 8.33333%;
  }
  .largish-margin-collapse > .xlarge-2 {
    width: 16.66667%;
  }
  .largish-margin-collapse > .xlarge-3 {
    width: 25%;
  }
  .largish-margin-collapse > .xlarge-4 {
    width: 33.33333%;
  }
  .largish-margin-collapse > .xlarge-5 {
    width: 41.66667%;
  }
  .largish-margin-collapse > .xlarge-6 {
    width: 50%;
  }
  .largish-margin-collapse > .xlarge-7 {
    width: 58.33333%;
  }
  .largish-margin-collapse > .xlarge-8 {
    width: 66.66667%;
  }
  .largish-margin-collapse > .xlarge-9 {
    width: 75%;
  }
  .largish-margin-collapse > .xlarge-10 {
    width: 83.33333%;
  }
  .largish-margin-collapse > .xlarge-11 {
    width: 91.66667%;
  }
  .largish-margin-collapse > .xlarge-12 {
    width: 100%;
  }
}

@media screen and (min-width: 87.5em) {
  .largish-margin-collapse > .xxlarge-1 {
    width: 8.33333%;
  }
  .largish-margin-collapse > .xxlarge-2 {
    width: 16.66667%;
  }
  .largish-margin-collapse > .xxlarge-3 {
    width: 25%;
  }
  .largish-margin-collapse > .xxlarge-4 {
    width: 33.33333%;
  }
  .largish-margin-collapse > .xxlarge-5 {
    width: 41.66667%;
  }
  .largish-margin-collapse > .xxlarge-6 {
    width: 50%;
  }
  .largish-margin-collapse > .xxlarge-7 {
    width: 58.33333%;
  }
  .largish-margin-collapse > .xxlarge-8 {
    width: 66.66667%;
  }
  .largish-margin-collapse > .xxlarge-9 {
    width: 75%;
  }
  .largish-margin-collapse > .xxlarge-10 {
    width: 83.33333%;
  }
  .largish-margin-collapse > .xxlarge-11 {
    width: 91.66667%;
  }
  .largish-margin-collapse > .xxlarge-12 {
    width: 100%;
  }
}

@media screen and (min-width: 64em) {
  .largish-padding-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .largish-padding-collapse > .cell {
    padding-right: 0;
    padding-left: 0;
  }
}

@media screen and (min-width: 75em) {
  .xlarge-margin-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .xlarge-margin-collapse > .cell {
    margin-right: 0;
    margin-left: 0;
  }
}

@media screen and (min-width: 75em) {
  .xlarge-margin-collapse > .small-1 {
    width: 8.33333%;
  }
  .xlarge-margin-collapse > .small-2 {
    width: 16.66667%;
  }
  .xlarge-margin-collapse > .small-3 {
    width: 25%;
  }
  .xlarge-margin-collapse > .small-4 {
    width: 33.33333%;
  }
  .xlarge-margin-collapse > .small-5 {
    width: 41.66667%;
  }
  .xlarge-margin-collapse > .small-6 {
    width: 50%;
  }
  .xlarge-margin-collapse > .small-7 {
    width: 58.33333%;
  }
  .xlarge-margin-collapse > .small-8 {
    width: 66.66667%;
  }
  .xlarge-margin-collapse > .small-9 {
    width: 75%;
  }
  .xlarge-margin-collapse > .small-10 {
    width: 83.33333%;
  }
  .xlarge-margin-collapse > .small-11 {
    width: 91.66667%;
  }
  .xlarge-margin-collapse > .small-12 {
    width: 100%;
  }
}

@media screen and (min-width: 75em) {
  .xlarge-margin-collapse > .smallish-1 {
    width: 8.33333%;
  }
  .xlarge-margin-collapse > .smallish-2 {
    width: 16.66667%;
  }
  .xlarge-margin-collapse > .smallish-3 {
    width: 25%;
  }
  .xlarge-margin-collapse > .smallish-4 {
    width: 33.33333%;
  }
  .xlarge-margin-collapse > .smallish-5 {
    width: 41.66667%;
  }
  .xlarge-margin-collapse > .smallish-6 {
    width: 50%;
  }
  .xlarge-margin-collapse > .smallish-7 {
    width: 58.33333%;
  }
  .xlarge-margin-collapse > .smallish-8 {
    width: 66.66667%;
  }
  .xlarge-margin-collapse > .smallish-9 {
    width: 75%;
  }
  .xlarge-margin-collapse > .smallish-10 {
    width: 83.33333%;
  }
  .xlarge-margin-collapse > .smallish-11 {
    width: 91.66667%;
  }
  .xlarge-margin-collapse > .smallish-12 {
    width: 100%;
  }
}

@media screen and (min-width: 75em) {
  .xlarge-margin-collapse > .medium-1 {
    width: 8.33333%;
  }
  .xlarge-margin-collapse > .medium-2, .o-columns__four--alt-1.xlarge-margin-collapse > div.cell:nth-child(1), .o-columns__four--alt-1.xlarge-margin-collapse > div.cell:nth-child(2), .o-columns__six.xlarge-margin-collapse > div.cell {
    width: 16.66667%;
  }
  .xlarge-margin-collapse > .medium-3, .o-columns__two--alt-1.xlarge-margin-collapse > div.cell:nth-child(1), .o-columns__two--alt-4.xlarge-margin-collapse > div.cell:nth-child(2), .o-columns__three--alt-1.xlarge-margin-collapse > div.cell:nth-child(1), .o-columns__three--alt-1.xlarge-margin-collapse > div.cell:nth-child(2), .o-columns__three--alt-2.xlarge-margin-collapse > div.cell:nth-child(2), .o-columns__three--alt-2.xlarge-margin-collapse > div.cell:nth-child(3), .o-columns__three--alt-3.xlarge-margin-collapse > div.cell:nth-child(2), .o-columns__four.xlarge-margin-collapse > div.cell {
    width: 25%;
  }
  .xlarge-margin-collapse > .medium-4, .o-columns__two--alt-2.xlarge-margin-collapse > div.cell:nth-child(1), .o-columns__two--alt-3.xlarge-margin-collapse > div.cell:nth-child(2), .o-columns__two--narrow.xlarge-margin-collapse > div.cell:nth-child(1), .o-columns__two--narrow.xlarge-margin-collapse > div.cell:nth-child(2), .o-columns__three.xlarge-margin-collapse > div.cell, .o-columns__three--alt-3.xlarge-margin-collapse > div.cell:nth-child(3), .o-columns__four--alt-1.xlarge-margin-collapse > div.cell:nth-child(3), .o-columns__four--alt-1.xlarge-margin-collapse > div.cell:nth-child(4) {
    width: 33.33333%;
  }
  .xlarge-margin-collapse > .medium-5, .o-columns__three--alt-3.xlarge-margin-collapse > div.cell:nth-child(1) {
    width: 41.66667%;
  }
  .xlarge-margin-collapse > .medium-6, .o-columns__two.xlarge-margin-collapse > div.cell, .o-columns__three--alt-1.xlarge-margin-collapse > div.cell:nth-child(3), .o-columns__three--alt-2.xlarge-margin-collapse > div.cell:nth-child(1) {
    width: 50%;
  }
  .xlarge-margin-collapse > .medium-7 {
    width: 58.33333%;
  }
  .xlarge-margin-collapse > .medium-8, .o-columns__one--narrow.xlarge-margin-collapse > div.cell, .o-columns__two--alt-2.xlarge-margin-collapse > div.cell:nth-child(2), .o-columns__two--alt-3.xlarge-margin-collapse > div.cell:nth-child(1), .o-columns__two--alt-4.xlarge-margin-collapse > div.cell:nth-child(1) {
    width: 66.66667%;
  }
  .xlarge-margin-collapse > .medium-9, .o-columns__two--alt-1.xlarge-margin-collapse > div.cell:nth-child(2) {
    width: 75%;
  }
  .xlarge-margin-collapse > .medium-10, .o-columns__one--alt-1.xlarge-margin-collapse > div.cell:nth-child(1) {
    width: 83.33333%;
  }
  .xlarge-margin-collapse > .medium-11 {
    width: 91.66667%;
  }
  .xlarge-margin-collapse > .medium-12 {
    width: 100%;
  }
}

@media screen and (min-width: 75em) {
  .xlarge-margin-collapse > .large-1 {
    width: 8.33333%;
  }
  .xlarge-margin-collapse > .large-2 {
    width: 16.66667%;
  }
  .xlarge-margin-collapse > .large-3 {
    width: 25%;
  }
  .xlarge-margin-collapse > .large-4 {
    width: 33.33333%;
  }
  .xlarge-margin-collapse > .large-5 {
    width: 41.66667%;
  }
  .xlarge-margin-collapse > .large-6 {
    width: 50%;
  }
  .xlarge-margin-collapse > .large-7 {
    width: 58.33333%;
  }
  .xlarge-margin-collapse > .large-8 {
    width: 66.66667%;
  }
  .xlarge-margin-collapse > .large-9 {
    width: 75%;
  }
  .xlarge-margin-collapse > .large-10 {
    width: 83.33333%;
  }
  .xlarge-margin-collapse > .large-11 {
    width: 91.66667%;
  }
  .xlarge-margin-collapse > .large-12 {
    width: 100%;
  }
}

@media screen and (min-width: 75em) {
  .xlarge-margin-collapse > .largish-1 {
    width: 8.33333%;
  }
  .xlarge-margin-collapse > .largish-2 {
    width: 16.66667%;
  }
  .xlarge-margin-collapse > .largish-3 {
    width: 25%;
  }
  .xlarge-margin-collapse > .largish-4 {
    width: 33.33333%;
  }
  .xlarge-margin-collapse > .largish-5 {
    width: 41.66667%;
  }
  .xlarge-margin-collapse > .largish-6 {
    width: 50%;
  }
  .xlarge-margin-collapse > .largish-7 {
    width: 58.33333%;
  }
  .xlarge-margin-collapse > .largish-8 {
    width: 66.66667%;
  }
  .xlarge-margin-collapse > .largish-9 {
    width: 75%;
  }
  .xlarge-margin-collapse > .largish-10 {
    width: 83.33333%;
  }
  .xlarge-margin-collapse > .largish-11 {
    width: 91.66667%;
  }
  .xlarge-margin-collapse > .largish-12 {
    width: 100%;
  }
}

@media screen and (min-width: 75em) {
  .xlarge-margin-collapse > .xlarge-1 {
    width: 8.33333%;
  }
  .xlarge-margin-collapse > .xlarge-2 {
    width: 16.66667%;
  }
  .xlarge-margin-collapse > .xlarge-3 {
    width: 25%;
  }
  .xlarge-margin-collapse > .xlarge-4 {
    width: 33.33333%;
  }
  .xlarge-margin-collapse > .xlarge-5 {
    width: 41.66667%;
  }
  .xlarge-margin-collapse > .xlarge-6 {
    width: 50%;
  }
  .xlarge-margin-collapse > .xlarge-7 {
    width: 58.33333%;
  }
  .xlarge-margin-collapse > .xlarge-8 {
    width: 66.66667%;
  }
  .xlarge-margin-collapse > .xlarge-9 {
    width: 75%;
  }
  .xlarge-margin-collapse > .xlarge-10 {
    width: 83.33333%;
  }
  .xlarge-margin-collapse > .xlarge-11 {
    width: 91.66667%;
  }
  .xlarge-margin-collapse > .xlarge-12 {
    width: 100%;
  }
}

@media screen and (min-width: 87.5em) {
  .xlarge-margin-collapse > .xxlarge-1 {
    width: 8.33333%;
  }
  .xlarge-margin-collapse > .xxlarge-2 {
    width: 16.66667%;
  }
  .xlarge-margin-collapse > .xxlarge-3 {
    width: 25%;
  }
  .xlarge-margin-collapse > .xxlarge-4 {
    width: 33.33333%;
  }
  .xlarge-margin-collapse > .xxlarge-5 {
    width: 41.66667%;
  }
  .xlarge-margin-collapse > .xxlarge-6 {
    width: 50%;
  }
  .xlarge-margin-collapse > .xxlarge-7 {
    width: 58.33333%;
  }
  .xlarge-margin-collapse > .xxlarge-8 {
    width: 66.66667%;
  }
  .xlarge-margin-collapse > .xxlarge-9 {
    width: 75%;
  }
  .xlarge-margin-collapse > .xxlarge-10 {
    width: 83.33333%;
  }
  .xlarge-margin-collapse > .xxlarge-11 {
    width: 91.66667%;
  }
  .xlarge-margin-collapse > .xxlarge-12 {
    width: 100%;
  }
}

@media screen and (min-width: 75em) {
  .xlarge-padding-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .xlarge-padding-collapse > .cell {
    padding-right: 0;
    padding-left: 0;
  }
}

@media screen and (min-width: 87.5em) {
  .xxlarge-margin-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .xxlarge-margin-collapse > .cell {
    margin-right: 0;
    margin-left: 0;
  }
}

@media screen and (min-width: 87.5em) {
  .xxlarge-margin-collapse > .small-1 {
    width: 8.33333%;
  }
  .xxlarge-margin-collapse > .small-2 {
    width: 16.66667%;
  }
  .xxlarge-margin-collapse > .small-3 {
    width: 25%;
  }
  .xxlarge-margin-collapse > .small-4 {
    width: 33.33333%;
  }
  .xxlarge-margin-collapse > .small-5 {
    width: 41.66667%;
  }
  .xxlarge-margin-collapse > .small-6 {
    width: 50%;
  }
  .xxlarge-margin-collapse > .small-7 {
    width: 58.33333%;
  }
  .xxlarge-margin-collapse > .small-8 {
    width: 66.66667%;
  }
  .xxlarge-margin-collapse > .small-9 {
    width: 75%;
  }
  .xxlarge-margin-collapse > .small-10 {
    width: 83.33333%;
  }
  .xxlarge-margin-collapse > .small-11 {
    width: 91.66667%;
  }
  .xxlarge-margin-collapse > .small-12 {
    width: 100%;
  }
}

@media screen and (min-width: 87.5em) {
  .xxlarge-margin-collapse > .smallish-1 {
    width: 8.33333%;
  }
  .xxlarge-margin-collapse > .smallish-2 {
    width: 16.66667%;
  }
  .xxlarge-margin-collapse > .smallish-3 {
    width: 25%;
  }
  .xxlarge-margin-collapse > .smallish-4 {
    width: 33.33333%;
  }
  .xxlarge-margin-collapse > .smallish-5 {
    width: 41.66667%;
  }
  .xxlarge-margin-collapse > .smallish-6 {
    width: 50%;
  }
  .xxlarge-margin-collapse > .smallish-7 {
    width: 58.33333%;
  }
  .xxlarge-margin-collapse > .smallish-8 {
    width: 66.66667%;
  }
  .xxlarge-margin-collapse > .smallish-9 {
    width: 75%;
  }
  .xxlarge-margin-collapse > .smallish-10 {
    width: 83.33333%;
  }
  .xxlarge-margin-collapse > .smallish-11 {
    width: 91.66667%;
  }
  .xxlarge-margin-collapse > .smallish-12 {
    width: 100%;
  }
}

@media screen and (min-width: 87.5em) {
  .xxlarge-margin-collapse > .medium-1 {
    width: 8.33333%;
  }
  .xxlarge-margin-collapse > .medium-2, .o-columns__four--alt-1.xxlarge-margin-collapse > div.cell:nth-child(1), .o-columns__four--alt-1.xxlarge-margin-collapse > div.cell:nth-child(2), .o-columns__six.xxlarge-margin-collapse > div.cell {
    width: 16.66667%;
  }
  .xxlarge-margin-collapse > .medium-3, .o-columns__two--alt-1.xxlarge-margin-collapse > div.cell:nth-child(1), .o-columns__two--alt-4.xxlarge-margin-collapse > div.cell:nth-child(2), .o-columns__three--alt-1.xxlarge-margin-collapse > div.cell:nth-child(1), .o-columns__three--alt-1.xxlarge-margin-collapse > div.cell:nth-child(2), .o-columns__three--alt-2.xxlarge-margin-collapse > div.cell:nth-child(2), .o-columns__three--alt-2.xxlarge-margin-collapse > div.cell:nth-child(3), .o-columns__three--alt-3.xxlarge-margin-collapse > div.cell:nth-child(2), .o-columns__four.xxlarge-margin-collapse > div.cell {
    width: 25%;
  }
  .xxlarge-margin-collapse > .medium-4, .o-columns__two--alt-2.xxlarge-margin-collapse > div.cell:nth-child(1), .o-columns__two--alt-3.xxlarge-margin-collapse > div.cell:nth-child(2), .o-columns__two--narrow.xxlarge-margin-collapse > div.cell:nth-child(1), .o-columns__two--narrow.xxlarge-margin-collapse > div.cell:nth-child(2), .o-columns__three.xxlarge-margin-collapse > div.cell, .o-columns__three--alt-3.xxlarge-margin-collapse > div.cell:nth-child(3), .o-columns__four--alt-1.xxlarge-margin-collapse > div.cell:nth-child(3), .o-columns__four--alt-1.xxlarge-margin-collapse > div.cell:nth-child(4) {
    width: 33.33333%;
  }
  .xxlarge-margin-collapse > .medium-5, .o-columns__three--alt-3.xxlarge-margin-collapse > div.cell:nth-child(1) {
    width: 41.66667%;
  }
  .xxlarge-margin-collapse > .medium-6, .o-columns__two.xxlarge-margin-collapse > div.cell, .o-columns__three--alt-1.xxlarge-margin-collapse > div.cell:nth-child(3), .o-columns__three--alt-2.xxlarge-margin-collapse > div.cell:nth-child(1) {
    width: 50%;
  }
  .xxlarge-margin-collapse > .medium-7 {
    width: 58.33333%;
  }
  .xxlarge-margin-collapse > .medium-8, .o-columns__one--narrow.xxlarge-margin-collapse > div.cell, .o-columns__two--alt-2.xxlarge-margin-collapse > div.cell:nth-child(2), .o-columns__two--alt-3.xxlarge-margin-collapse > div.cell:nth-child(1), .o-columns__two--alt-4.xxlarge-margin-collapse > div.cell:nth-child(1) {
    width: 66.66667%;
  }
  .xxlarge-margin-collapse > .medium-9, .o-columns__two--alt-1.xxlarge-margin-collapse > div.cell:nth-child(2) {
    width: 75%;
  }
  .xxlarge-margin-collapse > .medium-10, .o-columns__one--alt-1.xxlarge-margin-collapse > div.cell:nth-child(1) {
    width: 83.33333%;
  }
  .xxlarge-margin-collapse > .medium-11 {
    width: 91.66667%;
  }
  .xxlarge-margin-collapse > .medium-12 {
    width: 100%;
  }
}

@media screen and (min-width: 87.5em) {
  .xxlarge-margin-collapse > .large-1 {
    width: 8.33333%;
  }
  .xxlarge-margin-collapse > .large-2 {
    width: 16.66667%;
  }
  .xxlarge-margin-collapse > .large-3 {
    width: 25%;
  }
  .xxlarge-margin-collapse > .large-4 {
    width: 33.33333%;
  }
  .xxlarge-margin-collapse > .large-5 {
    width: 41.66667%;
  }
  .xxlarge-margin-collapse > .large-6 {
    width: 50%;
  }
  .xxlarge-margin-collapse > .large-7 {
    width: 58.33333%;
  }
  .xxlarge-margin-collapse > .large-8 {
    width: 66.66667%;
  }
  .xxlarge-margin-collapse > .large-9 {
    width: 75%;
  }
  .xxlarge-margin-collapse > .large-10 {
    width: 83.33333%;
  }
  .xxlarge-margin-collapse > .large-11 {
    width: 91.66667%;
  }
  .xxlarge-margin-collapse > .large-12 {
    width: 100%;
  }
}

@media screen and (min-width: 87.5em) {
  .xxlarge-margin-collapse > .largish-1 {
    width: 8.33333%;
  }
  .xxlarge-margin-collapse > .largish-2 {
    width: 16.66667%;
  }
  .xxlarge-margin-collapse > .largish-3 {
    width: 25%;
  }
  .xxlarge-margin-collapse > .largish-4 {
    width: 33.33333%;
  }
  .xxlarge-margin-collapse > .largish-5 {
    width: 41.66667%;
  }
  .xxlarge-margin-collapse > .largish-6 {
    width: 50%;
  }
  .xxlarge-margin-collapse > .largish-7 {
    width: 58.33333%;
  }
  .xxlarge-margin-collapse > .largish-8 {
    width: 66.66667%;
  }
  .xxlarge-margin-collapse > .largish-9 {
    width: 75%;
  }
  .xxlarge-margin-collapse > .largish-10 {
    width: 83.33333%;
  }
  .xxlarge-margin-collapse > .largish-11 {
    width: 91.66667%;
  }
  .xxlarge-margin-collapse > .largish-12 {
    width: 100%;
  }
}

@media screen and (min-width: 87.5em) {
  .xxlarge-margin-collapse > .xlarge-1 {
    width: 8.33333%;
  }
  .xxlarge-margin-collapse > .xlarge-2 {
    width: 16.66667%;
  }
  .xxlarge-margin-collapse > .xlarge-3 {
    width: 25%;
  }
  .xxlarge-margin-collapse > .xlarge-4 {
    width: 33.33333%;
  }
  .xxlarge-margin-collapse > .xlarge-5 {
    width: 41.66667%;
  }
  .xxlarge-margin-collapse > .xlarge-6 {
    width: 50%;
  }
  .xxlarge-margin-collapse > .xlarge-7 {
    width: 58.33333%;
  }
  .xxlarge-margin-collapse > .xlarge-8 {
    width: 66.66667%;
  }
  .xxlarge-margin-collapse > .xlarge-9 {
    width: 75%;
  }
  .xxlarge-margin-collapse > .xlarge-10 {
    width: 83.33333%;
  }
  .xxlarge-margin-collapse > .xlarge-11 {
    width: 91.66667%;
  }
  .xxlarge-margin-collapse > .xlarge-12 {
    width: 100%;
  }
}

@media screen and (min-width: 87.5em) {
  .xxlarge-margin-collapse > .xxlarge-1 {
    width: 8.33333%;
  }
  .xxlarge-margin-collapse > .xxlarge-2 {
    width: 16.66667%;
  }
  .xxlarge-margin-collapse > .xxlarge-3 {
    width: 25%;
  }
  .xxlarge-margin-collapse > .xxlarge-4 {
    width: 33.33333%;
  }
  .xxlarge-margin-collapse > .xxlarge-5 {
    width: 41.66667%;
  }
  .xxlarge-margin-collapse > .xxlarge-6 {
    width: 50%;
  }
  .xxlarge-margin-collapse > .xxlarge-7 {
    width: 58.33333%;
  }
  .xxlarge-margin-collapse > .xxlarge-8 {
    width: 66.66667%;
  }
  .xxlarge-margin-collapse > .xxlarge-9 {
    width: 75%;
  }
  .xxlarge-margin-collapse > .xxlarge-10 {
    width: 83.33333%;
  }
  .xxlarge-margin-collapse > .xxlarge-11 {
    width: 91.66667%;
  }
  .xxlarge-margin-collapse > .xxlarge-12 {
    width: 100%;
  }
}

@media screen and (min-width: 87.5em) {
  .xxlarge-padding-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .xxlarge-padding-collapse > .cell {
    padding-right: 0;
    padding-left: 0;
  }
}

.small-offset-0 {
  margin-left: 0%;
}

.grid-margin-x > .small-offset-0 {
  margin-left: calc(0% + 0.625rem);
}

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

.grid-margin-x > .small-offset-1 {
  margin-left: calc(8.33333% + 0.625rem);
}

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

.grid-margin-x > .small-offset-2 {
  margin-left: calc(16.66667% + 0.625rem);
}

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

.grid-margin-x > .small-offset-3 {
  margin-left: calc(25% + 0.625rem);
}

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

.grid-margin-x > .small-offset-4 {
  margin-left: calc(33.33333% + 0.625rem);
}

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

.grid-margin-x > .small-offset-5 {
  margin-left: calc(41.66667% + 0.625rem);
}

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

.grid-margin-x > .small-offset-6 {
  margin-left: calc(50% + 0.625rem);
}

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

.grid-margin-x > .small-offset-7 {
  margin-left: calc(58.33333% + 0.625rem);
}

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

.grid-margin-x > .small-offset-8 {
  margin-left: calc(66.66667% + 0.625rem);
}

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

.grid-margin-x > .small-offset-9 {
  margin-left: calc(75% + 0.625rem);
}

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

.grid-margin-x > .small-offset-10 {
  margin-left: calc(83.33333% + 0.625rem);
}

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

.grid-margin-x > .small-offset-11 {
  margin-left: calc(91.66667% + 0.625rem);
}

@media print, screen and (min-width: 20em) {
  .smallish-offset-0 {
    margin-left: 0%;
  }
  .grid-margin-x > .smallish-offset-0 {
    margin-left: calc(0% + 0.625rem);
  }
  .smallish-offset-1 {
    margin-left: 8.33333%;
  }
  .grid-margin-x > .smallish-offset-1 {
    margin-left: calc(8.33333% + 0.625rem);
  }
  .smallish-offset-2 {
    margin-left: 16.66667%;
  }
  .grid-margin-x > .smallish-offset-2 {
    margin-left: calc(16.66667% + 0.625rem);
  }
  .smallish-offset-3 {
    margin-left: 25%;
  }
  .grid-margin-x > .smallish-offset-3 {
    margin-left: calc(25% + 0.625rem);
  }
  .smallish-offset-4 {
    margin-left: 33.33333%;
  }
  .grid-margin-x > .smallish-offset-4 {
    margin-left: calc(33.33333% + 0.625rem);
  }
  .smallish-offset-5 {
    margin-left: 41.66667%;
  }
  .grid-margin-x > .smallish-offset-5 {
    margin-left: calc(41.66667% + 0.625rem);
  }
  .smallish-offset-6 {
    margin-left: 50%;
  }
  .grid-margin-x > .smallish-offset-6 {
    margin-left: calc(50% + 0.625rem);
  }
  .smallish-offset-7 {
    margin-left: 58.33333%;
  }
  .grid-margin-x > .smallish-offset-7 {
    margin-left: calc(58.33333% + 0.625rem);
  }
  .smallish-offset-8 {
    margin-left: 66.66667%;
  }
  .grid-margin-x > .smallish-offset-8 {
    margin-left: calc(66.66667% + 0.625rem);
  }
  .smallish-offset-9 {
    margin-left: 75%;
  }
  .grid-margin-x > .smallish-offset-9 {
    margin-left: calc(75% + 0.625rem);
  }
  .smallish-offset-10 {
    margin-left: 83.33333%;
  }
  .grid-margin-x > .smallish-offset-10 {
    margin-left: calc(83.33333% + 0.625rem);
  }
  .smallish-offset-11 {
    margin-left: 91.66667%;
  }
  .grid-margin-x > .smallish-offset-11 {
    margin-left: calc(91.66667% + 0.625rem);
  }
}

@media print, screen and (min-width: 46.25em) {
  .medium-offset-0 {
    margin-left: 0%;
  }
  .grid-margin-x > .medium-offset-0 {
    margin-left: calc(0% + 0.9375rem);
  }
  .medium-offset-1, .o-columns__two--alt-4 > div.cell:nth-child(2) {
    margin-left: 8.33333%;
  }
  .grid-margin-x > .medium-offset-1, .o-columns__two--alt-4.grid-margin-x > div.cell:nth-child(2) {
    margin-left: calc(8.33333% + 0.9375rem);
  }
  .medium-offset-2, .o-columns__one--narrow > div.cell, .o-columns__two--narrow > div.cell:nth-child(1) {
    margin-left: 16.66667%;
  }
  .grid-margin-x > .medium-offset-2, .o-columns__one--narrow.grid-margin-x > div.cell, .o-columns__two--narrow.grid-margin-x > div.cell:nth-child(1) {
    margin-left: calc(16.66667% + 0.9375rem);
  }
  .medium-offset-3 {
    margin-left: 25%;
  }
  .grid-margin-x > .medium-offset-3 {
    margin-left: calc(25% + 0.9375rem);
  }
  .medium-offset-4 {
    margin-left: 33.33333%;
  }
  .grid-margin-x > .medium-offset-4 {
    margin-left: calc(33.33333% + 0.9375rem);
  }
  .medium-offset-5 {
    margin-left: 41.66667%;
  }
  .grid-margin-x > .medium-offset-5 {
    margin-left: calc(41.66667% + 0.9375rem);
  }
  .medium-offset-6 {
    margin-left: 50%;
  }
  .grid-margin-x > .medium-offset-6 {
    margin-left: calc(50% + 0.9375rem);
  }
  .medium-offset-7 {
    margin-left: 58.33333%;
  }
  .grid-margin-x > .medium-offset-7 {
    margin-left: calc(58.33333% + 0.9375rem);
  }
  .medium-offset-8 {
    margin-left: 66.66667%;
  }
  .grid-margin-x > .medium-offset-8 {
    margin-left: calc(66.66667% + 0.9375rem);
  }
  .medium-offset-9 {
    margin-left: 75%;
  }
  .grid-margin-x > .medium-offset-9 {
    margin-left: calc(75% + 0.9375rem);
  }
  .medium-offset-10 {
    margin-left: 83.33333%;
  }
  .grid-margin-x > .medium-offset-10 {
    margin-left: calc(83.33333% + 0.9375rem);
  }
  .medium-offset-11 {
    margin-left: 91.66667%;
  }
  .grid-margin-x > .medium-offset-11 {
    margin-left: calc(91.66667% + 0.9375rem);
  }
}

@media print, screen and (min-width: 61.25em) {
  .large-offset-0 {
    margin-left: 0%;
  }
  .grid-margin-x > .large-offset-0 {
    margin-left: calc(0% + 0.9375rem);
  }
  .large-offset-1 {
    margin-left: 8.33333%;
  }
  .grid-margin-x > .large-offset-1 {
    margin-left: calc(8.33333% + 0.9375rem);
  }
  .large-offset-2 {
    margin-left: 16.66667%;
  }
  .grid-margin-x > .large-offset-2 {
    margin-left: calc(16.66667% + 0.9375rem);
  }
  .large-offset-3 {
    margin-left: 25%;
  }
  .grid-margin-x > .large-offset-3 {
    margin-left: calc(25% + 0.9375rem);
  }
  .large-offset-4 {
    margin-left: 33.33333%;
  }
  .grid-margin-x > .large-offset-4 {
    margin-left: calc(33.33333% + 0.9375rem);
  }
  .large-offset-5 {
    margin-left: 41.66667%;
  }
  .grid-margin-x > .large-offset-5 {
    margin-left: calc(41.66667% + 0.9375rem);
  }
  .large-offset-6 {
    margin-left: 50%;
  }
  .grid-margin-x > .large-offset-6 {
    margin-left: calc(50% + 0.9375rem);
  }
  .large-offset-7 {
    margin-left: 58.33333%;
  }
  .grid-margin-x > .large-offset-7 {
    margin-left: calc(58.33333% + 0.9375rem);
  }
  .large-offset-8 {
    margin-left: 66.66667%;
  }
  .grid-margin-x > .large-offset-8 {
    margin-left: calc(66.66667% + 0.9375rem);
  }
  .large-offset-9 {
    margin-left: 75%;
  }
  .grid-margin-x > .large-offset-9 {
    margin-left: calc(75% + 0.9375rem);
  }
  .large-offset-10 {
    margin-left: 83.33333%;
  }
  .grid-margin-x > .large-offset-10 {
    margin-left: calc(83.33333% + 0.9375rem);
  }
  .large-offset-11 {
    margin-left: 91.66667%;
  }
  .grid-margin-x > .large-offset-11 {
    margin-left: calc(91.66667% + 0.9375rem);
  }
}

@media screen and (min-width: 64em) {
  .largish-offset-0 {
    margin-left: 0%;
  }
  .grid-margin-x > .largish-offset-0 {
    margin-left: calc(0% + 0.9375rem);
  }
  .largish-offset-1 {
    margin-left: 8.33333%;
  }
  .grid-margin-x > .largish-offset-1 {
    margin-left: calc(8.33333% + 0.9375rem);
  }
  .largish-offset-2 {
    margin-left: 16.66667%;
  }
  .grid-margin-x > .largish-offset-2 {
    margin-left: calc(16.66667% + 0.9375rem);
  }
  .largish-offset-3 {
    margin-left: 25%;
  }
  .grid-margin-x > .largish-offset-3 {
    margin-left: calc(25% + 0.9375rem);
  }
  .largish-offset-4 {
    margin-left: 33.33333%;
  }
  .grid-margin-x > .largish-offset-4 {
    margin-left: calc(33.33333% + 0.9375rem);
  }
  .largish-offset-5 {
    margin-left: 41.66667%;
  }
  .grid-margin-x > .largish-offset-5 {
    margin-left: calc(41.66667% + 0.9375rem);
  }
  .largish-offset-6 {
    margin-left: 50%;
  }
  .grid-margin-x > .largish-offset-6 {
    margin-left: calc(50% + 0.9375rem);
  }
  .largish-offset-7 {
    margin-left: 58.33333%;
  }
  .grid-margin-x > .largish-offset-7 {
    margin-left: calc(58.33333% + 0.9375rem);
  }
  .largish-offset-8 {
    margin-left: 66.66667%;
  }
  .grid-margin-x > .largish-offset-8 {
    margin-left: calc(66.66667% + 0.9375rem);
  }
  .largish-offset-9 {
    margin-left: 75%;
  }
  .grid-margin-x > .largish-offset-9 {
    margin-left: calc(75% + 0.9375rem);
  }
  .largish-offset-10 {
    margin-left: 83.33333%;
  }
  .grid-margin-x > .largish-offset-10 {
    margin-left: calc(83.33333% + 0.9375rem);
  }
  .largish-offset-11 {
    margin-left: 91.66667%;
  }
  .grid-margin-x > .largish-offset-11 {
    margin-left: calc(91.66667% + 0.9375rem);
  }
}

@media screen and (min-width: 75em) {
  .xlarge-offset-0 {
    margin-left: 0%;
  }
  .grid-margin-x > .xlarge-offset-0 {
    margin-left: calc(0% + 0.9375rem);
  }
  .xlarge-offset-1 {
    margin-left: 8.33333%;
  }
  .grid-margin-x > .xlarge-offset-1 {
    margin-left: calc(8.33333% + 0.9375rem);
  }
  .xlarge-offset-2 {
    margin-left: 16.66667%;
  }
  .grid-margin-x > .xlarge-offset-2 {
    margin-left: calc(16.66667% + 0.9375rem);
  }
  .xlarge-offset-3 {
    margin-left: 25%;
  }
  .grid-margin-x > .xlarge-offset-3 {
    margin-left: calc(25% + 0.9375rem);
  }
  .xlarge-offset-4 {
    margin-left: 33.33333%;
  }
  .grid-margin-x > .xlarge-offset-4 {
    margin-left: calc(33.33333% + 0.9375rem);
  }
  .xlarge-offset-5 {
    margin-left: 41.66667%;
  }
  .grid-margin-x > .xlarge-offset-5 {
    margin-left: calc(41.66667% + 0.9375rem);
  }
  .xlarge-offset-6 {
    margin-left: 50%;
  }
  .grid-margin-x > .xlarge-offset-6 {
    margin-left: calc(50% + 0.9375rem);
  }
  .xlarge-offset-7 {
    margin-left: 58.33333%;
  }
  .grid-margin-x > .xlarge-offset-7 {
    margin-left: calc(58.33333% + 0.9375rem);
  }
  .xlarge-offset-8 {
    margin-left: 66.66667%;
  }
  .grid-margin-x > .xlarge-offset-8 {
    margin-left: calc(66.66667% + 0.9375rem);
  }
  .xlarge-offset-9 {
    margin-left: 75%;
  }
  .grid-margin-x > .xlarge-offset-9 {
    margin-left: calc(75% + 0.9375rem);
  }
  .xlarge-offset-10 {
    margin-left: 83.33333%;
  }
  .grid-margin-x > .xlarge-offset-10 {
    margin-left: calc(83.33333% + 0.9375rem);
  }
  .xlarge-offset-11 {
    margin-left: 91.66667%;
  }
  .grid-margin-x > .xlarge-offset-11 {
    margin-left: calc(91.66667% + 0.9375rem);
  }
}

@media screen and (min-width: 87.5em) {
  .xxlarge-offset-0 {
    margin-left: 0%;
  }
  .grid-margin-x > .xxlarge-offset-0 {
    margin-left: calc(0% + 0.9375rem);
  }
  .xxlarge-offset-1 {
    margin-left: 8.33333%;
  }
  .grid-margin-x > .xxlarge-offset-1 {
    margin-left: calc(8.33333% + 0.9375rem);
  }
  .xxlarge-offset-2 {
    margin-left: 16.66667%;
  }
  .grid-margin-x > .xxlarge-offset-2 {
    margin-left: calc(16.66667% + 0.9375rem);
  }
  .xxlarge-offset-3 {
    margin-left: 25%;
  }
  .grid-margin-x > .xxlarge-offset-3 {
    margin-left: calc(25% + 0.9375rem);
  }
  .xxlarge-offset-4 {
    margin-left: 33.33333%;
  }
  .grid-margin-x > .xxlarge-offset-4 {
    margin-left: calc(33.33333% + 0.9375rem);
  }
  .xxlarge-offset-5 {
    margin-left: 41.66667%;
  }
  .grid-margin-x > .xxlarge-offset-5 {
    margin-left: calc(41.66667% + 0.9375rem);
  }
  .xxlarge-offset-6 {
    margin-left: 50%;
  }
  .grid-margin-x > .xxlarge-offset-6 {
    margin-left: calc(50% + 0.9375rem);
  }
  .xxlarge-offset-7 {
    margin-left: 58.33333%;
  }
  .grid-margin-x > .xxlarge-offset-7 {
    margin-left: calc(58.33333% + 0.9375rem);
  }
  .xxlarge-offset-8 {
    margin-left: 66.66667%;
  }
  .grid-margin-x > .xxlarge-offset-8 {
    margin-left: calc(66.66667% + 0.9375rem);
  }
  .xxlarge-offset-9 {
    margin-left: 75%;
  }
  .grid-margin-x > .xxlarge-offset-9 {
    margin-left: calc(75% + 0.9375rem);
  }
  .xxlarge-offset-10 {
    margin-left: 83.33333%;
  }
  .grid-margin-x > .xxlarge-offset-10 {
    margin-left: calc(83.33333% + 0.9375rem);
  }
  .xxlarge-offset-11 {
    margin-left: 91.66667%;
  }
  .grid-margin-x > .xxlarge-offset-11 {
    margin-left: calc(91.66667% + 0.9375rem);
  }
}

.grid-y {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
}

.grid-y > .cell {
  width: auto;
  max-width: none;
}

.grid-y > .auto {
  height: auto;
}

.grid-y > .shrink {
  height: auto;
}

.grid-y > .small-shrink, .grid-y > .small-full, .grid-y > .small-1, .grid-y > .small-2, .grid-y > .small-3, .grid-y > .small-4, .grid-y > .small-5, .grid-y > .small-6, .grid-y > .small-7, .grid-y > .small-8, .grid-y > .small-9, .grid-y > .small-10, .grid-y > .small-11, .grid-y > .small-12 {
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
}

@media print, screen and (min-width: 20em) {
  .grid-y > .smallish-shrink, .grid-y > .smallish-full, .grid-y > .smallish-1, .grid-y > .smallish-2, .grid-y > .smallish-3, .grid-y > .smallish-4, .grid-y > .smallish-5, .grid-y > .smallish-6, .grid-y > .smallish-7, .grid-y > .smallish-8, .grid-y > .smallish-9, .grid-y > .smallish-10, .grid-y > .smallish-11, .grid-y > .smallish-12 {
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
}

@media print, screen and (min-width: 46.25em) {
  .grid-y > .medium-shrink, .grid-y > .medium-full, .grid-y > .medium-1, .grid-y > .medium-2, .o-columns__four--alt-1.grid-y > div.cell:nth-child(1), .o-columns__four--alt-1.grid-y > div.cell:nth-child(2), .o-columns__six.grid-y > div.cell, .grid-y > .medium-3, .o-columns__two--alt-1.grid-y > div.cell:nth-child(1), .o-columns__two--alt-4.grid-y > div.cell:nth-child(2), .o-columns__three--alt-1.grid-y > div.cell:nth-child(1), .o-columns__three--alt-1.grid-y > div.cell:nth-child(2), .o-columns__three--alt-2.grid-y > div.cell:nth-child(2), .o-columns__three--alt-2.grid-y > div.cell:nth-child(3), .o-columns__three--alt-3.grid-y > div.cell:nth-child(2), .o-columns__four.grid-y > div.cell, .grid-y > .medium-4, .o-columns__two--alt-2.grid-y > div.cell:nth-child(1), .o-columns__two--alt-3.grid-y > div.cell:nth-child(2), .o-columns__two--narrow.grid-y > div.cell:nth-child(1), .o-columns__two--narrow.grid-y > div.cell:nth-child(2), .o-columns__three.grid-y > div.cell, .o-columns__three--alt-3.grid-y > div.cell:nth-child(3), .o-columns__four--alt-1.grid-y > div.cell:nth-child(3), .o-columns__four--alt-1.grid-y > div.cell:nth-child(4), .grid-y > .medium-5, .o-columns__three--alt-3.grid-y > div.cell:nth-child(1), .grid-y > .medium-6, .o-columns__two.grid-y > div.cell, .o-columns__three--alt-1.grid-y > div.cell:nth-child(3), .o-columns__three--alt-2.grid-y > div.cell:nth-child(1), .grid-y > .medium-7, .grid-y > .medium-8, .o-columns__one--narrow.grid-y > div.cell, .o-columns__two--alt-2.grid-y > div.cell:nth-child(2), .o-columns__two--alt-3.grid-y > div.cell:nth-child(1), .o-columns__two--alt-4.grid-y > div.cell:nth-child(1), .grid-y > .medium-9, .o-columns__two--alt-1.grid-y > div.cell:nth-child(2), .grid-y > .medium-10, .o-columns__one--alt-1.grid-y > div.cell:nth-child(1), .grid-y > .medium-11, .grid-y > .medium-12 {
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
}

@media print, screen and (min-width: 61.25em) {
  .grid-y > .large-shrink, .grid-y > .large-full, .grid-y > .large-1, .grid-y > .large-2, .grid-y > .large-3, .grid-y > .large-4, .grid-y > .large-5, .grid-y > .large-6, .grid-y > .large-7, .grid-y > .large-8, .grid-y > .large-9, .grid-y > .large-10, .grid-y > .large-11, .grid-y > .large-12 {
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
}

@media screen and (min-width: 64em) {
  .grid-y > .largish-shrink, .grid-y > .largish-full, .grid-y > .largish-1, .grid-y > .largish-2, .grid-y > .largish-3, .grid-y > .largish-4, .grid-y > .largish-5, .grid-y > .largish-6, .grid-y > .largish-7, .grid-y > .largish-8, .grid-y > .largish-9, .grid-y > .largish-10, .grid-y > .largish-11, .grid-y > .largish-12 {
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
}

@media screen and (min-width: 75em) {
  .grid-y > .xlarge-shrink, .grid-y > .xlarge-full, .grid-y > .xlarge-1, .grid-y > .xlarge-2, .grid-y > .xlarge-3, .grid-y > .xlarge-4, .grid-y > .xlarge-5, .grid-y > .xlarge-6, .grid-y > .xlarge-7, .grid-y > .xlarge-8, .grid-y > .xlarge-9, .grid-y > .xlarge-10, .grid-y > .xlarge-11, .grid-y > .xlarge-12 {
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
}

@media screen and (min-width: 87.5em) {
  .grid-y > .xxlarge-shrink, .grid-y > .xxlarge-full, .grid-y > .xxlarge-1, .grid-y > .xxlarge-2, .grid-y > .xxlarge-3, .grid-y > .xxlarge-4, .grid-y > .xxlarge-5, .grid-y > .xxlarge-6, .grid-y > .xxlarge-7, .grid-y > .xxlarge-8, .grid-y > .xxlarge-9, .grid-y > .xxlarge-10, .grid-y > .xxlarge-11, .grid-y > .xxlarge-12 {
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
}

.grid-y > .small-1 {
  height: 8.33333%;
}

.grid-y > .small-2 {
  height: 16.66667%;
}

.grid-y > .small-3 {
  height: 25%;
}

.grid-y > .small-4 {
  height: 33.33333%;
}

.grid-y > .small-5 {
  height: 41.66667%;
}

.grid-y > .small-6 {
  height: 50%;
}

.grid-y > .small-7 {
  height: 58.33333%;
}

.grid-y > .small-8 {
  height: 66.66667%;
}

.grid-y > .small-9 {
  height: 75%;
}

.grid-y > .small-10 {
  height: 83.33333%;
}

.grid-y > .small-11 {
  height: 91.66667%;
}

.grid-y > .small-12 {
  height: 100%;
}

@media print, screen and (min-width: 20em) {
  .grid-y > .smallish-auto {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0px;
    height: auto;
  }
  .grid-y > .smallish-shrink {
    height: auto;
  }
  .grid-y > .smallish-1 {
    height: 8.33333%;
  }
  .grid-y > .smallish-2 {
    height: 16.66667%;
  }
  .grid-y > .smallish-3 {
    height: 25%;
  }
  .grid-y > .smallish-4 {
    height: 33.33333%;
  }
  .grid-y > .smallish-5 {
    height: 41.66667%;
  }
  .grid-y > .smallish-6 {
    height: 50%;
  }
  .grid-y > .smallish-7 {
    height: 58.33333%;
  }
  .grid-y > .smallish-8 {
    height: 66.66667%;
  }
  .grid-y > .smallish-9 {
    height: 75%;
  }
  .grid-y > .smallish-10 {
    height: 83.33333%;
  }
  .grid-y > .smallish-11 {
    height: 91.66667%;
  }
  .grid-y > .smallish-12 {
    height: 100%;
  }
}

@media print, screen and (min-width: 46.25em) {
  .grid-y > .medium-auto {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0px;
    height: auto;
  }
  .grid-y > .medium-shrink {
    height: auto;
  }
  .grid-y > .medium-1 {
    height: 8.33333%;
  }
  .grid-y > .medium-2, .o-columns__four--alt-1.grid-y > div.cell:nth-child(1), .o-columns__four--alt-1.grid-y > div.cell:nth-child(2), .o-columns__six.grid-y > div.cell {
    height: 16.66667%;
  }
  .grid-y > .medium-3, .o-columns__two--alt-1.grid-y > div.cell:nth-child(1), .o-columns__two--alt-4.grid-y > div.cell:nth-child(2), .o-columns__three--alt-1.grid-y > div.cell:nth-child(1), .o-columns__three--alt-1.grid-y > div.cell:nth-child(2), .o-columns__three--alt-2.grid-y > div.cell:nth-child(2), .o-columns__three--alt-2.grid-y > div.cell:nth-child(3), .o-columns__three--alt-3.grid-y > div.cell:nth-child(2), .o-columns__four.grid-y > div.cell {
    height: 25%;
  }
  .grid-y > .medium-4, .o-columns__two--alt-2.grid-y > div.cell:nth-child(1), .o-columns__two--alt-3.grid-y > div.cell:nth-child(2), .o-columns__two--narrow.grid-y > div.cell:nth-child(1), .o-columns__two--narrow.grid-y > div.cell:nth-child(2), .o-columns__three.grid-y > div.cell, .o-columns__three--alt-3.grid-y > div.cell:nth-child(3), .o-columns__four--alt-1.grid-y > div.cell:nth-child(3), .o-columns__four--alt-1.grid-y > div.cell:nth-child(4) {
    height: 33.33333%;
  }
  .grid-y > .medium-5, .o-columns__three--alt-3.grid-y > div.cell:nth-child(1) {
    height: 41.66667%;
  }
  .grid-y > .medium-6, .o-columns__two.grid-y > div.cell, .o-columns__three--alt-1.grid-y > div.cell:nth-child(3), .o-columns__three--alt-2.grid-y > div.cell:nth-child(1) {
    height: 50%;
  }
  .grid-y > .medium-7 {
    height: 58.33333%;
  }
  .grid-y > .medium-8, .o-columns__one--narrow.grid-y > div.cell, .o-columns__two--alt-2.grid-y > div.cell:nth-child(2), .o-columns__two--alt-3.grid-y > div.cell:nth-child(1), .o-columns__two--alt-4.grid-y > div.cell:nth-child(1) {
    height: 66.66667%;
  }
  .grid-y > .medium-9, .o-columns__two--alt-1.grid-y > div.cell:nth-child(2) {
    height: 75%;
  }
  .grid-y > .medium-10, .o-columns__one--alt-1.grid-y > div.cell:nth-child(1) {
    height: 83.33333%;
  }
  .grid-y > .medium-11 {
    height: 91.66667%;
  }
  .grid-y > .medium-12 {
    height: 100%;
  }
}

@media print, screen and (min-width: 61.25em) {
  .grid-y > .large-auto {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0px;
    height: auto;
  }
  .grid-y > .large-shrink {
    height: auto;
  }
  .grid-y > .large-1 {
    height: 8.33333%;
  }
  .grid-y > .large-2 {
    height: 16.66667%;
  }
  .grid-y > .large-3 {
    height: 25%;
  }
  .grid-y > .large-4 {
    height: 33.33333%;
  }
  .grid-y > .large-5 {
    height: 41.66667%;
  }
  .grid-y > .large-6 {
    height: 50%;
  }
  .grid-y > .large-7 {
    height: 58.33333%;
  }
  .grid-y > .large-8 {
    height: 66.66667%;
  }
  .grid-y > .large-9 {
    height: 75%;
  }
  .grid-y > .large-10 {
    height: 83.33333%;
  }
  .grid-y > .large-11 {
    height: 91.66667%;
  }
  .grid-y > .large-12 {
    height: 100%;
  }
}

@media screen and (min-width: 64em) {
  .grid-y > .largish-auto {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0px;
    height: auto;
  }
  .grid-y > .largish-shrink {
    height: auto;
  }
  .grid-y > .largish-1 {
    height: 8.33333%;
  }
  .grid-y > .largish-2 {
    height: 16.66667%;
  }
  .grid-y > .largish-3 {
    height: 25%;
  }
  .grid-y > .largish-4 {
    height: 33.33333%;
  }
  .grid-y > .largish-5 {
    height: 41.66667%;
  }
  .grid-y > .largish-6 {
    height: 50%;
  }
  .grid-y > .largish-7 {
    height: 58.33333%;
  }
  .grid-y > .largish-8 {
    height: 66.66667%;
  }
  .grid-y > .largish-9 {
    height: 75%;
  }
  .grid-y > .largish-10 {
    height: 83.33333%;
  }
  .grid-y > .largish-11 {
    height: 91.66667%;
  }
  .grid-y > .largish-12 {
    height: 100%;
  }
}

@media screen and (min-width: 75em) {
  .grid-y > .xlarge-auto {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0px;
    height: auto;
  }
  .grid-y > .xlarge-shrink {
    height: auto;
  }
  .grid-y > .xlarge-1 {
    height: 8.33333%;
  }
  .grid-y > .xlarge-2 {
    height: 16.66667%;
  }
  .grid-y > .xlarge-3 {
    height: 25%;
  }
  .grid-y > .xlarge-4 {
    height: 33.33333%;
  }
  .grid-y > .xlarge-5 {
    height: 41.66667%;
  }
  .grid-y > .xlarge-6 {
    height: 50%;
  }
  .grid-y > .xlarge-7 {
    height: 58.33333%;
  }
  .grid-y > .xlarge-8 {
    height: 66.66667%;
  }
  .grid-y > .xlarge-9 {
    height: 75%;
  }
  .grid-y > .xlarge-10 {
    height: 83.33333%;
  }
  .grid-y > .xlarge-11 {
    height: 91.66667%;
  }
  .grid-y > .xlarge-12 {
    height: 100%;
  }
}

@media screen and (min-width: 87.5em) {
  .grid-y > .xxlarge-auto {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0px;
    height: auto;
  }
  .grid-y > .xxlarge-shrink {
    height: auto;
  }
  .grid-y > .xxlarge-1 {
    height: 8.33333%;
  }
  .grid-y > .xxlarge-2 {
    height: 16.66667%;
  }
  .grid-y > .xxlarge-3 {
    height: 25%;
  }
  .grid-y > .xxlarge-4 {
    height: 33.33333%;
  }
  .grid-y > .xxlarge-5 {
    height: 41.66667%;
  }
  .grid-y > .xxlarge-6 {
    height: 50%;
  }
  .grid-y > .xxlarge-7 {
    height: 58.33333%;
  }
  .grid-y > .xxlarge-8 {
    height: 66.66667%;
  }
  .grid-y > .xxlarge-9 {
    height: 75%;
  }
  .grid-y > .xxlarge-10 {
    height: 83.33333%;
  }
  .grid-y > .xxlarge-11 {
    height: 91.66667%;
  }
  .grid-y > .xxlarge-12 {
    height: 100%;
  }
}

.grid-padding-y .grid-padding-y {
  margin-top: -0.625rem;
  margin-bottom: -0.625rem;
}

@media print, screen and (min-width: 46.25em) {
  .grid-padding-y .grid-padding-y {
    margin-top: -0.9375rem;
    margin-bottom: -0.9375rem;
  }
}

.grid-padding-y > .cell {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}

@media print, screen and (min-width: 46.25em) {
  .grid-padding-y > .cell {
    padding-top: 0.9375rem;
    padding-bottom: 0.9375rem;
  }
}

.grid-margin-y {
  margin-top: -0.625rem;
  margin-bottom: -0.625rem;
}

@media print, screen and (min-width: 46.25em) {
  .grid-margin-y {
    margin-top: -0.9375rem;
    margin-bottom: -0.9375rem;
  }
}

.grid-margin-y > .cell {
  height: calc(100% - 1.25rem);
  margin-top: 0.625rem;
  margin-bottom: 0.625rem;
}

@media print, screen and (min-width: 46.25em) {
  .grid-margin-y > .cell {
    height: calc(100% - 1.875rem);
    margin-top: 0.9375rem;
    margin-bottom: 0.9375rem;
  }
}

.grid-margin-y > .auto {
  height: auto;
}

.grid-margin-y > .shrink {
  height: auto;
}

.grid-margin-y > .small-1 {
  height: calc(8.33333% - 1.25rem);
}

.grid-margin-y > .small-2 {
  height: calc(16.66667% - 1.25rem);
}

.grid-margin-y > .small-3 {
  height: calc(25% - 1.25rem);
}

.grid-margin-y > .small-4 {
  height: calc(33.33333% - 1.25rem);
}

.grid-margin-y > .small-5 {
  height: calc(41.66667% - 1.25rem);
}

.grid-margin-y > .small-6 {
  height: calc(50% - 1.25rem);
}

.grid-margin-y > .small-7 {
  height: calc(58.33333% - 1.25rem);
}

.grid-margin-y > .small-8 {
  height: calc(66.66667% - 1.25rem);
}

.grid-margin-y > .small-9 {
  height: calc(75% - 1.25rem);
}

.grid-margin-y > .small-10 {
  height: calc(83.33333% - 1.25rem);
}

.grid-margin-y > .small-11 {
  height: calc(91.66667% - 1.25rem);
}

.grid-margin-y > .small-12 {
  height: calc(100% - 1.25rem);
}

@media print, screen and (min-width: 20em) {
  .grid-margin-y > .smallish-auto {
    height: auto;
  }
  .grid-margin-y > .smallish-shrink {
    height: auto;
  }
  .grid-margin-y > .smallish-1 {
    height: calc(8.33333% - 1.25rem);
  }
  .grid-margin-y > .smallish-2 {
    height: calc(16.66667% - 1.25rem);
  }
  .grid-margin-y > .smallish-3 {
    height: calc(25% - 1.25rem);
  }
  .grid-margin-y > .smallish-4 {
    height: calc(33.33333% - 1.25rem);
  }
  .grid-margin-y > .smallish-5 {
    height: calc(41.66667% - 1.25rem);
  }
  .grid-margin-y > .smallish-6 {
    height: calc(50% - 1.25rem);
  }
  .grid-margin-y > .smallish-7 {
    height: calc(58.33333% - 1.25rem);
  }
  .grid-margin-y > .smallish-8 {
    height: calc(66.66667% - 1.25rem);
  }
  .grid-margin-y > .smallish-9 {
    height: calc(75% - 1.25rem);
  }
  .grid-margin-y > .smallish-10 {
    height: calc(83.33333% - 1.25rem);
  }
  .grid-margin-y > .smallish-11 {
    height: calc(91.66667% - 1.25rem);
  }
  .grid-margin-y > .smallish-12 {
    height: calc(100% - 1.25rem);
  }
}

@media print, screen and (min-width: 46.25em) {
  .grid-margin-y > .auto {
    height: auto;
  }
  .grid-margin-y > .shrink {
    height: auto;
  }
  .grid-margin-y > .small-1 {
    height: calc(8.33333% - 1.875rem);
  }
  .grid-margin-y > .small-2 {
    height: calc(16.66667% - 1.875rem);
  }
  .grid-margin-y > .small-3 {
    height: calc(25% - 1.875rem);
  }
  .grid-margin-y > .small-4 {
    height: calc(33.33333% - 1.875rem);
  }
  .grid-margin-y > .small-5 {
    height: calc(41.66667% - 1.875rem);
  }
  .grid-margin-y > .small-6 {
    height: calc(50% - 1.875rem);
  }
  .grid-margin-y > .small-7 {
    height: calc(58.33333% - 1.875rem);
  }
  .grid-margin-y > .small-8 {
    height: calc(66.66667% - 1.875rem);
  }
  .grid-margin-y > .small-9 {
    height: calc(75% - 1.875rem);
  }
  .grid-margin-y > .small-10 {
    height: calc(83.33333% - 1.875rem);
  }
  .grid-margin-y > .small-11 {
    height: calc(91.66667% - 1.875rem);
  }
  .grid-margin-y > .small-12 {
    height: calc(100% - 1.875rem);
  }
  .grid-margin-y > .medium-auto {
    height: auto;
  }
  .grid-margin-y > .medium-shrink {
    height: auto;
  }
  .grid-margin-y > .medium-1 {
    height: calc(8.33333% - 1.875rem);
  }
  .grid-margin-y > .medium-2, .o-columns__four--alt-1.grid-margin-y > div.cell:nth-child(1), .o-columns__four--alt-1.grid-margin-y > div.cell:nth-child(2), .o-columns__six.grid-margin-y > div.cell {
    height: calc(16.66667% - 1.875rem);
  }
  .grid-margin-y > .medium-3, .o-columns__two--alt-1.grid-margin-y > div.cell:nth-child(1), .o-columns__two--alt-4.grid-margin-y > div.cell:nth-child(2), .o-columns__three--alt-1.grid-margin-y > div.cell:nth-child(1), .o-columns__three--alt-1.grid-margin-y > div.cell:nth-child(2), .o-columns__three--alt-2.grid-margin-y > div.cell:nth-child(2), .o-columns__three--alt-2.grid-margin-y > div.cell:nth-child(3), .o-columns__three--alt-3.grid-margin-y > div.cell:nth-child(2), .o-columns__four.grid-margin-y > div.cell {
    height: calc(25% - 1.875rem);
  }
  .grid-margin-y > .medium-4, .o-columns__two--alt-2.grid-margin-y > div.cell:nth-child(1), .o-columns__two--alt-3.grid-margin-y > div.cell:nth-child(2), .o-columns__two--narrow.grid-margin-y > div.cell:nth-child(1), .o-columns__two--narrow.grid-margin-y > div.cell:nth-child(2), .o-columns__three.grid-margin-y > div.cell, .o-columns__three--alt-3.grid-margin-y > div.cell:nth-child(3), .o-columns__four--alt-1.grid-margin-y > div.cell:nth-child(3), .o-columns__four--alt-1.grid-margin-y > div.cell:nth-child(4) {
    height: calc(33.33333% - 1.875rem);
  }
  .grid-margin-y > .medium-5, .o-columns__three--alt-3.grid-margin-y > div.cell:nth-child(1) {
    height: calc(41.66667% - 1.875rem);
  }
  .grid-margin-y > .medium-6, .o-columns__two.grid-margin-y > div.cell, .o-columns__three--alt-1.grid-margin-y > div.cell:nth-child(3), .o-columns__three--alt-2.grid-margin-y > div.cell:nth-child(1) {
    height: calc(50% - 1.875rem);
  }
  .grid-margin-y > .medium-7 {
    height: calc(58.33333% - 1.875rem);
  }
  .grid-margin-y > .medium-8, .o-columns__one--narrow.grid-margin-y > div.cell, .o-columns__two--alt-2.grid-margin-y > div.cell:nth-child(2), .o-columns__two--alt-3.grid-margin-y > div.cell:nth-child(1), .o-columns__two--alt-4.grid-margin-y > div.cell:nth-child(1) {
    height: calc(66.66667% - 1.875rem);
  }
  .grid-margin-y > .medium-9, .o-columns__two--alt-1.grid-margin-y > div.cell:nth-child(2) {
    height: calc(75% - 1.875rem);
  }
  .grid-margin-y > .medium-10, .o-columns__one--alt-1.grid-margin-y > div.cell:nth-child(1) {
    height: calc(83.33333% - 1.875rem);
  }
  .grid-margin-y > .medium-11 {
    height: calc(91.66667% - 1.875rem);
  }
  .grid-margin-y > .medium-12 {
    height: calc(100% - 1.875rem);
  }
}

@media print, screen and (min-width: 61.25em) {
  .grid-margin-y > .large-auto {
    height: auto;
  }
  .grid-margin-y > .large-shrink {
    height: auto;
  }
  .grid-margin-y > .large-1 {
    height: calc(8.33333% - 1.875rem);
  }
  .grid-margin-y > .large-2 {
    height: calc(16.66667% - 1.875rem);
  }
  .grid-margin-y > .large-3 {
    height: calc(25% - 1.875rem);
  }
  .grid-margin-y > .large-4 {
    height: calc(33.33333% - 1.875rem);
  }
  .grid-margin-y > .large-5 {
    height: calc(41.66667% - 1.875rem);
  }
  .grid-margin-y > .large-6 {
    height: calc(50% - 1.875rem);
  }
  .grid-margin-y > .large-7 {
    height: calc(58.33333% - 1.875rem);
  }
  .grid-margin-y > .large-8 {
    height: calc(66.66667% - 1.875rem);
  }
  .grid-margin-y > .large-9 {
    height: calc(75% - 1.875rem);
  }
  .grid-margin-y > .large-10 {
    height: calc(83.33333% - 1.875rem);
  }
  .grid-margin-y > .large-11 {
    height: calc(91.66667% - 1.875rem);
  }
  .grid-margin-y > .large-12 {
    height: calc(100% - 1.875rem);
  }
}

@media screen and (min-width: 64em) {
  .grid-margin-y > .largish-auto {
    height: auto;
  }
  .grid-margin-y > .largish-shrink {
    height: auto;
  }
  .grid-margin-y > .largish-1 {
    height: calc(8.33333% - 1.875rem);
  }
  .grid-margin-y > .largish-2 {
    height: calc(16.66667% - 1.875rem);
  }
  .grid-margin-y > .largish-3 {
    height: calc(25% - 1.875rem);
  }
  .grid-margin-y > .largish-4 {
    height: calc(33.33333% - 1.875rem);
  }
  .grid-margin-y > .largish-5 {
    height: calc(41.66667% - 1.875rem);
  }
  .grid-margin-y > .largish-6 {
    height: calc(50% - 1.875rem);
  }
  .grid-margin-y > .largish-7 {
    height: calc(58.33333% - 1.875rem);
  }
  .grid-margin-y > .largish-8 {
    height: calc(66.66667% - 1.875rem);
  }
  .grid-margin-y > .largish-9 {
    height: calc(75% - 1.875rem);
  }
  .grid-margin-y > .largish-10 {
    height: calc(83.33333% - 1.875rem);
  }
  .grid-margin-y > .largish-11 {
    height: calc(91.66667% - 1.875rem);
  }
  .grid-margin-y > .largish-12 {
    height: calc(100% - 1.875rem);
  }
}

@media screen and (min-width: 75em) {
  .grid-margin-y > .xlarge-auto {
    height: auto;
  }
  .grid-margin-y > .xlarge-shrink {
    height: auto;
  }
  .grid-margin-y > .xlarge-1 {
    height: calc(8.33333% - 1.875rem);
  }
  .grid-margin-y > .xlarge-2 {
    height: calc(16.66667% - 1.875rem);
  }
  .grid-margin-y > .xlarge-3 {
    height: calc(25% - 1.875rem);
  }
  .grid-margin-y > .xlarge-4 {
    height: calc(33.33333% - 1.875rem);
  }
  .grid-margin-y > .xlarge-5 {
    height: calc(41.66667% - 1.875rem);
  }
  .grid-margin-y > .xlarge-6 {
    height: calc(50% - 1.875rem);
  }
  .grid-margin-y > .xlarge-7 {
    height: calc(58.33333% - 1.875rem);
  }
  .grid-margin-y > .xlarge-8 {
    height: calc(66.66667% - 1.875rem);
  }
  .grid-margin-y > .xlarge-9 {
    height: calc(75% - 1.875rem);
  }
  .grid-margin-y > .xlarge-10 {
    height: calc(83.33333% - 1.875rem);
  }
  .grid-margin-y > .xlarge-11 {
    height: calc(91.66667% - 1.875rem);
  }
  .grid-margin-y > .xlarge-12 {
    height: calc(100% - 1.875rem);
  }
}

@media screen and (min-width: 87.5em) {
  .grid-margin-y > .xxlarge-auto {
    height: auto;
  }
  .grid-margin-y > .xxlarge-shrink {
    height: auto;
  }
  .grid-margin-y > .xxlarge-1 {
    height: calc(8.33333% - 1.875rem);
  }
  .grid-margin-y > .xxlarge-2 {
    height: calc(16.66667% - 1.875rem);
  }
  .grid-margin-y > .xxlarge-3 {
    height: calc(25% - 1.875rem);
  }
  .grid-margin-y > .xxlarge-4 {
    height: calc(33.33333% - 1.875rem);
  }
  .grid-margin-y > .xxlarge-5 {
    height: calc(41.66667% - 1.875rem);
  }
  .grid-margin-y > .xxlarge-6 {
    height: calc(50% - 1.875rem);
  }
  .grid-margin-y > .xxlarge-7 {
    height: calc(58.33333% - 1.875rem);
  }
  .grid-margin-y > .xxlarge-8 {
    height: calc(66.66667% - 1.875rem);
  }
  .grid-margin-y > .xxlarge-9 {
    height: calc(75% - 1.875rem);
  }
  .grid-margin-y > .xxlarge-10 {
    height: calc(83.33333% - 1.875rem);
  }
  .grid-margin-y > .xxlarge-11 {
    height: calc(91.66667% - 1.875rem);
  }
  .grid-margin-y > .xxlarge-12 {
    height: calc(100% - 1.875rem);
  }
}

.grid-frame {
  overflow: hidden;
  position: relative;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100vw;
}

.cell .grid-frame {
  width: 100%;
}

.cell-block {
  overflow-x: auto;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-stype: -ms-autohiding-scrollbar;
}

.cell-block-y {
  overflow-y: auto;
  max-height: 100%;
  height: 100%;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-stype: -ms-autohiding-scrollbar;
}

.cell-block-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-height: 100%;
}

.cell-block-container > .grid-x {
  max-height: 100%;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

@media print, screen and (min-width: 20em) {
  .smallish-grid-frame {
    overflow: hidden;
    position: relative;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    width: 100vw;
  }
  .cell .smallish-grid-frame {
    width: 100%;
  }
  .smallish-cell-block {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-stype: -ms-autohiding-scrollbar;
  }
  .smallish-cell-block-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-height: 100%;
  }
  .smallish-cell-block-container > .grid-x {
    max-height: 100%;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .smallish-cell-block-y {
    overflow-y: auto;
    max-height: 100%;
    height: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-stype: -ms-autohiding-scrollbar;
  }
}

@media print, screen and (min-width: 46.25em) {
  .medium-grid-frame {
    overflow: hidden;
    position: relative;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    width: 100vw;
  }
  .cell .medium-grid-frame {
    width: 100%;
  }
  .medium-cell-block {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-stype: -ms-autohiding-scrollbar;
  }
  .medium-cell-block-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-height: 100%;
  }
  .medium-cell-block-container > .grid-x {
    max-height: 100%;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .medium-cell-block-y {
    overflow-y: auto;
    max-height: 100%;
    height: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-stype: -ms-autohiding-scrollbar;
  }
}

@media print, screen and (min-width: 61.25em) {
  .large-grid-frame {
    overflow: hidden;
    position: relative;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    width: 100vw;
  }
  .cell .large-grid-frame {
    width: 100%;
  }
  .large-cell-block {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-stype: -ms-autohiding-scrollbar;
  }
  .large-cell-block-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-height: 100%;
  }
  .large-cell-block-container > .grid-x {
    max-height: 100%;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .large-cell-block-y {
    overflow-y: auto;
    max-height: 100%;
    height: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-stype: -ms-autohiding-scrollbar;
  }
}

@media screen and (min-width: 64em) {
  .largish-grid-frame {
    overflow: hidden;
    position: relative;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    width: 100vw;
  }
  .cell .largish-grid-frame {
    width: 100%;
  }
  .largish-cell-block {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-stype: -ms-autohiding-scrollbar;
  }
  .largish-cell-block-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-height: 100%;
  }
  .largish-cell-block-container > .grid-x {
    max-height: 100%;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .largish-cell-block-y {
    overflow-y: auto;
    max-height: 100%;
    height: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-stype: -ms-autohiding-scrollbar;
  }
}

@media screen and (min-width: 75em) {
  .xlarge-grid-frame {
    overflow: hidden;
    position: relative;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    width: 100vw;
  }
  .cell .xlarge-grid-frame {
    width: 100%;
  }
  .xlarge-cell-block {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-stype: -ms-autohiding-scrollbar;
  }
  .xlarge-cell-block-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-height: 100%;
  }
  .xlarge-cell-block-container > .grid-x {
    max-height: 100%;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .xlarge-cell-block-y {
    overflow-y: auto;
    max-height: 100%;
    height: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-stype: -ms-autohiding-scrollbar;
  }
}

@media screen and (min-width: 87.5em) {
  .xxlarge-grid-frame {
    overflow: hidden;
    position: relative;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    width: 100vw;
  }
  .cell .xxlarge-grid-frame {
    width: 100%;
  }
  .xxlarge-cell-block {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-stype: -ms-autohiding-scrollbar;
  }
  .xxlarge-cell-block-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-height: 100%;
  }
  .xxlarge-cell-block-container > .grid-x {
    max-height: 100%;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .xxlarge-cell-block-y {
    overflow-y: auto;
    max-height: 100%;
    height: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-stype: -ms-autohiding-scrollbar;
  }
}

.grid-y.grid-frame {
  width: auto;
  overflow: hidden;
  position: relative;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  height: 100vh;
}

@media print, screen and (min-width: 20em) {
  .grid-y.smallish-grid-frame {
    width: auto;
    overflow: hidden;
    position: relative;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    height: 100vh;
  }
}

@media print, screen and (min-width: 46.25em) {
  .grid-y.medium-grid-frame {
    width: auto;
    overflow: hidden;
    position: relative;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    height: 100vh;
  }
}

@media print, screen and (min-width: 61.25em) {
  .grid-y.large-grid-frame {
    width: auto;
    overflow: hidden;
    position: relative;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    height: 100vh;
  }
}

@media screen and (min-width: 64em) {
  .grid-y.largish-grid-frame {
    width: auto;
    overflow: hidden;
    position: relative;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    height: 100vh;
  }
}

@media screen and (min-width: 75em) {
  .grid-y.xlarge-grid-frame {
    width: auto;
    overflow: hidden;
    position: relative;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    height: 100vh;
  }
}

@media screen and (min-width: 87.5em) {
  .grid-y.xxlarge-grid-frame {
    width: auto;
    overflow: hidden;
    position: relative;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    height: 100vh;
  }
}

.cell .grid-y.grid-frame {
  height: 100%;
}

@media print, screen and (min-width: 20em) {
  .cell .grid-y.smallish-grid-frame {
    height: 100%;
  }
}

@media print, screen and (min-width: 46.25em) {
  .cell .grid-y.medium-grid-frame {
    height: 100%;
  }
}

@media print, screen and (min-width: 61.25em) {
  .cell .grid-y.large-grid-frame {
    height: 100%;
  }
}

@media screen and (min-width: 64em) {
  .cell .grid-y.largish-grid-frame {
    height: 100%;
  }
}

@media screen and (min-width: 75em) {
  .cell .grid-y.xlarge-grid-frame {
    height: 100%;
  }
}

@media screen and (min-width: 87.5em) {
  .cell .grid-y.xxlarge-grid-frame {
    height: 100%;
  }
}

.grid-margin-y {
  margin-top: -0.625rem;
  margin-bottom: -0.625rem;
}

@media print, screen and (min-width: 46.25em) {
  .grid-margin-y {
    margin-top: -0.9375rem;
    margin-bottom: -0.9375rem;
  }
}

.grid-margin-y > .cell {
  height: calc(100% - 1.25rem);
  margin-top: 0.625rem;
  margin-bottom: 0.625rem;
}

@media print, screen and (min-width: 46.25em) {
  .grid-margin-y > .cell {
    height: calc(100% - 1.875rem);
    margin-top: 0.9375rem;
    margin-bottom: 0.9375rem;
  }
}

.grid-margin-y > .auto {
  height: auto;
}

.grid-margin-y > .shrink {
  height: auto;
}

.grid-margin-y > .small-1 {
  height: calc(8.33333% - 1.25rem);
}

.grid-margin-y > .small-2 {
  height: calc(16.66667% - 1.25rem);
}

.grid-margin-y > .small-3 {
  height: calc(25% - 1.25rem);
}

.grid-margin-y > .small-4 {
  height: calc(33.33333% - 1.25rem);
}

.grid-margin-y > .small-5 {
  height: calc(41.66667% - 1.25rem);
}

.grid-margin-y > .small-6 {
  height: calc(50% - 1.25rem);
}

.grid-margin-y > .small-7 {
  height: calc(58.33333% - 1.25rem);
}

.grid-margin-y > .small-8 {
  height: calc(66.66667% - 1.25rem);
}

.grid-margin-y > .small-9 {
  height: calc(75% - 1.25rem);
}

.grid-margin-y > .small-10 {
  height: calc(83.33333% - 1.25rem);
}

.grid-margin-y > .small-11 {
  height: calc(91.66667% - 1.25rem);
}

.grid-margin-y > .small-12 {
  height: calc(100% - 1.25rem);
}

@media print, screen and (min-width: 20em) {
  .grid-margin-y > .smallish-auto {
    height: auto;
  }
  .grid-margin-y > .smallish-shrink {
    height: auto;
  }
  .grid-margin-y > .smallish-1 {
    height: calc(8.33333% - 1.25rem);
  }
  .grid-margin-y > .smallish-2 {
    height: calc(16.66667% - 1.25rem);
  }
  .grid-margin-y > .smallish-3 {
    height: calc(25% - 1.25rem);
  }
  .grid-margin-y > .smallish-4 {
    height: calc(33.33333% - 1.25rem);
  }
  .grid-margin-y > .smallish-5 {
    height: calc(41.66667% - 1.25rem);
  }
  .grid-margin-y > .smallish-6 {
    height: calc(50% - 1.25rem);
  }
  .grid-margin-y > .smallish-7 {
    height: calc(58.33333% - 1.25rem);
  }
  .grid-margin-y > .smallish-8 {
    height: calc(66.66667% - 1.25rem);
  }
  .grid-margin-y > .smallish-9 {
    height: calc(75% - 1.25rem);
  }
  .grid-margin-y > .smallish-10 {
    height: calc(83.33333% - 1.25rem);
  }
  .grid-margin-y > .smallish-11 {
    height: calc(91.66667% - 1.25rem);
  }
  .grid-margin-y > .smallish-12 {
    height: calc(100% - 1.25rem);
  }
}

@media print, screen and (min-width: 46.25em) {
  .grid-margin-y > .auto {
    height: auto;
  }
  .grid-margin-y > .shrink {
    height: auto;
  }
  .grid-margin-y > .small-1 {
    height: calc(8.33333% - 1.875rem);
  }
  .grid-margin-y > .small-2 {
    height: calc(16.66667% - 1.875rem);
  }
  .grid-margin-y > .small-3 {
    height: calc(25% - 1.875rem);
  }
  .grid-margin-y > .small-4 {
    height: calc(33.33333% - 1.875rem);
  }
  .grid-margin-y > .small-5 {
    height: calc(41.66667% - 1.875rem);
  }
  .grid-margin-y > .small-6 {
    height: calc(50% - 1.875rem);
  }
  .grid-margin-y > .small-7 {
    height: calc(58.33333% - 1.875rem);
  }
  .grid-margin-y > .small-8 {
    height: calc(66.66667% - 1.875rem);
  }
  .grid-margin-y > .small-9 {
    height: calc(75% - 1.875rem);
  }
  .grid-margin-y > .small-10 {
    height: calc(83.33333% - 1.875rem);
  }
  .grid-margin-y > .small-11 {
    height: calc(91.66667% - 1.875rem);
  }
  .grid-margin-y > .small-12 {
    height: calc(100% - 1.875rem);
  }
  .grid-margin-y > .medium-auto {
    height: auto;
  }
  .grid-margin-y > .medium-shrink {
    height: auto;
  }
  .grid-margin-y > .medium-1 {
    height: calc(8.33333% - 1.875rem);
  }
  .grid-margin-y > .medium-2, .o-columns__four--alt-1.grid-margin-y > div.cell:nth-child(1), .o-columns__four--alt-1.grid-margin-y > div.cell:nth-child(2), .o-columns__six.grid-margin-y > div.cell {
    height: calc(16.66667% - 1.875rem);
  }
  .grid-margin-y > .medium-3, .o-columns__two--alt-1.grid-margin-y > div.cell:nth-child(1), .o-columns__two--alt-4.grid-margin-y > div.cell:nth-child(2), .o-columns__three--alt-1.grid-margin-y > div.cell:nth-child(1), .o-columns__three--alt-1.grid-margin-y > div.cell:nth-child(2), .o-columns__three--alt-2.grid-margin-y > div.cell:nth-child(2), .o-columns__three--alt-2.grid-margin-y > div.cell:nth-child(3), .o-columns__three--alt-3.grid-margin-y > div.cell:nth-child(2), .o-columns__four.grid-margin-y > div.cell {
    height: calc(25% - 1.875rem);
  }
  .grid-margin-y > .medium-4, .o-columns__two--alt-2.grid-margin-y > div.cell:nth-child(1), .o-columns__two--alt-3.grid-margin-y > div.cell:nth-child(2), .o-columns__two--narrow.grid-margin-y > div.cell:nth-child(1), .o-columns__two--narrow.grid-margin-y > div.cell:nth-child(2), .o-columns__three.grid-margin-y > div.cell, .o-columns__three--alt-3.grid-margin-y > div.cell:nth-child(3), .o-columns__four--alt-1.grid-margin-y > div.cell:nth-child(3), .o-columns__four--alt-1.grid-margin-y > div.cell:nth-child(4) {
    height: calc(33.33333% - 1.875rem);
  }
  .grid-margin-y > .medium-5, .o-columns__three--alt-3.grid-margin-y > div.cell:nth-child(1) {
    height: calc(41.66667% - 1.875rem);
  }
  .grid-margin-y > .medium-6, .o-columns__two.grid-margin-y > div.cell, .o-columns__three--alt-1.grid-margin-y > div.cell:nth-child(3), .o-columns__three--alt-2.grid-margin-y > div.cell:nth-child(1) {
    height: calc(50% - 1.875rem);
  }
  .grid-margin-y > .medium-7 {
    height: calc(58.33333% - 1.875rem);
  }
  .grid-margin-y > .medium-8, .o-columns__one--narrow.grid-margin-y > div.cell, .o-columns__two--alt-2.grid-margin-y > div.cell:nth-child(2), .o-columns__two--alt-3.grid-margin-y > div.cell:nth-child(1), .o-columns__two--alt-4.grid-margin-y > div.cell:nth-child(1) {
    height: calc(66.66667% - 1.875rem);
  }
  .grid-margin-y > .medium-9, .o-columns__two--alt-1.grid-margin-y > div.cell:nth-child(2) {
    height: calc(75% - 1.875rem);
  }
  .grid-margin-y > .medium-10, .o-columns__one--alt-1.grid-margin-y > div.cell:nth-child(1) {
    height: calc(83.33333% - 1.875rem);
  }
  .grid-margin-y > .medium-11 {
    height: calc(91.66667% - 1.875rem);
  }
  .grid-margin-y > .medium-12 {
    height: calc(100% - 1.875rem);
  }
}

@media print, screen and (min-width: 61.25em) {
  .grid-margin-y > .large-auto {
    height: auto;
  }
  .grid-margin-y > .large-shrink {
    height: auto;
  }
  .grid-margin-y > .large-1 {
    height: calc(8.33333% - 1.875rem);
  }
  .grid-margin-y > .large-2 {
    height: calc(16.66667% - 1.875rem);
  }
  .grid-margin-y > .large-3 {
    height: calc(25% - 1.875rem);
  }
  .grid-margin-y > .large-4 {
    height: calc(33.33333% - 1.875rem);
  }
  .grid-margin-y > .large-5 {
    height: calc(41.66667% - 1.875rem);
  }
  .grid-margin-y > .large-6 {
    height: calc(50% - 1.875rem);
  }
  .grid-margin-y > .large-7 {
    height: calc(58.33333% - 1.875rem);
  }
  .grid-margin-y > .large-8 {
    height: calc(66.66667% - 1.875rem);
  }
  .grid-margin-y > .large-9 {
    height: calc(75% - 1.875rem);
  }
  .grid-margin-y > .large-10 {
    height: calc(83.33333% - 1.875rem);
  }
  .grid-margin-y > .large-11 {
    height: calc(91.66667% - 1.875rem);
  }
  .grid-margin-y > .large-12 {
    height: calc(100% - 1.875rem);
  }
}

@media screen and (min-width: 64em) {
  .grid-margin-y > .largish-auto {
    height: auto;
  }
  .grid-margin-y > .largish-shrink {
    height: auto;
  }
  .grid-margin-y > .largish-1 {
    height: calc(8.33333% - 1.875rem);
  }
  .grid-margin-y > .largish-2 {
    height: calc(16.66667% - 1.875rem);
  }
  .grid-margin-y > .largish-3 {
    height: calc(25% - 1.875rem);
  }
  .grid-margin-y > .largish-4 {
    height: calc(33.33333% - 1.875rem);
  }
  .grid-margin-y > .largish-5 {
    height: calc(41.66667% - 1.875rem);
  }
  .grid-margin-y > .largish-6 {
    height: calc(50% - 1.875rem);
  }
  .grid-margin-y > .largish-7 {
    height: calc(58.33333% - 1.875rem);
  }
  .grid-margin-y > .largish-8 {
    height: calc(66.66667% - 1.875rem);
  }
  .grid-margin-y > .largish-9 {
    height: calc(75% - 1.875rem);
  }
  .grid-margin-y > .largish-10 {
    height: calc(83.33333% - 1.875rem);
  }
  .grid-margin-y > .largish-11 {
    height: calc(91.66667% - 1.875rem);
  }
  .grid-margin-y > .largish-12 {
    height: calc(100% - 1.875rem);
  }
}

@media screen and (min-width: 75em) {
  .grid-margin-y > .xlarge-auto {
    height: auto;
  }
  .grid-margin-y > .xlarge-shrink {
    height: auto;
  }
  .grid-margin-y > .xlarge-1 {
    height: calc(8.33333% - 1.875rem);
  }
  .grid-margin-y > .xlarge-2 {
    height: calc(16.66667% - 1.875rem);
  }
  .grid-margin-y > .xlarge-3 {
    height: calc(25% - 1.875rem);
  }
  .grid-margin-y > .xlarge-4 {
    height: calc(33.33333% - 1.875rem);
  }
  .grid-margin-y > .xlarge-5 {
    height: calc(41.66667% - 1.875rem);
  }
  .grid-margin-y > .xlarge-6 {
    height: calc(50% - 1.875rem);
  }
  .grid-margin-y > .xlarge-7 {
    height: calc(58.33333% - 1.875rem);
  }
  .grid-margin-y > .xlarge-8 {
    height: calc(66.66667% - 1.875rem);
  }
  .grid-margin-y > .xlarge-9 {
    height: calc(75% - 1.875rem);
  }
  .grid-margin-y > .xlarge-10 {
    height: calc(83.33333% - 1.875rem);
  }
  .grid-margin-y > .xlarge-11 {
    height: calc(91.66667% - 1.875rem);
  }
  .grid-margin-y > .xlarge-12 {
    height: calc(100% - 1.875rem);
  }
}

@media screen and (min-width: 87.5em) {
  .grid-margin-y > .xxlarge-auto {
    height: auto;
  }
  .grid-margin-y > .xxlarge-shrink {
    height: auto;
  }
  .grid-margin-y > .xxlarge-1 {
    height: calc(8.33333% - 1.875rem);
  }
  .grid-margin-y > .xxlarge-2 {
    height: calc(16.66667% - 1.875rem);
  }
  .grid-margin-y > .xxlarge-3 {
    height: calc(25% - 1.875rem);
  }
  .grid-margin-y > .xxlarge-4 {
    height: calc(33.33333% - 1.875rem);
  }
  .grid-margin-y > .xxlarge-5 {
    height: calc(41.66667% - 1.875rem);
  }
  .grid-margin-y > .xxlarge-6 {
    height: calc(50% - 1.875rem);
  }
  .grid-margin-y > .xxlarge-7 {
    height: calc(58.33333% - 1.875rem);
  }
  .grid-margin-y > .xxlarge-8 {
    height: calc(66.66667% - 1.875rem);
  }
  .grid-margin-y > .xxlarge-9 {
    height: calc(75% - 1.875rem);
  }
  .grid-margin-y > .xxlarge-10 {
    height: calc(83.33333% - 1.875rem);
  }
  .grid-margin-y > .xxlarge-11 {
    height: calc(91.66667% - 1.875rem);
  }
  .grid-margin-y > .xxlarge-12 {
    height: calc(100% - 1.875rem);
  }
}

.grid-frame.grid-margin-y {
  height: calc(100vh + 1.25rem);
}

@media print, screen and (min-width: 20em) {
  .grid-frame.grid-margin-y {
    height: calc(100vh + 1.25rem);
  }
}

@media print, screen and (min-width: 46.25em) {
  .grid-frame.grid-margin-y {
    height: calc(100vh + 1.875rem);
  }
}

@media print, screen and (min-width: 61.25em) {
  .grid-frame.grid-margin-y {
    height: calc(100vh + 1.875rem);
  }
}

@media screen and (min-width: 64em) {
  .grid-frame.grid-margin-y {
    height: calc(100vh + 1.875rem);
  }
}

@media screen and (min-width: 75em) {
  .grid-frame.grid-margin-y {
    height: calc(100vh + 1.875rem);
  }
}

@media screen and (min-width: 87.5em) {
  .grid-frame.grid-margin-y {
    height: calc(100vh + 1.875rem);
  }
}

@media print, screen and (min-width: 20em) {
  .grid-margin-y.smallish-grid-frame {
    height: calc(100vh + 1.25rem);
  }
}

@media print, screen and (min-width: 46.25em) {
  .grid-margin-y.medium-grid-frame {
    height: calc(100vh + 1.875rem);
  }
}

@media print, screen and (min-width: 61.25em) {
  .grid-margin-y.large-grid-frame {
    height: calc(100vh + 1.875rem);
  }
}

@media screen and (min-width: 64em) {
  .grid-margin-y.largish-grid-frame {
    height: calc(100vh + 1.875rem);
  }
}

@media screen and (min-width: 75em) {
  .grid-margin-y.xlarge-grid-frame {
    height: calc(100vh + 1.875rem);
  }
}

@media screen and (min-width: 87.5em) {
  .grid-margin-y.xxlarge-grid-frame {
    height: calc(100vh + 1.875rem);
  }
}

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

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

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

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

.align-spaced {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.align-left.vertical.menu > li > a {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.align-right.vertical.menu > li > a {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.align-center.vertical.menu > li > a {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

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

.align-self-top {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

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

.align-self-bottom {
  -ms-flex-item-align: end;
      align-self: flex-end;
}

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

.align-self-middle {
  -ms-flex-item-align: center;
      align-self: center;
}

.align-stretch {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.align-self-stretch {
  -ms-flex-item-align: stretch;
      align-self: stretch;
}

.align-center-middle {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
}

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

.small-order-2 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.small-order-3 {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

.small-order-4 {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}

.small-order-5 {
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}

.small-order-6 {
  -webkit-box-ordinal-group: 7;
      -ms-flex-order: 6;
          order: 6;
}

@media print, screen and (min-width: 20em) {
  .smallish-order-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .smallish-order-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .smallish-order-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .smallish-order-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .smallish-order-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .smallish-order-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
}

@media print, screen and (min-width: 46.25em) {
  .medium-order-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .medium-order-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .medium-order-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .medium-order-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .medium-order-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .medium-order-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
}

@media print, screen and (min-width: 61.25em) {
  .large-order-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .large-order-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .large-order-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .large-order-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .large-order-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .large-order-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
}

@media screen and (min-width: 64em) {
  .largish-order-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .largish-order-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .largish-order-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .largish-order-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .largish-order-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .largish-order-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
}

@media screen and (min-width: 75em) {
  .xlarge-order-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .xlarge-order-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .xlarge-order-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .xlarge-order-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .xlarge-order-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .xlarge-order-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
}

@media screen and (min-width: 87.5em) {
  .xxlarge-order-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .xxlarge-order-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .xxlarge-order-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .xxlarge-order-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .xxlarge-order-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .xxlarge-order-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
}

.flex-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-child-auto {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.flex-child-grow {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

.flex-child-shrink {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
}

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

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

.flex-dir-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

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

@media print, screen and (min-width: 20em) {
  .smallish-flex-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .smallish-flex-child-auto {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
  .smallish-flex-child-grow {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
  }
  .smallish-flex-child-shrink {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }
  .smallish-flex-dir-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .smallish-flex-dir-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .smallish-flex-dir-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .smallish-flex-dir-column-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

@media print, screen and (min-width: 46.25em) {
  .medium-flex-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .medium-flex-child-auto {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
  .medium-flex-child-grow {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
  }
  .medium-flex-child-shrink {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }
  .medium-flex-dir-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .medium-flex-dir-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .medium-flex-dir-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .medium-flex-dir-column-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

@media print, screen and (min-width: 61.25em) {
  .large-flex-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .large-flex-child-auto {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
  .large-flex-child-grow {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
  }
  .large-flex-child-shrink {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }
  .large-flex-dir-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .large-flex-dir-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .large-flex-dir-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .large-flex-dir-column-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

@media screen and (min-width: 64em) {
  .largish-flex-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .largish-flex-child-auto {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
  .largish-flex-child-grow {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
  }
  .largish-flex-child-shrink {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }
  .largish-flex-dir-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .largish-flex-dir-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .largish-flex-dir-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .largish-flex-dir-column-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

@media screen and (min-width: 75em) {
  .xlarge-flex-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .xlarge-flex-child-auto {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
  .xlarge-flex-child-grow {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
  }
  .xlarge-flex-child-shrink {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }
  .xlarge-flex-dir-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .xlarge-flex-dir-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .xlarge-flex-dir-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .xlarge-flex-dir-column-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

@media screen and (min-width: 87.5em) {
  .xxlarge-flex-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .xxlarge-flex-child-auto {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
  .xxlarge-flex-child-grow {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
  }
  .xxlarge-flex-child-shrink {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }
  .xxlarge-flex-dir-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .xxlarge-flex-dir-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .xxlarge-flex-dir-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .xxlarge-flex-dir-column-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

/*! normalize-scss | MIT/GPLv2 License | bit.ly/normalize-scss */
/* Document
       ========================================================================== */
/**
     * 1. Change the default font family in all browsers (opinionated).
     * 2. Correct the line height in all browsers.
     * 3. Prevent adjustments of font size after orientation changes in
     *    IE on Windows Phone and in iOS.
     */
html {
  font-family: sans-serif;
  /* 1 */
  line-height: 1.15;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 3 */
  -webkit-text-size-adjust: 100%;
  /* 3 */
}

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

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

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

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

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

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

/**
     * Add the correct display in IE.
     */
main {
  display: block;
}

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

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

/**
     * Remove the outline on focused links when they are also active or hovered
     * in all browsers (opinionated).
     */
a:active,
a:hover {
  outline-width: 0;
}

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

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

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

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

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

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

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

/**
     * Show the overflow in IE.
     */
button {
  overflow: visible;
}

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

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

button,
[type="button"],
[type="reset"],
[type="submit"] {
  /**
       * Remove the inner border and padding in Firefox.
       */
  /**
       * Restore the focus styles unset by the previous rule.
       */
}

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

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
     * Show the overflow in Edge.
     */
input {
  overflow: visible;
}

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

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

/**
     * 1. Correct the odd appearance in Chrome and Safari.
     * 2. Correct the outline style in Safari.
     */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
  /**
       * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
       */
}

[type="search"]::-webkit-search-cancel-button, [type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

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

/**
     * Change the border, margin, and padding in all browsers (opinionated).
     */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

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

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

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

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

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

/*
     * Add the correct display in IE 9-.
     */
menu {
  display: block;
}

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

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

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

/*
/ _base.forms.scss
*/
label {
  display: inline-block;
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6875rem;
  cursor: pointer;
}

input[type='checkbox']:focus + label:before,
input[type='radio']:focus + label:before {
  outline: 2px solid #FFBF47;
}

input[type='checkbox']:disabled + label:before,
input[type='checkbox']:disabled + label:after,
input[type='radio']:disabled + label:before,
input[type='radio']:disabled + label:after {
  opacity: 0.5;
}

input[type='checkbox'] + label,
input[type='radio'] + label {
  position: relative;
  padding-left: 3.5625rem;
  line-height: 2rem;
}

input[type='checkbox'] + label:before,
input[type='radio'] + label:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  display: block;
  height: 2rem;
  width: 2rem;
  background-color: #FFF;
  border: 2px solid;
}

input[type='checkbox']:checked + label:after,
input[type='radio']:checked + label:after {
  content: '';
  position: absolute;
  top: 0.3125rem;
  left: 0.3125rem;
  z-index: 0;
  display: block;
  height: 1.375rem;
  width: 1.375rem;
}

input[type='checkbox'] + label:before {
  border-color: #999999;
}

input[type='checkbox']:checked + label:after {
  content: '';
  background-color: #4d4d4d;
}

input[type='radio'] + label:before {
  border-color: #999999;
  border-radius: 50%;
}

input[type='radio']:checked + label:after {
  content: '';
  background-color: #4d4d4d;
  border-radius: 50%;
}

[placeholder]:focus::-webkit-input-placeholder {
  color: transparent;
}

[placeholder]:focus::-moz-placeholder {
  color: transparent;
}

input::-webkit-input-placeholder {
  color: gray;
}

input::-moz-placeholder {
  color: gray;
}

input:-ms-input-placeholder {
  color: gray;
}

textarea,
input[type='text'],
input[type='button'],
input[type='submit'],
input[type='search'] {
  -webkit-appearance: none;
}

input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

textarea,
input[type='text'],
input[type='tel'],
input[type='email'],
input[type='password'],
input[type='datetime'],
input[type='datetime-local'],
input[type='date'],
input[type='month'],
input[type='time'],
input[type='week'],
input[type='number'],
input[type='url'],
input[type='search'],
input[type='color'] {
  display: block;
  margin: 0 0 1.5rem;
  padding: 0.8125rem 0.875rem 1rem;
  width: 100%;
  max-width: 22rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #FFF;
  border: 1px solid #999999;
  border-radius: 0;
  color: #404041;
  font-family: "proxima-nova", sans-serif;
  font-size: 1.125rem;
  line-height: 1.625rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

textarea[disabled],
input[type='text'][disabled],
input[type='tel'][disabled],
input[type='email'][disabled],
input[type='password'][disabled],
input[type='datetime'][disabled],
input[type='datetime-local'][disabled],
input[type='date'][disabled],
input[type='month'][disabled],
input[type='time'][disabled],
input[type='week'][disabled],
input[type='number'][disabled],
input[type='url'][disabled],
input[type='search'][disabled],
input[type='color'][disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

textarea[readonly],
input[type='text'][readonly],
input[type='tel'][readonly],
input[type='email'][readonly],
input[type='password'][readonly],
input[type='datetime'][readonly],
input[type='datetime-local'][readonly],
input[type='date'][readonly],
input[type='month'][readonly],
input[type='time'][readonly],
input[type='week'][readonly],
input[type='number'][readonly],
input[type='url'][readonly],
input[type='search'][readonly],
input[type='color'][readonly] {
  border-color: #d9d9d9;
}

textarea.error,
input[type='text'].error,
input[type='tel'].error,
input[type='email'].error,
input[type='password'].error,
input[type='datetime'].error,
input[type='datetime-local'].error,
input[type='date'].error,
input[type='month'].error,
input[type='time'].error,
input[type='week'].error,
input[type='number'].error,
input[type='url'].error,
input[type='search'].error,
input[type='color'].error {
  border-color: #F00;
  outline: 1px solid #F00;
}

select {
  display: block;
  margin: 0 0 1.5rem;
  padding: 0.8125rem 0.875rem 1rem;
  width: 100%;
  max-width: 22rem;
  background-color: #FFF;
  border: 1px solid #999999;
  border-radius: 0;
  color: #404041;
  font-family: "proxima-nova", sans-serif;
  font-size: 1.125rem;
  line-height: 1.625rem;
}

select[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

input[type='checkbox'] {
  border-radius: 0;
}

input[type='checkbox'],
input[type='radio'] {
  margin: 0 10px 0 0;
  padding: 0;
  height: 13px;
  width: 13px;
}

/*
/ _base.links.scss
*/

::selection {
  background-color: #2A5355;
  color: #FFF;
  text-shadow: none;
}

a:focus {
  background-color: #FFBF47 !important;
  color: #000 !important;
}

button > svg {
  pointer-events: none;
}

a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 3px solid #FFBF47;
}

@media screen and (-ms-high-contrast: active) {
  a:focus,
  button:focus,
  input:focus,
  textarea:focus,
  select:focus {
    background-color: Highlight;
    color: HighlightText;
  }
}

a {
  text-decoration: none;
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}

a:not([class]) {
  color: #404041;
  text-decoration: underline;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip: ink;
}

a.tel {
  color: inherit;
  text-decoration: none;
  cursor: text;
}

.touchevents a.tel {
  color: inherit;
  text-decoration: underline;
}

a.tel:hover {
  color: inherit;
}

/*
/ _base.page.scss
*/
html {
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1.2;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body {
  height: 100%;
  background-color: #FFF;
  color: #404041;
}

img {
  max-width: 100%;
}

p {
  -webkit-margin-after: 0;
  -webkit-margin-before: 0;
  -webkit-margin-end: 0;
  -webkit-margin-start: 0;
}

[hidden] {
  display: none !important;
}

/*
/ _base.type.scss
*/
body {
  font-family: "proxima-nova", sans-serif;
}

blockquote {
  -webkit-margin-after: 0;
  -webkit-margin-before: 0;
  -webkit-margin-end: 0;
  -webkit-margin-start: 0;
}

ul,
ol {
  -webkit-margin-after: 0;
  -webkit-margin-before: 0;
  -webkit-margin-end: 0;
  -webkit-margin-start: 0;
  -webkit-padding-start: 0;
}

h1,
.h1 {
  font-weight: 300;
}

h2,
.h2 {
  font-weight: 700;
}

h3,
.h3 {
  font-weight: 300;
}

h4,
.h4 {
  font-weight: 300;
}

h5,
.h5 {
  font-weight: 600;
}

/*
/ _buttons.scss
*/
.c-button, .c-rte__button {
  position: relative;
  display: inline-block;
  padding: 0;
  background-clip: border-box;
  background-color: transparent;
  border: 1px solid transparent;
  color: #404041;
  font-weight: 700;
  text-decoration: underline;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip: ink;
  cursor: pointer;
  -webkit-appearance: none;
  font-size: 16px;
  font-size: 1rem;
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
}

.c-button[disabled], .c-rte__button[disabled] {
  opacity: 0.2;
  cursor: default;
}

.c-button--destructive {
  color: #BF4E38;
  font-weight: bold;
}

.c-button--basic, .c-button--brand, .c-rte__button, .c-standard-form input[type='submit'],
.c-standard-form input[type='button'], .th-standard-form input[type='submit'], .c-button--neutral, .c-button--brand-alt, .c-button--neutral-alt, .c-button--destructive, .c-resources-card .c-button--brand, .c-resources-card .c-rte__button {
  padding: 1.5rem 5.625rem;
}

.c-button--basic, .c-button--brand, .c-rte__button, .c-standard-form input[type='submit'],
.c-standard-form input[type='button'], .th-standard-form input[type='submit'], .c-button--neutral, .c-button--brand-alt, .c-button--neutral-alt, .c-button--destructive, .c-resources-card .c-button--brand, .c-resources-card .c-rte__button {
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  font-size: 18px;
  font-size: 1.125rem;
}

.c-button--basic {
  border: 3px solid #508050;
}

.c-button--basic:hover:not(:disabled), .c-button--basic:focus:not(:disabled) {
  color: #FFF;
}

.c-button--brand, .c-rte__button, .c-standard-form input[type='submit'],
.c-standard-form input[type='button'], .th-standard-form input[type='submit'] {
  background-color: #BF4E38;
  border: 3px solid #508050;
  color: #BF4E38;
}

.c-button--brand:hover:not(:disabled), .c-rte__button:hover:not(:disabled), .c-standard-form input:hover:not(:disabled)[type='submit'],
.c-standard-form input:hover:not(:disabled)[type='button'], .th-standard-form input:hover:not(:disabled)[type='submit'], .c-button--brand:focus:not(:disabled), .c-rte__button:focus:not(:disabled), .c-standard-form input:focus:not(:disabled)[type='submit'],
.c-standard-form input:focus:not(:disabled)[type='button'], .th-standard-form input:focus:not(:disabled)[type='submit'] {
  background-color: #983e2c;
  color: #FFF;
}

.c-button--brand:hover:not(:disabled) .c-button__icon use, .c-rte__button:hover:not(:disabled) .c-button__icon use, .c-standard-form input:hover:not(:disabled)[type='submit'] .c-button__icon use, .c-standard-form input:hover:not(:disabled)[type='button'] .c-button__icon use, .th-standard-form input:hover:not(:disabled)[type='submit'] .c-button__icon use, .c-button--brand:focus:not(:disabled) .c-button__icon use, .c-rte__button:focus:not(:disabled) .c-button__icon use, .c-standard-form input:focus:not(:disabled)[type='submit'] .c-button__icon use, .c-standard-form input:focus:not(:disabled)[type='button'] .c-button__icon use, .th-standard-form input:focus:not(:disabled)[type='submit'] .c-button__icon use {
  fill: #FFF;
}

.c-button--neutral {
  background-color: #BF4E38;
  border: 3px solid transparent;
  color: #BF4E38;
}

.c-button--neutral:hover:not(:disabled), .c-button--neutral:focus:not(:disabled) {
  background-color: #983e2c;
  color: #FFF;
}

.c-button--neutral:hover:not(:disabled) .c-button__icon use, .c-button--neutral:focus:not(:disabled) .c-button__icon use {
  fill: #FFF;
}

.c-button--cover {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  width: 100%;
}

.c-button__icon {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  max-width: 1.125rem;
  max-height: 1.125rem;
  pointer-events: none;
}

.c-button__icon--left {
  left: 1.5rem;
  margin-left: 0;
}

.c-button__icon--right {
  right: 1.5rem;
  margin-right: 0;
}

.c-button--brand .c-button__icon use, .c-rte__button .c-button__icon use, .c-standard-form input[type='submit'] .c-button__icon use, .c-standard-form input[type='button'] .c-button__icon use, .th-standard-form input[type='submit'] .c-button__icon use {
  fill: #983e2c;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
          box-shadow: none;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover, .mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover, .mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before, .mfp-arrow:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    -ms-transform: scale(0.75);
        transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    -ms-transform-origin: 0;
        transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    -ms-transform-origin: 100%;
        transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}

/*
/ _accessmenu.scss
*/
.c-accessmenu {
  margin: 0;
  padding: 0;
}

.c-accessmenu li {
  list-style: none;
}

.c-accessmenu a {
  position: absolute;
  display: block;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  color: #404041;
  text-decoration: none;
  text-transform: uppercase;
}

.c-accessmenu a:focus {
  position: static;
  display: block;
  padding: 1em 0;
  height: auto;
  width: 100%;
  overflow: visible;
  clip: auto;
  background-color: #2A5355;
  outline: 0;
  text-align: center;
}

@media screen and (-ms-high-contrast: active) {
  .c-accessmenu a:focus {
    color: WindowText;
  }
}

.c-browser-upgrade {
  margin: 0;
  padding: 1.5rem 0;
  background-color: #FF6;
}

.c-browser-upgrade a {
  color: #404041;
}

.c-cookie {
  position: relative;
  z-index: 2;
  display: none;
  background-color: #2F7376;
  color: #FFF;
}

.no-js .c-cookie {
  display: block;
}

.c-cookie__inner {
  position: relative;
  padding: 3rem 0;
  min-height: calc(2.75rem + 3px * 2);
}

@media screen and (max-width: 46.1875em) {
  .c-cookie__inner {
    text-align: center;
  }
}

.c-cookie__title {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.c-cookie__body p {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

.c-cookie__body a {
  color: #FFF;
}

@media print, screen and (min-width: 46.25em) {
  .c-cookie__actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.c-cookie__link {
  display: inline-block;
  padding: 1.5rem;
  color: #FFF;
  font-size: 1.125rem;
  text-decoration: underline;
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}

@media print, screen and (min-width: 46.25em) {
  .c-cookie__link {
    margin-left: 1.5rem;
  }
}

.c-cookie__link:hover {
  color: #FFF;
}

@media screen and (max-width: 61.1875em) {
  .c-rte table {
    width: 100%;
    table-layout: fixed;
  }
  .c-rte tr:first-of-type th,
  .c-rte tr:first-of-type td {
    display: none;
  }
  .c-rte td {
    display: table-row;
  }
  .c-rte td:before {
    content: attr(data-label);
    display: table-cell;
    padding: 1.5rem;
    width: 40%;
    background-color: rgba(6, 167, 226, 0.16);
    border-right: 15px solid #FFF;
    font-weight: 700;
    text-align: right;
  }
  .c-rte td:last-child {
    position: relative;
  }
  .c-rte td:last-child:before {
    border-bottom: 1px solid white;
  }
}

.c-rte table {
  border-spacing: 0;
}

.c-rte table tr:first-of-type th,
.c-rte table tr:first-of-type td {
  position: relative;
  background-color: rgba(6, 167, 226, 0.16);
  font-weight: 700;
}

.c-rte table tr:first-of-type th:not(:first-child),
.c-rte table tr:first-of-type td:not(:first-child) {
  border-left: 1px solid #FFF;
}

.c-rte table tr:not(:first-child) td {
  border-bottom: 1px solid #999999;
}

.c-rte table th,
.c-rte table td {
  padding: 1.5rem;
  text-align: left;
}

@media screen and (max-width: 61.1875em) {
  .c-small-newsletter {
    margin-bottom: 2.5rem;
  }
}

.c-small-newsletter__label {
  display: none;
}

.c-small-newsletter__title {
  display: block;
  margin-top: 0;
  margin-bottom: 0.9375rem;
  font-size: 1.125rem;
  font-weight: 400;
}

@media print, screen and (min-width: 46.25em) {
  .c-small-newsletter__title {
    font-size: 1.125rem;
  }
}

@media screen and (min-width: 64em) {
  .c-small-newsletter__title {
    font-size: 1rem;
  }
}

.c-small-newsletter__form-group {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 3.625rem;
  width: 100%;
}

@media screen and (min-width: 64em) {
  .c-small-newsletter__form-group {
    height: 3rem;
  }
}

.c-small-newsletter__input, .c-small-newsletter__button {
  height: 100%;
  background-color: #FFF;
  border: 0 !important;
}

.c-small-newsletter__input {
  -ms-flex-negative: 1;
      flex-shrink: 1;
  padding: 0 0.625rem;
  color: #FFF;
  font-size: 0.875rem;
}

@media screen and (max-width: 61.1875em) {
  .c-small-newsletter__input {
    width: 100%;
  }
}

.c-small-newsletter__button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 0.75rem;
  border: 0;
  color: #2A5355;
  font-size: 1.625rem;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.c-small-newsletter__button:hover {
  background-color: #2A5355;
  color: #FFF;
}

.c-small-newsletter ::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.c-small-newsletter ::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.c-small-newsletter ::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.c-small-newsletter .field-validation-error {
  position: absolute;
  bottom: -115%;
}

.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline,
.has-success.radio label,
.has-success.checkbox label,
.has-success.radio-inline label,
.has-success.checkbox-inline label {
  color: #404041 !important;
}

.has-error .help-block,
.has-error .control-label {
  color: #F00 !important;
}

.has-error .validation-summary-errors {
  margin-bottom: 3rem;
  padding: 1.5rem;
  background-color: #F00;
}

.has-error .validation-summary-errors .list-group {
  margin-left: 3rem;
}

.c-to-top__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 1.25rem;
  margin-left: auto;
}

.c-to-top {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 3.75rem;
  width: 3.75rem;
  background-color: transparent;
  border: 2px solid #FFF;
  border-radius: 100%;
  fill: #FFF;
  cursor: pointer;
  -webkit-transition: background-color fill ease-in-out;
  transition: background-color fill ease-in-out;
}

@media screen and (min-width: 64em) {
  .c-to-top {
    height: 2.5rem;
    width: 2.5rem;
  }
}

.c-to-top:hover, .c-to-top:focus {
  background-color: #FFF;
  fill: #508050;
}

.c-to-top__icon {
  max-width: 1.5rem;
  max-height: 1.5rem;
}

@media screen and (min-width: 64em) {
  .c-to-top__icon {
    max-width: 1.25rem;
    max-height: 1.25rem;
  }
}

.c-banner {
  padding-top: calc(710 /1480 * 100%);
  background: no-repeat scroll top center;
  background-size: contain;
}

@media screen and (min-width: 46.25em) {
  .c-banner {
    position: relative;
    z-index: 1;
    padding: 0;
    min-height: 44.375rem;
    background-size: cover;
  }
}

.c-banner__content {
  padding: 1.875rem 1.25rem;
  background: #FFF;
  -webkit-box-shadow: 0 2px 7px 2px rgba(0, 0, 0, 0.25);
          box-shadow: 0 2px 7px 2px rgba(0, 0, 0, 0.25);
}

@media screen and (min-width: 46.25em) {
  .c-banner__content {
    position: absolute;
    padding: 2.5rem;
    bottom: -2.9375rem;
    left: 8.1875rem;
    z-index: 0;
    margin-right: 1.25rem;
    max-width: 49.375rem;
    -webkit-box-shadow: 0 2px 7px 2px rgba(0, 0, 0, 0.25);
            box-shadow: 0 2px 7px 2px rgba(0, 0, 0, 0.25);
  }
}

.c-banner__ribbon {
  display: block;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.c-banner__title {
  margin-bottom: 0.75rem;
  font-size: 1.75rem;
  letter-spacing: 0;
  font-weight: 400;
}

@media screen and (min-width: 46.25em) {
  .c-banner__title {
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
  }
}

.c-banner__summary {
  margin-bottom: 1.5rem;
  font-size: 1.375rem;
  letter-spacing: 0;
  line-height: 2.8125rem;
}

@media screen and (min-width: 46.25em) {
  .c-banner__summary {
    margin-bottom: 1.5rem;
    font-size: 1.625rem;
    letter-spacing: 0;
    line-height: 2.8125rem;
  }
}

.c-breadcrumb {
  padding: 1.5rem 0;
}

.c-breadcrumb__list {
  padding: 0;
  font-size: 1rem;
}

.c-breadcrumb__link {
  color: #508050;
}

.c-breadcrumb__item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
}

@media screen and (max-width: 61.1875em) {
  .c-breadcrumb__item:not(:nth-last-child(2)) {
    display: none;
  }
  .c-breadcrumb__item:nth-last-child(2) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .c-breadcrumb__item:nth-last-child(2) .c-breadcrumb__icon {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-left: 0;
    -webkit-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }
  .c-breadcrumb__item:nth-last-child(2) .c-breadcrumb__link {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.c-breadcrumb__link:hover {
  text-decoration: underline;
}

.c-breadcrumb__icon {
  margin: 0 0.625rem;
  height: 0.5rem;
  width: 0.5rem;
  font-size: 0.875rem;
  vertical-align: middle;
}

.c-button--basic, .c-button--brand, .c-rte__button, .c-standard-form input[type='submit'],
.c-standard-form input[type='button'], .th-standard-form input[type='submit'], .c-button--neutral, .c-button--brand-alt, .c-button--neutral-alt, .c-button--destructive, .c-resources-card .c-button--brand, .c-resources-card .c-rte__button {
  padding: 1rem 2rem;
  font-family: "proxima-nova", sans-serif;
  font-weight: normal;
  border-width: 3px;
}

.c-button--brand, .c-rte__button, .c-standard-form input[type='submit'],
.c-standard-form input[type='button'], .th-standard-form input[type='submit'] {
  border-color: #BF4E38;
  -webkit-box-shadow: -4px 0 10px 3px rgba(0, 0, 0, 0.11);
          box-shadow: -4px 0 10px 3px rgba(0, 0, 0, 0.11);
  background-color: #BF4E38;
  color: #FFF;
}

.c-button--brand:hover, .c-rte__button:hover, .c-standard-form input:hover[type='submit'],
.c-standard-form input:hover[type='button'], .th-standard-form input:hover[type='submit'] {
  background-color: #983e2c;
  border-color: #983e2c;
  color: #FFF;
}

.c-button--brand:hover:not(:disabled), .c-rte__button:hover:not(:disabled), .c-standard-form input:hover:not(:disabled)[type='submit'],
.c-standard-form input:hover:not(:disabled)[type='button'], .th-standard-form input:hover:not(:disabled)[type='submit'], .c-button--brand:focus:not(:disabled), .c-rte__button:focus:not(:disabled), .c-standard-form input:focus:not(:disabled)[type='submit'],
.c-standard-form input:focus:not(:disabled)[type='button'], .th-standard-form input:focus:not(:disabled)[type='submit'] {
  background-color: #983e2c;
  border-color: #983e2c;
  color: #FFF;
}

.c-button--neutral {
  padding: 0;
  color: #08080D;
  text-decoration: underline;
  background-color: transparent;
}

.c-button--neutral:hover {
  text-decoration: underline;
  color: #983e2c;
  background-color: transparent;
}

.c-button--neutral:hover:not(:disabled), .c-button--neutral:focus:not(:disabled) {
  color: #983e2c;
  text-decoration: underline;
  background-color: transparent;
}

.c-button--brand-alt {
  border-color: #2F7376;
  -webkit-box-shadow: -4px 0 10px 3px rgba(0, 0, 0, 0.11);
          box-shadow: -4px 0 10px 3px rgba(0, 0, 0, 0.11);
  background-color: #2F7376;
  color: #FFF;
  border: 3px solid #2F7376;
}

.c-button--brand-alt:hover {
  border-color: #204f52;
  color: #FFF;
  background-color: #204f52;
}

.c-button--brand-alt:hover:not(:disabled), .c-button--brand-alt:focus:not(:disabled) {
  color: #FFF;
}

.c-button--neutral-alt {
  padding: 0;
  color: #08080D;
  text-decoration: underline;
  background-color: transparent;
}

.c-button--neutral-alt:hover {
  text-decoration: underline;
  color: #204f52;
  background-color: transparent;
}

.c-button--neutral-alt:hover:not(:disabled), .c-button--neutral-alt:focus:not(:disabled) {
  color: #204f52;
  text-decoration: underline;
}

.c-button--destructive {
  background: #BF4E38;
  border-color: #BF4E38;
  -webkit-box-shadow: -4px 0 10px 3px rgba(0, 0, 0, 0.11);
          box-shadow: -4px 0 10px 3px rgba(0, 0, 0, 0.11);
  outline-color: #ab4632;
  color: white;
}

.c-button--destructive:hover {
  background: #ab4632;
  border-color: #ab4632;
}

.c-button--destructive:hover:not(:disabled), .c-button--destructive:focus:not(:disabled) {
  color: white;
}

.c-card {
  position: relative;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.c-card__img {
  height: 15.625rem;
  background-color: #2A5355;
  background-position: center;
  background-size: cover;
}

.c-card__title {
  margin-top: 1.75rem;
  color: #508050;
  font-family: "proxima-nova", sans-serif;
  font-size: 1.75rem;
  font-weight: 400;
}

@media screen and (min-width: 46.25em) {
  .c-card__title {
    font-size: 2rem;
  }
}

.c-card__content {
  padding: 0.9375rem;
}

.c-card__content p {
  margin-bottom: 1.875rem;
  line-height: 1.5;
}

.c-card__content p:last-of-type {
  margin: 0;
}

.c-card__description + .c-button, .c-card__description + .c-rte__button {
  margin-top: 2.5rem;
}

.c-card__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1.875rem 0;
}

.c-activity-tile {
  -webkit-box-shadow: 0 2px 10px 0 rgba(8, 8, 13, 0.2);
          box-shadow: 0 2px 10px 0 rgba(8, 8, 13, 0.2);
  background: #FFF;
  color: #28313A;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 6.25rem;
  margin: 1.25rem auto;
  width: 100%;
  position: relative;
}

.c-activity-tile__image-container {
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 6.25rem;
  height: 100%;
  min-height: 6.25rem;
  margin: auto 0;
}

@media screen and (min-width: 46.25em) {
  .c-activity-tile__image-container {
    width: 16.875rem;
  }
}

.c-activity-tile__image-container + .c-activity-tile__content {
  margin-left: auto;
}

@media print, screen and (min-width: 46.25em) {
  .c-activity-tile {
    margin: 1.875rem auto;
  }
}

.sc-edit .c-activity-tile__image {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.c-activity-tile__content {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 1.25rem 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: calc(100% - 100px);
}

@media screen and (min-width: 46.25em) {
  .c-activity-tile__content {
    padding: 1.875rem;
    width: calc(100% - 270px);
  }
}

.c-activity-tile__title {
  color: #2A5355;
  margin: 0 0 0.3125rem;
  font-size: 1rem;
  font-weight: 600;
}

@media screen and (min-width: 46.25em) {
  .c-activity-tile__title {
    font-size: 2rem;
    margin: 0 0 1.25rem;
  }
}

.c-activity-tile__date,
.c-activity-tile__location {
  display: inline-block;
  margin: 0 0 0.625rem;
  font-size: 0.8125rem;
}

@media screen and (min-width: 46.25em) {
  .c-activity-tile__date,
  .c-activity-tile__location {
    margin: 0 0 1.875rem;
  }
}

.c-activity-tile__location-divider {
  display: none;
  padding: 0 1.25rem;
}

.c-activity-tile__location-divider:before {
  background: #838386;
  content: "";
  display: block;
  height: 14px;
  width: 1px;
}

@media screen and (min-width: 46.25em) {
  .c-activity-tile__location-divider {
    display: inline-block;
  }
}

.c-activity-tile__text {
  display: none;
  font-size: 1.125rem;
  margin: 0;
  margin-bottom: 1.5rem;
  line-height: 1.875rem;
}

@media screen and (min-width: 46.25em) {
  .c-activity-tile__text {
    display: block;
  }
}

.c-checkbox-group__label {
  display: inline-block;
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6875rem;
  cursor: pointer;
}

.c-checkbox-group__list {
  list-style: none;
}

@media screen and (min-width: 46.25em) {
  .c-checkbox-group__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media screen and (min-width: 46.25em) {
  .c-checkbox-group__list-item {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
}

.c-community-search-heading {
  padding: 0.625rem 0;
}

@media screen and (min-width: 46.25em) {
  .c-community-search-heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 2.5rem 0 0.5rem;
  }
}

.c-community-search-heading__title {
  font-size: 2.5rem;
  font-weight: 400;
}

.c-community-search {
  background: rgba(131, 131, 134, 0.1);
  will-change: contents;
}

.c-community-search__inner {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  max-width: 60.625rem;
}

@media screen and (min-width: 46.25em) {
  .c-community-search__filters {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 0 3.125rem;
  }
}

@media screen and (min-width: 46.25em) {
  .c-community-search__column {
    width: 70%;
  }
  .c-community-search__column:first-child {
    width: 40%;
    padding: 0 8.125rem 0 0;
  }
}

.c-community-search__btn-wrapper {
  border-top: 1px solid rgba(131, 131, 134, 0.5);
  padding: 2.5rem 1.25rem 0;
  text-align: center;
  font-size: 1.125rem;
}

.c-community-search__results, .c-community-search__btn-container {
  max-width: 48.125rem;
  margin: 0 auto;
}

@media screen and (min-width: 46.25em) {
  .c-community-search__results, .c-community-search__btn-container {
    padding: 1.875rem 0;
  }
}

.c-community-search__results--three-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 100%;
}

.c-community-search__btn-container {
  text-align: center;
}

.c-community-search__no-results {
  font-weight: 700;
  font-family: "proxima-nova", sans-serif;
  max-width: 48.125rem;
  margin: 1.25rem auto;
  font-size: 2rem;
  text-align: center;
}

.c-expand-filters {
  color: #508050;
  margin-left: auto;
  font-size: 1.125rem;
  font-weight: 700;
  text-decoration: underline;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1.5;
}

.c-expand-filters:hover {
  text-decoration: none;
}

.c-expand-filters:after {
  background: url(/assets/img/wessexwater/png/chevron_down.png) no-repeat center center;
}

.c-expand-filters--open:after {
  background: url(/assets/img/wessexwater/png/cross.png) no-repeat center center;
}

.c-expand-filters:after, .c-expand-filters--open:after {
  background-size: 1.875rem;
  content: '';
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  margin-left: 0.75rem;
}

.c-project-card {
  position: relative;
  margin: 1.25rem 0.625rem;
  width: calc(100% - 1.25rem);
  background-color: #FFF;
  -webkit-box-shadow: 0 2px 7px 2px rgba(8, 8, 13, 0.25);
          box-shadow: 0 2px 7px 2px rgba(8, 8, 13, 0.25);
}

@media screen and (min-width: 46.25em) {
  .c-project-card {
    margin: 0 1.25rem 3.125rem;
    width: calc(50% - 40px);
  }
}

@media screen and (min-width: 61.25em) {
  .c-project-card {
    margin: 0 1.25rem 3.125rem;
    width: calc(33.33% - 40px);
  }
}

.c-project-card__img {
  display: block;
  height: 12.5rem;
  width: 100%;
  background-position: center center;
  background-size: cover;
}

.c-project-card__title, .c-project-card__link {
  color: #2A5355;
}

.c-project-card__link:hover {
  text-decoration: underline;
}

.c-project-card__link:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  display: block;
  height: 100%;
  width: 100%;
}

.c-project-card__title {
  margin: 0 0 0.9375rem;
  font-size: 1.875rem;
  font-weight: 600;
}

.c-project-card__content {
  padding: 1.25rem;
  background-color: #FFF;
}

.c-project-card__ribbon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0.625rem;
  color: #FFF;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.c-project-card__date, .c-project-card__location {
  font-size: 0.8125rem;
  font-weight: 400;
}

.c-project-card__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1.25rem;
}

.c-project-card__location-divider {
  display: inline-block;
  padding: 0 1.25rem;
}

.c-project-card__location-divider:before {
  content: '';
  display: block;
  height: 1.5rem;
  width: 0.0625rem;
  background: #838386;
}

.c-project-card__summary {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  letter-spacing: 0;
  line-height: 1.875rem;
}

.c-contact-info {
  margin-top: 0.9375rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (min-width: 64em) {
  .c-contact-info {
    margin-top: 1.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.c-contact-info__title {
  margin-bottom: 0.5rem;
}

.c-contact-info__tel {
  margin-bottom: 0.5rem;
  color: #404041;
}

.c-contact-info__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 2rem;
}

@media screen and (min-width: 64em) {
  .c-contact-info__group {
    margin-bottom: 1rem;
    margin-left: 2rem;
    max-width: 46.875rem;
  }
}

.c-contact-info__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 25rem;
}

.c-contact-info__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 2.375rem 1rem 0;
  max-width: 10rem;
  max-height: 10rem;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.c-contact-info__address-top {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (min-width: 46.25em) {
  .c-contact-info__address-top {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-top: 5rem;
  }
}

.c-contact-info__address-bottom {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 2rem;
}

@media screen and (min-width: 46.25em) {
  .c-contact-info__address-bottom {
    margin-top: 0;
  }
}

.c-contact-info__link {
  color: #BF4E38;
  word-break: break-all;
  font-size: 1.125rem;
  line-height: 1.5;
  text-decoration: underline;
}

.c-contact-info__link:hover {
  color: #508050;
  text-decoration: underline;
}

.c-contact-info__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

@media screen and (min-width: 64em) {
  .c-contact-info__bottom {
    margin-top: 4rem;
    margin-left: 3.125rem;
  }
}

.c-contact-info__map {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 46.875rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 1.5rem;
  padding: 0;
}

@media screen and (min-width: 64em) {
  .c-contact-info__map {
    margin-left: 2rem;
  }
}

.c-contact-info__map--title {
  font-size: 1.375rem;
  color: #2F7376;
}

.c-cta {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.875rem 0.9375rem;
  font-size: 1.125rem;
  text-transform: uppercase;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.c-cta__text {
  padding-bottom: 0.125rem;
  font-family: "proxima-nova-bold", sans-serif;
}

.c-cta__icon {
  margin-left: 0.9375rem;
  height: 0.625rem;
  width: 0.625rem;
}

.c-cta + .c-cta {
  margin-top: 1.25rem;
}

.c-document-download {
  position: relative;
  z-index: 0;
  margin-top: 3rem;
  padding: 3rem 1.5rem;
  background-color: #2F7376;
  border-top: 0.375rem solid #2A5355;
}

.c-document-download:first-child {
  margin-top: 0;
}

.c-document-download__list {
  list-style-type: none;
}

.c-document-download__item + .c-document-download__item {
  margin-top: 1.5625rem;
}

.c-document-download__item:last-of-type {
  margin-bottom: none;
}

.c-document-download__title {
  margin: 0 0 0.9375rem;
  color: #FFF;
  font-size: 1.375rem;
}

.c-document-download__title + .c-document-download__desc {
  margin-top: 0.9375rem;
}

.c-document-download__title + .c-document-download__list {
  margin-top: 1.875rem;
}

.c-document-download__desc {
  margin: 0 0 1.875rem;
  color: #FFF;
  font-size: 1.125rem;
  line-height: 1.3;
}

.c-document-download__link {
  display: inline-block;
  padding: 0.625rem 0;
  color: #FFF;
  font-size: 1rem;
  letter-spacing: inherit;
  text-transform: uppercase;
}

.c-document-download__link:first-of-type {
  padding-top: 0;
}

.c-document-download__link:last-of-type {
  padding-bottom: 0;
}

.c-document-download__link:focus, .c-document-download__link:hover {
  text-decoration: underline;
}

.c-document-download__link-inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-document-download__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 0.9375rem;
  height: 1.625rem;
  width: 1.2875rem;
  fill: #FFF;
}

/*
/ _error.scss
*/
.c-error {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}

.c-error__content {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  padding: 3rem 0;
}

@media screen and (min-width: 61.25em) {
  .c-error__content {
    padding: 5.625rem 0;
  }
}

.c-error__header {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  padding: 2.5rem 0;
  background-color: #BF4E38;
}

.c-error__logo {
  display: block;
  margin: auto;
  max-width: 9.375rem;
}

@media screen and (min-width: 61.25em) {
  .c-error__logo {
    margin: 0;
    height: 2.1875rem;
  }
}

.c-error__contact-number {
  color: #FFF;
  text-align: center;
}

@media screen and (min-width: 61.25em) {
  .c-error__contact-number {
    text-align: right;
  }
}

.c-error__footer {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  padding: 2.5rem 0;
  background-color: #BF4E38;
}

.c-contact {
  margin: 3.125rem auto 0 auto;
}

@media screen and (min-width: 46.25em) {
  .c-contact {
    margin: 0 0 2.8125rem 0;
  }
}

@media screen and (min-width: 64em) {
  .c-contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0;
  }
}

.c-contact__tel,
.c-contact__email,
.c-contact__email-link,
.c-contact__address {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.5;
  text-align: left;
}

@media print, screen and (min-width: 46.25em) {
  .c-contact__tel,
  .c-contact__email,
  .c-contact__email-link,
  .c-contact__address {
    font-size: 1.125rem;
  }
}

@media screen and (min-width: 64em) {
  .c-contact__tel,
  .c-contact__email,
  .c-contact__email-link,
  .c-contact__address {
    font-size: 1rem;
  }
}

.c-contact__tel > span,
.c-contact__email > span,
.c-contact__email-link > span,
.c-contact__address > span {
  display: block;
}

.c-contact__address {
  margin-bottom: 3rem;
}

.c-contact__email-link {
  color: #FFF;
  word-break: break-all;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.c-contact__email-link:hover {
  color: #FFF;
  text-decoration: underline;
}

.c-contact__title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
}

@media print, screen and (min-width: 46.25em) {
  .c-contact__title {
    font-size: 1.125rem;
  }
}

@media screen and (min-width: 64em) {
  .c-contact__title {
    font-size: 1rem;
  }
}

.c-contact__title--theme-one {
  color: #FFF;
}

.c-hygiene {
  position: relative;
}

@media screen and (min-width: 64em) {
  .c-hygiene {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.c-hygiene__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media print, screen and (min-width: 46.25em) {
  .c-hygiene__list {
    display: block;
  }
}

.c-hygiene__link {
  color: #FFF;
  font-size: 1.125rem;
  line-height: 1.3;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

@media print, screen and (min-width: 46.25em) {
  .c-hygiene__link {
    font-size: 1.125rem;
  }
}

@media screen and (min-width: 64em) {
  .c-hygiene__link {
    font-size: 1rem;
  }
}

.c-hygiene__link:hover {
  text-decoration: underline;
}

.c-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
}

.c-social__strapline {
  margin-bottom: 0.9375rem;
  color: #FFF;
  font-family: "proxima-nova", sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.0625rem;
  line-height: 1;
  text-transform: uppercase;
}

@media screen and (min-width: 46.25em) {
  .c-social__strapline {
    margin: 0 1.875rem 0 0;
  }
}

@media print, screen and (min-width: 61.25em) {
  .c-social__strapline {
    width: auto;
  }
}

.c-social__list {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
}

@media print, screen and (min-width: 46.25em) {
  .c-social__list {
    -webkit-box-pack: normal;
        -ms-flex-pack: normal;
            justify-content: normal;
    width: 50%;
  }
}

@media print, screen and (min-width: 61.25em) {
  .c-social__list {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    width: auto;
  }
}

.c-social__item {
  margin-left: 0.625rem;
}

.c-social__item:first-child {
  margin: 0;
}

.c-social__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.25rem;
  border-radius: 3.125rem;
  cursor: pointer;
}

.c-social__link {
  fill: #508050;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.c-social__link:focus, .c-social__link:hover {
  fill: #FFF;
}

.c-social__link:focus {
  fill: black;
}

.c-social__link--facebook:focus, .c-social__link--facebook:hover {
  background-color: #3B5998;
}

.c-social__link--x:focus, .c-social__link--x:hover {
  background-color: #000000;
}

.c-social__link--tiktok:focus, .c-social__link--tiktok:hover {
  background-color: #fe2c55;
}

.c-social__link--pinterest:focus, .c-social__link--pinterest:hover {
  background-color: #CB2027;
}

.c-social__link--instagram:focus, .c-social__link--instagram:hover {
  background-color: #D93175;
}

.c-social__link--youtube:focus, .c-social__link--youtube:hover {
  background-color: #B00;
}

.c-social__link--linkedin:focus, .c-social__link--linkedin:hover {
  background-color: #007BB6;
}

.c-social__icon {
  height: 3.125rem;
  width: 3.125rem;
}

.c-footer__wrapper {
  position: relative;
  z-index: 2;
  background: #508050;
  color: #FFF;
}

.c-footer {
  position: relative;
  padding: 1.5rem 3rem;
  overflow: hidden;
}

.c-footer__meta {
  padding: 1.25rem;
  border-top: 1px solid #FFF;
}

.c-footer__link {
  color: #FFF;
  text-decoration: underline;
}

.c-footer__content-info {
  background-color: #E7E7E7;
}

@media screen and (min-width: 46.25em) {
  .c-footer__content-info .text-right {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

.c-footer__details, .c-footer__awards {
  margin: 1.625rem 3rem;
}

@media screen and (min-width: 46.25em) {
  .c-footer__details, .c-footer__awards {
    margin: 5.625rem 0;
  }
}

.c-footer__logo {
  display: inline-block;
}

.c-footer__logo-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: -0.3125rem;
  padding: 0.3125rem;
  width: 100%;
}

.c-footer__logo-link:focus {
  background-color: #2A5355 !important;
}

.c-footer__logo-image {
  height: auto;
  width: 100%;
  max-width: 8.25rem;
}

.c-footer__text {
  margin: 0;
  color: #FFF;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.3;
}

@media screen and (min-width: 64em) {
  .c-footer__text {
    font-size: 1rem;
  }
}

.c-footer__awards {
  text-align: right;
  white-space: nowrap;
}

.c-footer__award-logo {
  margin: 0 0.9375rem;
}

.c-footer .c-social__list {
  padding-left: 0;
}

@media screen and (min-width: 46.25em) {
  .c-footer .c-social__list {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.c-footer .c-social {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (min-width: 64em) {
  .c-footer .c-social {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.c-footer .c-social__link {
  fill: #FFF;
}

.c-footer .c-social__icon {
  height: 3.125rem;
  width: 3.125rem;
}

@media screen and (min-width: 46.25em) {
  .c-footer .c-social__icon {
    height: 2.5rem;
    width: 2.5rem;
  }
}

.c-form {
  padding: 3rem 0;
  background-color: #2F7376;
}

.c-form__container {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  max-width: 75rem;
  margin: 0 auto;
}

@media print, screen and (min-width: 46.25em) {
  .c-form__container {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}

.c-form__content {
  margin-bottom: 1.5rem;
}

.c-form .c-rte * {
  color: #FFF !important;
}

.c-form .c-rte h1,
.c-form .c-rte h2,
.c-form .c-rte h3,
.c-form .c-rte h4,
.c-form .c-rte h5,
.c-form .c-rte h6 {
  color: #FFF;
}

.c-form .c-rte h1:first-child,
.c-form .c-rte h2:first-child,
.c-form .c-rte h3:first-child,
.c-form .c-rte h4:first-child,
.c-form .c-rte h5:first-child,
.c-form .c-rte h6:first-child {
  margin-top: 0;
}

.c-form .c-standard-form {
  margin: 0;
  padding: 0;
}

.c-form .c-standard-form label {
  color: #FFF;
}

.c-form textarea,
.c-form input[type='text'],
.c-form input[type='tel'],
.c-form input[type='email'],
.c-form input[type='password'],
.c-form input[type='datetime'],
.c-form input[type='datetime-local'],
.c-form input[type='date'],
.c-form input[type='month'],
.c-form input[type='time'],
.c-form input[type='week'],
.c-form input[type='number'],
.c-form input[type='url'],
.c-form input[type='search'],
.c-form input[type='color'],
.c-form .form-group {
  max-width: 100%;
}

@media print, screen and (min-width: 61.25em) {
  .c-form textarea,
  .c-form input[type='text'],
  .c-form input[type='tel'],
  .c-form input[type='email'],
  .c-form input[type='password'],
  .c-form input[type='datetime'],
  .c-form input[type='datetime-local'],
  .c-form input[type='date'],
  .c-form input[type='month'],
  .c-form input[type='time'],
  .c-form input[type='week'],
  .c-form input[type='number'],
  .c-form input[type='url'],
  .c-form input[type='search'],
  .c-form input[type='color'],
  .c-form .form-group {
    margin-bottom: 0 !important;
  }
}

.c-header__container {
  z-index: 999;
  width: 100%;
}

.c-header__container--is-fixed {
  position: fixed;
  left: 0;
  top: 0;
}

.c-header__container--is-fixed + main {
  margin-top: 5.625rem;
}

.c-header {
  position: relative;
  top: 0;
  z-index: 10;
  width: 100%;
  max-height: 5.625rem;
  background-color: #FFF;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
}

.c-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 0.3125rem;
  width: 100%;
}

.c-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  width: 100%;
}

.c-header__logo-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 1.25rem;
  background-color: #508050;
  background-color: #FFF;
}

.c-header__logo-link:focus {
  background-color: transparent !important;
}

.c-header__logo-image {
  width: 17.1875rem;
  aspect-ratio: 3/1;
}

.c-header--init {
  background-color: #FFF;
  -webkit-transition: -webkit-transform 0.35s ease-in-out;
  transition: -webkit-transform 0.35s ease-in-out;
  transition: transform 0.35s ease-in-out;
  transition: transform 0.35s ease-in-out, -webkit-transform 0.35s ease-in-out;
  -webkit-transform: translateY(0%);
      -ms-transform: translateY(0%);
          transform: translateY(0%);
  will-change: transform;
}

.c-header--is-hidden {
  background-color: #FFF;
}

.c-header--is-pinned {
  background-color: #FFF;
  -webkit-transform: translateY(0%);
      -ms-transform: translateY(0%);
          transform: translateY(0%);
}

.c-header--is-unpinned {
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
}

.c-header--is-not-top.c-header--not-bottom {
  display: block;
  background-color: #FFF;
}

.c-header--is-top {
  display: block;
}

.sc-edit .c-header {
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}

.sc-edit .c-header__container {
  position: relative !important;
}

.c-hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: no-repeat center center;
  background-size: cover;
}

.slick-slide .c-hero {
  height: 100%;
}

.c-hero__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  height: 100%;
  max-width: 75rem;
  padding: 0;
}

@media screen and (min-width: 46.25em) {
  .c-hero__inner {
    padding: 3.75rem 0;
    width: 75rem;
  }
  .c-hero__inner--left {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .c-hero__inner--left .c-hero__content {
    text-align: left;
  }
  .c-hero__inner--right {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .c-hero__inner--right .c-hero__content {
    text-align: right;
  }
}

.c-hero__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding: 0 1.5rem;
  text-align: center;
}

@media screen and (min-width: 46.25em) {
  .c-hero__content {
    margin: 1.5rem 0;
    padding: 0 5.625rem;
    max-width: 55rem;
  }
}

@media screen and (min-width: 75em) {
  .c-hero__content {
    padding: 0 5.625rem;
  }
}

.c-hero__title {
  margin: 0;
  color: #FFF;
  font-family: "brownfox-geometria-extrabold", sans-serif;
  font-size: 2.8125rem;
  letter-spacing: 0.05rem;
  line-height: 1.2;
}

@media screen and (min-width: 64em) {
  .c-hero__title {
    font-size: 5.625rem;
    letter-spacing: 0.075rem;
  }
  .c-hero--video .c-hero__title {
    margin-bottom: 2.1875rem;
  }
}

.c-hero__title--alt {
  font-family: "proxima-nova-bold", sans-serif;
}

@media screen and (max-width: 46.1875em) {
  .c-hero--image-disabled-md .c-hero__title {
    color: #2A5355 !important;
  }
}

.c-hero__strapline {
  margin: 0 0 1.5rem;
  color: #FFF;
  font-family: "brownfox-geometria-extrabold", sans-serif;
  font-size: 1.375rem;
  letter-spacing: 0.01125rem;
  line-height: 1.3;
}

@media screen and (min-width: 46.25em) {
  .c-hero__strapline {
    font-size: 2rem;
    letter-spacing: 0.01375rem;
  }
}

@media screen and (max-width: 46.1875em) {
  .c-hero--image-disabled-md .c-hero__strapline {
    color: #404041 !important;
  }
}

.c-hero-slider,
.c-hero-slide {
  height: 100%;
}

.c-hero__carousel-action {
  position: absolute;
  bottom: -2.75rem;
  z-index: 1;
  height: 2.75rem;
  width: 2.75rem;
}

.c-hero__carousel-action--prev {
  bottom: 0.3125rem;
  left: 1.5rem;
}

@media print, screen and (min-width: 46.25em) {
  .c-hero__carousel-action--prev {
    top: 50%;
    left: 1.5625rem;
  }
}

.c-hero__carousel-action--prev .c-button, .c-hero__carousel-action--prev .c-rte__button {
  left: 0;
}

.c-hero__carousel-action--next {
  right: 1.5rem;
  bottom: 0.3125rem;
  text-align: right;
}

@media print, screen and (min-width: 46.25em) {
  .c-hero__carousel-action--next {
    top: 50%;
    right: 1.5625rem;
  }
}

.c-hero__carousel-action--next .c-button, .c-hero__carousel-action--next .c-rte__button {
  right: 0;
}

.c-hero__carousel-action .c-button, .c-hero__carousel-action .c-rte__button {
  position: absolute;
  top: 0;
  bottom: 0;
  background-color: none;
}

.c-hero__carousel-action .c-button__icon {
  width: 100%;
  height: 100%;
  position: static;
  max-width: 1.5625rem;
  max-height: 1.5625rem;
  fill: #2A5355;
}

@media print, screen and (min-width: 46.25em) {
  .c-hero__carousel-action .c-button__icon {
    max-width: 3.125rem;
    max-height: 3.125rem;
    fill: #FFF;
  }
}

.c-hero__dots {
  margin: 0;
  padding: 0;
  height: 3.75rem;
  width: 100%;
  text-align: center;
}

@media print, screen and (min-width: 46.25em) {
  .c-hero__dots {
    position: absolute;
    bottom: 0;
    height: 2.5rem;
  }
}

.c-hero__dots li {
  display: inline-block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.c-hero__dots li.slick-active button:before {
  background-color: #508050;
}

.c-hero__dots li button {
  position: relative;
  display: inline-block;
  margin: calc(2.75rem / 2) 0.3125rem;
  padding: 0;
  background-color: transparent;
  border: 0;
  font-size: 0;
  cursor: pointer;
}

@media screen and (min-width: 46.25em) {
  .c-hero__dots li button {
    margin: 0 0.3125rem;
  }
}

.c-hero__dots li button:before {
  content: '';
  display: inline-block;
  height: 1.25rem;
  width: 1.25rem;
  background-color: #FFF;
  border: 3px solid #cccccc;
  border-radius: 100%;
}

@media print, screen and (min-width: 46.25em) {
  .c-hero__dots li button:before {
    border-color: #FFF;
  }
}

.c-icon-block {
  padding: 3rem 0;
}

.c-icon-block__item {
  position: relative;
  padding: 1.5rem 3rem;
  text-align: center;
}

@media print, screen and (min-width: 46.25em) {
  .c-icon-block__item {
    padding: 1.5rem;
  }
}

.c-icon-block__item:hover {
  cursor: pointer;
}

.c-icon-block__item:hover .c-icon-block__title {
  text-decoration: underline;
}

.c-icon-block__icon {
  max-width: 4.1875rem;
  max-height: 4.9375rem;
}

.c-icon-block__image {
  max-width: 11.25rem;
  max-height: 11.25rem;
}

@media print, screen and (min-width: 46.25em) {
  .c-icon-block__image {
    max-width: 15.625rem;
    max-height: 15.625rem;
  }
}

.c-icon-block__heading {
  margin-top: 0;
  font-size: 1.75rem;
  line-height: 1.3;
  text-align: center;
}

@media print, screen and (min-width: 46.25em) {
  .c-icon-block__heading {
    font-size: 2rem;
  }
}

.c-icon-block__title {
  display: block;
  margin: 0.9375rem 0 0.3125rem 0;
  font-family: "proxima-nova-bold", sans-serif;
  font-size: 1.375rem;
}

.c-icon-block__desc {
  font-size: 1.125rem;
  line-height: 1.3;
}

@media print, screen and (min-width: 46.25em) {
  .c-icon-block__desc {
    margin: 0 auto;
    max-width: 15.625rem;
  }
}

.c-icon-block__link {
  color: #508050;
  line-height: 1.3;
}

.c-icon-block__link:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  display: block;
  height: 100%;
  width: 100%;
}

.c-image {
  margin: 3rem 0;
  text-align: center;
}

.c-image:first-child {
  margin-top: 0;
}

.c-image--captioned {
  position: relative;
  z-index: 1;
  margin-top: 5.625rem;
  overflow: hidden;
}

.c-image__img {
  display: block;
  width: 100%;
}

.c-image__img:nth-child(2) {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  max-width: 75rem;
  margin: 0 auto;
}

@media print, screen and (min-width: 46.25em) {
  .c-image__img:nth-child(2) {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}

.c-image__caption {
  font-family: "brownfox-geometria-extrabold", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
}

.c-image__caption > span {
  position: relative;
  display: inline-block;
  max-width: 80%;
}

.c-image__caption > span::before,
.c-image__caption > span::after {
  content: '';
  position: absolute;
  top: 0.625rem;
  height: 0.3125rem;
  width: 62.5rem;
  border-top: 3px solid #2A5355;
}

.c-image__caption > span::before {
  right: 100%;
  margin-right: 0.9375rem;
}

.c-image__caption > span::after {
  left: 100%;
  margin-left: 0.9375rem;
}

.c-whats-new {
  position: relative;
  padding: 2.5rem 0;
  background-repeat: no-repeat;
  background-size: contain;
}

.c-whats-new__background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  height: 100%;
  width: 100%;
}

@media screen and (min-width: 46.25em) {
  .c-whats-new__background {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    display: block;
    height: 100%;
    width: 70%;
  }
}

.c-whats-new__inner {
  position: relative;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  max-width: 75rem;
  margin: 0 auto;
}

@media print, screen and (min-width: 46.25em) {
  .c-whats-new__inner {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}

.c-whats-new__header {
  display: block;
  margin: 0 0 2.5rem 0;
}

@media screen and (min-width: 46.25em) {
  .c-whats-new__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.c-whats-new__title {
  color: #FFF;
  font-family: "proxima-nova", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
}

@media screen and (min-width: 46.25em) {
  .c-whats-new__title {
    color: #404041;
    font-size: 2rem;
  }
}

.c-whats-new__link {
  position: relative;
  padding: 0.3125rem 0;
}

.c-whats-new__link:focus .c-whats-new__link-text {
  color: #FFF;
}

.c-whats-new__link:focus .c-whats-new__icon {
  fill: #FFF;
}

.c-whats-new__link .c-whats-new__link-text {
  padding-right: 1rem;
  color: #FFF;
  font-size: 1.375rem;
}

.c-whats-new__link .c-whats-new__icon {
  position: relative;
  display: inline-block;
  padding-top: 1rem;
  height: 2.3125rem;
  width: 100%;
  max-width: 1.75rem;
  fill: #FFF;
}

.c-story {
  position: relative;
  z-index: 2;
  display: block;
  margin-bottom: 1.875rem;
}

.c-story::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  height: 100%;
  width: 100%;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  -webkit-box-shadow: 0 0 15px 0 rgba(8, 8, 13, 0.25);
          box-shadow: 0 0 15px 0 rgba(8, 8, 13, 0.25);
}

.c-story:hover {
  cursor: pointer;
}

.c-story:hover::before {
  -webkit-box-shadow: 0 0 15px 0 rgba(8, 8, 13, 0.35);
          box-shadow: 0 0 15px 0 rgba(8, 8, 13, 0.35);
}

.c-story:hover .c-story__img {
  background-size: 130%;
}

.c-story:hover .c-story__title {
  text-decoration: underline;
}

.c-story__ribbon {
  display: block;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  color: #BF4E38;
}

.c-story__title {
  color: #508050;
  font-family: "proxima-nova", sans-serif;
  font-size: 1.625rem;
  font-weight: normal;
  line-height: 1.3;
  text-transform: none;
}

@media screen and (min-width: 46.25em) {
  .c-story__title {
    font-size: 1.375rem;
  }
}

.c-story__date {
  color: #404041;
  margin-bottom: 0.625rem;
}

.c-story__img {
  position: relative;
  height: 12.5rem;
  width: 100%;
  background-position: center;
  background-size: 100%;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.c-story__img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 100%;
}

.c-story__content {
  padding: 2.5rem 1.5rem;
  background-color: #FFF;
}

.c-story__summary {
  margin-top: 1.375rem;
  color: #404041;
  font-size: 1.125rem;
  line-height: 1.3;
}

.c-story__summary--small {
  font-size: 1rem;
  line-height: 1.2;
}

.c-story-article {
  margin-top: -10.625rem;
  margin-right: -1.875rem;
  margin-left: -1.875rem;
  padding: 1.5rem;
  background-color: #E7E7E7;
}

@media screen and (min-width: 64em) {
  .c-story-article {
    margin-right: 0;
    margin-left: 0;
    padding: 3rem;
  }
}

.c-story-article__title {
  margin-top: 0;
  color: #508050;
  font-family: "proxima-nova", sans-serif;
  font-size: 2.5rem;
  font-weight: normal;
  line-height: 1.13333;
}

@media screen and (min-width: 64em) {
  .c-story-article__title {
    font-size: 3.75rem;
  }
}

.c-story-article__author {
  margin-bottom: 0.9375rem;
  font-size: 1.375rem;
}

.c-story-article__date {
  display: block;
  margin-bottom: 2.5rem;
  color: #2A5355;
  font-size: 1.375rem;
}

.c-story-article .c-share__list {
  margin-bottom: 3rem;
}

.c-filter {
  margin: 0 0 1.25rem 0;
  padding: 1.25rem 0;
  background-color: #508050;
}

@media print, screen and (min-width: 46.25em) {
  .c-filter {
    margin: 0 0 3rem;
    padding: 1.875rem 0;
  }
}

.c-filter label {
  color: #FFF;
  font-weight: 400;
}

.c-filter input[type='checkbox'] + label,
.c-filter input[type='radio'] + label {
  padding-left: 2.8125rem;
}

.c-filter input[type='checkbox'] + label:before,
.c-filter input[type='radio'] + label:before {
  border-color: #3c613c;
}

.c-filter input[type='checkbox']:checked + label:after {
  background-color: #BF4E38;
}

.c-filter__fieldset {
  padding: 0;
  border: 0;
}

.c-filter__heading {
  margin: 0 0 1rem;
  color: #FFF;
  font-family: "proxima-nova-bold", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
}

.c-filter__list {
  margin-bottom: 1.875rem;
  list-style: none;
}

@media print, screen and (min-width: 46.25em) {
  .c-filter__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 0;
  }
}

@media print, screen and (min-width: 46.25em) {
  .c-filter__list-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    padding-right: 0.625rem;
  }
}

@media screen and (min-width: 75em) {
  .c-filter__list-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3%;
            flex: 0 0 33.3%;
  }
}

@media print, screen and (min-width: 46.25em) {
  .c-filter__category {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.c-filter__category-item {
  width: 100%;
}

@media print, screen and (min-width: 46.25em) {
  .c-filter__category-item {
    width: 25%;
  }
}

.c-filter__category-action {
  -ms-flex-item-align: end;
      align-self: flex-end;
  width: 100%;
  min-height: 3.75rem;
}

@media print, screen and (min-width: 46.25em) {
  .c-filter__category-action {
    width: auto;
  }
}

select.c-filter__category-input {
  height: 3.75rem;
  max-width: 100%;
  -o-border-image: url(../img/geneco/png/select-border.png) 30 stretch;
     border-image: url(../img/geneco/png/select-border.png) 30 stretch;
}

@media print, screen and (min-width: 46.25em) {
  select.c-filter__category-input {
    margin-bottom: 0;
  }
}

.c-filter__search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-filter__search .c-filter__search-field {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-right: 1.25rem;
  margin-bottom: 0;
  max-width: none;
}

.c-list {
  padding: 0;
  list-style: none;
}

.c-list__item {
  position: relative;
  padding: 3rem 0;
  border-bottom: 1px solid #d9d9d9;
}

@media print, screen and (min-width: 46.25em) {
  .c-list__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.c-list__item:first-child {
  padding-top: 0;
}

.c-list__item:last-child {
  margin-bottom: 1.5rem;
}

.c-list--results .c-list__item {
  padding: 1.5rem 0;
}

.c-list__image {
  position: relative;
  display: block;
  margin-bottom: 1.875rem;
  background-position: center center;
  background-size: cover;
}

@media print, screen and (min-width: 46.25em) {
  .c-list__image {
    -ms-flex-item-align: start;
        align-self: flex-start;
    margin: 0 1.875rem 0 0;
    width: 33.33333%;
  }
}

.c-list__image:after {
  content: '';
  display: block;
  padding-bottom: 70%;
}

@media print, screen and (min-width: 46.25em) {
  .c-list__content {
    -ms-flex-item-align: center;
        align-self: center;
    width: 88.88889%;
  }
}

.c-list__title {
  margin: 0 0 1.5rem;
  font-family: "proxima-nova-bold", sans-serif;
  font-size: 1.375rem;
  font-weight: normal;
  line-height: 1.3;
}

@media print, screen and (min-width: 46.25em) {
  .c-list__title {
    font-size: 1.625rem;
  }
}

.c-list__link {
  color: #2F7376;
}

.c-list__link:hover {
  text-decoration: underline;
}

.c-list__link:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.c-list__meta {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

.c-list__meta-title {
  display: inline;
  font-family: "proxima-nova-bold", sans-serif;
}

.c-list__meta-title:after {
  content: ':';
}

.c-list__meta-detail {
  display: inline;
  margin: 0 1.5rem 0 0;
}

.c-list__submeta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0;
  font-size: 1.125rem;
  list-style: none;
}

.c-list__submeta-item {
  margin-bottom: 1.5rem;
}

.c-list__submeta-item--full {
  width: 100%;
}

.c-list__submeta-title {
  color: #BF4E38;
}

.c-list__submeta-title--full {
  width: 20%;
}

.c-list__submeta-detail {
  margin: 0 1.5rem 0 0.9375rem;
}

.c-list__submeta-detail--location {
  color: #BF4E38;
}

.c-list__body-title {
  margin: 0;
  color: #BF4E38;
  font-size: 1.125rem;
  font-weight: 600;
}

.c-list__body p {
  margin-top: 0;
  font-size: 1.125rem;
}

.c-list__file-icon {
  margin-left: 1.5rem;
  height: 1.75rem;
  width: 1.375rem;
  fill: #FFF;
  vertical-align: -6px;
}

.c-summary {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

.c-mega-spotlight {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-position: center center;
  background-size: cover;
}

@media print, screen and (min-width: 46.25em) {
  .c-mega-spotlight {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.c-mega-spotlight__image {
  display: block;
  min-width: 100%;
}

.c-mega-spotlight__content {
  position: relative;
  z-index: 1;
  margin: 3.125rem auto;
  width: 80%;
}

@media print, screen and (min-width: 46.25em) {
  .c-mega-spotlight__content {
    margin: 3.125rem 1.5625rem 3.125rem 3.125rem;
    width: auto;
  }
}

.c-mega-spotlight__card {
  z-index: 2;
  margin: 0 auto 3.125rem auto;
  width: 80%;
  background-color: #2F7376;
  text-align: left;
}

@media screen and (min-width: 46.25em) {
  .c-mega-spotlight__card {
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 3.125rem 3.125rem 3.125rem 1.5625rem;
    padding: 3rem;
    max-width: 22.5rem;
    min-height: 22.5rem;
  }
}

.c-mega-spotlight__heading {
  margin: 0 0 1.5rem 0;
  color: #FFF !important;
  line-height: 1.3;
}

@media screen and (min-width: 46.25em) {
  .c-mega-spotlight__heading {
    font-size: 2rem;
  }
}

.c-mega-spotlight__link {
  color: #404041;
  text-decoration: none;
}

.c-mega-spotlight__heading .c-mega-spotlight__link:hover, .c-mega-spotlight__heading .c-mega-spotlight__link:focus {
  text-decoration: underline;
}

.c-mega-spotlight__link:focus:before {
  outline: 3px solid #FFBF47;
}

.c-mega-spotlight__link:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.c-mega-spotlight__subheading {
  margin: 0 0 3rem 0;
  color: #FFF !important;
  font-size: 1.125rem;
  line-height: 1.27273;
}

.c-navigation {
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 5.625rem;
  width: 100%;
  background-color: #FFF;
  font-family: "proxima-nova-bold", sans-serif;
}

@media screen and (min-width: 87.5em) {
  .c-navigation {
    background: #FFF;
  }
}

.c-header--image .c-navigation {
  background: none;
}

.c-navigation__wrapper {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 0;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.5s linear;
  transition: max-height 0.5s linear;
}

@media screen and (min-width: 87.5em) {
  .c-navigation__wrapper {
    position: static;
    max-height: inherit;
    overflow: inherit;
  }
}

.c-navigation__wrapper.is-active {
  max-height: calc(100vh - 5.625rem);
  overflow: auto;
  -webkit-transition: -webkit-transform 0.35s ease-in-out;
  transition: -webkit-transform 0.35s ease-in-out;
  transition: transform 0.35s ease-in-out;
  transition: transform 0.35s ease-in-out, -webkit-transform 0.35s ease-in-out;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  will-change: transform;
}

.c-header--is-unpinned .c-navigation__wrapper.is-active {
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
}

.c-navigation__first-level {
  margin: 0;
  padding-left: 0;
  background-color: #508050;
  list-style-type: none;
}

@media screen and (min-width: 87.5em) {
  .c-navigation__first-level {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
    background-color: inherit;
  }
}

.c-navigation__item--first-level {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px solid #cccccc;
}

@media screen and (min-width: 87.5em) {
  .c-navigation__item--first-level {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    border: none;
    -webkit-transition: background-color 0.5s linear;
    transition: background-color 0.5s linear;
  }
}

@media screen and (min-width: 87.5em) {
  .c-navigation__item--first-level:hover,
  .c-navigation__item-link--first-level:focus .c-navigation__item--first-level {
    background-color: #508050;
  }
}

.c-navigation__item--first-level.is-active, .c-navigation__item--first-level.is-current {
  background-color: #508050;
}

@media screen and (min-width: 87.5em) {
  .c-navigation__item--first-level.is-active, .c-navigation__item--first-level.is-current {
    background-color: #508050;
  }
}

.c-navigation__item--first-level-push-right {
  margin-left: auto;
}

.c-navigation__button {
  z-index: 3;
  display: block;
  -ms-flex-item-align: end;
      align-self: flex-end;
  height: 3.75rem;
  width: 3.75rem;
  border-left: 1px solid #cccccc !important;
  padding: 0;
  background: transparent;
  border: 0;
}

@media screen and (min-width: 87.5em) {
  .c-navigation__button {
    position: absolute;
    padding: 0;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    color: #2F7376;
    white-space: nowrap;
    -webkit-clip-path: inset(50%);
            clip-path: inset(50%);
  }
  .c-navigation__button:focus {
    position: inherit;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-item-align: center;
        align-self: center;
    margin-right: 0.9375rem;
    padding: inherit;
    height: inherit;
    width: inherit;
    border-left: none !important;
    color: #2F7376;
    -webkit-clip-path: inherit;
            clip-path: inherit;
  }
  .c-navigation__button.is-active:focus {
    color: #2F7376;
  }
}

.c-navigation__button__icon {
  position: relative;
  display: inline-block;
  margin-right: 0.1875rem;
  height: 1.5rem;
  width: 1.5rem;
  color: #2F7376;
  vertical-align: middle;
}

.c-navigation__item-link--first-level {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 1rem 0 1rem 1rem;
  width: calc(100% - 3.75rem);
  color: #FFF;
}

@media screen and (min-width: 87.5em) {
  .c-navigation__item-link--first-level {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0.625rem 0.8125rem;
    height: 5.625rem;
    width: 100%;
    color: #2F7376;
    font-size: 1.125rem;
    line-height: 1;
  }
}

@media screen and (min-width: 87.5em) {
  .c-navigation__item-link--first-level {
    padding: 0.625rem 1.125rem;
  }
}

@media screen and (min-width: 87.5em) {
  .c-navigation__item-link--first-level {
    padding: 0.625rem 1.25rem;
  }
}

@media screen and (min-width: 87.5em) {
  .c-navigation__item--first-level:hover .c-navigation__item-link--first-level,
  .c-navigation__item--first-level.is-active .c-navigation__item-link--first-level,
  .c-navigation__item--first-level.is-current .c-navigation__item-link--first-level {
    color: #FFF;
  }
}

.c-navigation__second-level-wrapper {
  z-index: 2;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  max-height: 0;
  overflow: hidden;
}

@media screen and (min-width: 87.5em) {
  .c-navigation__second-level-wrapper {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    visibility: hidden;
    padding: 0.9375rem;
    width: 100%;
    max-height: inherit;
    background-color: #FFF;
    border-top: 3px solid #2F7376;
    -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.34);
            box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.34);
    opacity: 0;
    -webkit-transition: visibility 0s, opacity 0.5s linear;
    transition: visibility 0s, opacity 0.5s linear;
  }
  .c-header--image .c-navigation__second-level-wrapper {
    top: 4.25rem;
  }
}

.c-navigation__item--first-level.is-active .c-navigation__second-level-wrapper {
  max-height: 625rem;
  background-color: #FFF;
}

@media screen and (min-width: 87.5em) {
  .c-navigation__item--first-level.is-active .c-navigation__second-level-wrapper {
    max-height: inherit;
  }
}

@media screen and (min-width: 87.5em) {
  .c-navigation__item--first-level:hover .c-navigation__second-level-wrapper,
  .c-navigation__item--first-level.is-active .c-navigation__second-level-wrapper {
    visibility: visible;
    opacity: 1;
  }
}

.c-navigation__second-level-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto;
  max-width: 75rem;
}

@media screen and (min-width: 87.5em) {
  .c-navigation__second-level-inner {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

.c-navigation__second-level {
  padding-left: 0;
  width: 100%;
  list-style-type: none;
}

@media screen and (min-width: 87.5em) {
  .c-navigation__second-level {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0.625rem 0.9375rem 0 0.9375rem;
    height: 100%;
    width: auto;
    list-style-type: none;
  }
}

.c-navigation__item--second-level {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px solid #cccccc;
}

@media screen and (min-width: 87.5em) {
  .c-navigation__item--second-level {
    display: block;
    -webkit-box-flex: inherit;
        -ms-flex-positive: inherit;
            flex-grow: inherit;
    -webkit-box-pack: inherit;
        -ms-flex-pack: inherit;
            justify-content: inherit;
    padding-bottom: 1.5rem;
    width: 33.33%;
    min-width: 9.375rem;
    border: none;
  }
}

.c-navigation__item-link--second-level {
  display: block;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 1rem 0 1rem 2rem;
  color: #2F7376;
}

@media screen and (min-width: 87.5em) {
  .c-navigation__item-link--second-level {
    padding: 0;
    color: #2F7376;
  }
  .c-navigation__item-link--second-level:hover {
    text-decoration: underline;
  }
  .c-navigation__item-link--second-level:visited {
    color: #2F7376;
  }
}

.c-navigation__item--second-level.is-current .c-navigation__item-link--second-level {
  text-decoration: underline;
}

@media screen and (min-width: 87.5em) {
  .c-navigation__button--second-level {
    display: none;
  }
}

.c-navigation__third-level {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  max-height: 0;
  overflow: hidden;
  list-style-type: none;
}

@media screen and (min-width: 87.5em) {
  .c-navigation__third-level {
    -ms-flex-preferred-size: inherit;
        flex-basis: inherit;
    padding-left: 0;
    max-height: inherit;
    text-decoration: underline;
  }
}

.c-navigation__item--second-level.is-active .c-navigation__third-level {
  max-height: 625rem;
  border-top: 1px solid #cccccc;
}

@media screen and (min-width: 87.5em) {
  .c-navigation__item--second-level.is-active .c-navigation__third-level {
    max-height: 625rem;
    border-top: none;
  }
}

@media screen and (min-width: 87.5em) {
  .c-navigation__item--third-level {
    margin: 1.5rem 0;
    -webkit-transition: margin-left 0.5s linear;
    transition: margin-left 0.5s linear;
  }
}

.c-navigation__item--third-level:first-of-type {
  margin-top: 3rem;
}

@media screen and (min-width: 87.5em) {
  .c-navigation__item--third-level:first-of-type {
    margin-top: inherit;
  }
}

.c-navigation__item--third-level:last-of-type {
  margin-bottom: 3rem;
}

@media screen and (min-width: 87.5em) {
  .c-navigation__item--third-level:last-of-type {
    margin-bottom: inherit;
  }
}

@media screen and (min-width: 87.5em) {
  .c-navigation__item-link--third-level:hover .c-navigation__item--third-level {
    margin-left: 1rem;
  }
}

.c-navigation__item-link--third-level {
  display: block;
  padding: 0.5rem 0 0.5rem 3rem;
  color: #2F7376;
}

@media screen and (min-width: 87.5em) {
  .c-navigation__item-link--third-level {
    padding: 0;
  }
}

.c-navigation__item--second-level.is-current .c-navigation__item-link--third-level {
  text-decoration: underline;
}

@media screen and (min-width: 87.5em) {
  .c-navigation__item-link--third-level:visited {
    color: #2F7376;
  }
}

@media screen and (min-width: 87.5em) {
  .c-navigation__item-link--third-level:hover {
    text-decoration: underline;
  }
}

@media screen and (min-width: 87.5em) {
  .c-navigation__toggle {
    display: none;
  }
}

.c-navigation__toggle-btn {
  display: block;
  float: right;
  padding: 1.5rem !important;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  background: transparent;
  border: 0;
}

@media screen and (min-width: 87.5em) {
  .c-navigation__toggle-btn {
    display: none;
  }
}

.c-navigation__button-icon {
  position: relative;
  display: block;
  margin: 0 auto;
  height: 1rem;
  width: 1rem;
}

.c-navigation__button-icon:after, .c-navigation__button-icon:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  height: 1rem;
  width: 0.1875rem;
  background-color: #FFF;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media screen and (min-width: 87.5em) {
  .c-navigation__button-icon:after, .c-navigation__button-icon:before {
    background-color: #FFF;
  }
}

.c-navigation__button-icon:after {
  height: 1rem;
  width: 0.1875rem;
}

.c-navigation__button-icon:before {
  height: 0.1875rem;
  width: 1rem;
}

.c-navigation__button.is-active .c-navigation__button-icon:before {
  background-color: #FFF;
}

@media screen and (min-width: 87.5em) {
  .c-navigation__button.is-active .c-navigation__button-icon:before {
    background-color: #FFF;
  }
}

.c-navigation__button.is-active .c-navigation__button-icon:after {
  display: none;
}

.c-navigation__menu-icon {
  position: relative;
  display: inline-block;
  height: 1.375rem;
  width: 2.3125rem;
  vertical-align: middle;
}

.c-navigation__menu-text {
  display: inline-block;
  color: #FFF;
  vertical-align: middle;
  font-size: 18px;
  font-size: 1.125rem;
}

.c-navigation__menu-line {
  position: absolute;
  display: block;
  height: 0.1875rem;
  width: 100%;
  background: #666666;
}

.c-navigation__menu-line.top {
  top: 0;
}

.c-header--image .c-navigation__menu-line.top {
  background-color: white;
}

.c-navigation__menu-line.middle {
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.c-header--image .c-navigation__menu-line.middle {
  background-color: white;
}

.c-navigation__menu-line.bottom {
  bottom: 0;
}

.c-header--image .c-navigation__menu-line.bottom {
  background-color: white;
}

.c-navigation__spotlight {
  position: relative;
  padding: 3rem 3rem;
  width: 100%;
  max-width: 18.75rem;
}

@media screen and (min-width: 87.5em) {
  .c-navigation__spotlight {
    padding: 0 1.25rem 0 0;
    max-width: 18.75rem;
  }
}

.c-navigation__spotlight-title, .c-navigation__spotlight-link {
  color: #404041;
  font-size: 1.875rem;
  letter-spacing: 0;
  line-height: 1.5;
}

.c-navigation__spotlight-title {
  margin: 0 0 0.4375rem;
}

.c-navigation__spotlight-link:focus, .c-navigation__spotlight-link:hover {
  text-decoration: underline;
}

.c-navigation__spotlight-link:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  height: 100%;
  width: 100%;
}

.c-navigation__spotlight-img {
  display: block;
  margin: 0 0 1.25rem;
}

.c-navigation__spotlight-summary {
  margin: 0 0 2.375rem;
  font-size: 1rem;
  letter-spacing: 0;
}

/*
/ _pagination.scss
*/
.c-pagination__current, .c-pagination__link, .c-pagination__link--prev, .c-pagination__link--next, .c-pagination__hellip {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  height: 2.75rem;
  min-width: 2.75rem;
  border: 0;
  text-decoration: none;
  cursor: pointer;
}

.c-pagination__current:disabled, .c-pagination__link:disabled, .c-pagination__link--prev:disabled, .c-pagination__link--next:disabled, .c-pagination__hellip:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.c-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 61.1875em) {
  .c-pagination .c-pagination__item:not(.is-active):not(:first-child):not(:last-child) {
    display: none;
  }
}

.c-pagination__item {
  margin-right: 0.625rem;
  margin-left: 0.625rem;
  border: 3px solid #508050;
  font-weight: bold;
  list-style: none;
}

.c-pagination__item.is-active {
  border-color: transparent;
}

.c-pagination__current {
  background-color: #FFF;
  color: #508050;
  cursor: default;
}

.c-pagination__link {
  background-color: #FFF;
  color: #508050;
}

.c-pagination__link:hover, .c-pagination__link:focus {
  background-color: #508050;
  color: #FFF;
}

@media screen and (-ms-high-contrast: active) {
  .c-pagination__link:focus {
    color: Highlight;
  }
}

.c-pagination__link--prev, .c-pagination__link--next {
  background-color: #FFF;
}

.c-pagination__link--prev:hover, .c-pagination__link--next:hover {
  background-color: #508050;
  color: #FFF;
}

.c-pagination__link--prev:hover .c-pagination__link--next-arrow,
.c-pagination__link--prev:hover .c-pagination__link--prev-arrow, .c-pagination__link--next:hover .c-pagination__link--next-arrow,
.c-pagination__link--next:hover .c-pagination__link--prev-arrow {
  fill: #FFF;
}

.c-pagination__link--prev:focus .c-pagination__link--next-arrow,
.c-pagination__link--prev:focus .c-pagination__link--prev-arrow, .c-pagination__link--next:focus .c-pagination__link--next-arrow,
.c-pagination__link--next:focus .c-pagination__link--prev-arrow {
  fill: #000;
}

.c-pagination__link--prev-arrow, .c-pagination__link--next-arrow {
  height: 0.875rem;
  width: 0.5rem;
  fill: #508050;
}

.c-pagination__hellip {
  cursor: default;
  color: #508050;
}

.c-person {
  position: relative;
  z-index: 2;
  display: inline-block;
  margin-top: 1.5rem;
  background: #FFF;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.c-person:hover {
  background: #E7E7E7;
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

.c-person:hover .c-person__content {
  background: #508050;
}

.c-person:hover .c-person__jobtitle,
.c-person:hover .c-person__name,
.c-person:hover .c-person__bio {
  color: #FFF;
}

.c-person:hover .c-person__bio {
  border-top-color: #FFF;
}

.c-person__header {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  height: 10rem;
  width: 10rem;
  overflow: hidden;
  background: #FFF;
  background-size: cover;
  border: 8px solid #2F7376;
  border-radius: 50%;
}

.c-person__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 2.5rem 1.875rem;
  background-color: #FFF;
  -webkit-box-shadow: 0 0 0.9375rem rgba(8, 8, 13, 0.15);
          box-shadow: 0 0 0.9375rem rgba(8, 8, 13, 0.15);
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.c-person__jobtitle {
  margin-bottom: 1.25rem;
  color: #524D4D;
  font-family: "proxima-nova-bold", sans-serif;
  font-size: 1.125rem;
  letter-spacing: 0.01875rem;
  line-height: 1.3;
  text-transform: uppercase;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.c-person__jobtitle + .c-person__name {
  margin-top: 0;
}

.c-person__name {
  margin-top: 1.875rem;
  margin-bottom: 0.625rem;
  color: #508050;
  font-family: "proxima-nova-bold", sans-serif;
  font-size: 1.375rem;
  line-height: 1.3;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

@media print, screen and (min-width: 46.25em) {
  .c-person__name {
    font-size: 1.625rem;
  }
}

.c-person__bio {
  padding-top: 1.25rem;
  border-top: 1px solid #2F7376;
  color: #404041;
  font-size: 1.125rem;
  line-height: 1.35;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.c-quick-links {
  margin-top: 3rem;
  padding: 3rem 1.5rem;
  background-color: #2F7376;
  border-top: 6px solid #2A5355;
}

.c-quick-links:first-child {
  margin-top: 0;
}

.c-quick-links__title {
  margin: 0 0 1.875rem;
  color: #FFF;
  font-family: "proxima-nova-bold", sans-serif;
  font-size: 1.75rem;
}

.c-quick-links__list {
  list-style-type: none;
}

.c-quick-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.625rem 0;
  text-transform: uppercase;
  cursor: pointer;
}

.c-quick-link:first-of-type {
  padding-top: 0;
}

.c-quick-link:last-of-type {
  padding-bottom: 0;
}

.c-quick-link + .c-quick-link {
  margin-top: 0.9375rem;
}

.c-quick-link__text {
  color: #FFF;
  font-family: "proxima-nova-bold", sans-serif;
  font-size: 1rem;
}

.c-quick-link__text:focus, .c-quick-link__text:hover {
  text-decoration: underline;
}

.c-quotation {
  padding: 3rem 0;
  background-color: #508050;
  background-position: center center;
  background-size: cover;
  text-align: center;
}

@media print, screen and (min-width: 46.25em) {
  .c-quotation {
    padding: 3.75rem 0;
  }
}

.c-quotation__body {
  margin: 0;
}

.c-quotation__body > p {
  margin: 0 0 1.5rem;
  color: #FFF;
  font-size: 1.375rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.0375rem;
  line-height: 1.3;
}

@media print, screen and (min-width: 46.25em) {
  .c-quotation__body > p {
    font-size: 1.625rem;
  }
}

.c-quotation__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.125rem;
  text-transform: uppercase;
}

@media print, screen and (min-width: 46.25em) {
  .c-quotation__footer {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.c-quotation__profile {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 5rem;
  width: 5rem;
  overflow: hidden;
  border: 6px solid #2A5355;
  border-radius: 2.875rem;
}

.c-quotation__profile-image {
  height: 5rem;
  width: 5rem;
}

.c-quotation__author {
  margin: 1.25rem 0 0 0;
  color: #FFF;
}

@media print, screen and (min-width: 46.25em) {
  .c-quotation__author {
    margin: 0 0 0 1.25rem;
    text-align: left;
  }
}

.c-quotation__author-title {
  display: block;
  margin-bottom: 0.3125rem;
  font-weight: 700;
  letter-spacing: 0.0625rem;
}

.c-quotation__author-role {
  display: block;
  font-size: 1rem;
}

.c-checkbox-group__label {
  display: inline-block;
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6875rem;
  cursor: pointer;
}

.c-checkbox-group__list {
  list-style: none;
}

@media screen and (min-width: 46.25em) {
  .c-checkbox-group__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media screen and (min-width: 46.25em) {
  .c-checkbox-group__list-item {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
}

.c-expand-filters {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-left: auto;
  color: #2A5355;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: underline;
}

.c-expand-filters:hover {
  text-decoration: none;
}

.c-expand-filters:after {
  background: url(/assets/img/geneco/png/chevron_down.png) no-repeat center center;
}

.c-expand-filters--open:after {
  background: url(/assets/img/geneco/png/cross.png) no-repeat center center;
}

.c-expand-filters:after, .c-expand-filters--open:after {
  content: '';
  display: inline-block;
  margin-left: 0.75rem;
  height: 1.5rem;
  width: 1.5rem;
  background-size: 1.875rem;
}

.c-resources {
  background: rgba(131, 131, 134, 0.1);
  will-change: contents;
}

.c-resources__heading {
  margin: 0;
  font-size: 3.125rem;
  font-weight: 400;
  line-height: 1.08333;
}

@media print, screen and (min-width: 46.25em) {
  .c-resources__heading {
    font-size: 3.75rem;
  }
}

.c-resources__subheading {
  margin-bottom: 1.25rem;
}

@media print, screen and (min-width: 46.25em) {
  .c-resources__subheading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 0;
  }
}

.c-resources__subheading__title {
  margin-top: 0;
  font-size: 1.875rem;
  line-height: 1.3;
}

.c-resources__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1.25rem;
  width: 100%;
}

@media screen and (max-width: 61.1875em) {
  .c-resources__button {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 2;
    width: 100%;
  }
}

.c-resources__stage-container {
  position: relative;
  right: 0;
  left: 0;
  display: block;
  margin: 0 auto;
  height: auto;
  width: 100%;
  overflow: hidden;
}

.c-resources__stage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
}

.c-resources__stage.has-fixed-button {
  padding: 0 0 5rem 0;
}

@media print, screen and (min-width: 46.25em) {
  .c-resources__stage.has-fixed-button {
    padding: 0;
  }
}

.c-resources__stage.is-active {
  position: relative;
  opacity: 1;
  -webkit-transform: translateX(0%);
      -ms-transform: translateX(0%);
          transform: translateX(0%);
}

.c-resources__inner {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  max-width: 60.625rem;
}

@media screen and (min-width: 46.25em) {
  .c-resources__filters {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 0 3.125rem;
  }
}

@media screen and (min-width: 46.25em) {
  .c-resources__column {
    width: 70%;
  }
  .c-resources__column:first-child {
    padding: 0 8.125rem 0 0;
    width: 40%;
  }
}

.c-resources__btn-wrapper {
  padding: 2.5rem 1.25rem 0;
  border-top: 1px solid rgba(131, 131, 134, 0.5);
  font-size: 1.125rem;
  text-align: center;
}

.c-resources__results, .c-resources__btn-container {
  margin: 0 auto;
  max-width: 48.125rem;
}

@media screen and (min-width: 46.25em) {
  .c-resources__results, .c-resources__btn-container {
    padding: 1.875rem 0;
  }
}

.c-resources__results-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 100%;
}

.c-resources__btn-container {
  text-align: center;
}

.c-resources__no-results {
  margin: 1.25rem auto;
  max-width: 48.125rem;
  font-family: "proxima-nova", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}

.c-resources-card {
  position: relative;
  margin: 1.25rem 0.625rem;
  width: calc(100% - 1.25rem);
  background-color: #FFF;
  -webkit-box-shadow: 0 2px 7px 2px rgba(8, 8, 13, 0.25);
          box-shadow: 0 2px 7px 2px rgba(8, 8, 13, 0.25);
}

@media screen and (min-width: 46.25em) {
  .c-resources-card {
    margin: 0 1.25rem 3.125rem;
    width: calc(50% - 40px);
  }
}

.c-resources-card__img {
  display: block;
  height: 17.5rem;
  width: 100%;
  background-position: center center;
  background-size: cover;
}

.c-resources-card__title, .c-resources-card__link {
  color: #2A5355;
  font-weight: 700;
}

.c-resources-card__link:hover {
  text-decoration: underline;
}

.c-resources-card__link:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  display: block;
  height: 100%;
  width: 100%;
}

.c-resources-card__title {
  margin: 0 0 0.9375rem;
  font-size: 1.875rem;
  font-weight: 600;
}

.c-resources-card__content {
  padding: 1.25rem;
  background-color: #FFF;
}

.c-resources-card__ribbon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0.625rem;
  color: #FFF;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.c-resources-card__summary {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  letter-spacing: 0;
  line-height: 1.875rem;
}

.c-resources-card__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media print, screen and (min-width: 46.25em) {
  .c-resources-card__actions {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.c-resources-card__actions .c-button + .c-button, .c-resources-card__actions .c-rte__button + .c-button, .c-resources-card__actions .c-button + .c-rte__button, .c-resources-card__actions .c-rte__button + .c-rte__button {
  margin-top: 0.9375rem;
}

@media print, screen and (min-width: 46.25em) {
  .c-resources-card__actions .c-button + .c-button, .c-resources-card__actions .c-rte__button + .c-button, .c-resources-card__actions .c-button + .c-rte__button, .c-resources-card__actions .c-rte__button + .c-rte__button {
    margin: 0 0 0 0.625rem;
  }
}

.c-resources-card .c-button--brand, .c-resources-card .c-rte__button, .c-resources-card .c-standard-form input[type='submit'], .c-standard-form .c-resources-card input[type='submit'],
.c-resources-card .c-standard-form input[type='button'], .c-standard-form .c-resources-card input[type='button'], .c-resources-card .th-standard-form input[type='submit'], .th-standard-form .c-resources-card input[type='submit'] {
  border-color: #2F7376 !important;
  -webkit-box-shadow: -4px 0 10px 3px rgba(0, 0, 0, 0.11);
          box-shadow: -4px 0 10px 3px rgba(0, 0, 0, 0.11);
  background-color: #2F7376 !important;
  color: #FFF;
  border: 3px solid #2F7376;
}

.c-resources-card .c-button--brand:hover, .c-resources-card .c-rte__button:hover, .c-resources-card .c-standard-form input:hover[type='submit'], .c-standard-form .c-resources-card input:hover[type='submit'],
.c-resources-card .c-standard-form input:hover[type='button'], .c-standard-form .c-resources-card input:hover[type='button'], .c-resources-card .th-standard-form input:hover[type='submit'], .th-standard-form .c-resources-card input:hover[type='submit'] {
  border-color: #204f52 !important;
  color: #FFF;
  background-color: #204f52 !important;
}

.c-resources-card .c-button--brand:hover:not(:disabled), .c-resources-card .c-rte__button:hover:not(:disabled), .c-resources-card .c-standard-form input:hover:not(:disabled)[type='submit'], .c-standard-form .c-resources-card input:hover:not(:disabled)[type='submit'],
.c-resources-card .c-standard-form input:hover:not(:disabled)[type='button'], .c-standard-form .c-resources-card input:hover:not(:disabled)[type='button'], .c-resources-card .th-standard-form input:hover:not(:disabled)[type='submit'], .th-standard-form .c-resources-card input:hover:not(:disabled)[type='submit'], .c-resources-card .c-button--brand:focus:not(:disabled), .c-resources-card .c-rte__button:focus:not(:disabled), .c-resources-card .c-standard-form input:focus:not(:disabled)[type='submit'], .c-standard-form .c-resources-card input:focus:not(:disabled)[type='submit'],
.c-resources-card .c-standard-form input:focus:not(:disabled)[type='button'], .c-standard-form .c-resources-card input:focus:not(:disabled)[type='button'], .c-resources-card .th-standard-form input:focus:not(:disabled)[type='submit'], .th-standard-form .c-resources-card input:focus:not(:disabled)[type='submit'] {
  color: #FFF;
}

.c-resources-summary {
  margin: 3.75rem 0;
}

.c-resources-summary__heading {
  margin-top: 0;
  font-size: 1.875rem;
  line-height: 1.3;
}

.c-resources-summary__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-resource-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.c-resource-item + .c-resource-item {
  margin-top: 0.625rem;
}

.c-resource-item__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

@media print, screen and (min-width: 46.25em) {
  .c-resource-item__info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.c-resource-item__title {
  font-size: 1.125rem;
}

@media print, screen and (min-width: 46.25em) {
  .c-resource-item__title {
    -webkit-box-flex: 70%;
        -ms-flex: 70%;
            flex: 70%;
  }
}

.c-resource-item__label {
  font-weight: bold;
}

@media print, screen and (min-width: 46.25em) {
  .c-resource-item__label {
    -webkit-box-flex: 30%;
        -ms-flex: 30%;
            flex: 30%;
    text-align: center;
  }
}

.c-resource-item__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 0.625rem;
}

.c-resource-item__quantity {
  margin: 0 !important;
  width: 5rem !important;
}

.c-resource-item__remove {
  margin-left: 0.625rem;
  cursor: pointer;
  padding: 0;
  background: transparent;
  border: 0;
}

.c-resource-item__remove:hover svg use {
  fill: #BF4E38;
}

.c-resource-item__remove svg {
  height: 1.25rem;
  width: 1.25rem;
}

.c-resource-item__remove svg use {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.c-simple-form-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media print, screen and (min-width: 46.25em) {
  .c-simple-form-box .cell:nth-child(2n) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.c-simple-form-box__heading {
  font-size: 1.875rem;
  line-height: 1.3;
}

.c-simple-form-box__section + .c-simple-form-box__section {
  margin-top: 3.75rem;
}

.c-simple-form-box select {
  background: #FFF;
  -webkit-appearance: menulist;
     -moz-appearance: menulist;
          appearance: menulist;
}

.c-simple-form-box .c-form-input,
.c-simple-form-box .c-form-select {
  margin-bottom: 1.25rem;
}

.c-simple-form-box .c-form-input input,
.c-simple-form-box .c-form-input select,
.c-simple-form-box .c-form-select input,
.c-simple-form-box .c-form-select select {
  margin-bottom: 0.625rem;
}

.c-simple-form-box .c-form-input,
.c-simple-form-box .c-form-input__control,
.c-simple-form-box .c-form-select__control {
  width: 100%;
  max-width: none;
}

@media print, screen and (min-width: 46.25em) {
  .c-simple-form-box .c-form-input,
  .c-simple-form-box .c-form-input__control,
  .c-simple-form-box .c-form-select__control {
    width: 100%;
    max-width: 27.5rem;
  }
}

.c-simple-form-box__content {
  width: 100%;
}

@media print, screen and (min-width: 61.25em) {
  .c-simple-form-box__content {
    width: 60%;
  }
}

.c-simple-form-box__content .c-form-radio__label {
  position: inherit;
  padding-left: inherit;
  font-weight: 700;
}

.c-simple-form-box__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 1.5rem;
}

.c-simple-form-box__actions .c-button, .c-simple-form-box__actions .c-rte__button {
  margin-bottom: 0.9375rem;
}

@media print, screen and (min-width: 61.25em) {
  .c-simple-form-box__actions .c-button, .c-simple-form-box__actions .c-rte__button {
    margin: 0 1.5rem;
  }
}

@media print, screen and (min-width: 61.25em) {
  .c-simple-form-box__actions .c-button:first-of-type, .c-simple-form-box__actions .c-rte__button:first-of-type {
    margin-left: 0;
  }
}

@media print, screen and (min-width: 61.25em) {
  .c-simple-form-box__actions .c-button:last-of-type, .c-simple-form-box__actions .c-rte__button:last-of-type {
    margin-right: 0;
  }
}

.c-results {
  position: relative;
}

.c-search-loading {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  width: 100%;
  background: rgba(8, 8, 13, 0.75);
}

.c-search-loading__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 2.5rem;
  width: 2.875rem;
}

.c-search-loading__rect {
  height: 100%;
  width: 0.375rem;
  background-color: #FFF;
  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
          animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.c-search-loading__rect--two {
  -webkit-animation-delay: -1.1s;
          animation-delay: -1.1s;
}

.c-search-loading__rect--three {
  -webkit-animation-delay: -1.0s;
          animation-delay: -1.0s;
}

.c-search-loading__rect--four {
  -webkit-animation-delay: -0.9s;
          animation-delay: -0.9s;
}

.c-search-loading__rect--five {
  -webkit-animation-delay: -0.8s;
          animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {
  0%,
  40%,
  100% {
    -webkit-transform: scaleY(0.6);
            transform: scaleY(0.6);
  }
  20% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}

@keyframes sk-stretchdelay {
  0%,
  40%,
  100% {
    -webkit-transform: scaleY(0.6);
            transform: scaleY(0.6);
  }
  20% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}

.c-rte p,
.c-rte ul,
.c-rte ol,
.c-rte table {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.5;
}

.c-rte ul,
.c-rte ol {
  margin-left: 2.5rem;
  padding: 0;
}

.c-rte + .c-rte h2:first-child,
.c-rte + .c-rte .h2:first-child {
  padding-top: 1.5rem;
}

.c-rte h1,
.c-rte .h1 {
  margin: 0 0 0.625rem 0;
  font-family: "brownfox-geometria-extrabold", sans-serif;
  font-size: 2.8125rem;
  line-height: 1.3;
}

@media print, screen and (min-width: 46.25em) {
  .c-rte h1,
  .c-rte .h1 {
    font-size: 3.75rem;
  }
}

.c-rte h1 + .intro,
.c-rte h1 + h2,
.c-rte h1 + p,
.c-rte .h1 + .intro,
.c-rte .h1 + h2,
.c-rte .h1 + p {
  margin-top: 0;
}

.c-rte h2,
.c-rte .h2 {
  color: #404041;
  font-size: 1.75rem;
  line-height: 1.3;
}

@media print, screen and (min-width: 46.25em) {
  .c-rte h2,
  .c-rte .h2 {
    font-size: 2rem;
  }
}

.c-rte h2:first-child,
.c-rte .h2:first-child {
  margin-top: 0;
}

.c-rte h3,
.c-rte .h3 {
  color: #2F7376;
  font-family: "proxima-nova-bold", sans-serif;
  font-size: 1.375rem;
  line-height: 1.3;
}

@media print, screen and (min-width: 46.25em) {
  .c-rte h3,
  .c-rte .h3 {
    font-size: 1.625rem;
  }
}

.c-rte h4,
.c-rte .h4 {
  font-family: "proxima-nova-bold", sans-serif;
  font-size: 1.375rem;
  line-height: 1.3;
}

.c-rte h5,
.c-rte .h5 {
  font-family: "proxima-nova-bold", sans-serif;
  font-size: 1.125rem;
  line-height: 1.3;
}

.c-rte .c-rte__video {
  position: relative;
  padding-top: 1.5625rem;
  padding-bottom: 56.25%;
}

.c-rte .c-rte__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.c-rte .intro {
  margin: 0;
  margin-bottom: 0.9375rem;
  font-family: "brownfox-geometria", sans-serif;
  font-size: 1.375rem;
  line-height: 1.3;
}

@media print, screen and (min-width: 46.25em) {
  .c-rte .intro {
    font-size: 1.625rem;
  }
}

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

.c-rte--black h1,
.c-rte--black .intro {
  color: #404041;
}

.c-rte--theme-one h1 {
  color: #508050;
}

.c-rte--theme-one .intro {
  color: #2F7376;
}

.c-rte--theme-two h1 {
  color: #508050;
}

.c-rte--theme-two .intro {
  color: #404041;
}

.c-rte--theme-three h1 {
  color: #2F7376;
}

.c-rte--theme-three .intro {
  color: #404041;
}

.c-rte--theme-four h1 {
  color: #2F7376;
}

.c-rte--theme-four .intro {
  color: #508050;
}

.c-rte .image--left {
  float: left;
  margin-right: 1.5rem;
  margin-bottom: 1.5rem;
}

.c-rte .image--right {
  float: right;
  margin-bottom: 1.5rem;
  margin-left: 1.5rem;
}

.c-search {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 0;
  height: 5.625rem;
  background: #508050;
}

@media screen and (min-width: 87.5em) {
  .c-search {
    padding: 0 1.625rem 0 1.25rem;
    width: 15rem;
  }
}

.c-header--image .c-search {
  background: none;
}

.c-search__toggle, .c-search__submit {
  fill: #FFF;
  cursor: pointer;
  padding: 0;
  background: transparent;
  border: 0;
}

.c-search__toggle svg, .c-search__submit svg {
  height: 100%;
  width: 100%;
}

.c-search__toggle {
  position: relative;
  z-index: 1;
  margin: 0 1rem;
  padding: 1.125rem 0.9375rem;
  height: 5.625rem;
  width: 5.625rem;
  width: 4rem;
  background: #508050;
}

@media screen and (min-width: 87.5em) {
  .c-search__toggle {
    display: none;
  }
}

.c-header--image .c-search__toggle {
  background: none;
}

.c-search__form {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  visibility: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.09375rem 0.9375rem;
  height: 5.625rem;
  width: 15rem;
  background: #508050;
}

@media screen and (max-width: 87.4375em) {
  .c-search__form {
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  .is-active .c-search__form {
    top: 100%;
    visibility: visible;
  }
}

@media screen and (min-width: 87.5em) {
  .c-search__form {
    position: relative;
    top: 0;
    visibility: visible;
    padding: 1.09375rem 0;
    width: auto;
  }
}

.c-header--image .c-search__form {
  background: #508050;
}

@media screen and (min-width: 87.5em) {
  .c-header--image .c-search__form {
    background: none;
  }
}

.c-search__label {
  position: absolute;
  top: 50%;
  left: 1rem;
  z-index: 0;
  margin: 0;
  padding: 0 0.375rem;
  color: #FFF;
  font-size: 1rem;
  font-weight: 600;
  line-height: 2.0625;
  text-transform: uppercase;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

@media screen and (min-width: 87.5em) {
  .c-search__label {
    left: 0;
  }
}

.c-search__input:focus + .c-search__label,
.c-search__input:valid + .c-search__label {
  top: 1.375rem;
  font-size: 0.75rem;
  line-height: 1;
}

input[type='text'].c-search__input {
  margin: 0;
  padding: 0 0.375rem;
  height: 3.375rem;
  width: calc(100% - 1.75rem);
  background: transparent;
  border: 0;
  color: #FFF;
}

input[type='text'].c-search__input:focus {
  outline-offset: 2px;
}

.c-search__submit {
  margin-left: 1.5rem;
  height: 1.75rem;
  width: 1.75rem;
}

.c-share__list {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
}

@media print, screen and (min-width: 46.25em) {
  .c-share__list {
    -webkit-box-pack: normal;
        -ms-flex-pack: normal;
            justify-content: normal;
    width: 41.66667%;
  }
}

@media print, screen and (min-width: 61.25em) {
  .c-share__list {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    width: auto;
  }
}

.c-share__item {
  margin-left: 0.625rem;
}

.c-share__item:first-child {
  margin: 0;
}

.c-share__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.25rem;
  border-radius: 3.125rem;
  cursor: pointer;
}

.c-share__link {
  fill: #508050;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.c-share__link:focus, .c-share__link:hover {
  fill: #FFF;
}

.c-share__link:focus {
  fill: black;
}

.c-share__link--facebook:focus, .c-share__link--facebook:hover {
  background-color: #3B5998;
}

.c-share__link--twitter:focus, .c-share__link--twitter:hover {
  background-color: #00ACED;
}

.c-share__link--pinterest:focus, .c-share__link--pinterest:hover {
  background-color: #CB2027;
}

.c-share__link--instagram:focus, .c-share__link--instagram:hover {
  background-color: #D93175;
}

.c-share__link--linkedin:focus, .c-share__link--linkedin:hover {
  background-color: #007BB6;
}

.c-share__link--email:focus, .c-share__link--email:hover {
  background-color: gray;
}

.c-share__icon {
  height: 3.125rem;
  width: 3.125rem;
}

.c-sitemap__list--first-level {
  list-style: none;
}

@media print, screen and (min-width: 46.25em) {
  .c-sitemap__list--first-level {
    -webkit-column-fill: balance;
            column-fill: balance;
    -webkit-columns: 2 auto;
            columns: 2 auto;
  }
}

@media print, screen and (min-width: 61.25em) {
  .c-sitemap__list--first-level {
    -webkit-columns: 3 auto;
            columns: 3 auto;
  }
}

.c-sitemap__list--second-level {
  margin-top: 1.5rem;
  list-style: none;
}

.c-sitemap__list--third-level {
  margin-top: 1.5rem;
  margin-left: 3rem;
}

.c-sitemap__item {
  margin-bottom: 3rem;
}

.c-sitemap__item--first-level {
  margin-bottom: 3rem;
  font-size: 1.375rem;
  font-weight: 700;
}

.c-sitemap__item--second-level {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  font-weight: 400;
}

.c-sitemap__item--third-level {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  font-weight: 400;
}

.c-site-map__section {
  display: inline-block;
}

.c-spotlight-ii {
  -webkit-box-shadow: 0 2px 7px 2px rgba(8, 8, 13, 0.15);
          box-shadow: 0 2px 7px 2px rgba(8, 8, 13, 0.15);
}

@media screen and (min-width: 61.25em) {
  .c-spotlight-ii {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.c-spotlight-ii + .c-spotlight-ii {
  margin-top: 1.875rem;
}

.c-spotlight-ii__img {
  display: block;
  margin: 0 auto;
  max-width: 15.625rem;
}

.c-spotlight-ii__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 1.25rem;
  background-color: #FFF;
}

@media screen and (min-width: 46.25em) {
  .c-spotlight-ii__content {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.c-spotlight-ii__title {
  margin: 0 0 1.25rem;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.35;
}

.c-spotlight-ii__link {
  color: #508050;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.35;
}

.c-spotlight-ii__link:focus, .c-spotlight-ii__link:hover {
  text-decoration: underline;
}

.c-spotlight-ii__link:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  display: block;
  height: 100%;
  width: 100%;
}

.c-spotlight-ii__summary {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  letter-spacing: 0;
}

.c-spotlight {
  position: relative;
  -webkit-box-shadow: 0 2px 7px 2px rgba(8, 8, 13, 0.25);
          box-shadow: 0 2px 7px 2px rgba(8, 8, 13, 0.25);
}

.c-spotlight--small {
  height: 100%;
  background-color: #FFF;
  -webkit-box-shadow: 0 2px 7px 2px rgba(8, 8, 13, 0.25);
          box-shadow: 0 2px 7px 2px rgba(8, 8, 13, 0.25);
}

.c-spotlight__img {
  display: block;
  width: 100%;
}

.c-spotlight__content {
  padding: 1.25rem;
  background-color: #FFF;
}

.c-spotlight__ribbon,
.c-spotlight__date {
  display: block;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.c-spotlight__title {
  margin: 0 0 1.25rem;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.35;
}

.c-spotlight__link {
  color: #508050;
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.35;
}

.c-spotlight__link:focus, .c-spotlight__link:hover {
  text-decoration: underline;
}

.c-spotlight__link:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  display: block;
  height: 100%;
  width: 100%;
}

.c-spotlight__summary {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  letter-spacing: 0;
}

.c-standard-form {
  max-width: 75rem;
  margin: 0 auto;
}

.c-standard-form__title {
  margin: 0 0 0.625rem;
  font-weight: 400;
  font-size: 2.5rem;
}

.c-standard-form .umbraco-forms-container {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  grid-gap: 1.25rem;
  padding: 1.5625rem 0;
}

.c-standard-form .umbraco-forms-fieldset {
  border: 0;
  padding: 0;
}

.c-standard-form .umbraco-forms-field {
  max-width: 100%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.c-standard-form .umbraco-forms-field.message {
  width: 100%;
}

.c-standard-form .umbraco-forms-field textarea {
  max-width: 100%;
}

.c-standard-form .umbraco-forms-field input {
  max-width: 100%;
}

.c-standard-form .umbraco-forms-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-gap: 0.9375rem;
}

.c-standard-form .field-validation-error {
  color: #F00;
  display: block;
}

.c-standard-form input[type='submit'],
.c-standard-form input[type='button'] {
  cursor: pointer;
}

.c-standard-form .dataconsent {
  width: 100%;
}

.c-standard-form .checkbox {
  width: 100%;
}

.c-standard-form .recaptcha {
  width: 100%;
}

.c-standard-form .radio {
  width: 100%;
}

.c-stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

@media screen and (max-width: 61.1875em) {
  .c-stats {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.c-stat__title {
  display: block;
  margin-bottom: 1.5rem;
  color: #FFF;
  font-family: "proxima-nova", sans-serif;
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 0.85714;
}

@media screen and (max-width: 61.1875em) {
  .c-stat__title {
    margin-bottom: 0.9375rem;
    font-size: 2.8125rem;
  }
}

.c-stat__description {
  max-width: 13.75rem;
  color: #FFF;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.36364;
}

@media screen and (max-width: 61.1875em) {
  .c-stat__description {
    margin-bottom: 0.9375rem;
    font-size: 1.375rem;
  }
}

.c-stat__cell {
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 3rem 0;
  text-align: center;
}

/*
/ _tabs.scss
*/
.c-tabs {
  margin-bottom: 3rem;
}

.c-tabs__tab {
  position: relative;
  display: inline-block;
  margin-right: 1.5rem;
  padding: 1.5rem 3rem;
  background-color: #2F7376;
  border: 0;
  border-bottom: none;
  color: #FFF;
  font-family: "proxima-nova", sans-serif;
  text-decoration: none;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip: ink;
  cursor: pointer;
}

.c-tabs__tab.is-active {
  background-color: #508050;
  cursor: default;
}

.c-tabs__tab.is-active:hover {
  background-color: #508050;
}

.c-tabs__tab:hover {
  background-color: #286164;
}

.c-tabs__tab:focus {
  z-index: 1;
}

.c-tabs__tabpanel {
  position: relative;
  z-index: 0;
  padding-top: 3rem;
  border-top: 3px solid #508050;
}

.c-tabs__tabpanel:focus {
  z-index: 1;
  border: 3px solid #FFBF47;
  outline: 0;
}

/*
/ _text-block.scss
*/
.c-text-block {
  padding: 3rem 0;
  text-align: center;
}

.c-text-block__title {
  margin-top: 0;
  font-size: 1.75rem;
  line-height: 1.3;
}

@media print, screen and (min-width: 46.25em) {
  .c-text-block__title {
    font-size: 2rem;
  }
}

.c-text-block__body {
  font-size: 1.375rem;
  line-height: 1.3;
}

.c-text-block__body p:last-of-type {
  margin-bottom: 0;
}

.c-text-block__button {
  margin-top: 3rem;
}

.c-title-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 1.25rem;
  min-height: 12.5rem;
  background: no-repeat center center;
  background-size: cover;
}

@media screen and (min-width: 46.25em) {
  .c-title-block {
    min-height: 17.5rem;
  }
}

.c-title-block__inner {
  margin: 0 auto;
  padding: 2.5rem 0;
  width: 100%;
  max-width: 75rem;
}

.c-title-block__heading {
  margin: 0 0 0.9375rem;
  color: #FFF;
  font-family: "brownfox-geometria-extrabold", sans-serif;
  font-size: 2.8125rem;
  font-weight: 700;
  line-height: 1;
}

@media screen and (min-width: 46.25em) {
  .c-title-block__heading {
    font-size: 3.75rem;
  }
}

.c-title-block__strapline {
  color: #FFF;
  font-family: "brownfox-geometria", sans-serif;
  font-size: 1.125rem;
  letter-spacing: 0.0625rem;
  line-height: 1.3;
  text-transform: uppercase;
}

@media screen and (min-width: 46.25em) {
  .c-title-block__strapline {
    font-size: 1.375rem;
    letter-spacing: 0.075rem;
  }
}

.c-vacancy__title {
  margin-top: 0;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.3;
}

@media print, screen and (min-width: 46.25em) {
  .c-vacancy__title {
    font-size: 2.125rem;
  }
}

.c-vacancy-meta__title {
  color: #BF4E38;
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
}

.c-vacancy-meta__detail {
  margin: 0 0 0.9375rem;
  font-size: 1rem;
}

@media print, screen and (min-width: 46.25em) {
  .c-vacancy-meta__detail {
    margin: 0 0 3rem;
  }
}

.c-vacancy__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 1.5rem;
  border-top: 1px dashed #2A5355;
}

@media print, screen and (min-width: 46.25em) {
  .c-vacancy__actions {
    margin-top: 3rem;
    padding-top: 3rem;
  }
}

/*
/ _themes.color-block.scss
*/
.u-color--theme-one .u-color__background {
  background-color: #FFF;
}

.u-color--theme-one .u-color__ribbon {
  color: #08080D;
}

.u-color--theme-one .u-color__summary {
  color: #08080D;
}

.u-color--theme-one .u-color__title {
  color: #08080D;
}

.u-color--theme-one .u-color__foreground {
  color: #08080D;
}

.u-color--theme-one .u-color__link {
  color: #08080D;
}

.u-color--theme-one .u-color__icon {
  fill: #BF4E38;
}

@media screen and (-ms-high-contrast: active) {
  .u-color--theme-one .u-color__icon {
    fill: WindowText;
  }
}

.u-color--theme-one .u-color__button {
  background-color: #FFF;
  border-color: #FFF;
  color: #404041;
}

.u-color--theme-one .u-color__button:hover, .u-color--theme-one .u-color__button:focus {
  background-color: #2A5355;
  border-color: #2A5355;
}

.u-color--theme-two .u-color__background {
  background-color: #508050;
}

.u-color--theme-two .u-color__ribbon {
  color: #FFF;
}

.u-color--theme-two .u-color__summary {
  color: #FFF;
}

.u-color--theme-two .u-color__title {
  color: #FFF;
}

.u-color--theme-two .u-color__foreground {
  color: #FFF;
}

.u-color--theme-two .u-color__link {
  color: #FFF;
}

.u-color--theme-two .u-color__icon {
  fill: #FFF;
}

@media screen and (-ms-high-contrast: active) {
  .u-color--theme-two .u-color__icon {
    fill: WindowText;
  }
}

.u-color--theme-two .u-color__button {
  background-color: #BF4E38;
  border-color: #BF4E38;
  color: #FFF;
}

.u-color--theme-two .u-color__button:hover, .u-color--theme-two .u-color__button:focus {
  background-color: #983e2c;
  border-color: #983e2c;
}

.u-color--theme-three .u-color__background {
  background-color: #2F7376;
}

.u-color--theme-three .u-color__ribbon {
  color: #BF4E38;
}

.u-color--theme-three .u-color__summary {
  color: #404041;
}

.u-color--theme-three .u-color__title {
  color: #2F7376;
}

.u-color--theme-three .u-color__foreground {
  color: #FFF;
}

.u-color--theme-three .u-color__link {
  color: #FFF;
}

.u-color--theme-three .u-color__icon {
  fill: #FFF;
}

@media screen and (-ms-high-contrast: active) {
  .u-color--theme-three .u-color__icon {
    fill: WindowText;
  }
}

.u-color--theme-three .u-color__button {
  background-color: #BF4E38;
  border-color: #BF4E38;
  color: #404041;
}

.u-color--theme-three .u-color__button:hover, .u-color--theme-three .u-color__button:focus {
  background-color: #983e2c;
  border-color: #983e2c;
}

.u-color--theme-four .u-color__background {
  background-color: #BF4E38;
}

.u-color--theme-four .u-color__ribbon {
  color: #BF4E38;
}

.u-color--theme-four .u-color__summary {
  color: #404041;
}

.u-color--theme-four .u-color__title {
  color: #BF4E38;
}

.u-color--theme-four .u-color__foreground {
  color: #FFF;
}

.u-color--theme-four .u-color__link {
  color: #FFF;
}

.u-color--theme-four .u-color__icon {
  fill: #FFF;
}

@media screen and (-ms-high-contrast: active) {
  .u-color--theme-four .u-color__icon {
    fill: WindowText;
  }
}

.u-color--theme-four .u-color__button {
  background-color: #BF4E38;
  border-color: #BF4E38;
  color: #404041;
}

.u-color--theme-four .u-color__button:hover, .u-color--theme-four .u-color__button:focus {
  background-color: #983e2c;
  border-color: #983e2c;
}

/*
/ _utils.color-image-block.scss
*/
.u-color--image-theme-one .u-color__background {
  background-color: #FFF;
}

.u-color--image-theme-one .u-color__heading {
  color: #FFF;
}

.u-color--image-theme-one .u-color__strapline {
  color: #FFF;
}

.u-color--image-theme-one .u-color__button {
  border-color: #FFF;
  color: #FFF;
}

.u-color--image-theme-one .u-color__button:hover, .u-color--image-theme-one .u-color__button:focus {
  border-color: #2A5355;
}

.u-color--image-theme-two .u-color__background {
  background-color: #2F7376;
}

.u-color--image-theme-two .u-color__heading {
  color: #FFF;
}

.u-color--image-theme-two .u-color__strapline {
  color: #FFF;
}

.u-color--image-theme-three .u-color__background {
  background-color: #FFF;
}

.u-color--image-theme-three .u-color__heading {
  color: #2A5355;
}

.u-color--image-theme-three .u-color__strapline {
  color: #FFF;
}

.u-color--image-theme-four .u-color__background {
  background-color: #08080D;
}

.u-color--image-theme-four .u-color__heading {
  color: #FFF;
}

.u-color--image-theme-four .u-color__strapline {
  color: #FFF;
}

/*
/ _utils.color-page-cta.scss
*/
.u-color--cta-theme-one .u-color__background {
  background-color: #33A476;
}

.u-color--cta-theme-one .u-color__title {
  color: #252555;
}

.u-color--cta-theme-one .u-color__text {
  color: #FFF;
}

.u-color--cta-theme-one .u-color__link {
  color: #252555;
}

.u-color--cta-theme-two .u-color__background {
  background-color: #06A7E2;
}

.u-color--cta-theme-two .u-color__title {
  color: #252555;
}

.u-color--cta-theme-two .u-color__text {
  color: #FFF;
}

.u-color--cta-theme-two .u-color__link {
  color: #252555;
}

.c-text-block--theme-one {
  background-color: #FFF;
}

.c-text-block--theme-one .c-text-block__body {
  color: #404041;
}

.c-text-block--theme-one .c-text-block__title {
  color: #404041;
}

.c-text-block--theme-two {
  background-color: #508050;
}

.c-text-block--theme-two .c-text-block__body {
  color: #FFF;
}

.c-text-block--theme-two .c-text-block__title {
  color: #FFF;
}

.c-text-block--theme-three {
  background-color: #2F7376;
}

.c-text-block--theme-three .c-text-block__body {
  color: #FFF;
}

.c-text-block--theme-three .c-text-block__title {
  color: #FFF;
}

/*
/ _trumps.helpers.scss
*/
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  border: 0;
}

.visually-hidden--sm-up {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  border: 0;
}

@media screen and (min-width: 46.25em) {
  .visually-hidden--md-up {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    -webkit-clip-path: inset(50%);
            clip-path: inset(50%);
    border: 0;
  }
}

@media screen and (min-width: 61.25em) {
  .visually-hidden--lg-up {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    -webkit-clip-path: inset(50%);
            clip-path: inset(50%);
    border: 0;
  }
}

@media screen and (min-width: 46.25em) and (max-width: 61.1875em) {
  .visually-hidden--only-md {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    -webkit-clip-path: inset(50%);
            clip-path: inset(50%);
    border: 0;
  }
}

@media screen and (max-width: 19.9375em) {
  .visually-hidden--sm-down {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    -webkit-clip-path: inset(50%);
            clip-path: inset(50%);
    border: 0;
  }
}

@media screen and (max-width: 46.1875em) {
  .visually-hidden--smish-down {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    -webkit-clip-path: inset(50%);
            clip-path: inset(50%);
    border: 0;
  }
}

@media screen and (max-width: 61.1875em) {
  .visually-hidden--md-down {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    -webkit-clip-path: inset(50%);
            clip-path: inset(50%);
    border: 0;
  }
}

@media screen and (min-width: 61.25em) {
  .visually-hidden--lg-down {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    -webkit-clip-path: inset(50%);
            clip-path: inset(50%);
    border: 0;
  }
}

.is-hidden {
  display: none;
  visibility: hidden;
}

.is-visible {
  display: block;
  visibility: visible;
}

.is-hidden-mobile {
  display: none;
  visibility: hidden;
}

@media screen and (min-width: 61.25em) {
  .is-hidden-mobile {
    display: block;
    visibility: visible;
  }
  .is-hidden-mobile--inline {
    display: inline;
    visibility: visible;
  }
}

@media screen and (min-width: 61.25em) {
  .is-hidden-desktop {
    display: none;
    visibility: hidden;
  }
}

.u-right {
  float: right;
}

.u-left {
  float: left;
}

.u-text-center--first .cell:first-child {
  text-align: center;
}

.u-text-center--last .cell:last-child {
  text-align: center;
}

.u-text-center--all .cell {
  text-align: center;
}

.u-text-right--first .cell:first-child {
  text-align: right;
}

.u-text-right--last .cell:last-child {
  text-align: right;
}

.u-text-right--all .cell {
  text-align: right;
}

@media print, screen and (min-width: 46.25em) {
  .u-medium-text-right--first .cell:first-child {
    text-align: right;
  }
  .u-medium-text-right--last .cell:last-child {
    text-align: right;
  }
  .u-medium-text-right--all .cell {
    text-align: right;
  }
}

.u-spacing--top {
  padding-top: 1.5rem;
}

@media screen and (max-width: 46.1875em) {
  .u-spacing--top .cell:not(:last-child) {
    padding-top: 1.5rem;
  }
}

@media screen and (min-width: 46.25em) {
  .u-spacing--top {
    padding-top: 3rem;
  }
}

@media screen and (min-width: 61.25em) {
  .u-spacing--top {
    padding-top: 3rem;
  }
}

.u-spacing--bottom {
  padding-bottom: 1.5rem;
}

@media screen and (max-width: 46.1875em) {
  .u-spacing--bottom .cell:not(:last-child) {
    padding-bottom: 1.5rem;
  }
}

@media screen and (min-width: 46.25em) {
  .u-spacing--bottom {
    padding-bottom: 3rem;
  }
}

@media screen and (min-width: 61.25em) {
  .u-spacing--bottom {
    padding-bottom: 3rem;
  }
}

.u-spacing--top-and-bottom {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

@media screen and (max-width: 46.1875em) {
  .u-spacing--top-and-bottom .cell:not(:last-child) {
    padding-top: 1.5rem;
  }
}

@media screen and (max-width: 46.1875em) {
  .u-spacing--top-and-bottom .cell:not(:last-child) {
    padding-bottom: 1.5rem;
  }
}

@media screen and (min-width: 46.25em) {
  .u-spacing--top-and-bottom {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

@media screen and (min-width: 61.25em) {
  .u-spacing--top-and-bottom {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

.u-spacing--left-and-right {
  padding-left: 0;
  padding-right: 0;
}

@media screen and (max-width: 46.1875em) {
  .u-spacing--left-and-right .cell:not(:last-child) {
    padding-left: 0;
  }
}

@media screen and (max-width: 46.1875em) {
  .u-spacing--left-and-right .cell:not(:last-child) {
    padding-right: 0;
  }
}

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

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

/*
/ __trumps.hacks.scss
*/
/*

# TRUMPS


*/
.sc-edit .c-video-modal__link:after,
.sc-edit .c-spotlight__link:after,
.sc-edit .c-illustrated-cta__link:after,
.sc-edit .c-icon-block__link:after,
.sc-edit .c-cta__link:after,
.sc-edit .c-illustrated-cta-ii__link:after {
  display: none;
}

.sc-edit .c-mega-spotlight__link:before {
  display: none;
}

.sc-edit .c-accordion__item-body {
  display: block !important;
}

.wf-loading h1,
.wf-loading h2,
.wf-loading h3,
.wf-loading h4,
.wf-loading h5,
.wf-loading p,
.wf-loading input[type='submit'] {
  visibility: hidden;
}

.th-standard-form input[type='submit'] {
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
}

.th-standard-form input[type='submit']:hover:not(:disabled), .th-standard-form input[type='submit']:focus:not(:disabled) {
  background-color: #983e2c;
  color: #FFF;
}

/*
/ _trumps.print.scss
*/
@media print {
  .c-rich-text {
    display: block !important;
  }
  .c-rich-text a[href]:after {
    content: " (" attr(href) ")";
  }
  .c-rich-text abbr[title]:after {
    content: " (" attr(title) ")";
  }
  .c-rich-text a[href^="#"]:after {
    content: "";
  }
  pre, blockquote {
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr, img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }
  h2, h3 {
    page-break-after: avoid;
  }
  body {
    color: black;
  }
}

/*
#Print
*/
/*
/ _trumps.vendor.scss
*/
.c-cta--theme-one {
  background-color: #508050;
}

.c-cta--theme-one:hover, .c-cta--theme-one:focus {
  background-color: #467046 !important;
}

.c-cta--theme-one .c-cta__text {
  color: #FFF;
}

.c-cta--theme-one .c-cta__icon use {
  fill: #FFF;
}

.c-cta--theme-two {
  background-color: #2F7376;
}

.c-cta--theme-two:hover, .c-cta--theme-two:focus {
  background-color: #286164 !important;
}

.c-cta--theme-two .c-cta__text {
  color: #FFF;
}

.c-cta--theme-two .c-cta__icon use {
  fill: #FFF;
}

.c-cta--theme-three {
  background-color: #BF4E38;
}

.c-cta--theme-three:hover, .c-cta--theme-three:focus {
  background-color: #ab4632 !important;
}

.c-cta--theme-three .c-cta__text {
  color: #FFF;
}

.c-cta--theme-three .c-cta__icon use {
  fill: #FFF;
}

.c-cta--theme-four {
  background-color: #404041;
}

.c-cta--theme-four:hover, .c-cta--theme-four:focus {
  background-color: #333334 !important;
}

.c-cta--theme-four .c-cta__text {
  color: #FFF;
}

.c-cta--theme-four .c-cta__icon use {
  fill: #FFF;
}

/*# sourceMappingURL=../maps/css/geneco.css.map */
