@charset "UTF-8";
/******************************************************************

Stylesheet: Main Stylesheet

Here's where the magic happens. Here is where you import
all of your Sass files so they can compile into one
CSS file.

******************************************************************/
/******************************************************************

Stylesheet: Mixins & Constants Stylesheet

This is where you can take advantage of Sass' great features:
Mixins & Constants.

******************************************************************/
/*********************
TOOLS
*********************/
.image-replacement {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden; }

/*********************
COLORS
*********************/
/*********************
TYPOGRAPHY
*********************/
/*	@font-face {
    	font-family: 'Font Name';
    	src: url('assets/fonts/font-name.eot');
    	src: url('assets/fonts/font-name.eot?#iefix') format('embedded-opentype'),
             url('assets/fonts/font-name.woff') format('woff'),
             url('assets/fonts/font-name.ttf') format('truetype'),
             url('assets/fonts/font-name.svg#font-name') format('svg');
    	font-weight: normal;
    	font-style: normal;
	}
*/
span.amp {
  font-family: Baskerville,'Goudy Old Style',Palatino,'Book Antiqua',serif !important;
  font-style: italic; }

/*********************
CSS3 GRADIENTS.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
@font-face {
  font-family: 'AkkuratReg';
  src: url("../fonts/lineto-akkurat-regular.eot"), url("../fonts/lineto-akkurat-regular.woff") format("woff"), url("../fonts/lineto-akkurat-regular.ttf") format("truetype"), url("../fonts/lineto-akkurat-regular.svg") format("svg");
  /* Legacy iOS */ }

@font-face {
  font-family: 'AkkuratBold';
  src: url("../fonts/lineto-akkurat-bold.eot"), url("../fonts/lineto-akkurat-bold.woff") format("woff"), url("../fonts/lineto-akkurat-bold.ttf") format("truetype"), url("../fonts/lineto-akkurat-bold.svg") format("svg");
  /* Legacy iOS */ }

@font-face {
  font-family: 'AkkuratMono';
  src: url("../fonts/lineto-akkuratmono-regular.eot"), url("../fonts/lineto-akkuratmono-regular.woff") format("woff"), url("../fonts/lineto-akkuratmono-regular.woff2") format("woff2");
  /* Pretty Modern Browsers */ }

/**
 * Foundation for Sites by ZURB
 * Version 6.3.1
 * foundation.zurb.com
 * Licensed under MIT Open Source
 */
.slide-in-down.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(-100%);
  transition-property: transform, opacity;
  backface-visibility: hidden; }

.slide-in-down.mui-enter.mui-enter-active {
  transform: translateY(0); }

.slide-in-left.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(-100%);
  transition-property: transform, opacity;
  backface-visibility: hidden; }

.slide-in-left.mui-enter.mui-enter-active {
  transform: translateX(0); }

.slide-in-up.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(100%);
  transition-property: transform, opacity;
  backface-visibility: hidden; }

.slide-in-up.mui-enter.mui-enter-active {
  transform: translateY(0); }

.slide-in-right.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(100%);
  transition-property: transform, opacity;
  backface-visibility: hidden; }

.slide-in-right.mui-enter.mui-enter-active {
  transform: translateX(0); }

.slide-out-down.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(0);
  transition-property: transform, opacity;
  backface-visibility: hidden; }

.slide-out-down.mui-leave.mui-leave-active {
  transform: translateY(100%); }

.slide-out-right.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(0);
  transition-property: transform, opacity;
  backface-visibility: hidden; }

.slide-out-right.mui-leave.mui-leave-active {
  transform: translateX(100%); }

.slide-out-up.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateY(0);
  transition-property: transform, opacity;
  backface-visibility: hidden; }

.slide-out-up.mui-leave.mui-leave-active {
  transform: translateY(-100%); }

.slide-out-left.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: translateX(0);
  transition-property: transform, opacity;
  backface-visibility: hidden; }

.slide-out-left.mui-leave.mui-leave-active {
  transform: translateX(-100%); }

.fade-in.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  opacity: 0;
  transition-property: opacity; }

.fade-in.mui-enter.mui-enter-active {
  opacity: 1; }

.fade-out.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  opacity: 1;
  transition-property: opacity; }

.fade-out.mui-leave.mui-leave-active {
  opacity: 0; }

.hinge-in-from-top.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateX(-90deg);
  transform-origin: top;
  transition-property: transform, opacity;
  opacity: 0; }

.hinge-in-from-top.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1; }

.hinge-in-from-right.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateY(-90deg);
  transform-origin: right;
  transition-property: transform, opacity;
  opacity: 0; }

.hinge-in-from-right.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1; }

.hinge-in-from-bottom.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateX(90deg);
  transform-origin: bottom;
  transition-property: transform, opacity;
  opacity: 0; }

.hinge-in-from-bottom.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1; }

.hinge-in-from-left.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateY(90deg);
  transform-origin: left;
  transition-property: transform, opacity;
  opacity: 0; }

.hinge-in-from-left.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1; }

.hinge-in-from-middle-x.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateX(-90deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 0; }

.hinge-in-from-middle-x.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1; }

.hinge-in-from-middle-y.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotateY(-90deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 0; }

.hinge-in-from-middle-y.mui-enter.mui-enter-active {
  transform: perspective(2000px) rotate(0deg);
  opacity: 1; }

.hinge-out-from-top.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: top;
  transition-property: transform, opacity;
  opacity: 1; }

.hinge-out-from-top.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateX(-90deg);
  opacity: 0; }

.hinge-out-from-right.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: right;
  transition-property: transform, opacity;
  opacity: 1; }

.hinge-out-from-right.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateY(-90deg);
  opacity: 0; }

.hinge-out-from-bottom.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: bottom;
  transition-property: transform, opacity;
  opacity: 1; }

.hinge-out-from-bottom.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateX(90deg);
  opacity: 0; }

.hinge-out-from-left.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: left;
  transition-property: transform, opacity;
  opacity: 1; }

.hinge-out-from-left.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateY(90deg);
  opacity: 0; }

.hinge-out-from-middle-x.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 1; }

.hinge-out-from-middle-x.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateX(-90deg);
  opacity: 0; }

.hinge-out-from-middle-y.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: perspective(2000px) rotate(0deg);
  transform-origin: center;
  transition-property: transform, opacity;
  opacity: 1; }

.hinge-out-from-middle-y.mui-leave.mui-leave-active {
  transform: perspective(2000px) rotateY(-90deg);
  opacity: 0; }

.scale-in-up.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(0.5);
  transition-property: transform, opacity;
  opacity: 0; }

.scale-in-up.mui-enter.mui-enter-active {
  transform: scale(1);
  opacity: 1; }

.scale-in-down.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(1.5);
  transition-property: transform, opacity;
  opacity: 0; }

.scale-in-down.mui-enter.mui-enter-active {
  transform: scale(1);
  opacity: 1; }

.scale-out-up.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(1);
  transition-property: transform, opacity;
  opacity: 1; }

.scale-out-up.mui-leave.mui-leave-active {
  transform: scale(1.5);
  opacity: 0; }

.scale-out-down.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: scale(1);
  transition-property: transform, opacity;
  opacity: 1; }

.scale-out-down.mui-leave.mui-leave-active {
  transform: scale(0.5);
  opacity: 0; }

.spin-in.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(-0.75turn);
  transition-property: transform, opacity;
  opacity: 0; }

.spin-in.mui-enter.mui-enter-active {
  transform: rotate(0);
  opacity: 1; }

.spin-out.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(0);
  transition-property: transform, opacity;
  opacity: 1; }

.spin-out.mui-leave.mui-leave-active {
  transform: rotate(0.75turn);
  opacity: 0; }

.spin-in-ccw.mui-enter {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(0.75turn);
  transition-property: transform, opacity;
  opacity: 0; }

.spin-in-ccw.mui-enter.mui-enter-active {
  transform: rotate(0);
  opacity: 1; }

.spin-out-ccw.mui-leave {
  transition-duration: 500ms;
  transition-timing-function: linear;
  transform: rotate(0);
  transition-property: transform, opacity;
  opacity: 1; }

.spin-out-ccw.mui-leave.mui-leave-active {
  transform: rotate(-0.75turn);
  opacity: 0; }

.slow {
  transition-duration: 750ms !important; }

.fast {
  transition-duration: 250ms !important; }

.linear {
  transition-timing-function: linear !important; }

.ease {
  transition-timing-function: ease !important; }

.ease-in {
  transition-timing-function: ease-in !important; }

.ease-out {
  transition-timing-function: ease-out !important; }

.ease-in-out {
  transition-timing-function: ease-in-out !important; }

.bounce-in {
  transition-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important; }

.bounce-out {
  transition-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important; }

.bounce-in-out {
  transition-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important; }

.short-delay {
  transition-delay: 300ms !important; }

.long-delay {
  transition-delay: 700ms !important; }

.shake {
  animation-name: shake-7; }

@keyframes shake-7 {
  0%, 10%, 20%, 30%, 40%, 50%, 60%, 70%, 80%, 90% {
    transform: translateX(7%); }
  5%, 15%, 25%, 35%, 45%, 55%, 65%, 75%, 85%, 95% {
    transform: translateX(-7%); } }

.spin-cw {
  animation-name: spin-cw-1turn; }

@keyframes spin-cw-1turn {
  0% {
    transform: rotate(-1turn); }
  100% {
    transform: rotate(0); } }

.spin-ccw {
  animation-name: spin-cw-1turn; }

@keyframes spin-cw-1turn {
  0% {
    transform: rotate(0); }
  100% {
    transform: rotate(1turn); } }

.wiggle {
  animation-name: wiggle-7deg; }

@keyframes wiggle-7deg {
  40%, 50%, 60% {
    transform: rotate(7deg); }
  35%, 45%, 55%, 65% {
    transform: rotate(-7deg); }
  0%, 30%, 70%, 100% {
    transform: rotate(0); } }

.shake,
.spin-cw,
.spin-ccw,
.wiggle {
  animation-duration: 500ms; }

.infinite {
  animation-iteration-count: infinite; }

.slow {
  animation-duration: 750ms !important; }

.fast {
  animation-duration: 250ms !important; }

.linear {
  animation-timing-function: linear !important; }

.ease {
  animation-timing-function: ease !important; }

.ease-in {
  animation-timing-function: ease-in !important; }

.ease-out {
  animation-timing-function: ease-out !important; }

.ease-in-out {
  animation-timing-function: ease-in-out !important; }

.bounce-in {
  animation-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important; }

.bounce-out {
  animation-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important; }

.bounce-in-out {
  animation-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important; }

.short-delay {
  animation-delay: 300ms !important; }

.long-delay {
  animation-delay: 700ms !important; }

/*! 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, .statement h2, .statement blockquote p, blockquote .statement p, .statement .tag-filter-item__link,
.page-end-statement h2,
.page-end-statement blockquote p, blockquote
.page-end-statement p,
.page-end-statement .tag-filter-item__link, .newsletter h2, .newsletter blockquote p, blockquote .newsletter p, .newsletter .tag-filter-item__link, .tile--large h2, .tile--large blockquote p, blockquote .tile--large p, .tile--large .tag-filter-item__link {
  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 {
  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 */
  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"] {
  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 {
  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; }

.foundation-mq {
  font-family: "small=0em&medium=37.5em&large=48em&xlarge=64em&xxlarge=90em"; }

html {
  box-sizing: border-box;
  font-size: 100%; }

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

body {
  margin: 0;
  padding: 0;
  background: #fff;
  font-family: "AkkuratReg", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-weight: normal;
  line-height: 1.6;
  color: #0a0a0a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic; }

textarea {
  height: auto;
  min-height: 50px;
  border-radius: 0; }

select {
  box-sizing: border-box;
  width: 100%;
  border-radius: 0; }

.map_canvas img,
.map_canvas embed,
.map_canvas object,
.mqa-display img,
.mqa-display embed,
.mqa-display object {
  max-width: none !important; }

button {
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  border-radius: 0;
  background: transparent;
  line-height: 1; }
  [data-whatinput='mouse'] button {
    outline: 0; }

pre {
  overflow: auto; }

.is-visible {
  display: block !important; }

.is-hidden {
  display: none !important; }

.row {
  max-width: 64rem;
  margin-right: auto;
  margin-left: auto; }
  .row::before, .row::after {
    display: table;
    content: ' '; }
  .row::after {
    clear: both; }
  .row.collapse > .column, .row.collapse > .columns {
    padding-right: 0;
    padding-left: 0; }
  .row .row {
    margin-right: -0.625rem;
    margin-left: -0.625rem; }
    @media print, screen and (min-width: 37.5em) {
      .row .row {
        margin-right: -0.625rem;
        margin-left: -0.625rem; } }
    @media print, screen and (min-width: 48em) {
      .row .row {
        margin-right: -0.625rem;
        margin-left: -0.625rem; } }
    @media screen and (min-width: 64em) {
      .row .row {
        margin-right: -0.625rem;
        margin-left: -0.625rem; } }
    @media screen and (min-width: 90em) {
      .row .row {
        margin-right: -0.625rem;
        margin-left: -0.625rem; } }
    .row .row.collapse {
      margin-right: 0;
      margin-left: 0; }
  .row.expanded {
    max-width: none; }
    .row.expanded .row {
      margin-right: auto;
      margin-left: auto; }
  .row:not(.expanded) .row {
    max-width: none; }
  .row.gutter-small > .column, .row.gutter-small > .columns {
    padding-right: 0.625rem;
    padding-left: 0.625rem; }
  .row.gutter-medium > .column, .row.gutter-medium > .columns {
    padding-right: 0.625rem;
    padding-left: 0.625rem; }

.column, .columns {
  width: 100%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem; }
  @media print, screen and (min-width: 37.5em) {
    .column, .columns {
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }

.column.row.row, .row.row.columns {
  float: none; }

.row .column.row.row, .row .row.row.columns {
  margin-right: 0;
  margin-left: 0;
  padding-right: 0;
  padding-left: 0; }

.small-1 {
  width: 8.33333%; }

.small-push-1 {
  position: relative;
  left: 8.33333%; }

.small-pull-1 {
  position: relative;
  left: -8.33333%; }

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

.small-2 {
  width: 16.66667%; }

.small-push-2 {
  position: relative;
  left: 16.66667%; }

.small-pull-2 {
  position: relative;
  left: -16.66667%; }

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

.small-3 {
  width: 25%; }

.small-push-3 {
  position: relative;
  left: 25%; }

.small-pull-3 {
  position: relative;
  left: -25%; }

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

.small-4 {
  width: 33.33333%; }

.small-push-4 {
  position: relative;
  left: 33.33333%; }

.small-pull-4 {
  position: relative;
  left: -33.33333%; }

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

.small-5 {
  width: 41.66667%; }

.small-push-5 {
  position: relative;
  left: 41.66667%; }

.small-pull-5 {
  position: relative;
  left: -41.66667%; }

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

.small-6 {
  width: 50%; }

.small-push-6 {
  position: relative;
  left: 50%; }

.small-pull-6 {
  position: relative;
  left: -50%; }

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

.small-7 {
  width: 58.33333%; }

.small-push-7 {
  position: relative;
  left: 58.33333%; }

.small-pull-7 {
  position: relative;
  left: -58.33333%; }

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

.small-8 {
  width: 66.66667%; }

.small-push-8 {
  position: relative;
  left: 66.66667%; }

.small-pull-8 {
  position: relative;
  left: -66.66667%; }

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

.small-9 {
  width: 75%; }

.small-push-9 {
  position: relative;
  left: 75%; }

.small-pull-9 {
  position: relative;
  left: -75%; }

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

.small-10 {
  width: 83.33333%; }

.small-push-10 {
  position: relative;
  left: 83.33333%; }

.small-pull-10 {
  position: relative;
  left: -83.33333%; }

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

.small-11 {
  width: 91.66667%; }

.small-push-11 {
  position: relative;
  left: 91.66667%; }

.small-pull-11 {
  position: relative;
  left: -91.66667%; }

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

.small-12 {
  width: 100%; }

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

.small-up-1 > .column, .small-up-1 > .columns {
  float: left;
  width: 100%; }
  .small-up-1 > .column:nth-of-type(1n), .small-up-1 > .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-1 > .column:nth-of-type(1n+1), .small-up-1 > .columns:nth-of-type(1n+1) {
    clear: both; }
  .small-up-1 > .column:last-child, .small-up-1 > .columns:last-child {
    float: left; }

.small-up-2 > .column, .small-up-2 > .columns {
  float: left;
  width: 50%; }
  .small-up-2 > .column:nth-of-type(1n), .small-up-2 > .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-2 > .column:nth-of-type(2n+1), .small-up-2 > .columns:nth-of-type(2n+1) {
    clear: both; }
  .small-up-2 > .column:last-child, .small-up-2 > .columns:last-child {
    float: left; }

.small-up-3 > .column, .small-up-3 > .columns {
  float: left;
  width: 33.33333%; }
  .small-up-3 > .column:nth-of-type(1n), .small-up-3 > .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-3 > .column:nth-of-type(3n+1), .small-up-3 > .columns:nth-of-type(3n+1) {
    clear: both; }
  .small-up-3 > .column:last-child, .small-up-3 > .columns:last-child {
    float: left; }

.small-up-4 > .column, .small-up-4 > .columns {
  float: left;
  width: 25%; }
  .small-up-4 > .column:nth-of-type(1n), .small-up-4 > .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-4 > .column:nth-of-type(4n+1), .small-up-4 > .columns:nth-of-type(4n+1) {
    clear: both; }
  .small-up-4 > .column:last-child, .small-up-4 > .columns:last-child {
    float: left; }

.small-up-5 > .column, .small-up-5 > .columns {
  float: left;
  width: 20%; }
  .small-up-5 > .column:nth-of-type(1n), .small-up-5 > .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-5 > .column:nth-of-type(5n+1), .small-up-5 > .columns:nth-of-type(5n+1) {
    clear: both; }
  .small-up-5 > .column:last-child, .small-up-5 > .columns:last-child {
    float: left; }

.small-up-6 > .column, .small-up-6 > .columns {
  float: left;
  width: 16.66667%; }
  .small-up-6 > .column:nth-of-type(1n), .small-up-6 > .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-6 > .column:nth-of-type(6n+1), .small-up-6 > .columns:nth-of-type(6n+1) {
    clear: both; }
  .small-up-6 > .column:last-child, .small-up-6 > .columns:last-child {
    float: left; }

.small-up-7 > .column, .small-up-7 > .columns {
  float: left;
  width: 14.28571%; }
  .small-up-7 > .column:nth-of-type(1n), .small-up-7 > .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-7 > .column:nth-of-type(7n+1), .small-up-7 > .columns:nth-of-type(7n+1) {
    clear: both; }
  .small-up-7 > .column:last-child, .small-up-7 > .columns:last-child {
    float: left; }

.small-up-8 > .column, .small-up-8 > .columns {
  float: left;
  width: 12.5%; }
  .small-up-8 > .column:nth-of-type(1n), .small-up-8 > .columns:nth-of-type(1n) {
    clear: none; }
  .small-up-8 > .column:nth-of-type(8n+1), .small-up-8 > .columns:nth-of-type(8n+1) {
    clear: both; }
  .small-up-8 > .column:last-child, .small-up-8 > .columns:last-child {
    float: left; }

.small-collapse > .column, .small-collapse > .columns {
  padding-right: 0;
  padding-left: 0; }

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

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

.small-uncollapse > .column, .small-uncollapse > .columns {
  padding-right: 0.625rem;
  padding-left: 0.625rem; }

.small-centered {
  margin-right: auto;
  margin-left: auto; }
  .small-centered, .small-centered:last-child:not(:first-child) {
    float: none;
    clear: both; }

.small-uncentered,
.small-push-0,
.small-pull-0 {
  position: static;
  float: left;
  margin-right: 0;
  margin-left: 0; }

@media print, screen and (min-width: 37.5em) {
  .medium-1 {
    width: 8.33333%; }
  .medium-push-1 {
    position: relative;
    left: 8.33333%; }
  .medium-pull-1 {
    position: relative;
    left: -8.33333%; }
  .medium-offset-0 {
    margin-left: 0%; }
  .medium-2 {
    width: 16.66667%; }
  .medium-push-2 {
    position: relative;
    left: 16.66667%; }
  .medium-pull-2 {
    position: relative;
    left: -16.66667%; }
  .medium-offset-1 {
    margin-left: 8.33333%; }
  .medium-3 {
    width: 25%; }
  .medium-push-3 {
    position: relative;
    left: 25%; }
  .medium-pull-3 {
    position: relative;
    left: -25%; }
  .medium-offset-2 {
    margin-left: 16.66667%; }
  .medium-4 {
    width: 33.33333%; }
  .medium-push-4 {
    position: relative;
    left: 33.33333%; }
  .medium-pull-4 {
    position: relative;
    left: -33.33333%; }
  .medium-offset-3 {
    margin-left: 25%; }
  .medium-5 {
    width: 41.66667%; }
  .medium-push-5 {
    position: relative;
    left: 41.66667%; }
  .medium-pull-5 {
    position: relative;
    left: -41.66667%; }
  .medium-offset-4 {
    margin-left: 33.33333%; }
  .medium-6 {
    width: 50%; }
  .medium-push-6 {
    position: relative;
    left: 50%; }
  .medium-pull-6 {
    position: relative;
    left: -50%; }
  .medium-offset-5 {
    margin-left: 41.66667%; }
  .medium-7 {
    width: 58.33333%; }
  .medium-push-7 {
    position: relative;
    left: 58.33333%; }
  .medium-pull-7 {
    position: relative;
    left: -58.33333%; }
  .medium-offset-6 {
    margin-left: 50%; }
  .medium-8 {
    width: 66.66667%; }
  .medium-push-8 {
    position: relative;
    left: 66.66667%; }
  .medium-pull-8 {
    position: relative;
    left: -66.66667%; }
  .medium-offset-7 {
    margin-left: 58.33333%; }
  .medium-9 {
    width: 75%; }
  .medium-push-9 {
    position: relative;
    left: 75%; }
  .medium-pull-9 {
    position: relative;
    left: -75%; }
  .medium-offset-8 {
    margin-left: 66.66667%; }
  .medium-10 {
    width: 83.33333%; }
  .medium-push-10 {
    position: relative;
    left: 83.33333%; }
  .medium-pull-10 {
    position: relative;
    left: -83.33333%; }
  .medium-offset-9 {
    margin-left: 75%; }
  .medium-11 {
    width: 91.66667%; }
  .medium-push-11 {
    position: relative;
    left: 91.66667%; }
  .medium-pull-11 {
    position: relative;
    left: -91.66667%; }
  .medium-offset-10 {
    margin-left: 83.33333%; }
  .medium-12 {
    width: 100%; }
  .medium-offset-11 {
    margin-left: 91.66667%; }
  .medium-up-1 > .column, .medium-up-1 > .columns {
    float: left;
    width: 100%; }
    .medium-up-1 > .column:nth-of-type(1n), .medium-up-1 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-1 > .column:nth-of-type(1n+1), .medium-up-1 > .columns:nth-of-type(1n+1) {
      clear: both; }
    .medium-up-1 > .column:last-child, .medium-up-1 > .columns:last-child {
      float: left; }
  .medium-up-2 > .column, .medium-up-2 > .columns {
    float: left;
    width: 50%; }
    .medium-up-2 > .column:nth-of-type(1n), .medium-up-2 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-2 > .column:nth-of-type(2n+1), .medium-up-2 > .columns:nth-of-type(2n+1) {
      clear: both; }
    .medium-up-2 > .column:last-child, .medium-up-2 > .columns:last-child {
      float: left; }
  .medium-up-3 > .column, .medium-up-3 > .columns {
    float: left;
    width: 33.33333%; }
    .medium-up-3 > .column:nth-of-type(1n), .medium-up-3 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-3 > .column:nth-of-type(3n+1), .medium-up-3 > .columns:nth-of-type(3n+1) {
      clear: both; }
    .medium-up-3 > .column:last-child, .medium-up-3 > .columns:last-child {
      float: left; }
  .medium-up-4 > .column, .medium-up-4 > .columns {
    float: left;
    width: 25%; }
    .medium-up-4 > .column:nth-of-type(1n), .medium-up-4 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-4 > .column:nth-of-type(4n+1), .medium-up-4 > .columns:nth-of-type(4n+1) {
      clear: both; }
    .medium-up-4 > .column:last-child, .medium-up-4 > .columns:last-child {
      float: left; }
  .medium-up-5 > .column, .medium-up-5 > .columns {
    float: left;
    width: 20%; }
    .medium-up-5 > .column:nth-of-type(1n), .medium-up-5 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-5 > .column:nth-of-type(5n+1), .medium-up-5 > .columns:nth-of-type(5n+1) {
      clear: both; }
    .medium-up-5 > .column:last-child, .medium-up-5 > .columns:last-child {
      float: left; }
  .medium-up-6 > .column, .medium-up-6 > .columns {
    float: left;
    width: 16.66667%; }
    .medium-up-6 > .column:nth-of-type(1n), .medium-up-6 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-6 > .column:nth-of-type(6n+1), .medium-up-6 > .columns:nth-of-type(6n+1) {
      clear: both; }
    .medium-up-6 > .column:last-child, .medium-up-6 > .columns:last-child {
      float: left; }
  .medium-up-7 > .column, .medium-up-7 > .columns {
    float: left;
    width: 14.28571%; }
    .medium-up-7 > .column:nth-of-type(1n), .medium-up-7 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-7 > .column:nth-of-type(7n+1), .medium-up-7 > .columns:nth-of-type(7n+1) {
      clear: both; }
    .medium-up-7 > .column:last-child, .medium-up-7 > .columns:last-child {
      float: left; }
  .medium-up-8 > .column, .medium-up-8 > .columns {
    float: left;
    width: 12.5%; }
    .medium-up-8 > .column:nth-of-type(1n), .medium-up-8 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-8 > .column:nth-of-type(8n+1), .medium-up-8 > .columns:nth-of-type(8n+1) {
      clear: both; }
    .medium-up-8 > .column:last-child, .medium-up-8 > .columns:last-child {
      float: left; }
  .medium-collapse > .column, .medium-collapse > .columns {
    padding-right: 0;
    padding-left: 0; }
  .medium-collapse .row {
    margin-right: 0;
    margin-left: 0; }
  .expanded.row .medium-collapse.row {
    margin-right: 0;
    margin-left: 0; }
  .medium-uncollapse > .column, .medium-uncollapse > .columns {
    padding-right: 0.625rem;
    padding-left: 0.625rem; }
  .medium-centered {
    margin-right: auto;
    margin-left: auto; }
    .medium-centered, .medium-centered:last-child:not(:first-child) {
      float: none;
      clear: both; }
  .medium-uncentered,
  .medium-push-0,
  .medium-pull-0 {
    position: static;
    float: left;
    margin-right: 0;
    margin-left: 0; } }

@media print, screen and (min-width: 48em) {
  .large-1 {
    width: 8.33333%; }
  .large-push-1 {
    position: relative;
    left: 8.33333%; }
  .large-pull-1 {
    position: relative;
    left: -8.33333%; }
  .large-offset-0 {
    margin-left: 0%; }
  .large-2 {
    width: 16.66667%; }
  .large-push-2 {
    position: relative;
    left: 16.66667%; }
  .large-pull-2 {
    position: relative;
    left: -16.66667%; }
  .large-offset-1 {
    margin-left: 8.33333%; }
  .large-3 {
    width: 25%; }
  .large-push-3 {
    position: relative;
    left: 25%; }
  .large-pull-3 {
    position: relative;
    left: -25%; }
  .large-offset-2 {
    margin-left: 16.66667%; }
  .large-4 {
    width: 33.33333%; }
  .large-push-4 {
    position: relative;
    left: 33.33333%; }
  .large-pull-4 {
    position: relative;
    left: -33.33333%; }
  .large-offset-3 {
    margin-left: 25%; }
  .large-5 {
    width: 41.66667%; }
  .large-push-5 {
    position: relative;
    left: 41.66667%; }
  .large-pull-5 {
    position: relative;
    left: -41.66667%; }
  .large-offset-4 {
    margin-left: 33.33333%; }
  .large-6 {
    width: 50%; }
  .large-push-6 {
    position: relative;
    left: 50%; }
  .large-pull-6 {
    position: relative;
    left: -50%; }
  .large-offset-5 {
    margin-left: 41.66667%; }
  .large-7 {
    width: 58.33333%; }
  .large-push-7 {
    position: relative;
    left: 58.33333%; }
  .large-pull-7 {
    position: relative;
    left: -58.33333%; }
  .large-offset-6 {
    margin-left: 50%; }
  .large-8 {
    width: 66.66667%; }
  .large-push-8 {
    position: relative;
    left: 66.66667%; }
  .large-pull-8 {
    position: relative;
    left: -66.66667%; }
  .large-offset-7 {
    margin-left: 58.33333%; }
  .large-9 {
    width: 75%; }
  .large-push-9 {
    position: relative;
    left: 75%; }
  .large-pull-9 {
    position: relative;
    left: -75%; }
  .large-offset-8 {
    margin-left: 66.66667%; }
  .large-10 {
    width: 83.33333%; }
  .large-push-10 {
    position: relative;
    left: 83.33333%; }
  .large-pull-10 {
    position: relative;
    left: -83.33333%; }
  .large-offset-9 {
    margin-left: 75%; }
  .large-11 {
    width: 91.66667%; }
  .large-push-11 {
    position: relative;
    left: 91.66667%; }
  .large-pull-11 {
    position: relative;
    left: -91.66667%; }
  .large-offset-10 {
    margin-left: 83.33333%; }
  .large-12 {
    width: 100%; }
  .large-offset-11 {
    margin-left: 91.66667%; }
  .large-up-1 > .column, .large-up-1 > .columns {
    float: left;
    width: 100%; }
    .large-up-1 > .column:nth-of-type(1n), .large-up-1 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-1 > .column:nth-of-type(1n+1), .large-up-1 > .columns:nth-of-type(1n+1) {
      clear: both; }
    .large-up-1 > .column:last-child, .large-up-1 > .columns:last-child {
      float: left; }
  .large-up-2 > .column, .large-up-2 > .columns {
    float: left;
    width: 50%; }
    .large-up-2 > .column:nth-of-type(1n), .large-up-2 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-2 > .column:nth-of-type(2n+1), .large-up-2 > .columns:nth-of-type(2n+1) {
      clear: both; }
    .large-up-2 > .column:last-child, .large-up-2 > .columns:last-child {
      float: left; }
  .large-up-3 > .column, .large-up-3 > .columns {
    float: left;
    width: 33.33333%; }
    .large-up-3 > .column:nth-of-type(1n), .large-up-3 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-3 > .column:nth-of-type(3n+1), .large-up-3 > .columns:nth-of-type(3n+1) {
      clear: both; }
    .large-up-3 > .column:last-child, .large-up-3 > .columns:last-child {
      float: left; }
  .large-up-4 > .column, .large-up-4 > .columns {
    float: left;
    width: 25%; }
    .large-up-4 > .column:nth-of-type(1n), .large-up-4 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-4 > .column:nth-of-type(4n+1), .large-up-4 > .columns:nth-of-type(4n+1) {
      clear: both; }
    .large-up-4 > .column:last-child, .large-up-4 > .columns:last-child {
      float: left; }
  .large-up-5 > .column, .large-up-5 > .columns {
    float: left;
    width: 20%; }
    .large-up-5 > .column:nth-of-type(1n), .large-up-5 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-5 > .column:nth-of-type(5n+1), .large-up-5 > .columns:nth-of-type(5n+1) {
      clear: both; }
    .large-up-5 > .column:last-child, .large-up-5 > .columns:last-child {
      float: left; }
  .large-up-6 > .column, .large-up-6 > .columns {
    float: left;
    width: 16.66667%; }
    .large-up-6 > .column:nth-of-type(1n), .large-up-6 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-6 > .column:nth-of-type(6n+1), .large-up-6 > .columns:nth-of-type(6n+1) {
      clear: both; }
    .large-up-6 > .column:last-child, .large-up-6 > .columns:last-child {
      float: left; }
  .large-up-7 > .column, .large-up-7 > .columns {
    float: left;
    width: 14.28571%; }
    .large-up-7 > .column:nth-of-type(1n), .large-up-7 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-7 > .column:nth-of-type(7n+1), .large-up-7 > .columns:nth-of-type(7n+1) {
      clear: both; }
    .large-up-7 > .column:last-child, .large-up-7 > .columns:last-child {
      float: left; }
  .large-up-8 > .column, .large-up-8 > .columns {
    float: left;
    width: 12.5%; }
    .large-up-8 > .column:nth-of-type(1n), .large-up-8 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-8 > .column:nth-of-type(8n+1), .large-up-8 > .columns:nth-of-type(8n+1) {
      clear: both; }
    .large-up-8 > .column:last-child, .large-up-8 > .columns:last-child {
      float: left; }
  .large-collapse > .column, .large-collapse > .columns {
    padding-right: 0;
    padding-left: 0; }
  .large-collapse .row {
    margin-right: 0;
    margin-left: 0; }
  .expanded.row .large-collapse.row {
    margin-right: 0;
    margin-left: 0; }
  .large-uncollapse > .column, .large-uncollapse > .columns {
    padding-right: 0.625rem;
    padding-left: 0.625rem; }
  .large-centered {
    margin-right: auto;
    margin-left: auto; }
    .large-centered, .large-centered:last-child:not(:first-child) {
      float: none;
      clear: both; }
  .large-uncentered,
  .large-push-0,
  .large-pull-0 {
    position: static;
    float: left;
    margin-right: 0;
    margin-left: 0; } }

@media screen and (min-width: 64em) {
  .xlarge-1 {
    width: 8.33333%; }
  .xlarge-push-1 {
    position: relative;
    left: 8.33333%; }
  .xlarge-pull-1 {
    position: relative;
    left: -8.33333%; }
  .xlarge-offset-0 {
    margin-left: 0%; }
  .xlarge-2 {
    width: 16.66667%; }
  .xlarge-push-2 {
    position: relative;
    left: 16.66667%; }
  .xlarge-pull-2 {
    position: relative;
    left: -16.66667%; }
  .xlarge-offset-1 {
    margin-left: 8.33333%; }
  .xlarge-3 {
    width: 25%; }
  .xlarge-push-3 {
    position: relative;
    left: 25%; }
  .xlarge-pull-3 {
    position: relative;
    left: -25%; }
  .xlarge-offset-2 {
    margin-left: 16.66667%; }
  .xlarge-4 {
    width: 33.33333%; }
  .xlarge-push-4 {
    position: relative;
    left: 33.33333%; }
  .xlarge-pull-4 {
    position: relative;
    left: -33.33333%; }
  .xlarge-offset-3 {
    margin-left: 25%; }
  .xlarge-5 {
    width: 41.66667%; }
  .xlarge-push-5 {
    position: relative;
    left: 41.66667%; }
  .xlarge-pull-5 {
    position: relative;
    left: -41.66667%; }
  .xlarge-offset-4 {
    margin-left: 33.33333%; }
  .xlarge-6 {
    width: 50%; }
  .xlarge-push-6 {
    position: relative;
    left: 50%; }
  .xlarge-pull-6 {
    position: relative;
    left: -50%; }
  .xlarge-offset-5 {
    margin-left: 41.66667%; }
  .xlarge-7 {
    width: 58.33333%; }
  .xlarge-push-7 {
    position: relative;
    left: 58.33333%; }
  .xlarge-pull-7 {
    position: relative;
    left: -58.33333%; }
  .xlarge-offset-6 {
    margin-left: 50%; }
  .xlarge-8 {
    width: 66.66667%; }
  .xlarge-push-8 {
    position: relative;
    left: 66.66667%; }
  .xlarge-pull-8 {
    position: relative;
    left: -66.66667%; }
  .xlarge-offset-7 {
    margin-left: 58.33333%; }
  .xlarge-9 {
    width: 75%; }
  .xlarge-push-9 {
    position: relative;
    left: 75%; }
  .xlarge-pull-9 {
    position: relative;
    left: -75%; }
  .xlarge-offset-8 {
    margin-left: 66.66667%; }
  .xlarge-10 {
    width: 83.33333%; }
  .xlarge-push-10 {
    position: relative;
    left: 83.33333%; }
  .xlarge-pull-10 {
    position: relative;
    left: -83.33333%; }
  .xlarge-offset-9 {
    margin-left: 75%; }
  .xlarge-11 {
    width: 91.66667%; }
  .xlarge-push-11 {
    position: relative;
    left: 91.66667%; }
  .xlarge-pull-11 {
    position: relative;
    left: -91.66667%; }
  .xlarge-offset-10 {
    margin-left: 83.33333%; }
  .xlarge-12 {
    width: 100%; }
  .xlarge-offset-11 {
    margin-left: 91.66667%; }
  .xlarge-up-1 > .column, .xlarge-up-1 > .columns {
    float: left;
    width: 100%; }
    .xlarge-up-1 > .column:nth-of-type(1n), .xlarge-up-1 > .columns:nth-of-type(1n) {
      clear: none; }
    .xlarge-up-1 > .column:nth-of-type(1n+1), .xlarge-up-1 > .columns:nth-of-type(1n+1) {
      clear: both; }
    .xlarge-up-1 > .column:last-child, .xlarge-up-1 > .columns:last-child {
      float: left; }
  .xlarge-up-2 > .column, .xlarge-up-2 > .columns {
    float: left;
    width: 50%; }
    .xlarge-up-2 > .column:nth-of-type(1n), .xlarge-up-2 > .columns:nth-of-type(1n) {
      clear: none; }
    .xlarge-up-2 > .column:nth-of-type(2n+1), .xlarge-up-2 > .columns:nth-of-type(2n+1) {
      clear: both; }
    .xlarge-up-2 > .column:last-child, .xlarge-up-2 > .columns:last-child {
      float: left; }
  .xlarge-up-3 > .column, .xlarge-up-3 > .columns {
    float: left;
    width: 33.33333%; }
    .xlarge-up-3 > .column:nth-of-type(1n), .xlarge-up-3 > .columns:nth-of-type(1n) {
      clear: none; }
    .xlarge-up-3 > .column:nth-of-type(3n+1), .xlarge-up-3 > .columns:nth-of-type(3n+1) {
      clear: both; }
    .xlarge-up-3 > .column:last-child, .xlarge-up-3 > .columns:last-child {
      float: left; }
  .xlarge-up-4 > .column, .xlarge-up-4 > .columns {
    float: left;
    width: 25%; }
    .xlarge-up-4 > .column:nth-of-type(1n), .xlarge-up-4 > .columns:nth-of-type(1n) {
      clear: none; }
    .xlarge-up-4 > .column:nth-of-type(4n+1), .xlarge-up-4 > .columns:nth-of-type(4n+1) {
      clear: both; }
    .xlarge-up-4 > .column:last-child, .xlarge-up-4 > .columns:last-child {
      float: left; }
  .xlarge-up-5 > .column, .xlarge-up-5 > .columns {
    float: left;
    width: 20%; }
    .xlarge-up-5 > .column:nth-of-type(1n), .xlarge-up-5 > .columns:nth-of-type(1n) {
      clear: none; }
    .xlarge-up-5 > .column:nth-of-type(5n+1), .xlarge-up-5 > .columns:nth-of-type(5n+1) {
      clear: both; }
    .xlarge-up-5 > .column:last-child, .xlarge-up-5 > .columns:last-child {
      float: left; }
  .xlarge-up-6 > .column, .xlarge-up-6 > .columns {
    float: left;
    width: 16.66667%; }
    .xlarge-up-6 > .column:nth-of-type(1n), .xlarge-up-6 > .columns:nth-of-type(1n) {
      clear: none; }
    .xlarge-up-6 > .column:nth-of-type(6n+1), .xlarge-up-6 > .columns:nth-of-type(6n+1) {
      clear: both; }
    .xlarge-up-6 > .column:last-child, .xlarge-up-6 > .columns:last-child {
      float: left; }
  .xlarge-up-7 > .column, .xlarge-up-7 > .columns {
    float: left;
    width: 14.28571%; }
    .xlarge-up-7 > .column:nth-of-type(1n), .xlarge-up-7 > .columns:nth-of-type(1n) {
      clear: none; }
    .xlarge-up-7 > .column:nth-of-type(7n+1), .xlarge-up-7 > .columns:nth-of-type(7n+1) {
      clear: both; }
    .xlarge-up-7 > .column:last-child, .xlarge-up-7 > .columns:last-child {
      float: left; }
  .xlarge-up-8 > .column, .xlarge-up-8 > .columns {
    float: left;
    width: 12.5%; }
    .xlarge-up-8 > .column:nth-of-type(1n), .xlarge-up-8 > .columns:nth-of-type(1n) {
      clear: none; }
    .xlarge-up-8 > .column:nth-of-type(8n+1), .xlarge-up-8 > .columns:nth-of-type(8n+1) {
      clear: both; }
    .xlarge-up-8 > .column:last-child, .xlarge-up-8 > .columns:last-child {
      float: left; }
  .xlarge-collapse > .column, .xlarge-collapse > .columns {
    padding-right: 0;
    padding-left: 0; }
  .xlarge-collapse .row {
    margin-right: 0;
    margin-left: 0; }
  .expanded.row .xlarge-collapse.row {
    margin-right: 0;
    margin-left: 0; }
  .xlarge-uncollapse > .column, .xlarge-uncollapse > .columns {
    padding-right: 0.625rem;
    padding-left: 0.625rem; }
  .xlarge-centered {
    margin-right: auto;
    margin-left: auto; }
    .xlarge-centered, .xlarge-centered:last-child:not(:first-child) {
      float: none;
      clear: both; }
  .xlarge-uncentered,
  .xlarge-push-0,
  .xlarge-pull-0 {
    position: static;
    float: left;
    margin-right: 0;
    margin-left: 0; } }

@media screen and (min-width: 90em) {
  .xxlarge-1 {
    width: 8.33333%; }
  .xxlarge-push-1 {
    position: relative;
    left: 8.33333%; }
  .xxlarge-pull-1 {
    position: relative;
    left: -8.33333%; }
  .xxlarge-offset-0 {
    margin-left: 0%; }
  .xxlarge-2 {
    width: 16.66667%; }
  .xxlarge-push-2 {
    position: relative;
    left: 16.66667%; }
  .xxlarge-pull-2 {
    position: relative;
    left: -16.66667%; }
  .xxlarge-offset-1 {
    margin-left: 8.33333%; }
  .xxlarge-3 {
    width: 25%; }
  .xxlarge-push-3 {
    position: relative;
    left: 25%; }
  .xxlarge-pull-3 {
    position: relative;
    left: -25%; }
  .xxlarge-offset-2 {
    margin-left: 16.66667%; }
  .xxlarge-4 {
    width: 33.33333%; }
  .xxlarge-push-4 {
    position: relative;
    left: 33.33333%; }
  .xxlarge-pull-4 {
    position: relative;
    left: -33.33333%; }
  .xxlarge-offset-3 {
    margin-left: 25%; }
  .xxlarge-5 {
    width: 41.66667%; }
  .xxlarge-push-5 {
    position: relative;
    left: 41.66667%; }
  .xxlarge-pull-5 {
    position: relative;
    left: -41.66667%; }
  .xxlarge-offset-4 {
    margin-left: 33.33333%; }
  .xxlarge-6 {
    width: 50%; }
  .xxlarge-push-6 {
    position: relative;
    left: 50%; }
  .xxlarge-pull-6 {
    position: relative;
    left: -50%; }
  .xxlarge-offset-5 {
    margin-left: 41.66667%; }
  .xxlarge-7 {
    width: 58.33333%; }
  .xxlarge-push-7 {
    position: relative;
    left: 58.33333%; }
  .xxlarge-pull-7 {
    position: relative;
    left: -58.33333%; }
  .xxlarge-offset-6 {
    margin-left: 50%; }
  .xxlarge-8 {
    width: 66.66667%; }
  .xxlarge-push-8 {
    position: relative;
    left: 66.66667%; }
  .xxlarge-pull-8 {
    position: relative;
    left: -66.66667%; }
  .xxlarge-offset-7 {
    margin-left: 58.33333%; }
  .xxlarge-9 {
    width: 75%; }
  .xxlarge-push-9 {
    position: relative;
    left: 75%; }
  .xxlarge-pull-9 {
    position: relative;
    left: -75%; }
  .xxlarge-offset-8 {
    margin-left: 66.66667%; }
  .xxlarge-10 {
    width: 83.33333%; }
  .xxlarge-push-10 {
    position: relative;
    left: 83.33333%; }
  .xxlarge-pull-10 {
    position: relative;
    left: -83.33333%; }
  .xxlarge-offset-9 {
    margin-left: 75%; }
  .xxlarge-11 {
    width: 91.66667%; }
  .xxlarge-push-11 {
    position: relative;
    left: 91.66667%; }
  .xxlarge-pull-11 {
    position: relative;
    left: -91.66667%; }
  .xxlarge-offset-10 {
    margin-left: 83.33333%; }
  .xxlarge-12 {
    width: 100%; }
  .xxlarge-offset-11 {
    margin-left: 91.66667%; }
  .xxlarge-up-1 > .column, .xxlarge-up-1 > .columns {
    float: left;
    width: 100%; }
    .xxlarge-up-1 > .column:nth-of-type(1n), .xxlarge-up-1 > .columns:nth-of-type(1n) {
      clear: none; }
    .xxlarge-up-1 > .column:nth-of-type(1n+1), .xxlarge-up-1 > .columns:nth-of-type(1n+1) {
      clear: both; }
    .xxlarge-up-1 > .column:last-child, .xxlarge-up-1 > .columns:last-child {
      float: left; }
  .xxlarge-up-2 > .column, .xxlarge-up-2 > .columns {
    float: left;
    width: 50%; }
    .xxlarge-up-2 > .column:nth-of-type(1n), .xxlarge-up-2 > .columns:nth-of-type(1n) {
      clear: none; }
    .xxlarge-up-2 > .column:nth-of-type(2n+1), .xxlarge-up-2 > .columns:nth-of-type(2n+1) {
      clear: both; }
    .xxlarge-up-2 > .column:last-child, .xxlarge-up-2 > .columns:last-child {
      float: left; }
  .xxlarge-up-3 > .column, .xxlarge-up-3 > .columns {
    float: left;
    width: 33.33333%; }
    .xxlarge-up-3 > .column:nth-of-type(1n), .xxlarge-up-3 > .columns:nth-of-type(1n) {
      clear: none; }
    .xxlarge-up-3 > .column:nth-of-type(3n+1), .xxlarge-up-3 > .columns:nth-of-type(3n+1) {
      clear: both; }
    .xxlarge-up-3 > .column:last-child, .xxlarge-up-3 > .columns:last-child {
      float: left; }
  .xxlarge-up-4 > .column, .xxlarge-up-4 > .columns {
    float: left;
    width: 25%; }
    .xxlarge-up-4 > .column:nth-of-type(1n), .xxlarge-up-4 > .columns:nth-of-type(1n) {
      clear: none; }
    .xxlarge-up-4 > .column:nth-of-type(4n+1), .xxlarge-up-4 > .columns:nth-of-type(4n+1) {
      clear: both; }
    .xxlarge-up-4 > .column:last-child, .xxlarge-up-4 > .columns:last-child {
      float: left; }
  .xxlarge-up-5 > .column, .xxlarge-up-5 > .columns {
    float: left;
    width: 20%; }
    .xxlarge-up-5 > .column:nth-of-type(1n), .xxlarge-up-5 > .columns:nth-of-type(1n) {
      clear: none; }
    .xxlarge-up-5 > .column:nth-of-type(5n+1), .xxlarge-up-5 > .columns:nth-of-type(5n+1) {
      clear: both; }
    .xxlarge-up-5 > .column:last-child, .xxlarge-up-5 > .columns:last-child {
      float: left; }
  .xxlarge-up-6 > .column, .xxlarge-up-6 > .columns {
    float: left;
    width: 16.66667%; }
    .xxlarge-up-6 > .column:nth-of-type(1n), .xxlarge-up-6 > .columns:nth-of-type(1n) {
      clear: none; }
    .xxlarge-up-6 > .column:nth-of-type(6n+1), .xxlarge-up-6 > .columns:nth-of-type(6n+1) {
      clear: both; }
    .xxlarge-up-6 > .column:last-child, .xxlarge-up-6 > .columns:last-child {
      float: left; }
  .xxlarge-up-7 > .column, .xxlarge-up-7 > .columns {
    float: left;
    width: 14.28571%; }
    .xxlarge-up-7 > .column:nth-of-type(1n), .xxlarge-up-7 > .columns:nth-of-type(1n) {
      clear: none; }
    .xxlarge-up-7 > .column:nth-of-type(7n+1), .xxlarge-up-7 > .columns:nth-of-type(7n+1) {
      clear: both; }
    .xxlarge-up-7 > .column:last-child, .xxlarge-up-7 > .columns:last-child {
      float: left; }
  .xxlarge-up-8 > .column, .xxlarge-up-8 > .columns {
    float: left;
    width: 12.5%; }
    .xxlarge-up-8 > .column:nth-of-type(1n), .xxlarge-up-8 > .columns:nth-of-type(1n) {
      clear: none; }
    .xxlarge-up-8 > .column:nth-of-type(8n+1), .xxlarge-up-8 > .columns:nth-of-type(8n+1) {
      clear: both; }
    .xxlarge-up-8 > .column:last-child, .xxlarge-up-8 > .columns:last-child {
      float: left; }
  .xxlarge-collapse > .column, .xxlarge-collapse > .columns {
    padding-right: 0;
    padding-left: 0; }
  .xxlarge-collapse .row {
    margin-right: 0;
    margin-left: 0; }
  .expanded.row .xxlarge-collapse.row {
    margin-right: 0;
    margin-left: 0; }
  .xxlarge-uncollapse > .column, .xxlarge-uncollapse > .columns {
    padding-right: 0.625rem;
    padding-left: 0.625rem; }
  .xxlarge-centered {
    margin-right: auto;
    margin-left: auto; }
    .xxlarge-centered, .xxlarge-centered:last-child:not(:first-child) {
      float: none;
      clear: both; }
  .xxlarge-uncentered,
  .xxlarge-push-0,
  .xxlarge-pull-0 {
    position: static;
    float: left;
    margin-right: 0;
    margin-left: 0; } }

.column-block {
  margin-bottom: 1.25rem; }
  .column-block > :last-child {
    margin-bottom: 0; }
  @media print, screen and (min-width: 37.5em) {
    .column-block {
      margin-bottom: 1.25rem; }
      .column-block > :last-child {
        margin-bottom: 0; } }

.row {
  max-width: 64rem;
  margin-right: auto;
  margin-left: auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap; }
  .row .row {
    margin-right: -0.625rem;
    margin-left: -0.625rem; }
    @media print, screen and (min-width: 37.5em) {
      .row .row {
        margin-right: -0.625rem;
        margin-left: -0.625rem; } }
    @media print, screen and (min-width: 48em) {
      .row .row {
        margin-right: -0.625rem;
        margin-left: -0.625rem; } }
    @media screen and (min-width: 64em) {
      .row .row {
        margin-right: -0.625rem;
        margin-left: -0.625rem; } }
    @media screen and (min-width: 90em) {
      .row .row {
        margin-right: -0.625rem;
        margin-left: -0.625rem; } }
    .row .row.collapse {
      margin-right: 0;
      margin-left: 0; }
  .row.expanded {
    max-width: none; }
    .row.expanded .row {
      margin-right: auto;
      margin-left: auto; }
  .row:not(.expanded) .row {
    max-width: none; }
  .row.collapse > .column, .row.collapse > .columns {
    padding-right: 0;
    padding-left: 0; }
  .row.is-collapse-child,
  .row.collapse > .column > .row,
  .row.collapse > .columns > .row {
    margin-right: 0;
    margin-left: 0; }

.column, .columns {
  -ms-flex: 1 1 0px;
  flex: 1 1 0px;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  min-width: initial; }
  @media print, screen and (min-width: 37.5em) {
    .column, .columns {
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }

.column.row.row, .row.row.columns {
  float: none;
  display: block; }

.row .column.row.row, .row .row.row.columns {
  margin-right: 0;
  margin-left: 0;
  padding-right: 0;
  padding-left: 0; }

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

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

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

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

.flex-dir-row {
  -ms-flex-direction: row;
  flex-direction: row; }

.flex-dir-row-reverse {
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse; }

.flex-dir-column {
  -ms-flex-direction: column;
  flex-direction: column; }

.flex-dir-column-reverse {
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse; }

.small-1 {
  -ms-flex: 0 0 8.33333%;
  flex: 0 0 8.33333%;
  max-width: 8.33333%; }

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

.small-2 {
  -ms-flex: 0 0 16.66667%;
  flex: 0 0 16.66667%;
  max-width: 16.66667%; }

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

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

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

.small-4 {
  -ms-flex: 0 0 33.33333%;
  flex: 0 0 33.33333%;
  max-width: 33.33333%; }

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

.small-5 {
  -ms-flex: 0 0 41.66667%;
  flex: 0 0 41.66667%;
  max-width: 41.66667%; }

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

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

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

.small-7 {
  -ms-flex: 0 0 58.33333%;
  flex: 0 0 58.33333%;
  max-width: 58.33333%; }

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

.small-8 {
  -ms-flex: 0 0 66.66667%;
  flex: 0 0 66.66667%;
  max-width: 66.66667%; }

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

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

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

.small-10 {
  -ms-flex: 0 0 83.33333%;
  flex: 0 0 83.33333%;
  max-width: 83.33333%; }

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

.small-11 {
  -ms-flex: 0 0 91.66667%;
  flex: 0 0 91.66667%;
  max-width: 91.66667%; }

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

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

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

.small-order-1 {
  -ms-flex-order: 1;
  order: 1; }

.small-order-2 {
  -ms-flex-order: 2;
  order: 2; }

.small-order-3 {
  -ms-flex-order: 3;
  order: 3; }

.small-order-4 {
  -ms-flex-order: 4;
  order: 4; }

.small-order-5 {
  -ms-flex-order: 5;
  order: 5; }

.small-order-6 {
  -ms-flex-order: 6;
  order: 6; }

.small-up-1 {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .small-up-1 > .column, .small-up-1 > .columns {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }

.small-up-2 {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .small-up-2 > .column, .small-up-2 > .columns {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }

.small-up-3 {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .small-up-3 > .column, .small-up-3 > .columns {
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }

.small-up-4 {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .small-up-4 > .column, .small-up-4 > .columns {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }

.small-up-5 {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .small-up-5 > .column, .small-up-5 > .columns {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%; }

.small-up-6 {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .small-up-6 > .column, .small-up-6 > .columns {
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }

.small-up-7 {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .small-up-7 > .column, .small-up-7 > .columns {
    -ms-flex: 0 0 14.28571%;
    flex: 0 0 14.28571%;
    max-width: 14.28571%; }

.small-up-8 {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .small-up-8 > .column, .small-up-8 > .columns {
    -ms-flex: 0 0 12.5%;
    flex: 0 0 12.5%;
    max-width: 12.5%; }

.small-collapse > .column, .small-collapse > .columns {
  padding-right: 0;
  padding-left: 0; }

.small-uncollapse > .column, .small-uncollapse > .columns {
  padding-right: 0.625rem;
  padding-left: 0.625rem; }

@media print, screen and (min-width: 37.5em) {
  .medium-1 {
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .medium-offset-0 {
    margin-left: 0%; }
  .medium-2 {
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .medium-offset-1 {
    margin-left: 8.33333%; }
  .medium-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .medium-offset-2 {
    margin-left: 16.66667%; }
  .medium-4 {
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .medium-offset-3 {
    margin-left: 25%; }
  .medium-5 {
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .medium-offset-4 {
    margin-left: 33.33333%; }
  .medium-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .medium-offset-5 {
    margin-left: 41.66667%; }
  .medium-7 {
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .medium-offset-6 {
    margin-left: 50%; }
  .medium-8 {
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .medium-offset-7 {
    margin-left: 58.33333%; }
  .medium-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .medium-offset-8 {
    margin-left: 66.66667%; }
  .medium-10 {
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .medium-offset-9 {
    margin-left: 75%; }
  .medium-11 {
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .medium-offset-10 {
    margin-left: 83.33333%; }
  .medium-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }
  .medium-offset-11 {
    margin-left: 91.66667%; }
  .medium-order-1 {
    -ms-flex-order: 1;
    order: 1; }
  .medium-order-2 {
    -ms-flex-order: 2;
    order: 2; }
  .medium-order-3 {
    -ms-flex-order: 3;
    order: 3; }
  .medium-order-4 {
    -ms-flex-order: 4;
    order: 4; }
  .medium-order-5 {
    -ms-flex-order: 5;
    order: 5; }
  .medium-order-6 {
    -ms-flex-order: 6;
    order: 6; }
  .medium-up-1 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .medium-up-1 > .column, .medium-up-1 > .columns {
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%; }
  .medium-up-2 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .medium-up-2 > .column, .medium-up-2 > .columns {
      -ms-flex: 0 0 50%;
      flex: 0 0 50%;
      max-width: 50%; }
  .medium-up-3 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .medium-up-3 > .column, .medium-up-3 > .columns {
      -ms-flex: 0 0 33.33333%;
      flex: 0 0 33.33333%;
      max-width: 33.33333%; }
  .medium-up-4 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .medium-up-4 > .column, .medium-up-4 > .columns {
      -ms-flex: 0 0 25%;
      flex: 0 0 25%;
      max-width: 25%; }
  .medium-up-5 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .medium-up-5 > .column, .medium-up-5 > .columns {
      -ms-flex: 0 0 20%;
      flex: 0 0 20%;
      max-width: 20%; }
  .medium-up-6 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .medium-up-6 > .column, .medium-up-6 > .columns {
      -ms-flex: 0 0 16.66667%;
      flex: 0 0 16.66667%;
      max-width: 16.66667%; }
  .medium-up-7 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .medium-up-7 > .column, .medium-up-7 > .columns {
      -ms-flex: 0 0 14.28571%;
      flex: 0 0 14.28571%;
      max-width: 14.28571%; }
  .medium-up-8 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .medium-up-8 > .column, .medium-up-8 > .columns {
      -ms-flex: 0 0 12.5%;
      flex: 0 0 12.5%;
      max-width: 12.5%; } }

@media print, screen and (min-width: 37.5em) and (min-width: 37.5em) {
  .medium-expand {
    -ms-flex: 1 1 0px;
    flex: 1 1 0px; } }

@media print, screen and (min-width: 37.5em) {
  .medium-flex-dir-row {
    -ms-flex-direction: row;
    flex-direction: row; }
  .medium-flex-dir-row-reverse {
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse; }
  .medium-flex-dir-column {
    -ms-flex-direction: column;
    flex-direction: column; }
  .medium-flex-dir-column-reverse {
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse; }
  .medium-flex-child-auto {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto; }
  .medium-flex-child-grow {
    -ms-flex: 1 0 auto;
    flex: 1 0 auto; }
  .medium-flex-child-shrink {
    -ms-flex: 0 1 auto;
    flex: 0 1 auto; } }

.row.medium-unstack > .column, .row.medium-unstack > .columns {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%; }
  @media print, screen and (min-width: 37.5em) {
    .row.medium-unstack > .column, .row.medium-unstack > .columns {
      -ms-flex: 1 1 0px;
      flex: 1 1 0px; } }

@media print, screen and (min-width: 37.5em) {
  .medium-collapse > .column, .medium-collapse > .columns {
    padding-right: 0;
    padding-left: 0; }
  .medium-uncollapse > .column, .medium-uncollapse > .columns {
    padding-right: 0.625rem;
    padding-left: 0.625rem; } }

@media print, screen and (min-width: 48em) {
  .large-1 {
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .large-offset-0 {
    margin-left: 0%; }
  .large-2 {
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .large-offset-1 {
    margin-left: 8.33333%; }
  .large-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .large-offset-2 {
    margin-left: 16.66667%; }
  .large-4 {
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .large-offset-3 {
    margin-left: 25%; }
  .large-5 {
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .large-offset-4 {
    margin-left: 33.33333%; }
  .large-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .large-offset-5 {
    margin-left: 41.66667%; }
  .large-7 {
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .large-offset-6 {
    margin-left: 50%; }
  .large-8 {
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .large-offset-7 {
    margin-left: 58.33333%; }
  .large-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .large-offset-8 {
    margin-left: 66.66667%; }
  .large-10 {
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .large-offset-9 {
    margin-left: 75%; }
  .large-11 {
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .large-offset-10 {
    margin-left: 83.33333%; }
  .large-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }
  .large-offset-11 {
    margin-left: 91.66667%; }
  .large-order-1 {
    -ms-flex-order: 1;
    order: 1; }
  .large-order-2 {
    -ms-flex-order: 2;
    order: 2; }
  .large-order-3 {
    -ms-flex-order: 3;
    order: 3; }
  .large-order-4 {
    -ms-flex-order: 4;
    order: 4; }
  .large-order-5 {
    -ms-flex-order: 5;
    order: 5; }
  .large-order-6 {
    -ms-flex-order: 6;
    order: 6; }
  .large-up-1 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .large-up-1 > .column, .large-up-1 > .columns {
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%; }
  .large-up-2 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .large-up-2 > .column, .large-up-2 > .columns {
      -ms-flex: 0 0 50%;
      flex: 0 0 50%;
      max-width: 50%; }
  .large-up-3 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .large-up-3 > .column, .large-up-3 > .columns {
      -ms-flex: 0 0 33.33333%;
      flex: 0 0 33.33333%;
      max-width: 33.33333%; }
  .large-up-4 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .large-up-4 > .column, .large-up-4 > .columns {
      -ms-flex: 0 0 25%;
      flex: 0 0 25%;
      max-width: 25%; }
  .large-up-5 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .large-up-5 > .column, .large-up-5 > .columns {
      -ms-flex: 0 0 20%;
      flex: 0 0 20%;
      max-width: 20%; }
  .large-up-6 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .large-up-6 > .column, .large-up-6 > .columns {
      -ms-flex: 0 0 16.66667%;
      flex: 0 0 16.66667%;
      max-width: 16.66667%; }
  .large-up-7 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .large-up-7 > .column, .large-up-7 > .columns {
      -ms-flex: 0 0 14.28571%;
      flex: 0 0 14.28571%;
      max-width: 14.28571%; }
  .large-up-8 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .large-up-8 > .column, .large-up-8 > .columns {
      -ms-flex: 0 0 12.5%;
      flex: 0 0 12.5%;
      max-width: 12.5%; } }

@media print, screen and (min-width: 48em) and (min-width: 48em) {
  .large-expand {
    -ms-flex: 1 1 0px;
    flex: 1 1 0px; } }

@media print, screen and (min-width: 48em) {
  .large-flex-dir-row {
    -ms-flex-direction: row;
    flex-direction: row; }
  .large-flex-dir-row-reverse {
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse; }
  .large-flex-dir-column {
    -ms-flex-direction: column;
    flex-direction: column; }
  .large-flex-dir-column-reverse {
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse; }
  .large-flex-child-auto {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto; }
  .large-flex-child-grow {
    -ms-flex: 1 0 auto;
    flex: 1 0 auto; }
  .large-flex-child-shrink {
    -ms-flex: 0 1 auto;
    flex: 0 1 auto; } }

.row.large-unstack > .column, .row.large-unstack > .columns {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%; }
  @media print, screen and (min-width: 48em) {
    .row.large-unstack > .column, .row.large-unstack > .columns {
      -ms-flex: 1 1 0px;
      flex: 1 1 0px; } }

@media print, screen and (min-width: 48em) {
  .large-collapse > .column, .large-collapse > .columns {
    padding-right: 0;
    padding-left: 0; }
  .large-uncollapse > .column, .large-uncollapse > .columns {
    padding-right: 0.625rem;
    padding-left: 0.625rem; } }

@media screen and (min-width: 64em) {
  .xlarge-1 {
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .xlarge-offset-0 {
    margin-left: 0%; }
  .xlarge-2 {
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .xlarge-offset-1 {
    margin-left: 8.33333%; }
  .xlarge-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .xlarge-offset-2 {
    margin-left: 16.66667%; }
  .xlarge-4 {
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .xlarge-offset-3 {
    margin-left: 25%; }
  .xlarge-5 {
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .xlarge-offset-4 {
    margin-left: 33.33333%; }
  .xlarge-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .xlarge-offset-5 {
    margin-left: 41.66667%; }
  .xlarge-7 {
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .xlarge-offset-6 {
    margin-left: 50%; }
  .xlarge-8 {
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .xlarge-offset-7 {
    margin-left: 58.33333%; }
  .xlarge-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .xlarge-offset-8 {
    margin-left: 66.66667%; }
  .xlarge-10 {
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .xlarge-offset-9 {
    margin-left: 75%; }
  .xlarge-11 {
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .xlarge-offset-10 {
    margin-left: 83.33333%; }
  .xlarge-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }
  .xlarge-offset-11 {
    margin-left: 91.66667%; }
  .xlarge-order-1 {
    -ms-flex-order: 1;
    order: 1; }
  .xlarge-order-2 {
    -ms-flex-order: 2;
    order: 2; }
  .xlarge-order-3 {
    -ms-flex-order: 3;
    order: 3; }
  .xlarge-order-4 {
    -ms-flex-order: 4;
    order: 4; }
  .xlarge-order-5 {
    -ms-flex-order: 5;
    order: 5; }
  .xlarge-order-6 {
    -ms-flex-order: 6;
    order: 6; }
  .xlarge-up-1 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .xlarge-up-1 > .column, .xlarge-up-1 > .columns {
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%; }
  .xlarge-up-2 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .xlarge-up-2 > .column, .xlarge-up-2 > .columns {
      -ms-flex: 0 0 50%;
      flex: 0 0 50%;
      max-width: 50%; }
  .xlarge-up-3 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .xlarge-up-3 > .column, .xlarge-up-3 > .columns {
      -ms-flex: 0 0 33.33333%;
      flex: 0 0 33.33333%;
      max-width: 33.33333%; }
  .xlarge-up-4 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .xlarge-up-4 > .column, .xlarge-up-4 > .columns {
      -ms-flex: 0 0 25%;
      flex: 0 0 25%;
      max-width: 25%; }
  .xlarge-up-5 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .xlarge-up-5 > .column, .xlarge-up-5 > .columns {
      -ms-flex: 0 0 20%;
      flex: 0 0 20%;
      max-width: 20%; }
  .xlarge-up-6 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .xlarge-up-6 > .column, .xlarge-up-6 > .columns {
      -ms-flex: 0 0 16.66667%;
      flex: 0 0 16.66667%;
      max-width: 16.66667%; }
  .xlarge-up-7 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .xlarge-up-7 > .column, .xlarge-up-7 > .columns {
      -ms-flex: 0 0 14.28571%;
      flex: 0 0 14.28571%;
      max-width: 14.28571%; }
  .xlarge-up-8 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .xlarge-up-8 > .column, .xlarge-up-8 > .columns {
      -ms-flex: 0 0 12.5%;
      flex: 0 0 12.5%;
      max-width: 12.5%; } }

@media screen and (min-width: 64em) and (min-width: 64em) {
  .xlarge-expand {
    -ms-flex: 1 1 0px;
    flex: 1 1 0px; } }

@media screen and (min-width: 64em) {
  .xlarge-flex-dir-row {
    -ms-flex-direction: row;
    flex-direction: row; }
  .xlarge-flex-dir-row-reverse {
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse; }
  .xlarge-flex-dir-column {
    -ms-flex-direction: column;
    flex-direction: column; }
  .xlarge-flex-dir-column-reverse {
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse; }
  .xlarge-flex-child-auto {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto; }
  .xlarge-flex-child-grow {
    -ms-flex: 1 0 auto;
    flex: 1 0 auto; }
  .xlarge-flex-child-shrink {
    -ms-flex: 0 1 auto;
    flex: 0 1 auto; } }

.row.xlarge-unstack > .column, .row.xlarge-unstack > .columns {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%; }
  @media screen and (min-width: 64em) {
    .row.xlarge-unstack > .column, .row.xlarge-unstack > .columns {
      -ms-flex: 1 1 0px;
      flex: 1 1 0px; } }

@media screen and (min-width: 64em) {
  .xlarge-collapse > .column, .xlarge-collapse > .columns {
    padding-right: 0;
    padding-left: 0; }
  .xlarge-uncollapse > .column, .xlarge-uncollapse > .columns {
    padding-right: 0.625rem;
    padding-left: 0.625rem; } }

@media screen and (min-width: 90em) {
  .xxlarge-1 {
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .xxlarge-offset-0 {
    margin-left: 0%; }
  .xxlarge-2 {
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .xxlarge-offset-1 {
    margin-left: 8.33333%; }
  .xxlarge-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .xxlarge-offset-2 {
    margin-left: 16.66667%; }
  .xxlarge-4 {
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .xxlarge-offset-3 {
    margin-left: 25%; }
  .xxlarge-5 {
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .xxlarge-offset-4 {
    margin-left: 33.33333%; }
  .xxlarge-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .xxlarge-offset-5 {
    margin-left: 41.66667%; }
  .xxlarge-7 {
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .xxlarge-offset-6 {
    margin-left: 50%; }
  .xxlarge-8 {
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .xxlarge-offset-7 {
    margin-left: 58.33333%; }
  .xxlarge-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .xxlarge-offset-8 {
    margin-left: 66.66667%; }
  .xxlarge-10 {
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .xxlarge-offset-9 {
    margin-left: 75%; }
  .xxlarge-11 {
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .xxlarge-offset-10 {
    margin-left: 83.33333%; }
  .xxlarge-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }
  .xxlarge-offset-11 {
    margin-left: 91.66667%; }
  .xxlarge-order-1 {
    -ms-flex-order: 1;
    order: 1; }
  .xxlarge-order-2 {
    -ms-flex-order: 2;
    order: 2; }
  .xxlarge-order-3 {
    -ms-flex-order: 3;
    order: 3; }
  .xxlarge-order-4 {
    -ms-flex-order: 4;
    order: 4; }
  .xxlarge-order-5 {
    -ms-flex-order: 5;
    order: 5; }
  .xxlarge-order-6 {
    -ms-flex-order: 6;
    order: 6; }
  .xxlarge-up-1 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .xxlarge-up-1 > .column, .xxlarge-up-1 > .columns {
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%; }
  .xxlarge-up-2 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .xxlarge-up-2 > .column, .xxlarge-up-2 > .columns {
      -ms-flex: 0 0 50%;
      flex: 0 0 50%;
      max-width: 50%; }
  .xxlarge-up-3 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .xxlarge-up-3 > .column, .xxlarge-up-3 > .columns {
      -ms-flex: 0 0 33.33333%;
      flex: 0 0 33.33333%;
      max-width: 33.33333%; }
  .xxlarge-up-4 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .xxlarge-up-4 > .column, .xxlarge-up-4 > .columns {
      -ms-flex: 0 0 25%;
      flex: 0 0 25%;
      max-width: 25%; }
  .xxlarge-up-5 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .xxlarge-up-5 > .column, .xxlarge-up-5 > .columns {
      -ms-flex: 0 0 20%;
      flex: 0 0 20%;
      max-width: 20%; }
  .xxlarge-up-6 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .xxlarge-up-6 > .column, .xxlarge-up-6 > .columns {
      -ms-flex: 0 0 16.66667%;
      flex: 0 0 16.66667%;
      max-width: 16.66667%; }
  .xxlarge-up-7 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .xxlarge-up-7 > .column, .xxlarge-up-7 > .columns {
      -ms-flex: 0 0 14.28571%;
      flex: 0 0 14.28571%;
      max-width: 14.28571%; }
  .xxlarge-up-8 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .xxlarge-up-8 > .column, .xxlarge-up-8 > .columns {
      -ms-flex: 0 0 12.5%;
      flex: 0 0 12.5%;
      max-width: 12.5%; } }

@media screen and (min-width: 90em) and (min-width: 90em) {
  .xxlarge-expand {
    -ms-flex: 1 1 0px;
    flex: 1 1 0px; } }

@media screen and (min-width: 90em) {
  .xxlarge-flex-dir-row {
    -ms-flex-direction: row;
    flex-direction: row; }
  .xxlarge-flex-dir-row-reverse {
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse; }
  .xxlarge-flex-dir-column {
    -ms-flex-direction: column;
    flex-direction: column; }
  .xxlarge-flex-dir-column-reverse {
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse; }
  .xxlarge-flex-child-auto {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto; }
  .xxlarge-flex-child-grow {
    -ms-flex: 1 0 auto;
    flex: 1 0 auto; }
  .xxlarge-flex-child-shrink {
    -ms-flex: 0 1 auto;
    flex: 0 1 auto; } }

.row.xxlarge-unstack > .column, .row.xxlarge-unstack > .columns {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%; }
  @media screen and (min-width: 90em) {
    .row.xxlarge-unstack > .column, .row.xxlarge-unstack > .columns {
      -ms-flex: 1 1 0px;
      flex: 1 1 0px; } }

@media screen and (min-width: 90em) {
  .xxlarge-collapse > .column, .xxlarge-collapse > .columns {
    padding-right: 0;
    padding-left: 0; }
  .xxlarge-uncollapse > .column, .xxlarge-uncollapse > .columns {
    padding-right: 0.625rem;
    padding-left: 0.625rem; } }

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

.column-block {
  margin-bottom: 1.25rem; }
  .column-block > :last-child {
    margin-bottom: 0; }
  @media print, screen and (min-width: 37.5em) {
    .column-block {
      margin-bottom: 1.25rem; }
      .column-block > :last-child {
        margin-bottom: 0; } }

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

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

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

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

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

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

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

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

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

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

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

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

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

.small-order-1 {
  -ms-flex-order: 1;
  order: 1; }

.small-order-2 {
  -ms-flex-order: 2;
  order: 2; }

.small-order-3 {
  -ms-flex-order: 3;
  order: 3; }

.small-order-4 {
  -ms-flex-order: 4;
  order: 4; }

.small-order-5 {
  -ms-flex-order: 5;
  order: 5; }

.small-order-6 {
  -ms-flex-order: 6;
  order: 6; }

@media print, screen and (min-width: 37.5em) {
  .medium-order-1 {
    -ms-flex-order: 1;
    order: 1; }
  .medium-order-2 {
    -ms-flex-order: 2;
    order: 2; }
  .medium-order-3 {
    -ms-flex-order: 3;
    order: 3; }
  .medium-order-4 {
    -ms-flex-order: 4;
    order: 4; }
  .medium-order-5 {
    -ms-flex-order: 5;
    order: 5; }
  .medium-order-6 {
    -ms-flex-order: 6;
    order: 6; } }

@media print, screen and (min-width: 48em) {
  .large-order-1 {
    -ms-flex-order: 1;
    order: 1; }
  .large-order-2 {
    -ms-flex-order: 2;
    order: 2; }
  .large-order-3 {
    -ms-flex-order: 3;
    order: 3; }
  .large-order-4 {
    -ms-flex-order: 4;
    order: 4; }
  .large-order-5 {
    -ms-flex-order: 5;
    order: 5; }
  .large-order-6 {
    -ms-flex-order: 6;
    order: 6; } }

@media screen and (min-width: 64em) {
  .xlarge-order-1 {
    -ms-flex-order: 1;
    order: 1; }
  .xlarge-order-2 {
    -ms-flex-order: 2;
    order: 2; }
  .xlarge-order-3 {
    -ms-flex-order: 3;
    order: 3; }
  .xlarge-order-4 {
    -ms-flex-order: 4;
    order: 4; }
  .xlarge-order-5 {
    -ms-flex-order: 5;
    order: 5; }
  .xlarge-order-6 {
    -ms-flex-order: 6;
    order: 6; } }

@media screen and (min-width: 90em) {
  .xxlarge-order-1 {
    -ms-flex-order: 1;
    order: 1; }
  .xxlarge-order-2 {
    -ms-flex-order: 2;
    order: 2; }
  .xxlarge-order-3 {
    -ms-flex-order: 3;
    order: 3; }
  .xxlarge-order-4 {
    -ms-flex-order: 4;
    order: 4; }
  .xxlarge-order-5 {
    -ms-flex-order: 5;
    order: 5; }
  .xxlarge-order-6 {
    -ms-flex-order: 6;
    order: 6; } }

div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
.statement h2,
.statement blockquote p,
blockquote .statement p,
.statement .tag-filter-item__link,
.page-end-statement h2,
.page-end-statement blockquote p,
blockquote
.page-end-statement p,
.page-end-statement .tag-filter-item__link,
.newsletter h2,
.newsletter blockquote p,
blockquote .newsletter p,
.newsletter .tag-filter-item__link,
.tile--large h2,
.tile--large blockquote p,
blockquote .tile--large p,
.tile--large .tag-filter-item__link,
h2,
blockquote p,
.tag-filter-item__link,
h3,
.tile--medium h2,
.tile--medium blockquote p,
blockquote .tile--medium p,
.tile--medium .tag-filter-item__link,
h4,
h5,
h6,
pre,
form,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0; }

p {
  margin-bottom: 2rem;
  font-size: inherit;
  line-height: 1.6;
  text-rendering: optimizeLegibility; }

em,
i {
  font-style: italic;
  line-height: inherit; }

strong,
b {
  font-weight: bold;
  line-height: inherit; }

small {
  font-size: 80%;
  line-height: inherit; }

h1, .statement h2, .statement blockquote p, blockquote .statement p, .statement .tag-filter-item__link,
.page-end-statement h2,
.page-end-statement blockquote p, blockquote
.page-end-statement p,
.page-end-statement .tag-filter-item__link, .newsletter h2, .newsletter blockquote p, blockquote .newsletter p, .newsletter .tag-filter-item__link, .tile--large h2, .tile--large blockquote p, blockquote .tile--large p, .tile--large .tag-filter-item__link,
h2,
blockquote p,
.tag-filter-item__link,
h3,
.tile--medium h2,
.tile--medium blockquote p,
blockquote .tile--medium p,
.tile--medium .tag-filter-item__link,
h4,
h5,
h6 {
  font-family: "AkkuratBold", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  color: inherit;
  text-rendering: optimizeLegibility; }
  h1 small, .statement h2 small, .statement blockquote p small, blockquote .statement p small, .statement .tag-filter-item__link small,
  .page-end-statement h2 small,
  .page-end-statement blockquote p small, blockquote
  .page-end-statement p small,
  .page-end-statement .tag-filter-item__link small, .newsletter h2 small, .newsletter blockquote p small, blockquote .newsletter p small, .newsletter .tag-filter-item__link small, .tile--large h2 small, .tile--large blockquote p small, blockquote .tile--large p small, .tile--large .tag-filter-item__link small,
  h2 small, blockquote p small, .tag-filter-item__link small,
  h3 small, .tile--medium h2 small, .tile--medium blockquote p small, blockquote .tile--medium p small, .tile--medium .tag-filter-item__link small,
  h4 small,
  h5 small,
  h6 small {
    line-height: 0;
    color: #cacaca; }

h1, .statement h2, .statement blockquote p, blockquote .statement p, .statement .tag-filter-item__link,
.page-end-statement h2,
.page-end-statement blockquote p, blockquote
.page-end-statement p,
.page-end-statement .tag-filter-item__link, .newsletter h2, .newsletter blockquote p, blockquote .newsletter p, .newsletter .tag-filter-item__link, .tile--large h2, .tile--large blockquote p, blockquote .tile--large p, .tile--large .tag-filter-item__link {
  font-size: 1.875rem;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 1.25rem; }

h2, blockquote p, .tag-filter-item__link {
  font-size: 1.5rem;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 1.25rem; }

h3, .tile--medium h2, .tile--medium blockquote p, blockquote .tile--medium p, .tile--medium .tag-filter-item__link {
  font-size: 1.25rem;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 1.25rem; }

h4 {
  font-size: 1.125rem;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 1.25rem; }

h5 {
  font-size: 1.0625rem;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 1.25rem; }

h6 {
  font-size: 1rem;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 1.25rem; }

@media print, screen and (min-width: 48em) {
  h1, .statement h2, .statement blockquote p, blockquote .statement p, .statement .tag-filter-item__link,
  .page-end-statement h2,
  .page-end-statement blockquote p, blockquote
  .page-end-statement p,
  .page-end-statement .tag-filter-item__link, .newsletter h2, .newsletter blockquote p, blockquote .newsletter p, .newsletter .tag-filter-item__link, .tile--large h2, .tile--large blockquote p, blockquote .tile--large p, .tile--large .tag-filter-item__link {
    font-size: 3.75rem; }
  h2, blockquote p, .tag-filter-item__link {
    font-size: 1.875rem; }
  h3, .tile--medium h2, .tile--medium blockquote p, blockquote .tile--medium p, .tile--medium .tag-filter-item__link {
    font-size: 1.5625rem; }
  h4 {
    font-size: 1.25rem; }
  h5 {
    font-size: 1.125rem; }
  h6 {
    font-size: 1rem; } }

a {
  line-height: inherit;
  color: #3700ff;
  text-decoration: none;
  cursor: pointer; }
  a:hover, a:focus {
    color: #3700ff; }
  a img {
    border: 0; }

hr {
  clear: both;
  max-width: 64rem;
  height: 0;
  margin: 2.25rem auto;
  border-top: 0;
  border-right: 0;
  border-bottom: 1px solid #cacaca;
  border-left: 0; }

ul,
ol,
dl {
  margin-bottom: 2rem;
  list-style-position: outside;
  line-height: 1.6; }

li {
  font-size: inherit; }

ul {
  margin-left: 1.25rem;
  list-style-type: disc; }

ol {
  margin-left: 1.25rem; }

ul ul, ol ul, ul ol, ol ol {
  margin-left: 1.25rem;
  margin-bottom: 0; }

dl {
  margin-bottom: 1rem; }
  dl dt {
    margin-bottom: 0.3rem;
    font-weight: bold; }

blockquote {
  margin: 0 0 2rem;
  padding: 0;
  border-left: 0; }
  blockquote, blockquote p {
    line-height: 1.6;
    color: currentColor; }

cite {
  display: block;
  font-size: 0.875rem;
  color: currentColor; }
  cite:before {
    content: ""; }

abbr {
  border-bottom: 1px dotted #0a0a0a;
  color: #0a0a0a;
  cursor: help; }

figure {
  margin: 0; }

code {
  padding: 0.125rem 0.3125rem 0.0625rem;
  border: 1px solid #cacaca;
  background-color: #f2f0f2;
  font-family: "AkkuratMono", Consolas, "Liberation Mono", Courier, monospace;
  font-weight: normal;
  color: #0a0a0a; }

kbd {
  margin: 0;
  padding: 0.125rem 0.25rem 0;
  background-color: #f2f0f2;
  font-family: "AkkuratMono", Consolas, "Liberation Mono", Courier, monospace;
  color: #0a0a0a; }

.subheader {
  margin-top: 0.2rem;
  margin-bottom: 0.5rem;
  font-weight: normal;
  line-height: 1.4;
  color: #8a8a8a; }

.lead {
  font-size: 125%;
  line-height: 1.6; }

.stat {
  font-size: 2.5rem;
  line-height: 1; }
  p + .stat {
    margin-top: -1rem; }

.no-bullet {
  margin-left: 0;
  list-style: none; }

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

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

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

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

@media print, screen and (min-width: 37.5em) {
  .medium-text-left {
    text-align: left; }
  .medium-text-right {
    text-align: right; }
  .medium-text-center {
    text-align: center; }
  .medium-text-justify {
    text-align: justify; } }

@media print, screen and (min-width: 48em) {
  .large-text-left {
    text-align: left; }
  .large-text-right {
    text-align: right; }
  .large-text-center {
    text-align: center; }
  .large-text-justify {
    text-align: justify; } }

@media screen and (min-width: 64em) {
  .xlarge-text-left {
    text-align: left; }
  .xlarge-text-right {
    text-align: right; }
  .xlarge-text-center {
    text-align: center; }
  .xlarge-text-justify {
    text-align: justify; } }

@media screen and (min-width: 90em) {
  .xxlarge-text-left {
    text-align: left; }
  .xxlarge-text-right {
    text-align: right; }
  .xxlarge-text-center {
    text-align: center; }
  .xxlarge-text-justify {
    text-align: justify; } }

.show-for-print {
  display: none !important; }

@media print {
  * {
    background: transparent !important;
    box-shadow: none !important;
    color: black !important;
    text-shadow: none !important; }
  .show-for-print {
    display: block !important; }
  .hide-for-print {
    display: none !important; }
  table.show-for-print {
    display: table !important; }
  thead.show-for-print {
    display: table-header-group !important; }
  tbody.show-for-print {
    display: table-row-group !important; }
  tr.show-for-print {
    display: table-row !important; }
  td.show-for-print {
    display: table-cell !important; }
  th.show-for-print {
    display: table-cell !important; }
  a,
  a:visited {
    text-decoration: underline; }
  a[href]:after {
    content: " (" attr(href) ")"; }
  .ir a:after,
  a[href^='javascript:']:after,
  a[href^='#']:after {
    content: ''; }
  abbr[title]:after {
    content: " (" attr(title) ")"; }
  pre,
  blockquote {
    border: 1px solid #8a8a8a;
    page-break-inside: avoid; }
  thead {
    display: table-header-group; }
  tr,
  img {
    page-break-inside: avoid; }
  img {
    max-width: 100% !important; }
  @page {
    margin: 0.5cm; }
  p,
  h2,
  blockquote p,
  .tag-filter-item__link,
  h3,
  .tile--medium h2,
  .tile--medium blockquote p,
  blockquote .tile--medium p,
  .tile--medium .tag-filter-item__link {
    orphans: 3;
    widows: 3; }
  h2, blockquote p, .tag-filter-item__link,
  h3,
  .tile--medium h2,
  .tile--medium blockquote p,
  blockquote .tile--medium p,
  .tile--medium .tag-filter-item__link {
    page-break-after: avoid; }
  .print-break-inside {
    page-break-inside: auto; } }

[type='text'], [type='password'], [type='date'], [type='datetime'], [type='datetime-local'], [type='month'], [type='week'], [type='email'], [type='number'], [type='search'], [type='tel'], [type='time'], [type='url'], [type='color'],
textarea {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 3.9375rem;
  margin: 0 0 2rem;
  padding: 1rem;
  border: none;
  border-radius: 0;
  background-color: #fefefe;
  box-shadow: none;
  font-family: "AkkuratMono", Consolas, "Liberation Mono", Courier, monospace;
  font-size: 1rem;
  font-weight: normal;
  color: #0a0a0a;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }
  [type='text']:focus, [type='password']:focus, [type='date']:focus, [type='datetime']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='week']:focus, [type='email']:focus, [type='number']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='url']:focus, [type='color']:focus,
  textarea:focus {
    outline: none;
    border: none;
    background-color: #fefefe;
    box-shadow: none;
    transition: box-shadow 0.5s, border-color 0.25s ease-in-out; }

textarea {
  max-width: 100%; }
  textarea[rows] {
    height: auto; }

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #cacaca; }

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #cacaca; }

input::placeholder,
textarea::placeholder {
  color: #cacaca; }

input:disabled, input[readonly],
textarea:disabled,
textarea[readonly] {
  background-color: #f2f0f2;
  cursor: not-allowed; }

[type='submit'],
[type='button'] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0; }

input[type='search'] {
  box-sizing: border-box; }

[type='file'],
[type='checkbox'],
[type='radio'] {
  margin: 0 0 2rem; }

[type='checkbox'] + label,
[type='radio'] + label {
  display: inline-block;
  vertical-align: baseline;
  margin-left: 1rem;
  margin-right: 2rem;
  margin-bottom: 0; }
  [type='checkbox'] + label[for],
  [type='radio'] + label[for] {
    cursor: pointer; }

label > [type='checkbox'],
label > [type='radio'] {
  margin-right: 1rem; }

[type='file'] {
  width: 100%; }

label {
  display: block;
  margin: 0;
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.8;
  color: #0a0a0a; }
  label.middle {
    margin: 0 0 2rem;
    padding: 1rem 0; }

.help-text {
  margin-top: -1rem;
  font-size: 0.8125rem;
  font-style: italic;
  color: #0a0a0a; }

.input-group {
  display: table;
  width: 100%;
  margin-bottom: 2rem; }
  .input-group > :first-child {
    border-radius: 0 0 0 0; }
  .input-group > :last-child > * {
    border-radius: 0 0 0 0; }

.input-group-label, .input-group-field, .input-group-button, .input-group-button a,
.input-group-button input,
.input-group-button button,
.input-group-button label {
  margin: 0;
  white-space: nowrap;
  display: table-cell;
  vertical-align: middle; }

.input-group-label {
  padding: 0 1rem;
  border: 1px solid #cacaca;
  background: #f2f0f2;
  color: #0a0a0a;
  text-align: center;
  white-space: nowrap;
  width: 1%;
  height: 100%; }
  .input-group-label:first-child {
    border-right: 0; }
  .input-group-label:last-child {
    border-left: 0; }

.input-group-field {
  border-radius: 0;
  height: 4rem; }

.input-group-button {
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
  width: 1%;
  height: 100%; }
  .input-group-button a,
  .input-group-button input,
  .input-group-button button,
  .input-group-button label {
    height: 4rem;
    padding-top: 0;
    padding-bottom: 0;
    font-size: 1rem; }

.input-group .input-group-button {
  display: table-cell; }

fieldset {
  margin: 0;
  padding: 0;
  border: 0; }

legend {
  max-width: 100%;
  margin-bottom: 1rem; }

.fieldset {
  margin: 1.125rem 0;
  padding: 1.25rem;
  border: 1px solid #cacaca; }
  .fieldset legend {
    margin: 0;
    margin-left: -0.1875rem;
    padding: 0 0.1875rem;
    background: #fff; }

select {
  height: 3.9375rem;
  margin: 0 0 2rem;
  padding: 1rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fefefe;
  font-family: "AkkuratMono", Consolas, "Liberation Mono", Courier, monospace;
  font-size: 1rem;
  line-height: normal;
  color: #0a0a0a;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' width='32' height='24' viewBox='0 0 32 24'><polygon points='0,0 32,0 16,24' style='fill: rgb%28138, 138, 138%29'></polygon></svg>");
  background-origin: content-box;
  background-position: right -2rem center;
  background-repeat: no-repeat;
  background-size: 9px 6px;
  padding-right: 3rem;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out; }
  @media screen and (min-width: 0\0) {
    select {
      background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg=="); } }
  select:focus {
    outline: none;
    border: none;
    background-color: #fefefe;
    box-shadow: none;
    transition: box-shadow 0.5s, border-color 0.25s ease-in-out; }
  select:disabled {
    background-color: #f2f0f2;
    cursor: not-allowed; }
  select::-ms-expand {
    display: none; }
  select[multiple] {
    height: auto;
    background-image: none; }

.is-invalid-input:not(:focus) {
  border-color: #cc4b37;
  background-color: #f9ecea; }
  .is-invalid-input:not(:focus)::-webkit-input-placeholder {
    color: #cc4b37; }
  .is-invalid-input:not(:focus):-ms-input-placeholder {
    color: #cc4b37; }
  .is-invalid-input:not(:focus)::placeholder {
    color: #cc4b37; }

.is-invalid-label {
  color: #cc4b37; }

.form-error {
  display: none;
  margin-top: -1rem;
  margin-bottom: 2rem;
  font-size: 0.75rem;
  font-weight: bold;
  color: #cc4b37; }
  .form-error.is-visible {
    display: block; }

.button {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 2rem 0;
  padding: 1.875em 5.75em;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  background-color: #0a0a0a;
  color: #fefefe; }
  [data-whatinput='mouse'] .button {
    outline: 0; }
  .button:hover, .button:focus {
    background-color: #090909;
    color: #fefefe; }
  .button.tiny {
    font-size: 0.6rem; }
  .button.small, .button.label, .case-study-header--content a.button[rel="tag"] {
    font-size: 0.75rem; }
  .button.large {
    font-size: 1.25rem; }
  .button.expanded {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-left: 0; }
  .button.primary {
    background-color: #0a0a0a;
    color: #fefefe; }
    .button.primary:hover, .button.primary:focus {
      background-color: #080808;
      color: #fefefe; }
  .button.secondary {
    background-color: #fefefe;
    color: #0a0a0a; }
    .button.secondary:hover, .button.secondary:focus {
      background-color: #cbcbcb;
      color: #0a0a0a; }
  .button.success {
    background-color: #FFFF00;
    color: #0a0a0a; }
    .button.success:hover, .button.success:focus {
      background-color: #cccc00;
      color: #0a0a0a; }
  .button.warning {
    background-color: #ffae00;
    color: #0a0a0a; }
    .button.warning:hover, .button.warning:focus {
      background-color: #cc8b00;
      color: #0a0a0a; }
  .button.alert {
    background-color: #cc4b37;
    color: #fefefe; }
    .button.alert:hover, .button.alert:focus {
      background-color: #a53b2a;
      color: #fefefe; }
  .button.hollow {
    border: 1px solid #0a0a0a;
    color: #0a0a0a; }
    .button.hollow, .button.hollow:hover, .button.hollow:focus {
      background-color: transparent; }
    .button.hollow:hover, .button.hollow:focus {
      border-color: #050505;
      color: #050505; }
    .button.hollow.primary {
      border: 1px solid #0a0a0a;
      color: #0a0a0a; }
      .button.hollow.primary:hover, .button.hollow.primary:focus {
        border-color: #050505;
        color: #050505; }
    .button.hollow.secondary {
      border: 1px solid #fefefe;
      color: #fefefe; }
      .button.hollow.secondary:hover, .button.hollow.secondary:focus {
        border-color: #7f7f7f;
        color: #7f7f7f; }
    .button.hollow.success {
      border: 1px solid #FFFF00;
      color: #FFFF00; }
      .button.hollow.success:hover, .button.hollow.success:focus {
        border-color: olive;
        color: olive; }
    .button.hollow.warning {
      border: 1px solid #ffae00;
      color: #ffae00; }
      .button.hollow.warning:hover, .button.hollow.warning:focus {
        border-color: #805700;
        color: #805700; }
    .button.hollow.alert {
      border: 1px solid #cc4b37;
      color: #cc4b37; }
      .button.hollow.alert:hover, .button.hollow.alert:focus {
        border-color: #67251a;
        color: #67251a; }
  .button.disabled, .button[disabled] {
    opacity: 0.25;
    cursor: not-allowed; }
    .button.disabled, .button.disabled:hover, .button.disabled:focus, .button[disabled], .button[disabled]:hover, .button[disabled]:focus {
      background-color: #0a0a0a;
      color: #fefefe; }
    .button.disabled.primary, .button[disabled].primary {
      opacity: 0.25;
      cursor: not-allowed; }
      .button.disabled.primary, .button.disabled.primary:hover, .button.disabled.primary:focus, .button[disabled].primary, .button[disabled].primary:hover, .button[disabled].primary:focus {
        background-color: #0a0a0a;
        color: #fefefe; }
    .button.disabled.secondary, .button[disabled].secondary {
      opacity: 0.25;
      cursor: not-allowed; }
      .button.disabled.secondary, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
        background-color: #fefefe;
        color: #0a0a0a; }
    .button.disabled.success, .button[disabled].success {
      opacity: 0.25;
      cursor: not-allowed; }
      .button.disabled.success, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success, .button[disabled].success:hover, .button[disabled].success:focus {
        background-color: #FFFF00;
        color: #0a0a0a; }
    .button.disabled.warning, .button[disabled].warning {
      opacity: 0.25;
      cursor: not-allowed; }
      .button.disabled.warning, .button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning, .button[disabled].warning:hover, .button[disabled].warning:focus {
        background-color: #ffae00;
        color: #0a0a0a; }
    .button.disabled.alert, .button[disabled].alert {
      opacity: 0.25;
      cursor: not-allowed; }
      .button.disabled.alert, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert, .button[disabled].alert:hover, .button[disabled].alert:focus {
        background-color: #cc4b37;
        color: #fefefe; }
  .button.dropdown::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 0.4em;
    content: '';
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #fefefe transparent transparent;
    position: relative;
    top: 0.4em;
    display: inline-block;
    float: right;
    margin-left: 5.75em; }
  .button.dropdown.hollow::after {
    border-top-color: #0a0a0a; }
  .button.dropdown.hollow.primary::after {
    border-top-color: #0a0a0a; }
  .button.dropdown.hollow.secondary::after {
    border-top-color: #fefefe; }
  .button.dropdown.hollow.success::after {
    border-top-color: #FFFF00; }
  .button.dropdown.hollow.warning::after {
    border-top-color: #ffae00; }
  .button.dropdown.hollow.alert::after {
    border-top-color: #cc4b37; }
  .button.arrow-only::after {
    top: -0.1em;
    float: none;
    margin-left: 0; }

.accordion {
  margin-left: 0;
  background: #fefefe;
  list-style-type: none; }

.accordion-item:first-child > :first-child {
  border-radius: 0 0 0 0; }

.accordion-item:last-child > :last-child {
  border-radius: 0 0 0 0; }

.accordion-title {
  position: relative;
  display: block;
  padding: 1.25rem 1rem;
  border: 1px solid #f2f0f2;
  border-bottom: 0;
  font-size: 0.75rem;
  line-height: 1;
  color: #0a0a0a; }
  :last-child:not(.is-active) > .accordion-title {
    border-bottom: 1px solid #f2f0f2;
    border-radius: 0 0 0 0; }
  .accordion-title:hover, .accordion-title:focus {
    background-color: #f2f0f2; }
  .accordion-title::before {
    position: absolute;
    top: 50%;
    right: 1rem;
    margin-top: -0.5rem;
    content: '+'; }
  .is-active > .accordion-title::before {
    content: '\2013'; }

.accordion-content {
  display: none;
  padding: 1rem;
  border: 1px solid #f2f0f2;
  border-bottom: 0;
  background-color: #fefefe;
  color: #0a0a0a; }
  :last-child > .accordion-content:last-child {
    border-bottom: 1px solid #f2f0f2; }

.callout {
  position: relative;
  margin: 0 0 1rem 0;
  padding: 1rem;
  border: 1px solid rgba(10, 10, 10, 0.25);
  border-radius: 0;
  background-color: white;
  color: #0a0a0a; }
  .callout > :first-child {
    margin-top: 0; }
  .callout > :last-child {
    margin-bottom: 0; }
  .callout.primary {
    background-color: #dadada;
    color: #0a0a0a; }
  .callout.secondary {
    background-color: white;
    color: #0a0a0a; }
  .callout.success {
    background-color: #ffffd9;
    color: #0a0a0a; }
  .callout.warning {
    background-color: #fff3d9;
    color: #0a0a0a; }
  .callout.alert {
    background-color: #f7e4e1;
    color: #0a0a0a; }
  .callout.small, .callout.label, .case-study-header--content a.callout[rel="tag"] {
    padding-top: 0.5rem;
    padding-right: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 0.5rem; }
  .callout.large {
    padding-top: 3rem;
    padding-right: 3rem;
    padding-bottom: 3rem;
    padding-left: 3rem; }

.card {
  margin-bottom: 1rem;
  border: 1px solid #f2f0f2;
  border-radius: 0;
  background: #fefefe;
  box-shadow: none;
  overflow: hidden;
  color: #0a0a0a; }
  .card > :last-child {
    margin-bottom: 0; }

.card-divider {
  padding: 1rem;
  background: #f2f0f2; }
  .card-divider > :last-child {
    margin-bottom: 0; }

.card-section {
  padding: 1rem; }
  .card-section > :last-child {
    margin-bottom: 0; }

.menu {
  margin: 0;
  list-style-type: none; }
  .menu > li {
    display: table-cell;
    vertical-align: middle; }
    [data-whatinput='mouse'] .menu > li {
      outline: 0; }
  .menu > li > a {
    display: block;
    padding: 1.5rem 1rem;
    line-height: 1; }
  .menu input,
  .menu select,
  .menu a,
  .menu button {
    margin-bottom: 0; }
  .menu > li > a img,
  .menu > li > a i,
  .menu > li > a svg {
    vertical-align: middle; }
    .menu > li > a img + span,
    .menu > li > a i + span,
    .menu > li > a svg + span {
      vertical-align: middle; }
  .menu > li > a img,
  .menu > li > a i,
  .menu > li > a svg {
    margin-right: 0.25rem;
    display: inline-block; }
  .menu > li, .menu.horizontal > li {
    display: table-cell; }
  .menu.expanded {
    display: table;
    width: 100%;
    table-layout: fixed; }
    .menu.expanded > li:first-child:last-child {
      width: 100%; }
  .menu.vertical > li {
    display: block; }
  @media print, screen and (min-width: 37.5em) {
    .menu.medium-horizontal > li {
      display: table-cell; }
    .menu.medium-expanded {
      display: table;
      width: 100%;
      table-layout: fixed; }
      .menu.medium-expanded > li:first-child:last-child {
        width: 100%; }
    .menu.medium-vertical > li {
      display: block; } }
  @media print, screen and (min-width: 48em) {
    .menu.large-horizontal > li {
      display: table-cell; }
    .menu.large-expanded {
      display: table;
      width: 100%;
      table-layout: fixed; }
      .menu.large-expanded > li:first-child:last-child {
        width: 100%; }
    .menu.large-vertical > li {
      display: block; } }
  @media screen and (min-width: 64em) {
    .menu.xlarge-horizontal > li {
      display: table-cell; }
    .menu.xlarge-expanded {
      display: table;
      width: 100%;
      table-layout: fixed; }
      .menu.xlarge-expanded > li:first-child:last-child {
        width: 100%; }
    .menu.xlarge-vertical > li {
      display: block; } }
  @media screen and (min-width: 90em) {
    .menu.xxlarge-horizontal > li {
      display: table-cell; }
    .menu.xxlarge-expanded {
      display: table;
      width: 100%;
      table-layout: fixed; }
      .menu.xxlarge-expanded > li:first-child:last-child {
        width: 100%; }
    .menu.xxlarge-vertical > li {
      display: block; } }
  .menu.simple li {
    display: inline-block;
    vertical-align: top;
    line-height: 1; }
  .menu.simple a {
    padding: 0; }
  .menu.simple li {
    margin-left: 0;
    margin-right: 1rem; }
  .menu.simple.align-right li {
    margin-right: 0;
    margin-left: 1rem; }
  .menu.align-right::before, .menu.align-right::after {
    display: table;
    content: ' '; }
  .menu.align-right::after {
    clear: both; }
  .menu.align-right > li {
    float: right; }
  .menu.icon-top > li > a {
    text-align: center; }
    .menu.icon-top > li > a img,
    .menu.icon-top > li > a i,
    .menu.icon-top > li > a svg {
      display: block;
      margin: 0 auto 0.25rem; }
  .menu.icon-top.vertical a > span {
    margin: auto; }
  .menu.nested {
    margin-left: 1rem; }
  .menu .active > a {
    background: transparent;
    color: #0a0a0a; }
  .menu.menu-bordered li {
    border: 1px solid #f2f0f2; }
    .menu.menu-bordered li:not(:first-child) {
      border-top: 0; }
  .menu.menu-hover li:hover {
    background-color: #f2f0f2; }

.menu-text {
  padding-top: 0;
  padding-bottom: 0;
  padding: 1.5rem 1rem;
  font-weight: bold;
  line-height: 1;
  color: inherit; }

.menu-centered {
  text-align: center; }
  .menu-centered > .menu {
    display: inline-block;
    vertical-align: top; }

.no-js [data-responsive-menu] ul {
  display: none; }

.menu-icon {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 16px;
  cursor: pointer; }
  .menu-icon::after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    background: #0a0a0a;
    box-shadow: 0 7px 0 #0a0a0a, 0 14px 0 #0a0a0a;
    content: ''; }
  .menu-icon:hover::after {
    background: #cacaca;
    box-shadow: 0 7px 0 #cacaca, 0 14px 0 #cacaca; }

.menu-icon.dark {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 16px;
  cursor: pointer; }
  .menu-icon.dark::after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    background: #0a0a0a;
    box-shadow: 0 7px 0 #0a0a0a, 0 14px 0 #0a0a0a;
    content: ''; }
  .menu-icon.dark:hover::after {
    background: #8a8a8a;
    box-shadow: 0 7px 0 #8a8a8a, 0 14px 0 #8a8a8a; }

.responsive-embed,
.flex-video {
  position: relative;
  height: 0;
  margin-bottom: 0;
  padding-bottom: 75%;
  overflow: hidden; }
  .responsive-embed iframe,
  .responsive-embed object,
  .responsive-embed embed,
  .responsive-embed video,
  .flex-video iframe,
  .flex-video object,
  .flex-video embed,
  .flex-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  .responsive-embed.widescreen,
  .flex-video.widescreen {
    padding-bottom: 56.25%; }

.media-object {
  display: block;
  margin-bottom: 1rem; }
  .media-object img {
    max-width: none; }
  @media screen and (max-width: 37.4375em) {
    .media-object.stack-for-small .media-object-section {
      padding: 0;
      padding-bottom: 1rem;
      display: block; }
      .media-object.stack-for-small .media-object-section img {
        width: 100%; } }

.media-object-section {
  display: table-cell;
  vertical-align: top; }
  .media-object-section:first-child {
    padding-right: 1rem; }
  .media-object-section:last-child:not(:nth-child(2)) {
    padding-left: 1rem; }
  .media-object-section > :last-child {
    margin-bottom: 0; }
  .media-object-section.middle {
    vertical-align: middle; }
  .media-object-section.bottom {
    vertical-align: bottom; }

.title-bar {
  padding: 1.2rem 0.5rem;
  background: "none";
  color: #0a0a0a; }
  .title-bar::before, .title-bar::after {
    display: table;
    content: ' '; }
  .title-bar::after {
    clear: both; }
  .title-bar .menu-icon {
    margin-left: 0.25rem;
    margin-right: 0.25rem; }

.title-bar-left {
  float: left; }

.title-bar-right {
  float: right;
  text-align: right; }

.title-bar-title {
  display: inline-block;
  vertical-align: middle;
  font-weight: normal; }

.top-bar {
  padding: 0; }
  .top-bar::before, .top-bar::after {
    display: table;
    content: ' '; }
  .top-bar::after {
    clear: both; }
  .top-bar,
  .top-bar ul {
    background-color: rgba(255, 255, 255, 0.95); }
  .top-bar input {
    max-width: 200px;
    margin-right: 1rem; }
  .top-bar .input-group-field {
    width: 100%;
    margin-right: 0; }
  .top-bar input.button {
    width: auto; }
  .top-bar .top-bar-left,
  .top-bar .top-bar-right {
    width: 100%; }
  @media print, screen and (min-width: 37.5em) {
    .top-bar .top-bar-left,
    .top-bar .top-bar-right {
      width: auto; } }
  @media screen and (max-width: 47.9375em) {
    .top-bar.stacked-for-medium .top-bar-left,
    .top-bar.stacked-for-medium .top-bar-right {
      width: 100%; } }
  @media screen and (max-width: 63.9375em) {
    .top-bar.stacked-for-large .top-bar-left,
    .top-bar.stacked-for-large .top-bar-right {
      width: 100%; } }
  @media screen and (max-width: 89.9375em) {
    .top-bar.stacked-for-xlarge .top-bar-left,
    .top-bar.stacked-for-xlarge .top-bar-right {
      width: 100%; } }
  .top-bar.stacked-for-xxlarge .top-bar-left,
  .top-bar.stacked-for-xxlarge .top-bar-right {
    width: 100%; }

.top-bar-title {
  display: inline-block;
  float: left;
  padding: 0.45rem 1rem 0 1rem; }
  .top-bar-title .menu-icon {
    bottom: 2px; }

.top-bar-left {
  float: left; }

.top-bar-right {
  float: right; }

.float-left {
  float: left !important; }

.float-right {
  float: right !important; }

.float-center {
  display: block;
  margin-right: auto;
  margin-left: auto; }

.clearfix::before, .clearfix::after {
  display: table;
  content: ' '; }

.clearfix::after {
  clear: both; }

/************************************************
Stylesheet: Main Stylesheet
*************************************************/
/*********************
GENERAL STYLES
*********************/
/*********************
LINK STYLES
*********************/
a:link, a:visited:link {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3); }

/*********************
H1, H2, H3, H4, H5 P STYLES
*********************/
h1 a, .statement h2 a, .statement blockquote p a, blockquote .statement p a, .statement .tag-filter-item__link a,
.page-end-statement h2 a,
.page-end-statement blockquote p a, blockquote
.page-end-statement p a,
.page-end-statement .tag-filter-item__link a, .newsletter h2 a, .newsletter blockquote p a, blockquote .newsletter p a, .newsletter .tag-filter-item__link a, .tile--large h2 a, .tile--large blockquote p a, blockquote .tile--large p a, .tile--large .tag-filter-item__link a, .h1 a, h2 a, blockquote p a, .tag-filter-item__link a, .h2 a, h3 a, .tile--medium h2 a, .tile--medium blockquote p a, blockquote .tile--medium p a, .tile--medium .tag-filter-item__link a, .h3 a, h4 a, .h4 a, h5 a, .h5 a {
  text-decoration: none; }

/*********************
HEADER STYLES
*********************/
.header ul.off-canvas-list li {
  list-style: none; }

/*********************
NAVIGATION STYLES
*********************/
.top-bar .title-area {
  z-index: 1; }

.off-canvas-list ul {
  margin-left: 0; }
  .off-canvas-list ul li a {
    border-bottom: 0px; }
  .off-canvas-list ul .dropdown {
    margin-left: 20px; }

/*********************
POSTS & CONTENT STYLES
*********************/
#content #inner-content {
  padding: 1rem 0rem; }

.page-title .vcard {
  border: 0px;
  padding: 0px; }

.byline {
  color: #999; }

.entry-content img {
  max-width: 100%;
  height: auto; }

.entry-content .alignleft, .entry-content img.alignleft {
  margin-right: 1.5em;
  display: inline;
  float: left; }

.entry-content .alignright, .entry-content img.alignright {
  margin-left: 1.5em;
  display: inline;
  float: right; }

.entry-content .aligncenter, .entry-content img.aligncenter {
  margin-right: auto;
  margin-left: auto;
  display: block;
  clear: both; }

.entry-content video, .entry-content object {
  max-width: 100%;
  height: auto; }

.entry-content pre {
  background: #eee;
  border: 1px solid #cecece;
  padding: 10px; }

.wp-caption {
  max-width: 100%;
  background: #eee;
  padding: 5px; }
  .wp-caption img {
    max-width: 100%;
    margin-bottom: 0;
    width: 100%; }
  .wp-caption p.wp-caption-text {
    font-size: 0.85em;
    margin: 4px 0 7px;
    text-align: center; }

.post-password-form input[type="submit"] {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 2rem 0;
  padding: 1.875em 5.75em;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  background-color: #0a0a0a;
  color: #fefefe; }
  [data-whatinput='mouse'] .post-password-form input[type="submit"] {
    outline: 0; }
  .post-password-form input[type="submit"]:hover, .post-password-form input[type="submit"]:focus {
    background-color: #090909;
    color: #fefefe; }

/*********************
IMAGE GALLERY STYLES
*********************/
/*********************
PAGE NAVI STYLES
*********************/
.page-navigation {
  margin-top: 1rem; }

/*********************
COMMENT STYLES
*********************/
#comments .commentlist {
  margin-left: 0px; }

#respond ul {
  margin-left: 0px; }

.commentlist li {
  position: relative;
  clear: both;
  overflow: hidden;
  list-style-type: none;
  margin-bottom: 1.5em;
  padding: 0.7335em 10px; }
  .commentlist li:last-child {
    margin-bottom: 0; }
  .commentlist li ul.children {
    margin: 0; }

.commentlist li[class*=depth-] {
  margin-top: 1.1em; }

.commentlist li.depth-1 {
  margin-left: 0;
  margin-top: 0; }

.commentlist li:not(.depth-1) {
  margin-left: 10px;
  margin-top: 0;
  padding-bottom: 0; }

.commentlist .vcard {
  margin-left: 50px; }
  .commentlist .vcard cite.fn {
    font-weight: 700;
    font-style: normal; }
  .commentlist .vcard time {
    float: right; }
    .commentlist .vcard time a {
      color: #999;
      text-decoration: none; }
      .commentlist .vcard time a:hover {
        text-decoration: underline; }
  .commentlist .vcard img.avatar {
    position: absolute;
    left: 10px;
    padding: 2px;
    border: 1px solid #cecece;
    background: #fff; }

.commentlist .comment_content p {
  margin: 0.7335em 0 1.5em;
  font-size: 1em;
  line-height: 1.5em; }

.commentlist .comment-reply-link {
  float: right; }

/*********************
COMMENT FORM STYLES
*********************/
.respond-form {
  margin: 1.5em 10px;
  padding-bottom: 2.2em; }
  .respond-form form {
    margin: 0.75em 0; }
    .respond-form form li {
      list-style-type: none;
      clear: both;
      margin-bottom: 0.7335em; }
      .respond-form form li label,
      .respond-form form li small {
        display: none; }
    .respond-form form input[type=text],
    .respond-form form input[type=email],
    .respond-form form input[type=url],
    .respond-form form textarea {
      padding: 3px 6px;
      background: #efefef;
      border: 2px solid #cecece;
      line-height: 1.5em; }
      .respond-form form input[type=text]:focus,
      .respond-form form input[type=email]:focus,
      .respond-form form input[type=url]:focus,
      .respond-form form textarea:focus {
        background: #fff; }
      .respond-form form input[type=text]:invalid,
      .respond-form form input[type=email]:invalid,
      .respond-form form input[type=url]:invalid,
      .respond-form form textarea:invalid {
        outline: none;
        border-color: #fbc2c4;
        background-color: #f6e7eb;
        -ms-box-shadow: none;
        box-shadow: none; }
    .respond-form form input[type=text],
    .respond-form form input[type=email],
    .respond-form form input[type=url] {
      max-width: 400px;
      min-width: 250px; }
    .respond-form form textarea {
      resize: none;
      width: 97.3%;
      height: 150px; }

#comment-form-title {
  margin: 0 0 1.1em; }

#allowed_tags {
  margin: 1.5em 10px 0.7335em 0; }

.nocomments {
  margin: 0 20px 1.1em; }

/*********************
SIDEBARS & ASIDES
*********************/
.widget ul {
  margin: 0; }
  .widget ul li {
    list-style: none; }

/*********************
FOOTER STYLES
*********************/
.footer {
  clear: both; }

/*********************
FOUNDATION STYLES
*********************/
/*********************
PLUGIN STYLES
*********************/
.gform_body ul {
  list-style: none outside none;
  margin: 0; }

html,
body {
  height: 100%; }

body {
  padding-top: 62px;
  font-size: 0.9375rem; }
  @media print, screen and (min-width: 48em) {
    body {
      font-size: 1rem; } }

section {
  padding: 2rem 0.9375rem; }
  @media print, screen and (min-width: 48em) {
    section {
      padding: 4rem 1.5625rem; } }

.section-heading {
  max-width: 64rem;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  position: relative;
  padding-top: 1.563rem; }
  .section-heading::before, .section-heading::after {
    display: table;
    content: ' '; }
  .section-heading::after {
    clear: both; }
  @media print, screen and (min-width: 37.5em) {
    .section-heading {
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }
  .section-heading, .section-heading:last-child {
    float: none; }
  .section-heading--white {
    color: #fefefe; }
  @media screen and (min-width: 90em) {
    .section-heading {
      max-width: 1440px; } }

.grid-container {
  max-width: 64rem;
  margin-right: auto;
  margin-left: auto; }
  .grid-container::before, .grid-container::after {
    display: table;
    content: ' '; }
  .grid-container::after {
    clear: both; }
  @media screen and (min-width: 90em) {
    .grid-container {
      max-width: 1440px; } }

.flex-grid-container {
  max-width: 64rem;
  margin-right: auto;
  margin-left: auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap; }

.thinking-page,
.thinking {
  background: #f2f0f2; }

.levers {
  background: #582CFF; }

.work {
  background: #0a0a0a;
  color: #fefefe; }

.text-block, .press, .more {
  max-width: 42.8125rem;
  width: 100%;
  margin: 0 auto;
  position: relative;
  display: table;
  clear: both;
  padding: 2rem 10px 0; }
  @media print, screen and (min-width: 37.5em) {
    .text-block, .press, .more {
      padding: 2rem 10px 0; } }

.small, .label, .case-study-header--content a[rel="tag"] {
  font-family: "AkkuratMono", Consolas, "Liberation Mono", Courier, monospace;
  font-size: 87%;
  margin-bottom: 0; }

.label, .case-study-header--content a[rel="tag"] {
  margin-bottom: 0.5rem; }
  .label--blue {
    color: #9D85FF; }

.meta {
  padding-bottom: 1rem; }
  @media screen and (min-width: 64em) {
    .meta {
      position: absolute;
      bottom: 1rem;
      padding-bottom: 0; } }

.arrow {
  position: absolute;
  right: 20px;
  bottom: 1.5rem; }

.icon {
  margin-left: 1rem; }

.arrow--light svg path,
.icon--light svg path {
  fill: #fefefe; }

.greeting {
  font-family: "AkkuratBold", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  text-transform: uppercase; }

blockquote {
  text-align: left;
  position: relative;
  padding-left: 2rem; }
  blockquote p {
    line-height: 1.2;
    margin-bottom: 2rem; }
    blockquote p:last-child {
      margin-bottom: 0; }
  blockquote:before {
    content: '';
    background: url("../images/quote-icon-black.svg");
    width: 23.5px;
    height: 20px;
    position: absolute;
    left: 0;
    top: 8px; }
  @media print, screen and (min-width: 48em) {
    blockquote {
      padding-left: 0; }
      blockquote:before {
        left: -2rem; } }

address {
  margin-bottom: 2rem;
  font-style: normal; }

cite {
  font-family: "AkkuratMono", Consolas, "Liberation Mono", Courier, monospace;
  white-space: pre-line;
  line-height: 1.6; }

button,
.button {
  font-family: "AkkuratMono", Consolas, "Liberation Mono", Courier, monospace; }
  .work-page button.hollow, .work-page
  .button.hollow {
    border-color: #fefefe;
    color: #fefefe; }
    .work-page button.hollow:hover, .work-page
    .button.hollow:hover {
      border-color: #FFFF00;
      color: #FFFF00; }

.general-info-page .page-header {
  max-width: none; }

.homepage-grid {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.group {
  display: none;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-preferred-size: 66.67%;
  flex-basis: 66.67%; }
  .group .tile {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%; }
  @media screen and (min-width: 64em) {
    .group {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-preferred-size: 20%;
      flex-basis: 20%; }
      .group .tile {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%; } }

[data-order="1"] {
  -ms-flex-order: 1;
  order: 1; }

[data-order="2"] {
  -ms-flex-order: 2;
  order: 2; }

[data-order="3"] {
  -ms-flex-order: 3;
  order: 3; }

[data-order="4"] {
  -ms-flex-order: 4;
  order: 4; }

[data-order="5"] {
  -ms-flex-order: 5;
  order: 5; }

[data-order="6"] {
  -ms-flex-order: 6;
  order: 6; }

[data-order="7"] {
  -ms-flex-order: 7;
  order: 7; }

[data-order="8"] {
  -ms-flex-order: 8;
  order: 8; }

[data-order="9"] {
  -ms-flex-order: 9;
  order: 9; }

[data-order="10"] {
  -ms-flex-order: 10;
  order: 10; }

[data-order="11"] {
  -ms-flex-order: 11;
  order: 11; }

[data-order="12"] {
  -ms-flex-order: 12;
  order: 12; }

[data-order="13"] {
  -ms-flex-order: 13;
  order: 13; }

[data-order="14"] {
  -ms-flex-order: 14;
  order: 14; }

[data-order="15"] {
  -ms-flex-order: 15;
  order: 15; }

[data-order="16"] {
  -ms-flex-order: 16;
  order: 16; }

[data-order="17"] {
  -ms-flex-order: 17;
  order: 17; }

[data-order="18"] {
  -ms-flex-order: 18;
  order: 18; }

[data-order="19"] {
  -ms-flex-order: 19;
  order: 19; }

[data-order="20"] {
  -ms-flex-order: 20;
  order: 20; }

[data-order="21"] {
  -ms-flex-order: 21;
  order: 21; }

[data-order="22"] {
  -ms-flex-order: 22;
  order: 22; }

[data-order="23"] {
  -ms-flex-order: 23;
  order: 23; }

[data-order="24"] {
  -ms-flex-order: 24;
  order: 24; }

[data-order="25"] {
  -ms-flex-order: 25;
  order: 25; }

[data-order="26"] {
  -ms-flex-order: 26;
  order: 26; }

[data-order="27"] {
  -ms-flex-order: 27;
  order: 27; }

[data-order="28"] {
  -ms-flex-order: 28;
  order: 28; }

[data-order="29"] {
  -ms-flex-order: 29;
  order: 29; }

[data-order="30"] {
  -ms-flex-order: 30;
  order: 30; }

[data-order="31"] {
  -ms-flex-order: 31;
  order: 31; }

[data-order="32"] {
  -ms-flex-order: 32;
  order: 32; }

[data-order="33"] {
  -ms-flex-order: 33;
  order: 33; }

[data-order="34"] {
  -ms-flex-order: 34;
  order: 34; }

[data-order="35"] {
  -ms-flex-order: 35;
  order: 35; }

[data-order="36"] {
  -ms-flex-order: 36;
  order: 36; }

[data-order="37"] {
  -ms-flex-order: 37;
  order: 37; }

[data-order="38"] {
  -ms-flex-order: 38;
  order: 38; }

[data-order="39"] {
  -ms-flex-order: 39;
  order: 39; }

[data-order="40"] {
  -ms-flex-order: 40;
  order: 40; }

[data-order="41"] {
  -ms-flex-order: 41;
  order: 41; }

[data-order="42"] {
  -ms-flex-order: 42;
  order: 42; }

[data-order="43"] {
  -ms-flex-order: 43;
  order: 43; }

[data-order="44"] {
  -ms-flex-order: 44;
  order: 44; }

[data-order="45"] {
  -ms-flex-order: 45;
  order: 45; }

[data-order="46"] {
  -ms-flex-order: 46;
  order: 46; }

[data-order="47"] {
  -ms-flex-order: 47;
  order: 47; }

[data-order="48"] {
  -ms-flex-order: 48;
  order: 48; }

[data-order="49"] {
  -ms-flex-order: 49;
  order: 49; }

[data-order="50"] {
  -ms-flex-order: 50;
  order: 50; }

[data-order="51"] {
  -ms-flex-order: 51;
  order: 51; }

.jobs-page {
  background: #FFFF00; }

.job-page .page-header {
  max-width: none;
  margin-bottom: 3rem; }

.job-page h1, .job-page .statement h2, .statement .job-page h2, .job-page .statement blockquote p, .statement blockquote .job-page p, .job-page blockquote .statement p, blockquote .statement .job-page p, .job-page .statement .tag-filter-item__link, .statement .job-page .tag-filter-item__link, .job-page
.page-end-statement h2,
.page-end-statement .job-page h2, .job-page
.page-end-statement blockquote p,
.page-end-statement blockquote .job-page p, .job-page blockquote
.page-end-statement p, blockquote
.page-end-statement .job-page p, .job-page
.page-end-statement .tag-filter-item__link,
.page-end-statement .job-page .tag-filter-item__link, .job-page .newsletter h2, .newsletter .job-page h2, .job-page .newsletter blockquote p, .newsletter blockquote .job-page p, .job-page blockquote .newsletter p, blockquote .newsletter .job-page p, .job-page .newsletter .tag-filter-item__link, .newsletter .job-page .tag-filter-item__link, .job-page .tile--large h2, .tile--large .job-page h2, .job-page .tile--large blockquote p, .tile--large blockquote .job-page p, .job-page blockquote .tile--large p, blockquote .tile--large .job-page p, .job-page .tile--large .tag-filter-item__link, .tile--large .job-page .tag-filter-item__link {
  margin-bottom: 0.5rem;
  font-weight: bold; }

.job-detail-item {
  padding-right: 1rem;
  padding-left: 1rem;
  width: 100%;
  border-top: 2px solid #f2f0f2;
  overflow: hidden; }
  @media screen and (min-width: 64em) {
    .job-detail-item {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-pack: end;
      justify-content: flex-end;
      padding-right: 0;
      padding-left: 0; } }
  .job-detail-item .grid-container {
    max-width: 64rem;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    float: left;
    padding-right: 0.375rem;
    padding-left: 0.375rem; }
    .job-detail-item .grid-container::before, .job-detail-item .grid-container::after {
      display: table;
      content: ' '; }
    .job-detail-item .grid-container::after {
      clear: both; }
    .job-detail-item .grid-container, .job-detail-item .grid-container:last-child {
      float: none; }
  .job-detail-item h2, .job-detail-item blockquote p, blockquote .job-detail-item p, .job-detail-item .tag-filter-item__link {
    font-size: 1.2rem;
    font-weight: normal; }
    @media print, screen and (min-width: 37.5em) {
      .job-detail-item h2, .job-detail-item blockquote p, blockquote .job-detail-item p, .job-detail-item .tag-filter-item__link {
        float: left;
        padding-right: 3rem;
        width: 33.33333%; } }
  .job-detail-item a {
    color: #3700ff; }
  @media print, screen and (min-width: 37.5em) {
    .job-detail-item .quote--content {
      left: 0;
      float: right; } }
  .job-detail-item .quote--content *:last-child {
    margin-bottom: 0; }
  .job-detail-item .quote--content ul {
    margin-left: 0;
    list-style: none; }
  .job-detail-item .quote--content li {
    position: relative;
    margin-left: 30px; }
    @media print, screen and (min-width: 48em) {
      .job-detail-item .quote--content li {
        margin-left: 0; } }
    .job-detail-item .quote--content li + li {
      margin-top: 0.5rem; }
    .job-detail-item .quote--content li:before {
      content: "";
      display: block;
      position: absolute;
      top: 7px;
      left: -30px;
      width: 10px;
      height: 10px;
      background: #0a0a0a; }

.thinking-page .card-item__content {
  background: #fefefe; }

.thinking-page .arrow {
  display: none; }

.thinking-page .card-item--small .card-item__details {
  padding-right: 1rem;
  padding-left: 1rem; }

.thinking-page .statement--heading {
  padding-bottom: 0; }

.thinking-page #latest {
  padding-top: 0.25rem; }
  .thinking-page #latest .tag-filter {
    margin-bottom: 0.5rem; }

.work-page .work {
  background: #0a0a0a;
  color: #fefefe; }

.people-page .people {
  background: #fff; }

.people {
  margin: 0 auto;
  max-width: 64rem; }
  .people .text-center {
    margin-top: 2rem; }

@media print, screen and (min-width: 48em) {
  .person-page__image {
    width: 66.66667%;
    float: left;
    padding-right: 0.625rem;
    padding-left: 0.625rem;
    margin-left: 16.66667%; } }
  @media print, screen and (min-width: 48em) and (min-width: 37.5em) {
    .person-page__image {
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }

.person-page-content .social-links ul {
  margin-bottom: 0; }

.person-page-content .social-links__item {
  display: block;
  float: left; }

.person-page-content .social-links__link {
  display: block;
  background: #fefefe;
  border: 1px solid #0a0a0a; }
  .person-page-content .social-links__link path {
    fill: #0a0a0a; }
  .person-page-content .social-links__link:hover {
    background: #0a0a0a; }
    .person-page-content .social-links__link:hover path {
      fill: #fefefe; }

.person-page-content .card-item p {
  margin-bottom: 1rem; }

.person-page-content .card-item .meta {
  display: none; }

.person-page-content .card-item .arrow {
  position: static; }

@media print, screen and (min-width: 37.5em) {
  .case-study-page {
    overflow-x: hidden; } }

.case-study-page .case-study-content {
  margin-bottom: 3rem; }

@media print, screen and (min-width: 37.5em) {
  .error404 .container {
    height: calc(100% - 126px); } }

.content-not-found-page {
  background: #0a0a0a;
  color: #fefefe;
  padding-bottom: 1rem;
  text-align: center; }
  @media print, screen and (min-width: 37.5em) {
    .content-not-found-page {
      position: relative;
      height: 100%; } }

@media print, screen and (min-width: 37.5em) {
  .content-not-found {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%); } }

.header {
  padding: 0;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.95);
  z-index: 10; }
  .header::before, .header::after {
    display: table;
    content: ' '; }
  .header::after {
    clear: both; }
  .header,
  .header ul {
    background-color: rgba(255, 255, 255, 0.95); }
  .header input {
    max-width: 200px;
    margin-right: 1rem; }
  .header .input-group-field {
    width: 100%;
    margin-right: 0; }
  .header input.button {
    width: auto; }
  .header .logo {
    background: #FFFF00;
    padding: 1.2rem 3.5rem;
    float: left;
    color: #0a0a0a; }
  .admin-bar .header {
    top: 32px; }

.logo {
  font-family: "AkkuratBold", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  text-transform: uppercase;
  text-align: center;
  display: inline-block; }

.main-nav {
  clear: both;
  padding: 0 1rem;
  width: 100%;
  height: calc(100vh - 63px);
  font-family: "AkkuratMono", Consolas, "Liberation Mono", Courier, monospace;
  font-size: 1.2rem;
  z-index: 1;
  overflow: scroll; }
  @media screen and (min-width: 64em) {
    .main-nav {
      background: none;
      font-size: 0.875rem;
      overflow: hidden; } }
  .main-nav ul {
    background: none; }
  .main-nav__list {
    margin: 0;
    list-style-type: none;
    width: 83.33333%;
    float: left;
    padding-right: 0.625rem;
    padding-left: 0.625rem;
    margin-left: 8.33333%;
    padding-top: 1rem; }
    .main-nav__list > li {
      display: table-cell;
      vertical-align: middle; }
      [data-whatinput='mouse'] .main-nav__list > li {
        outline: 0; }
    .main-nav__list > li > a {
      display: block;
      padding: 1.5rem 1rem;
      line-height: 1; }
    .main-nav__list input,
    .main-nav__list select,
    .main-nav__list a,
    .main-nav__list button {
      margin-bottom: 0; }
    .main-nav__list > li {
      display: block; }
    @media print, screen and (min-width: 37.5em) {
      .main-nav__list {
        padding-right: 0.625rem;
        padding-left: 0.625rem; } }
    @media print, screen and (min-width: 37.5em) {
      .main-nav__list {
        padding-top: 2rem; } }
    @media print, screen and (min-width: 48em) {
      .main-nav__list {
        padding-top: 4rem; } }
    @media screen and (min-width: 64em) {
      .main-nav__list {
        padding-top: 0; } }
    .main-nav__list > li > a {
      padding: 1.2rem 1rem;
      padding-left: 0;
      line-height: inherit; }
      @media screen and (min-width: 64em) {
        .main-nav__list > li > a {
          padding-left: 1rem; } }
  .main-nav--extra-links {
    width: 83.33333%;
    float: left;
    padding-right: 0.625rem;
    padding-left: 0.625rem;
    margin-left: 8.33333%;
    padding-top: 2rem;
    font-size: 80%; }
    @media print, screen and (min-width: 37.5em) {
      .main-nav--extra-links {
        padding-right: 0.625rem;
        padding-left: 0.625rem; } }
    @media print, screen and (min-width: 37.5em) {
      .main-nav--extra-links {
        padding-top: 4rem; } }
    @media print, screen and (min-width: 48em) {
      .main-nav--extra-links {
        position: absolute;
        bottom: 6rem;
        padding-top: 0; } }
    @media screen and (min-width: 64em) {
      .main-nav--extra-links {
        display: none; } }
    .main-nav--extra-links ul {
      margin: 0;
      list-style-type: none;
      width: 50%;
      float: left;
      padding-right: 0.625rem;
      padding-left: 0.625rem;
      padding: 0 !important;
      font-size: 90%; }
      .main-nav--extra-links ul > li {
        display: table-cell;
        vertical-align: middle; }
        [data-whatinput='mouse'] .main-nav--extra-links ul > li {
          outline: 0; }
      .main-nav--extra-links ul > li > a {
        display: block;
        padding: 1.5rem 1rem;
        line-height: 1; }
      .main-nav--extra-links ul input,
      .main-nav--extra-links ul select,
      .main-nav--extra-links ul a,
      .main-nav--extra-links ul button {
        margin-bottom: 0; }
      .main-nav--extra-links ul > li {
        display: block; }
      @media print, screen and (min-width: 37.5em) {
        .main-nav--extra-links ul {
          padding-right: 0.625rem;
          padding-left: 0.625rem; } }
      .main-nav--extra-links ul > li {
        padding-top: 1.5rem;
        line-height: 1; }
        .main-nav--extra-links ul > li > a {
          padding: 0;
          color: #0a0a0a; }
  @media screen and (min-width: 64em) {
    .main-nav {
      position: static;
      clear: none;
      float: right;
      width: auto;
      height: auto; }
      .main-nav__list {
        width: 100%;
        float: left;
        padding-right: 0.625rem;
        padding-left: 0.625rem;
        margin-left: 0%; }
        .main-nav__list > li {
          display: table-cell; } }
    @media screen and (min-width: 64em) and (min-width: 37.5em) {
      .main-nav__list {
        padding-right: 0.625rem;
        padding-left: 0.625rem; } }

.menu-item a {
  color: #0a0a0a; }

.menu-item.active a {
  color: #0a0a0a; }

.footer {
  background: #f2f0f2; }
  .footer .logo {
    padding: 1.2rem 1rem;
    color: #0a0a0a; }
    @media print, screen and (min-width: 48em) {
      .footer .logo {
        padding: 1.2rem 3.5rem; } }

.footer-links {
  display: none;
  font-family: "AkkuratMono", Consolas, "Liberation Mono", Courier, monospace;
  font-size: 88%; }
  @media screen and (min-width: 64em) {
    .footer-links {
      display: block;
      float: right; } }

.copyright {
  padding: 1.5rem 1rem;
  margin-bottom: 0;
  line-height: 1; }

@media print, screen and (min-width: 48em) {
  .footer-nav,
  .copyright {
    float: left; } }

@media print, screen and (min-width: 48em) {
  .single-post .post-page .statement h2, .single-post .post-page .statement blockquote p, blockquote .single-post .post-page .statement p, .single-post .post-page .statement .tag-filter-item__link, .single-post .post-page
  .page-end-statement h2, .single-post .post-page
  .page-end-statement blockquote p, blockquote .single-post .post-page
  .page-end-statement p, .single-post .post-page
  .page-end-statement .tag-filter-item__link {
    width: 100%;
    font-size: 3.75rem; } }

.statement--light,
.page-end-statement--light {
  background: #FFFF00;
  color: #0a0a0a; }
  .statement--light .button,
  .page-end-statement--light .button {
    background-color: #0a0a0a;
    color: #fefefe; }
    .statement--light .button:hover, .statement--light .button:focus,
    .page-end-statement--light .button:hover,
    .page-end-statement--light .button:focus {
      background-color: #0a0a0a;
      color: #fefefe; }

.statement--dark,
.page-end-statement--dark {
  background: #0a0a0a;
  color: #fefefe; }
  .statement--dark .button,
  .page-end-statement--dark .button {
    background-color: #fefefe;
    color: #0a0a0a; }
    .statement--dark .button:hover, .statement--dark .button:focus,
    .page-end-statement--dark .button:hover,
    .page-end-statement--dark .button:focus {
      background-color: #fefefe;
      color: #0a0a0a; }

.statement--heading h1, .statement--heading .statement h2, .statement .statement--heading h2, .statement--heading .statement blockquote p, .statement blockquote .statement--heading p, .statement--heading blockquote .statement p, blockquote .statement .statement--heading p, .statement--heading .statement .tag-filter-item__link, .statement .statement--heading .tag-filter-item__link, .statement--heading
.page-end-statement h2,
.page-end-statement .statement--heading h2, .statement--heading
.page-end-statement blockquote p,
.page-end-statement blockquote .statement--heading p, .statement--heading blockquote
.page-end-statement p, blockquote
.page-end-statement .statement--heading p, .statement--heading
.page-end-statement .tag-filter-item__link,
.page-end-statement .statement--heading .tag-filter-item__link, .statement--heading .newsletter h2, .newsletter .statement--heading h2, .statement--heading .newsletter blockquote p, .newsletter blockquote .statement--heading p, .statement--heading blockquote .newsletter p, blockquote .newsletter .statement--heading p, .statement--heading .newsletter .tag-filter-item__link, .newsletter .statement--heading .tag-filter-item__link, .statement--heading .tile--large h2, .tile--large .statement--heading h2, .statement--heading .tile--large blockquote p, .tile--large blockquote .statement--heading p, .statement--heading blockquote .tile--large p, blockquote .tile--large .statement--heading p, .statement--heading .tile--large .tag-filter-item__link, .tile--large .statement--heading .tag-filter-item__link,
.page-end-statement--heading h1,
.page-end-statement--heading .statement h2, .statement
.page-end-statement--heading h2,
.page-end-statement--heading .statement blockquote p, .statement blockquote
.page-end-statement--heading p,
.page-end-statement--heading blockquote .statement p, blockquote .statement
.page-end-statement--heading p,
.page-end-statement--heading .statement .tag-filter-item__link, .statement
.page-end-statement--heading .tag-filter-item__link,
.page-end-statement--heading
.page-end-statement h2,
.page-end-statement
.page-end-statement--heading h2,
.page-end-statement--heading
.page-end-statement blockquote p,
.page-end-statement blockquote
.page-end-statement--heading p,
.page-end-statement--heading blockquote
.page-end-statement p, blockquote
.page-end-statement
.page-end-statement--heading p,
.page-end-statement--heading
.page-end-statement .tag-filter-item__link,
.page-end-statement
.page-end-statement--heading .tag-filter-item__link,
.page-end-statement--heading .newsletter h2, .newsletter
.page-end-statement--heading h2,
.page-end-statement--heading .newsletter blockquote p, .newsletter blockquote
.page-end-statement--heading p,
.page-end-statement--heading blockquote .newsletter p, blockquote .newsletter
.page-end-statement--heading p,
.page-end-statement--heading .newsletter .tag-filter-item__link, .newsletter
.page-end-statement--heading .tag-filter-item__link,
.page-end-statement--heading .tile--large h2, .tile--large
.page-end-statement--heading h2,
.page-end-statement--heading .tile--large blockquote p, .tile--large blockquote
.page-end-statement--heading p,
.page-end-statement--heading blockquote .tile--large p, blockquote .tile--large
.page-end-statement--heading p,
.page-end-statement--heading .tile--large .tag-filter-item__link, .tile--large
.page-end-statement--heading .tag-filter-item__link {
  padding: 0 1rem; }
  @media screen and (min-width: 64em) {
    .statement--heading h1, .statement--heading .statement h2, .statement .statement--heading h2, .statement--heading .statement blockquote p, .statement blockquote .statement--heading p, .statement--heading blockquote .statement p, blockquote .statement .statement--heading p, .statement--heading .statement .tag-filter-item__link, .statement .statement--heading .tag-filter-item__link, .statement--heading
    .page-end-statement h2,
    .page-end-statement .statement--heading h2, .statement--heading
    .page-end-statement blockquote p,
    .page-end-statement blockquote .statement--heading p, .statement--heading blockquote
    .page-end-statement p, blockquote
    .page-end-statement .statement--heading p, .statement--heading
    .page-end-statement .tag-filter-item__link,
    .page-end-statement .statement--heading .tag-filter-item__link, .statement--heading .newsletter h2, .newsletter .statement--heading h2, .statement--heading .newsletter blockquote p, .newsletter blockquote .statement--heading p, .statement--heading blockquote .newsletter p, blockquote .newsletter .statement--heading p, .statement--heading .newsletter .tag-filter-item__link, .newsletter .statement--heading .tag-filter-item__link, .statement--heading .tile--large h2, .tile--large .statement--heading h2, .statement--heading .tile--large blockquote p, .tile--large blockquote .statement--heading p, .statement--heading blockquote .tile--large p, blockquote .tile--large .statement--heading p, .statement--heading .tile--large .tag-filter-item__link, .tile--large .statement--heading .tag-filter-item__link,
    .page-end-statement--heading h1,
    .page-end-statement--heading .statement h2, .statement
    .page-end-statement--heading h2,
    .page-end-statement--heading .statement blockquote p, .statement blockquote
    .page-end-statement--heading p,
    .page-end-statement--heading blockquote .statement p, blockquote .statement
    .page-end-statement--heading p,
    .page-end-statement--heading .statement .tag-filter-item__link, .statement
    .page-end-statement--heading .tag-filter-item__link,
    .page-end-statement--heading
    .page-end-statement h2,
    .page-end-statement
    .page-end-statement--heading h2,
    .page-end-statement--heading
    .page-end-statement blockquote p,
    .page-end-statement blockquote
    .page-end-statement--heading p,
    .page-end-statement--heading blockquote
    .page-end-statement p, blockquote
    .page-end-statement
    .page-end-statement--heading p,
    .page-end-statement--heading
    .page-end-statement .tag-filter-item__link,
    .page-end-statement
    .page-end-statement--heading .tag-filter-item__link,
    .page-end-statement--heading .newsletter h2, .newsletter
    .page-end-statement--heading h2,
    .page-end-statement--heading .newsletter blockquote p, .newsletter blockquote
    .page-end-statement--heading p,
    .page-end-statement--heading blockquote .newsletter p, blockquote .newsletter
    .page-end-statement--heading p,
    .page-end-statement--heading .newsletter .tag-filter-item__link, .newsletter
    .page-end-statement--heading .tag-filter-item__link,
    .page-end-statement--heading .tile--large h2, .tile--large
    .page-end-statement--heading h2,
    .page-end-statement--heading .tile--large blockquote p, .tile--large blockquote
    .page-end-statement--heading p,
    .page-end-statement--heading blockquote .tile--large p, blockquote .tile--large
    .page-end-statement--heading p,
    .page-end-statement--heading .tile--large .tag-filter-item__link, .tile--large
    .page-end-statement--heading .tag-filter-item__link {
      width: 75%;
      float: left;
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }
  @media screen and (min-width: 64em) and (min-width: 37.5em) {
    .statement--heading h1, .statement--heading .statement h2, .statement .statement--heading h2, .statement--heading .statement blockquote p, .statement blockquote .statement--heading p, .statement--heading blockquote .statement p, blockquote .statement .statement--heading p, .statement--heading .statement .tag-filter-item__link, .statement .statement--heading .tag-filter-item__link, .statement--heading
    .page-end-statement h2,
    .page-end-statement .statement--heading h2, .statement--heading
    .page-end-statement blockquote p,
    .page-end-statement blockquote .statement--heading p, .statement--heading blockquote
    .page-end-statement p, blockquote
    .page-end-statement .statement--heading p, .statement--heading
    .page-end-statement .tag-filter-item__link,
    .page-end-statement .statement--heading .tag-filter-item__link, .statement--heading .newsletter h2, .newsletter .statement--heading h2, .statement--heading .newsletter blockquote p, .newsletter blockquote .statement--heading p, .statement--heading blockquote .newsletter p, blockquote .newsletter .statement--heading p, .statement--heading .newsletter .tag-filter-item__link, .newsletter .statement--heading .tag-filter-item__link, .statement--heading .tile--large h2, .tile--large .statement--heading h2, .statement--heading .tile--large blockquote p, .tile--large blockquote .statement--heading p, .statement--heading blockquote .tile--large p, blockquote .tile--large .statement--heading p, .statement--heading .tile--large .tag-filter-item__link, .tile--large .statement--heading .tag-filter-item__link,
    .page-end-statement--heading h1,
    .page-end-statement--heading .statement h2, .statement
    .page-end-statement--heading h2,
    .page-end-statement--heading .statement blockquote p, .statement blockquote
    .page-end-statement--heading p,
    .page-end-statement--heading blockquote .statement p, blockquote .statement
    .page-end-statement--heading p,
    .page-end-statement--heading .statement .tag-filter-item__link, .statement
    .page-end-statement--heading .tag-filter-item__link,
    .page-end-statement--heading
    .page-end-statement h2,
    .page-end-statement
    .page-end-statement--heading h2,
    .page-end-statement--heading
    .page-end-statement blockquote p,
    .page-end-statement blockquote
    .page-end-statement--heading p,
    .page-end-statement--heading blockquote
    .page-end-statement p, blockquote
    .page-end-statement
    .page-end-statement--heading p,
    .page-end-statement--heading
    .page-end-statement .tag-filter-item__link,
    .page-end-statement
    .page-end-statement--heading .tag-filter-item__link,
    .page-end-statement--heading .newsletter h2, .newsletter
    .page-end-statement--heading h2,
    .page-end-statement--heading .newsletter blockquote p, .newsletter blockquote
    .page-end-statement--heading p,
    .page-end-statement--heading blockquote .newsletter p, blockquote .newsletter
    .page-end-statement--heading p,
    .page-end-statement--heading .newsletter .tag-filter-item__link, .newsletter
    .page-end-statement--heading .tag-filter-item__link,
    .page-end-statement--heading .tile--large h2, .tile--large
    .page-end-statement--heading h2,
    .page-end-statement--heading .tile--large blockquote p, .tile--large blockquote
    .page-end-statement--heading p,
    .page-end-statement--heading blockquote .tile--large p, blockquote .tile--large
    .page-end-statement--heading p,
    .page-end-statement--heading .tile--large .tag-filter-item__link, .tile--large
    .page-end-statement--heading .tag-filter-item__link {
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }
  @media screen and (min-width: 90em) {
    .statement--heading h1, .statement--heading .statement h2, .statement .statement--heading h2, .statement--heading .statement blockquote p, .statement blockquote .statement--heading p, .statement--heading blockquote .statement p, blockquote .statement .statement--heading p, .statement--heading .statement .tag-filter-item__link, .statement .statement--heading .tag-filter-item__link, .statement--heading
    .page-end-statement h2,
    .page-end-statement .statement--heading h2, .statement--heading
    .page-end-statement blockquote p,
    .page-end-statement blockquote .statement--heading p, .statement--heading blockquote
    .page-end-statement p, blockquote
    .page-end-statement .statement--heading p, .statement--heading
    .page-end-statement .tag-filter-item__link,
    .page-end-statement .statement--heading .tag-filter-item__link, .statement--heading .newsletter h2, .newsletter .statement--heading h2, .statement--heading .newsletter blockquote p, .newsletter blockquote .statement--heading p, .statement--heading blockquote .newsletter p, blockquote .newsletter .statement--heading p, .statement--heading .newsletter .tag-filter-item__link, .newsletter .statement--heading .tag-filter-item__link, .statement--heading .tile--large h2, .tile--large .statement--heading h2, .statement--heading .tile--large blockquote p, .tile--large blockquote .statement--heading p, .statement--heading blockquote .tile--large p, blockquote .tile--large .statement--heading p, .statement--heading .tile--large .tag-filter-item__link, .tile--large .statement--heading .tag-filter-item__link,
    .page-end-statement--heading h1,
    .page-end-statement--heading .statement h2, .statement
    .page-end-statement--heading h2,
    .page-end-statement--heading .statement blockquote p, .statement blockquote
    .page-end-statement--heading p,
    .page-end-statement--heading blockquote .statement p, blockquote .statement
    .page-end-statement--heading p,
    .page-end-statement--heading .statement .tag-filter-item__link, .statement
    .page-end-statement--heading .tag-filter-item__link,
    .page-end-statement--heading
    .page-end-statement h2,
    .page-end-statement
    .page-end-statement--heading h2,
    .page-end-statement--heading
    .page-end-statement blockquote p,
    .page-end-statement blockquote
    .page-end-statement--heading p,
    .page-end-statement--heading blockquote
    .page-end-statement p, blockquote
    .page-end-statement
    .page-end-statement--heading p,
    .page-end-statement--heading
    .page-end-statement .tag-filter-item__link,
    .page-end-statement
    .page-end-statement--heading .tag-filter-item__link,
    .page-end-statement--heading .newsletter h2, .newsletter
    .page-end-statement--heading h2,
    .page-end-statement--heading .newsletter blockquote p, .newsletter blockquote
    .page-end-statement--heading p,
    .page-end-statement--heading blockquote .newsletter p, blockquote .newsletter
    .page-end-statement--heading p,
    .page-end-statement--heading .newsletter .tag-filter-item__link, .newsletter
    .page-end-statement--heading .tag-filter-item__link,
    .page-end-statement--heading .tile--large h2, .tile--large
    .page-end-statement--heading h2,
    .page-end-statement--heading .tile--large blockquote p, .tile--large blockquote
    .page-end-statement--heading p,
    .page-end-statement--heading blockquote .tile--large p, blockquote .tile--large
    .page-end-statement--heading p,
    .page-end-statement--heading .tile--large .tag-filter-item__link, .tile--large
    .page-end-statement--heading .tag-filter-item__link {
      width: 50%;
      float: left;
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }
  @media screen and (min-width: 90em) and (min-width: 37.5em) {
    .statement--heading h1, .statement--heading .statement h2, .statement .statement--heading h2, .statement--heading .statement blockquote p, .statement blockquote .statement--heading p, .statement--heading blockquote .statement p, blockquote .statement .statement--heading p, .statement--heading .statement .tag-filter-item__link, .statement .statement--heading .tag-filter-item__link, .statement--heading
    .page-end-statement h2,
    .page-end-statement .statement--heading h2, .statement--heading
    .page-end-statement blockquote p,
    .page-end-statement blockquote .statement--heading p, .statement--heading blockquote
    .page-end-statement p, blockquote
    .page-end-statement .statement--heading p, .statement--heading
    .page-end-statement .tag-filter-item__link,
    .page-end-statement .statement--heading .tag-filter-item__link, .statement--heading .newsletter h2, .newsletter .statement--heading h2, .statement--heading .newsletter blockquote p, .newsletter blockquote .statement--heading p, .statement--heading blockquote .newsletter p, blockquote .newsletter .statement--heading p, .statement--heading .newsletter .tag-filter-item__link, .newsletter .statement--heading .tag-filter-item__link, .statement--heading .tile--large h2, .tile--large .statement--heading h2, .statement--heading .tile--large blockquote p, .tile--large blockquote .statement--heading p, .statement--heading blockquote .tile--large p, blockquote .tile--large .statement--heading p, .statement--heading .tile--large .tag-filter-item__link, .tile--large .statement--heading .tag-filter-item__link,
    .page-end-statement--heading h1,
    .page-end-statement--heading .statement h2, .statement
    .page-end-statement--heading h2,
    .page-end-statement--heading .statement blockquote p, .statement blockquote
    .page-end-statement--heading p,
    .page-end-statement--heading blockquote .statement p, blockquote .statement
    .page-end-statement--heading p,
    .page-end-statement--heading .statement .tag-filter-item__link, .statement
    .page-end-statement--heading .tag-filter-item__link,
    .page-end-statement--heading
    .page-end-statement h2,
    .page-end-statement
    .page-end-statement--heading h2,
    .page-end-statement--heading
    .page-end-statement blockquote p,
    .page-end-statement blockquote
    .page-end-statement--heading p,
    .page-end-statement--heading blockquote
    .page-end-statement p, blockquote
    .page-end-statement
    .page-end-statement--heading p,
    .page-end-statement--heading
    .page-end-statement .tag-filter-item__link,
    .page-end-statement
    .page-end-statement--heading .tag-filter-item__link,
    .page-end-statement--heading .newsletter h2, .newsletter
    .page-end-statement--heading h2,
    .page-end-statement--heading .newsletter blockquote p, .newsletter blockquote
    .page-end-statement--heading p,
    .page-end-statement--heading blockquote .newsletter p, blockquote .newsletter
    .page-end-statement--heading p,
    .page-end-statement--heading .newsletter .tag-filter-item__link, .newsletter
    .page-end-statement--heading .tag-filter-item__link,
    .page-end-statement--heading .tile--large h2, .tile--large
    .page-end-statement--heading h2,
    .page-end-statement--heading .tile--large blockquote p, .tile--large blockquote
    .page-end-statement--heading p,
    .page-end-statement--heading blockquote .tile--large p, blockquote .tile--large
    .page-end-statement--heading p,
    .page-end-statement--heading .tile--large .tag-filter-item__link, .tile--large
    .page-end-statement--heading .tag-filter-item__link {
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }

.statement--center,
.page-end-statement--center {
  text-align: center; }

.newsletter {
  padding-top: 2rem;
  background: #0a0a0a;
  color: #fefefe; }
  .newsletter strong {
    color: #FFFF00; }

.takeover {
  display: block;
  position: relative; }
  .takeover__media {
    padding-top: 50.25%;
    /* 16:9 */
    background-size: cover;
    background-position: center; }
  .takeover__content {
    background: #FFFF00;
    padding: 1rem; }
    @media screen and (min-width: 64em) {
      .takeover__content {
        position: absolute;
        top: 0;
        left: 0;
        width: 40%;
        padding: 2rem; }
        .takeover__content h1, .takeover__content .statement h2, .statement .takeover__content h2, .takeover__content .statement blockquote p, .statement blockquote .takeover__content p, .takeover__content blockquote .statement p, blockquote .statement .takeover__content p, .takeover__content .statement .tag-filter-item__link, .statement .takeover__content .tag-filter-item__link, .takeover__content
        .page-end-statement h2,
        .page-end-statement .takeover__content h2, .takeover__content
        .page-end-statement blockquote p,
        .page-end-statement blockquote .takeover__content p, .takeover__content blockquote
        .page-end-statement p, blockquote
        .page-end-statement .takeover__content p, .takeover__content
        .page-end-statement .tag-filter-item__link,
        .page-end-statement .takeover__content .tag-filter-item__link, .takeover__content .newsletter h2, .newsletter .takeover__content h2, .takeover__content .newsletter blockquote p, .newsletter blockquote .takeover__content p, .takeover__content blockquote .newsletter p, blockquote .newsletter .takeover__content p, .takeover__content .newsletter .tag-filter-item__link, .newsletter .takeover__content .tag-filter-item__link, .takeover__content .tile--large h2, .tile--large .takeover__content h2, .takeover__content .tile--large blockquote p, .tile--large blockquote .takeover__content p, .takeover__content blockquote .tile--large p, blockquote .tile--large .takeover__content p, .takeover__content .tile--large .tag-filter-item__link, .tile--large .takeover__content .tag-filter-item__link {
          font-size: 4vw; } }

.wysiwyg {
  max-width: 64rem;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  float: left;
  padding-right: 0.375rem;
  padding-left: 0.375rem;
  padding-left: 0;
  padding-right: 0;
  position: relative;
  font-size: 125%; }
  .wysiwyg::before, .wysiwyg::after {
    display: table;
    content: ' '; }
  .wysiwyg::after {
    clear: both; }
  .wysiwyg, .wysiwyg:last-child {
    float: none; }
  @media print, screen and (min-width: 48em) {
    .wysiwyg h2, .wysiwyg blockquote p, blockquote .wysiwyg p, .wysiwyg .tag-filter-item__link,
    .wysiwyg h3,
    .wysiwyg .tile--medium h2, .tile--medium
    .wysiwyg h2,
    .wysiwyg .tile--medium blockquote p, .tile--medium blockquote
    .wysiwyg p,
    .wysiwyg blockquote .tile--medium p, blockquote .tile--medium
    .wysiwyg p,
    .wysiwyg .tile--medium .tag-filter-item__link, .tile--medium
    .wysiwyg .tag-filter-item__link,
    .wysiwyg h4,
    .wysiwyg p,
    .wysiwyg ul {
      padding-right: 20%; }
    .wysiwyg:last-of-type {
      padding-bottom: 2rem; } }
  @media screen and (min-width: 90em) {
    .wysiwyg {
      max-width: 1440px;
      padding-right: 16%; } }
  .wysiwyg:first-of-type {
    padding-top: 0; }
  .wysiwyg__content {
    padding: 0 1rem; }
    @media print, screen and (min-width: 48em) {
      .wysiwyg__content {
        width: 83.33333%;
        float: left;
        padding-right: 0.625rem;
        padding-left: 0.625rem;
        margin-left: 16.66667%; } }
  @media print, screen and (min-width: 48em) and (min-width: 37.5em) {
    .wysiwyg__content {
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }
    @media screen and (min-width: 90em) {
      .wysiwyg__content {
        width: 75%;
        float: left;
        padding-right: 0.625rem;
        padding-left: 0.625rem;
        margin-left: 33.33333%; } }
  @media screen and (min-width: 90em) and (min-width: 37.5em) {
    .wysiwyg__content {
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }
  .wysiwyg img,
  .wysiwyg .responsive-embed {
    margin-bottom: 2rem; }

.press {
  background: #f2f0f2;
  padding-bottom: 2rem;
  margin-top: 2rem; }
  @media print, screen and (min-width: 37.5em) {
    .press:before {
      content: '';
      background: #f2f0f2;
      position: absolute;
      top: 0;
      left: -43px;
      width: 45px;
      height: 100%; }
    .press:after {
      content: '';
      background: #f2f0f2;
      position: absolute;
      top: 0;
      right: -373px;
      width: 375px;
      height: 100%; } }

.press-preview {
  display: table;
  table-layout: fixed;
  margin-bottom: 1rem;
  color: #9D85FF; }
  .press-preview__image {
    display: table-cell;
    vertical-align: top;
    width: 25%;
    background: #fefefe;
    padding: 1rem;
    text-align: center; }
    .press-preview__image:first-child {
      padding-right: 1rem; }
    .press-preview__image:last-child:not(:nth-child(2)) {
      padding-left: 1rem; }
    .press-preview__image > :last-child {
      margin-bottom: 0; }
  .press-preview__content {
    display: table-cell;
    vertical-align: top;
    width: 75%;
    padding-left: 1rem; }
    .press-preview__content:first-child {
      padding-right: 1rem; }
    .press-preview__content:last-child:not(:nth-child(2)) {
      padding-left: 1rem; }
    .press-preview__content > :last-child {
      margin-bottom: 0; }
  .press-preview:last-of-type {
    margin-bottom: 0; }

.quote {
  padding: 0 1rem; }
  @media print, screen and (min-width: 48em) {
    .quote {
      padding: 0; } }
  .quote blockquote {
    max-width: 64rem;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    float: left;
    padding-right: 0.625rem;
    padding-left: 0.625rem;
    border-top: 2px solid #f2f0f2;
    border-bottom: 2px solid #f2f0f2;
    padding: 2rem 0; }
    .quote blockquote::before, .quote blockquote::after {
      display: table;
      content: ' '; }
    .quote blockquote::after {
      clear: both; }
    @media print, screen and (min-width: 37.5em) {
      .quote blockquote {
        padding-right: 0.625rem;
        padding-left: 0.625rem; } }
    .quote blockquote, .quote blockquote:last-child {
      float: none; }
    @media screen and (min-width: 90em) {
      .quote blockquote {
        padding-right: 1rem;
        padding-left: 1rem; } }
    .quote blockquote:before {
      display: none; }
  .quote cite {
    margin-top: 1rem;
    font-style: normal;
    line-height: 1.4; }
    @media print, screen and (min-width: 48em) {
      .quote cite {
        margin-top: 0.5rem; } }
  @media print, screen and (min-width: 48em) {
    .quote--content {
      width: 66.66667%;
      float: left;
      padding-right: 0;
      padding-left: 0;
      position: relative;
      left: 16.66667%; } }
  @media screen and (min-width: 90em) {
    .quote--content {
      width: 66.66667%;
      float: left;
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }
  @media screen and (min-width: 90em) and (min-width: 37.5em) {
    .quote--content {
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }
  @media print, screen and (min-width: 48em) {
    .quote--cite {
      width: 66.66667%;
      float: left;
      padding-right: 0;
      padding-left: 0;
      position: relative;
      left: 16.66667%; } }
  @media screen and (min-width: 64em) {
    .quote--cite {
      width: 16.66667%;
      float: left;
      padding-right: 0;
      padding-left: 0;
      position: relative;
      left: -66.66667%; } }
  @media screen and (min-width: 90em) {
    .quote--cite {
      width: 16.66667%;
      float: left;
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }
  @media screen and (min-width: 90em) and (min-width: 37.5em) {
    .quote--cite {
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }

.more {
  background: #0a0a0a;
  color: #fefefe;
  margin-top: 2rem; }
  @media print, screen and (min-width: 37.5em) {
    .more:before {
      content: '';
      background: #0a0a0a;
      position: absolute;
      top: 0;
      left: -43px;
      width: 45px;
      height: 100%; }
    .more:after {
      content: '';
      background: #0a0a0a;
      position: absolute;
      top: 0;
      right: -373px;
      width: 375px;
      height: 100%; } }
  .more .grid-container {
    margin-left: -10px;
    margin-right: -10px; }
    @media print, screen and (min-width: 37.5em) {
      .more .grid-container {
        margin-left: -10px;
        margin-right: -10px; } }

.more-preview {
  width: 100%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  color: #fefefe; }
  @media print, screen and (min-width: 37.5em) {
    .more-preview {
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }
  @media print, screen and (min-width: 37.5em) {
    .more-preview {
      width: 33.33333%;
      float: left;
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }
  @media print, screen and (min-width: 37.5em) and (min-width: 37.5em) {
    .more-preview {
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }

.location__map {
  width: 100%;
  float: left;
  padding-right: 0;
  padding-left: 0;
  margin: 0 10px;
  width: calc(100% - 20px);
  height: 400px; }
  @media print, screen and (min-width: 37.5em) {
    .location__map {
      margin: 0 10px;
      width: calc(100% - 20px); } }

.location__address {
  width: 100%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  padding-top: 1rem; }
  @media print, screen and (min-width: 37.5em) {
    .location__address {
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }
  @media print, screen and (min-width: 48em) {
    .location__address {
      width: 33.33333%;
      float: left;
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }
  @media print, screen and (min-width: 48em) and (min-width: 37.5em) {
    .location__address {
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }

.location__contact {
  width: 100%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  padding-top: 1rem;
  word-wrap: break-word; }
  @media print, screen and (min-width: 37.5em) {
    .location__contact {
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }
  @media print, screen and (min-width: 48em) {
    .location__contact {
      width: 66.66667%;
      float: left;
      padding-right: 0;
      padding-left: 0; } }
  @media print, screen and (min-width: 48em) {
    .location__contact div {
      width: 50%;
      float: left;
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }
  @media print, screen and (min-width: 48em) and (min-width: 37.5em) {
    .location__contact div {
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }
  .location__contact h4 {
    margin-bottom: 0; }

.location .button {
  padding: 1.75rem 3rem;
  background: #fefefe;
  border: 1px solid #0a0a0a;
  color: #0a0a0a; }

.tag-filter {
  max-width: 64rem;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  margin-bottom: 2rem; }
  .tag-filter::before, .tag-filter::after {
    display: table;
    content: ' '; }
  .tag-filter::after {
    clear: both; }
  @media print, screen and (min-width: 37.5em) {
    .tag-filter {
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }
  .tag-filter, .tag-filter:last-child {
    float: none; }
  @media screen and (min-width: 90em) {
    .tag-filter {
      max-width: 1440px; } }
  .people .tag-filter {
    max-width: 64rem; }

.tag-filter-item {
  display: inline-block; }
  .tag-filter-item__link {
    font-family: "AkkuratReg", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
    margin-right: 1rem;
    font-weight: normal;
    letter-spacing: 0.1px;
    text-decoration: underline;
    text-decoration-skip: ink; }
  .tag-filter-item--selected {
    color: #FFFF00; }
    .people .tag-filter-item--selected,
    .jobs-page .tag-filter-item--selected,
    .thinking-page .tag-filter-item--selected {
      color: #3700ff; }

.page-header__image {
  margin-bottom: 2rem; }
  .page-header__image img {
    width: 100%; }

@media print, screen and (min-width: 48em) {
  .page-header {
    max-width: 64rem;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    float: left;
    padding-right: 0.375rem;
    padding-left: 0.375rem;
    padding-left: 0;
    padding-right: 0; }
    .page-header::before, .page-header::after {
      display: table;
      content: ' '; }
    .page-header::after {
      clear: both; }
    .page-header, .page-header:last-child {
      float: none; } }

@media screen and (min-width: 64em) {
  .page-header {
    padding-top: 2rem; } }

.content-not-found-page .page-header a {
  color: #9D85FF; }

.case-study-header {
  position: relative;
  margin-bottom: 2rem; }
  .case-study-header img {
    width: 100%; }
  .case-study-header .grid-container {
    width: 100%; }
    @media screen and (min-width: 64em) {
      .case-study-header .grid-container {
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%); } }
  .case-study-header--content {
    margin: 0;
    padding: 1rem;
    width: 100%;
    background: #0a0a0a;
    color: #fefefe;
    overflow: hidden; }
    @media print, screen and (min-width: 48em) {
      .case-study-header--content {
        padding: 2rem; } }
    @media screen and (min-width: 64em) {
      .case-study-header--content {
        width: 83.33333%;
        float: left;
        padding-right: 0.625rem;
        padding-left: 0.625rem;
        margin-left: 16.66667%;
        padding: 2rem !important;
        background: rgba(0, 0, 0, 0.7);
        transform: translateX(-2rem); } }
  @media screen and (min-width: 64em) and (min-width: 37.5em) {
    .case-study-header--content {
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }
    @media screen and (min-width: 90em) {
      .case-study-header--content {
        width: 75%;
        float: left;
        padding-right: 0.625rem;
        padding-left: 0.625rem;
        margin-left: 25%;
        transform: translateX(0); } }
  @media screen and (min-width: 90em) and (min-width: 37.5em) {
    .case-study-header--content {
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }
    @media print, screen and (min-width: 48em) {
      .case-study-header--content--meta {
        width: 75%;
        float: left;
        padding-right: 0.625rem;
        padding-left: 0.625rem; } }
  @media print, screen and (min-width: 48em) and (min-width: 37.5em) {
    .case-study-header--content--meta {
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }
    .case-study-header--content a[rel="tag"] {
      color: #FFFF00; }
      .case-study-header--content a[rel="tag"]:hover {
        border-bottom: 1px solid currentColor; }
  .case-study-header .social-links {
    color: #FFFF00; }
    @media print, screen and (min-width: 48em) {
      .case-study-header .social-links {
        width: 25%;
        float: left;
        padding-right: 0.625rem;
        padding-left: 0.625rem; } }
  @media print, screen and (min-width: 48em) and (min-width: 37.5em) {
    .case-study-header .social-links {
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }
    .case-study-header .social-links ul {
      margin-bottom: 0; }
    .case-study-header .social-links__link {
      background: none;
      border: 1px solid #FFFF00; }
      .case-study-header .social-links__link svg path {
        fill: #FFFF00; }
      .case-study-header .social-links__link:hover, .case-study-header .social-links__link:focus {
        background: #FFFF00; }
        .case-study-header .social-links__link:hover svg path, .case-study-header .social-links__link:focus svg path {
          fill: #0a0a0a; }
    .case-study-header .social-links__item-facebook, .case-study-header .social-links__item-email {
      display: none; }
  .case-study-header .section-nav__link {
    color: #FFFF00;
    margin-left: 0.5rem; }
    .case-study-header .section-nav__link:hover {
      color: #FFFF00;
      border-bottom: 1px solid currentColor; }

.lever-header {
  max-width: 64rem;
  margin-right: auto;
  margin-left: auto;
  padding: 2rem 0; }
  .lever-header::before, .lever-header::after {
    display: table;
    content: ' '; }
  .lever-header::after {
    clear: both; }
  .lever-header__back {
    width: 25%;
    float: left;
    padding-right: 0.625rem;
    padding-left: 0.625rem; }
    @media print, screen and (min-width: 37.5em) {
      .lever-header__back {
        padding-right: 0.625rem;
        padding-left: 0.625rem; } }
  .lever-header__content {
    width: 75%;
    float: left;
    padding-right: 0.625rem;
    padding-left: 0.625rem; }
    @media print, screen and (min-width: 37.5em) {
      .lever-header__content {
        padding-right: 0.625rem;
        padding-left: 0.625rem; } }

.lever-highlight {
  width: 100%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  color: #fefefe; }
  @media print, screen and (min-width: 37.5em) {
    .lever-highlight {
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }
  @media print, screen and (min-width: 37.5em) {
    .lever-highlight {
      width: 50%;
      float: left;
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }
  @media print, screen and (min-width: 37.5em) and (min-width: 37.5em) {
    .lever-highlight {
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }
  @media print, screen and (min-width: 48em) {
    .lever-highlight {
      width: 25%;
      float: left;
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }
  @media print, screen and (min-width: 48em) and (min-width: 37.5em) {
    .lever-highlight {
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }
  .lever-highlight__content {
    margin-top: 1rem; }
    .lever-highlight__content p:after {
      content: '➞';
      margin-left: 0.5rem; }

.lever-preview {
  width: 100%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  margin-bottom: 2rem; }
  @media print, screen and (min-width: 37.5em) {
    .lever-preview {
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }
  @media print, screen and (min-width: 48em) {
    .lever-preview {
      width: 50%;
      float: left;
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }
  @media print, screen and (min-width: 48em) and (min-width: 37.5em) {
    .lever-preview {
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }
  .lever-preview__inner {
    background: #fefefe;
    padding: 2rem; }

.person {
  width: 50%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  position: relative;
  margin-bottom: 20px; }
  @media print, screen and (min-width: 37.5em) {
    .person {
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }
  .person:nth-child(2n + 3) {
    clear: both; }
  .person__content {
    border: 1px solid #f2f0f2;
    position: relative;
    display: block; }
    .person__content img {
      width: 100%; }
  .person__details {
    position: absolute;
    right: 0;
    top: 60%;
    background: #FFFF00;
    padding: 1rem; }
    .person__details h3, .person__details .tile--medium h2, .tile--medium .person__details h2, .person__details .tile--medium blockquote p, .tile--medium blockquote .person__details p, .person__details blockquote .tile--medium p, blockquote .tile--medium .person__details p, .person__details .tile--medium .tag-filter-item__link, .tile--medium .person__details .tag-filter-item__link {
      margin-bottom: 0; }
  @media print, screen and (min-width: 37.5em) {
    .person {
      width: 33.33333%;
      float: left;
      padding-right: 0.625rem;
      padding-left: 0.625rem;
      margin-bottom: 20px; } }
  @media print, screen and (min-width: 37.5em) and (min-width: 37.5em) {
    .person {
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }
  @media print, screen and (min-width: 37.5em) {
      .person:nth-child(2n + 3) {
        clear: none; }
      .person:nth-child(3n + 4) {
        clear: both; } }
  @media print, screen and (min-width: 48em) {
    .person {
      width: 25%;
      float: left;
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }
  @media print, screen and (min-width: 48em) and (min-width: 37.5em) {
    .person {
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }
  @media print, screen and (min-width: 48em) {
      .person:nth-child(3n + 4) {
        clear: none; }
      .person:nth-child(4n + 5) {
        clear: both; } }

.card-item {
  width: 100%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  margin-bottom: 20px; }
  @media print, screen and (min-width: 37.5em) {
    .card-item {
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }
  .card-item__content {
    max-width: 64rem;
    margin-right: auto;
    margin-left: auto;
    display: block;
    position: relative;
    background: transparent;
    padding-bottom: 0;
    color: #0a0a0a; }
    .card-item__content::before, .card-item__content::after {
      display: table;
      content: ' '; }
    .card-item__content::after {
      clear: both; }
    @media screen and (min-width: 90em) {
      .card-item__content {
        max-width: 1440px; } }
  .card-item__media img {
    width: 100%;
    max-width: none;
    height: auto; }
  .card-item__details {
    padding: 20px 20px 0;
    font-size: 0.875rem;
    line-height: 1.4; }
    .card-item__details h3, .card-item__details .tile--medium h2, .tile--medium .card-item__details h2, .card-item__details .tile--medium blockquote p, .tile--medium blockquote .card-item__details p, .card-item__details blockquote .tile--medium p, blockquote .tile--medium .card-item__details p, .card-item__details .tile--medium .tag-filter-item__link, .tile--medium .card-item__details .tag-filter-item__link {
      font-weight: normal; }
  .card-item--video .arrow {
    bottom: 1rem; }
  .card-item--long-read .card-item__media {
    padding-right: 0; }
  .card-item--small h3, .card-item--small .tile--medium h2, .tile--medium .card-item--small h2, .card-item--small .tile--medium blockquote p, .tile--medium blockquote .card-item--small p, .card-item--small blockquote .tile--medium p, blockquote .tile--medium .card-item--small p, .card-item--small .tile--medium .tag-filter-item__link, .tile--medium .card-item--small .tag-filter-item__link {
    font-size: 1.2rem; }
  @media print, screen and (min-width: 37.5em) {
    .card-item--small .card-item__content {
      padding-bottom: 0; }
    .card-item--small .card-item__media {
      width: 50%;
      float: left;
      padding-right: 0;
      padding-left: 0; }
    .card-item--small .card-item__media__video {
      padding-bottom: 29.25%; }
    .card-item--small .card-item__details {
      width: 50%;
      float: left;
      padding-right: 1.25rem;
      padding-left: 1.25rem;
      padding-top: 0; }
    .card-item--small .card-item__description {
      display: none; }
    .card-item--video {
      width: 50%;
      float: left;
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }
  @media print, screen and (min-width: 37.5em) and (min-width: 37.5em) {
    .card-item--video {
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }
  @media screen and (min-width: 64em) {
    .card-item__content {
      padding-bottom: 0; }
    .card-item__media {
      width: 66.66667%;
      float: left;
      padding-right: 0;
      padding-left: 0;
      padding-right: 0.3125rem; }
    .card-item__details {
      width: 33.33333%;
      float: left;
      padding-right: 1.25rem;
      padding-left: 1.25rem;
      padding-left: 1.25rem;
      padding-top: 15px; }
    .card-item--small {
      width: 25%;
      float: left;
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }
  @media screen and (min-width: 64em) and (min-width: 37.5em) {
    .card-item--small {
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }
  @media screen and (min-width: 64em) {
      .card-item--small .card-item__media__video {
        padding-bottom: 56.25%; }
    .card-item--small .card-item__content, .card-item--video .card-item__content {
      padding-bottom: 4rem; }
    .card-item--small .card-item__media, .card-item--video .card-item__media {
      width: 100%;
      float: left;
      padding-right: 0;
      padding-left: 0; }
    .card-item--small .card-item__details, .card-item--video .card-item__details {
      width: 100%;
      float: left;
      padding-right: 0;
      padding-left: 0;
      padding-top: 15px; }
    .card-item--small .card-item__description, .card-item--video .card-item__description {
      display: block; }
    .card-item--video .card-item__details {
      padding-right: 1rem;
      padding-left: 1rem; }
    .card-item--video .label--blue {
      display: none; }
    .card-item--video .meta {
      left: 1rem; }
    .card-item--long-read:nth-child(even) .card-item__media {
      float: right; }
    .card-item--long-read:nth-child(even) .arrow {
      left: 28%; } }

.work-grid-sizer {
  width: 25%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem; }
  @media print, screen and (min-width: 37.5em) {
    .work-grid-sizer {
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }

.work-preview {
  width: 100%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  margin-bottom: 2rem; }
  @media print, screen and (min-width: 37.5em) {
    .work-preview {
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }
  .work-preview h3, .work-preview .tile--medium h2, .tile--medium .work-preview h2, .work-preview .tile--medium blockquote p, .tile--medium blockquote .work-preview p, .work-preview blockquote .tile--medium p, blockquote .tile--medium .work-preview p, .work-preview .tile--medium .tag-filter-item__link, .tile--medium .work-preview .tag-filter-item__link {
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
    font-weight: normal; }
  .work-preview p {
    line-height: 1.2; }
  .work-preview__content {
    display: block;
    color: #fefefe; }
    .work-preview__content:hover, .work-preview__content:focus {
      color: #fefefe; }
  .work-preview__title {
    margin-bottom: 0.1rem;
    margin-top: 0.5rem; }
  .work-preview__arrow-icon {
    color: #FFFF00; }
  .work-preview--large img {
    width: 100%; }
  @media print, screen and (min-width: 37.5em) {
    .work-preview {
      width: 50%;
      float: left;
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }
  @media print, screen and (min-width: 37.5em) and (min-width: 37.5em) {
    .work-preview {
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }
  @media print, screen and (min-width: 48em) {
    .work-preview--small {
      width: 25%;
      float: left;
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }
  @media print, screen and (min-width: 48em) and (min-width: 37.5em) {
    .work-preview--small {
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }
  @media print, screen and (min-width: 48em) {
      .work-preview--small .background-video {
        padding-top: 100%; }
    .work-preview--large {
      width: 75%;
      float: left;
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }
  @media print, screen and (min-width: 48em) and (min-width: 37.5em) {
    .work-preview--large {
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }
  @media print, screen and (min-width: 48em) {
    .work-preview--medium {
      width: 50%;
      float: left;
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }
  @media print, screen and (min-width: 48em) and (min-width: 37.5em) {
    .work-preview--medium {
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }

.job-preview {
  width: 100%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  margin-bottom: 20px; }
  @media print, screen and (min-width: 37.5em) {
    .job-preview {
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }
  .job-preview__content {
    position: relative;
    display: block;
    padding: 20px 20px 4rem;
    background: #fefefe;
    color: #0a0a0a; }
    .job-preview__content:hover, .job-preview__content:focus {
      background: #9D85FF;
      color: #fefefe; }
  .job-preview .arrow {
    bottom: 1rem; }
  .job-preview h3, .job-preview .tile--medium h2, .tile--medium .job-preview h2, .job-preview .tile--medium blockquote p, .tile--medium blockquote .job-preview p, .job-preview blockquote .tile--medium p, blockquote .tile--medium .job-preview p, .job-preview .tile--medium .tag-filter-item__link, .tile--medium .job-preview .tag-filter-item__link {
    font-size: 1.25rem;
    font-weight: normal; }
  .job-preview p {
    font-size: 0.875rem;
    line-height: 1.4; }
  @media print, screen and (min-width: 37.5em) {
    .job-preview {
      width: 50%;
      float: left;
      padding-right: 0.625rem;
      padding-left: 0.625rem;
      padding: 0 0.5rem !important;
      margin-bottom: 1rem; } }
  @media print, screen and (min-width: 37.5em) and (min-width: 37.5em) {
    .job-preview {
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }
  @media print, screen and (min-width: 48em) {
    .job-preview {
      width: 33.33333%;
      float: left;
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }
  @media print, screen and (min-width: 48em) and (min-width: 37.5em) {
    .job-preview {
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }
  @media screen and (min-width: 64em) {
    .job-preview {
      width: 25%;
      float: left;
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }
  @media screen and (min-width: 64em) and (min-width: 37.5em) {
    .job-preview {
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }

.section-title {
  max-width: 64rem;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  float: left;
  padding-right: 0.375rem;
  padding-left: 0.375rem;
  padding-top: 2rem; }
  .section-title::before, .section-title::after {
    display: table;
    content: ' '; }
  .section-title::after {
    clear: both; }
  .section-title, .section-title:last-child {
    float: none; }
  @media screen and (min-width: 90em) {
    .section-title {
      max-width: 1440px;
      padding-right: 16%; } }
  .section-title h2, .section-title blockquote p, blockquote .section-title p, .section-title .tag-filter-item__link {
    padding: 0 1rem;
    font-family: "AkkuratReg", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
    font-weight: bold;
    font-size: 2rem; }
    @media print, screen and (min-width: 48em) {
      .section-title h2, .section-title blockquote p, blockquote .section-title p, .section-title .tag-filter-item__link {
        width: 83.33333%;
        float: left;
        padding-right: 0.625rem;
        padding-left: 0.625rem;
        margin-left: 16.66667%; } }
  @media print, screen and (min-width: 48em) and (min-width: 37.5em) {
    .section-title h2, .section-title blockquote p, blockquote .section-title p, .section-title .tag-filter-item__link {
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }
    @media screen and (min-width: 90em) {
      .section-title h2, .section-title blockquote p, blockquote .section-title p, .section-title .tag-filter-item__link {
        width: 75%;
        float: left;
        padding-right: 0.625rem;
        padding-left: 0.625rem;
        margin-left: 33.33333%; } }
  @media screen and (min-width: 90em) and (min-width: 37.5em) {
    .section-title h2, .section-title blockquote p, blockquote .section-title p, .section-title .tag-filter-item__link {
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }
  .section-title__media {
    max-width: 64rem;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    float: left;
    padding-right: 0.375rem;
    padding-left: 0.375rem;
    display: block;
    margin-bottom: 2rem; }
    .section-title__media::before, .section-title__media::after {
      display: table;
      content: ' '; }
    .section-title__media::after {
      clear: both; }
    .section-title__media, .section-title__media:last-child {
      float: none; }

.social-links__label {
  display: inline-block; }

.social-links__item {
  display: inline;
  margin-right: 0.5rem; }

.social-links__link {
  display: inline-block;
  background: #0a0a0a;
  padding: 0.75rem; }
  .social-links__link svg {
    display: block; }
  .social-links__link path {
    fill: #fefefe; }

@media screen and (min-width: 64em) {
  .social-links--vertical {
    position: absolute;
    top: 2rem;
    right: -100px; }
    .social-links--vertical .social-links__item {
      display: block;
      margin-right: 0; } }

.tile {
  -ms-flex-preferred-size: 33.33%;
  flex-basis: 33.33%;
  position: relative;
  margin-bottom: -1px; }
  @media screen and (min-width: 64em) {
    .tile {
      -ms-flex-preferred-size: 20%;
      flex-basis: 20%; } }
  .tile h1, .tile .statement h2, .statement .tile h2, .tile .statement blockquote p, .statement blockquote .tile p, .tile blockquote .statement p, blockquote .statement .tile p, .tile .statement .tag-filter-item__link, .statement .tile .tag-filter-item__link, .tile
  .page-end-statement h2,
  .page-end-statement .tile h2, .tile
  .page-end-statement blockquote p,
  .page-end-statement blockquote .tile p, .tile blockquote
  .page-end-statement p, blockquote
  .page-end-statement .tile p, .tile
  .page-end-statement .tag-filter-item__link,
  .page-end-statement .tile .tag-filter-item__link, .tile .newsletter h2, .newsletter .tile h2, .tile .newsletter blockquote p, .newsletter blockquote .tile p, .tile blockquote .newsletter p, blockquote .newsletter .tile p, .tile .newsletter .tag-filter-item__link, .newsletter .tile .tag-filter-item__link, .tile .tile--large h2, .tile--large .tile h2, .tile .tile--large blockquote p, .tile--large blockquote .tile p, .tile blockquote .tile--large p, blockquote .tile--large .tile p, .tile .tile--large .tag-filter-item__link, .tile--large .tile .tag-filter-item__link,
  .tile h2,
  .tile blockquote p, blockquote
  .tile p,
  .tile .tag-filter-item__link {
    margin: 0; }
    @media print, screen and (min-width: 48em) {
      .tile h1, .tile .statement h2, .statement .tile h2, .tile .statement blockquote p, .statement blockquote .tile p, .tile blockquote .statement p, blockquote .statement .tile p, .tile .statement .tag-filter-item__link, .statement .tile .tag-filter-item__link, .tile
      .page-end-statement h2,
      .page-end-statement .tile h2, .tile
      .page-end-statement blockquote p,
      .page-end-statement blockquote .tile p, .tile blockquote
      .page-end-statement p, blockquote
      .page-end-statement .tile p, .tile
      .page-end-statement .tag-filter-item__link,
      .page-end-statement .tile .tag-filter-item__link, .tile .newsletter h2, .newsletter .tile h2, .tile .newsletter blockquote p, .newsletter blockquote .tile p, .tile blockquote .newsletter p, blockquote .newsletter .tile p, .tile .newsletter .tag-filter-item__link, .newsletter .tile .tag-filter-item__link, .tile .tile--large h2, .tile--large .tile h2, .tile .tile--large blockquote p, .tile--large blockquote .tile p, .tile blockquote .tile--large p, blockquote .tile--large .tile p, .tile .tile--large .tag-filter-item__link, .tile--large .tile .tag-filter-item__link,
      .tile h2,
      .tile blockquote p, blockquote
      .tile p,
      .tile .tag-filter-item__link {
        font-size: 2.6rem; } }
  .tile strong {
    background: #fefefe;
    font-weight: normal; }
  .tile .label, .tile .case-study-header--content a[rel="tag"], .case-study-header--content .tile a[rel="tag"],
  .tile p {
    margin-bottom: 0; }
  .tile img {
    width: 100%;
    max-width: none;
    height: auto; }
  .tile--large, .tile--medium {
    background: #FFFF00;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 1rem; }
  .tile--large {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -ms-flex-pack: center;
    justify-content: center; }
    @media print, screen and (min-width: 37.5em) {
      .tile--large {
        padding: 1rem 2rem; } }
    @media screen and (min-width: 64em) {
      .tile--large {
        -ms-flex-preferred-size: 60%;
        flex-basis: 60%;
        max-width: 60%; }
        .tile--large h1, .tile--large h2, .tile--large blockquote p, blockquote .tile--large p, .tile--large .tag-filter-item__link,
        .tile--large h2,
        .tile--large blockquote p, blockquote
        .tile--large p,
        .tile--large .tag-filter-item__link {
          font-size: 2.6rem;
          font-weight: bold; } }
    @media screen and (min-width: 90em) {
      .tile--large h1, .tile--large h2, .tile--large blockquote p, blockquote .tile--large p, .tile--large .tag-filter-item__link,
      .tile--large h2,
      .tile--large blockquote p, blockquote
      .tile--large p,
      .tile--large .tag-filter-item__link {
        font-size: 4rem;
        font-weight: bold; } }
  .tile--medium {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    overflow: hidden;
    -ms-flex-pack: distribute;
    justify-content: space-around; }
    @media print, screen and (min-width: 48em) {
      .tile--medium {
        -ms-flex-preferred-size: 66.67%;
        flex-basis: 66.67%; } }
    @media screen and (min-width: 64em) {
      .tile--medium {
        -ms-flex-preferred-size: 40%;
        flex-basis: 40%; }
        .tile--medium h2, .tile--medium blockquote p, blockquote .tile--medium p, .tile--medium .tag-filter-item__link,
        .tile--medium h3, .tile--medium h2, .tile--medium blockquote p, blockquote .tile--medium p, .tile--medium .tag-filter-item__link {
          font-size: 2vw; } }
  .tile__front {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 1rem; }
    @media screen and (min-width: 64em) {
      .tile__front {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        padding: 2rem 2rem;
        width: 100%;
        transition: transform 0.3s; } }
  @media screen and (min-width: 64em) {
    .tile__front {
      -ms-flex-direction: column;
      flex-direction: column;
      -ms-flex-pack: justify;
      justify-content: space-between;
      padding: 1rem 2rem; } }
  .tile__front h2, .tile__front blockquote p, blockquote .tile__front p, .tile__front .tag-filter-item__link {
    width: 70%;
    font-weight: bold; }
  .tile__front .label, .tile__front .case-study-header--content a[rel="tag"], .case-study-header--content .tile__front a[rel="tag"] {
    display: none;
    width: 100%;
    text-align: center; }
    @media screen and (min-width: 64em) {
      .tile__front .label, .tile__front .case-study-header--content a[rel="tag"], .case-study-header--content .tile__front a[rel="tag"] {
        display: block; } }
  .tile--hidden {
    display: none; }
    @media screen and (min-width: 64em) {
      .tile--hidden {
        display: block; } }

a.tile {
  color: #0a0a0a; }
  a.tile:hover, a.tile:focus {
    background: #3700ff;
    color: #fefefe; }

.author__image {
  display: inline-block;
  margin-bottom: 1rem; }

.author__name {
  display: block;
  text-decoration: underline;
  text-decoration-skip: ink; }

.video-blocker {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1; }

.background-video {
  position: relative;
  padding-top: 62.5%; }
  .background-video__inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  .background-video__wrapper {
    position: relative;
    height: 100%;
    padding: 0;
    overflow: hidden; }
  .background-video iframe {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    min-width: 100%;
    min-height: 100%; }

.work-industries {
  background: #0a0a0a;
  color: #fefefe; }

.image-gallery {
  padding-top: 0; }

.carousel {
  width: 100%; }
  @media print, screen and (min-width: 48em) {
    .carousel {
      -ms-flex: 0 0 75%;
      flex: 0 0 75%;
      max-width: 75%;
      padding-right: 0;
      padding-left: 0;
      max-width: 75%;
      margin-left: 16.66667%; } }
  @media screen and (min-width: 64em) {
    .carousel {
      -ms-flex: 0 0 75%;
      flex: 0 0 75%;
      max-width: 75%;
      padding-right: 0.625rem;
      padding-left: 0.625rem;
      max-width: 75%;
      margin-left: 16.66667%; } }
  @media screen and (min-width: 64em) and (min-width: 37.5em) {
    .carousel {
      padding-right: 0.625rem;
      padding-left: 0.625rem; } }
  @media screen and (min-width: 90em) {
    .carousel .slick-list {
      margin-left: 1.5rem; } }
  .carousel .slick-dots {
    position: absolute;
    left: 0;
    bottom: -2rem;
    list-style-type: none;
    margin: 0;
    width: 100%; }
    .carousel .slick-dots li {
      position: relative;
      display: inline-block;
      width: 20px;
      height: 20px;
      margin: 0 0.25rem;
      padding: 0;
      cursor: pointer; }
      .carousel .slick-dots li.slick-active button {
        background: #0a0a0a; }
    .carousel .slick-dots button {
      display: block;
      width: 12px;
      height: 12px;
      padding: 0;
      cursor: pointer;
      color: transparent;
      background: #cacaca;
      border-radius: 100%; }
    @media screen and (min-width: 64em) {
      .carousel .slick-dots {
        margin-left: 0.5rem; } }
    @media screen and (min-width: 90em) {
      .carousel .slick-dots {
        margin-left: 2rem; } }

.single-post--meta {
  position: relative;
  margin-top: 2rem;
  padding-top: 3rem;
  width: 100%; }
  .single-post--meta .social-links {
    padding-top: 1rem; }
    @media print, screen and (min-width: 48em) {
      .single-post--meta .social-links {
        padding-top: 3rem; } }
    .single-post--meta .social-links .social-links__link {
      background: #fefefe;
      border: 1px solid #0a0a0a; }
      .single-post--meta .social-links .social-links__link path {
        fill: #0a0a0a; }
      .single-post--meta .social-links .social-links__link:hover, .single-post--meta .social-links .social-links__link:focus {
        background: #0a0a0a; }
        .single-post--meta .social-links .social-links__link:hover path, .single-post--meta .social-links .social-links__link:focus path {
          fill: #fefefe; }

.single-post h1, .single-post .statement h2, .statement .single-post h2, .single-post .statement blockquote p, .statement blockquote .single-post p, .single-post blockquote .statement p, blockquote .statement .single-post p, .single-post .statement .tag-filter-item__link, .statement .single-post .tag-filter-item__link, .single-post
.page-end-statement h2,
.page-end-statement .single-post h2, .single-post
.page-end-statement blockquote p,
.page-end-statement blockquote .single-post p, .single-post blockquote
.page-end-statement p, blockquote
.page-end-statement .single-post p, .single-post
.page-end-statement .tag-filter-item__link,
.page-end-statement .single-post .tag-filter-item__link, .single-post .newsletter h2, .newsletter .single-post h2, .single-post .newsletter blockquote p, .newsletter blockquote .single-post p, .single-post blockquote .newsletter p, blockquote .newsletter .single-post p, .single-post .newsletter .tag-filter-item__link, .newsletter .single-post .tag-filter-item__link, .single-post .tile--large h2, .tile--large .single-post h2, .single-post .tile--large blockquote p, .tile--large blockquote .single-post p, .single-post blockquote .tile--large p, blockquote .tile--large .single-post p, .single-post .tile--large .tag-filter-item__link, .tile--large .single-post .tag-filter-item__link {
  margin-bottom: 0.5rem;
  font-weight: bold; }

.single-post .card-item__description {
  margin-bottom: 0; }

.single-post .card-item .meta {
  display: none; }

.single-post .card-item .arrow {
  right: auto;
  left: 0; }
