@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;
}

/*********************
FONTS
*********************/
/*********************
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); */
/*********************
CSS3 GRADIENTS. 
*********************/
/*********************
Animations
*********************/
/**
 * 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 {
  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&iphone=21.875em&medium=40em&large=64em&xlarge=75em";
}

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

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

body {
  margin: 0;
  padding: 0;
  background: #F8F8F8;
  font-family: "hk_groteskmedium", sans-serif, Helvetica, Roboto, Arial, sans-serif;
  font-weight: normal;
  line-height: 1.5;
  color: #112226;
  -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: 1rem;
}

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

.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;
  appearance: none;
  border: 0;
  border-radius: 1rem;
  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: 87.5rem;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  flex-flow: row wrap;
}
.row .row {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}
@media print, screen and (min-width: 21.875em) {
  .row .row {
    margin-right: -0.625rem;
    margin-left: -0.625rem;
  }
}
@media print, screen and (min-width: 40em) {
  .row .row {
    margin-right: -1.25rem;
    margin-left: -1.25rem;
  }
}
@media print, screen and (min-width: 64em) {
  .row .row {
    margin-right: -1.25rem;
    margin-left: -1.25rem;
  }
}
@media screen and (min-width: 75em) {
  .row .row {
    margin-right: -1.5625rem;
    margin-left: -1.5625rem;
  }
}
.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 {
  flex: 1 1 0px;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  min-width: initial;
}
@media print, screen and (min-width: 40em) {
  .column, .columns {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}
@media screen and (min-width: 75em) {
  .column, .columns {
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
  }
}

.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: flex;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.small-up-8 {
  flex-wrap: wrap;
}
.small-up-8 > .column, .small-up-8 > .columns {
  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: 21.875em) {
  .iphone-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .iphone-order-1 {
    order: 1;
  }

  .iphone-order-2 {
    order: 2;
  }

  .iphone-order-3 {
    order: 3;
  }

  .iphone-order-4 {
    order: 4;
  }

  .iphone-order-5 {
    order: 5;
  }

  .iphone-order-6 {
    order: 6;
  }

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

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

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

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

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

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

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

  .iphone-up-8 {
    flex-wrap: wrap;
  }
  .iphone-up-8 > .column, .iphone-up-8 > .columns {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
}
@media print, screen and (min-width: 21.875em) and (min-width: 21.875em) {
  .iphone-expand {
    flex: 1 1 0px;
  }
}
@media print, screen and (min-width: 21.875em) {
  .iphone-flex-dir-row {
    flex-direction: row;
  }

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

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

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

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

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

  .iphone-flex-child-shrink {
    flex: 0 1 auto;
  }
}
.row.iphone-unstack > .column, .row.iphone-unstack > .columns {
  flex: 0 0 100%;
}
@media print, screen and (min-width: 21.875em) {
  .row.iphone-unstack > .column, .row.iphone-unstack > .columns {
    flex: 1 1 0px;
  }
}
@media print, screen and (min-width: 21.875em) {
  .iphone-collapse > .column, .iphone-collapse > .columns {
    padding-right: 0;
    padding-left: 0;
  }

  .iphone-uncollapse > .column, .iphone-uncollapse > .columns {
    padding-right: 0.625rem;
    padding-left: 0.625rem;
  }
}
@media print, screen and (min-width: 40em) {
  .medium-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .medium-order-1 {
    order: 1;
  }

  .medium-order-2 {
    order: 2;
  }

  .medium-order-3 {
    order: 3;
  }

  .medium-order-4 {
    order: 4;
  }

  .medium-order-5 {
    order: 5;
  }

  .medium-order-6 {
    order: 6;
  }

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

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

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

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

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

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

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

  .medium-up-8 {
    flex-wrap: wrap;
  }
  .medium-up-8 > .column, .medium-up-8 > .columns {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
}
@media print, screen and (min-width: 40em) and (min-width: 40em) {
  .medium-expand {
    flex: 1 1 0px;
  }
}
@media print, screen and (min-width: 40em) {
  .medium-flex-dir-row {
    flex-direction: row;
  }

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

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

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

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

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

  .medium-flex-child-shrink {
    flex: 0 1 auto;
  }
}
.row.medium-unstack > .column, .row.medium-unstack > .columns {
  flex: 0 0 100%;
}
@media print, screen and (min-width: 40em) {
  .row.medium-unstack > .column, .row.medium-unstack > .columns {
    flex: 1 1 0px;
  }
}
@media print, screen and (min-width: 40em) {
  .medium-collapse > .column, .medium-collapse > .columns {
    padding-right: 0;
    padding-left: 0;
  }

  .medium-uncollapse > .column, .medium-uncollapse > .columns {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}
@media print, screen and (min-width: 64em) {
  .large-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .large-order-1 {
    order: 1;
  }

  .large-order-2 {
    order: 2;
  }

  .large-order-3 {
    order: 3;
  }

  .large-order-4 {
    order: 4;
  }

  .large-order-5 {
    order: 5;
  }

  .large-order-6 {
    order: 6;
  }

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

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

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

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

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

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

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

  .large-up-8 {
    flex-wrap: wrap;
  }
  .large-up-8 > .column, .large-up-8 > .columns {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
}
@media print, screen and (min-width: 64em) and (min-width: 64em) {
  .large-expand {
    flex: 1 1 0px;
  }
}
@media print, screen and (min-width: 64em) {
  .large-flex-dir-row {
    flex-direction: row;
  }

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

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

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

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

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

  .large-flex-child-shrink {
    flex: 0 1 auto;
  }
}
.row.large-unstack > .column, .row.large-unstack > .columns {
  flex: 0 0 100%;
}
@media print, screen and (min-width: 64em) {
  .row.large-unstack > .column, .row.large-unstack > .columns {
    flex: 1 1 0px;
  }
}
@media print, screen and (min-width: 64em) {
  .large-collapse > .column, .large-collapse > .columns {
    padding-right: 0;
    padding-left: 0;
  }

  .large-uncollapse > .column, .large-uncollapse > .columns {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}
@media screen and (min-width: 75em) {
  .xlarge-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .xlarge-order-1 {
    order: 1;
  }

  .xlarge-order-2 {
    order: 2;
  }

  .xlarge-order-3 {
    order: 3;
  }

  .xlarge-order-4 {
    order: 4;
  }

  .xlarge-order-5 {
    order: 5;
  }

  .xlarge-order-6 {
    order: 6;
  }

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

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

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

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

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

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

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

  .xlarge-up-8 {
    flex-wrap: wrap;
  }
  .xlarge-up-8 > .column, .xlarge-up-8 > .columns {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
}
@media screen and (min-width: 75em) and (min-width: 75em) {
  .xlarge-expand {
    flex: 1 1 0px;
  }
}
@media screen and (min-width: 75em) {
  .xlarge-flex-dir-row {
    flex-direction: row;
  }

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

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

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

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

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

  .xlarge-flex-child-shrink {
    flex: 0 1 auto;
  }
}
.row.xlarge-unstack > .column, .row.xlarge-unstack > .columns {
  flex: 0 0 100%;
}
@media screen and (min-width: 75em) {
  .row.xlarge-unstack > .column, .row.xlarge-unstack > .columns {
    flex: 1 1 0px;
  }
}
@media screen and (min-width: 75em) {
  .xlarge-collapse > .column, .xlarge-collapse > .columns {
    padding-right: 0;
    padding-left: 0;
  }

  .xlarge-uncollapse > .column, .xlarge-uncollapse > .columns {
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
  }
}
.shrink {
  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: 40em) {
  .column-block {
    margin-bottom: 2.5rem;
  }
  .column-block > :last-child {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 75em) {
  .column-block {
    margin-bottom: 3.125rem;
  }
  .column-block > :last-child {
    margin-bottom: 0;
  }
}

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

.align-center {
  justify-content: center;
}

.align-justify {
  justify-content: space-between;
}

.align-spaced {
  justify-content: space-around;
}

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

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

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

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

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

.align-self-middle {
  align-self: center;
}

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

.align-self-stretch {
  align-self: stretch;
}

.align-center-middle {
  justify-content: center;
  align-items: center;
  align-content: center;
}

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

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

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

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

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

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

@media print, screen and (min-width: 21.875em) {
  .iphone-order-1 {
    order: 1;
  }

  .iphone-order-2 {
    order: 2;
  }

  .iphone-order-3 {
    order: 3;
  }

  .iphone-order-4 {
    order: 4;
  }

  .iphone-order-5 {
    order: 5;
  }

  .iphone-order-6 {
    order: 6;
  }
}
@media print, screen and (min-width: 40em) {
  .medium-order-1 {
    order: 1;
  }

  .medium-order-2 {
    order: 2;
  }

  .medium-order-3 {
    order: 3;
  }

  .medium-order-4 {
    order: 4;
  }

  .medium-order-5 {
    order: 5;
  }

  .medium-order-6 {
    order: 6;
  }
}
@media print, screen and (min-width: 64em) {
  .large-order-1 {
    order: 1;
  }

  .large-order-2 {
    order: 2;
  }

  .large-order-3 {
    order: 3;
  }

  .large-order-4 {
    order: 4;
  }

  .large-order-5 {
    order: 5;
  }

  .large-order-6 {
    order: 6;
  }
}
@media screen and (min-width: 75em) {
  .xlarge-order-1 {
    order: 1;
  }

  .xlarge-order-2 {
    order: 2;
  }

  .xlarge-order-3 {
    order: 3;
  }

  .xlarge-order-4 {
    order: 4;
  }

  .xlarge-order-5 {
    order: 5;
  }

  .xlarge-order-6 {
    order: 6;
  }
}
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

p {
  margin-bottom: 1rem;
  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: 90%;
  line-height: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "hk_groteskmedium", sans-serif, Helvetica, Roboto, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  color: inherit;
  text-rendering: optimizeLegibility;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small {
  line-height: 0;
  color: #4e3838;
}

h1 {
  font-size: 2.125rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 1.5rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h3 {
  font-size: 1.1875rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

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

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

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

@media print, screen and (min-width: 40em) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2.125rem;
  }

  h3 {
    font-size: 1.75rem;
  }

  h4 {
    font-size: 1.3125rem;
  }

  h5 {
    font-size: 1.1875rem;
  }

  h6 {
    font-size: 1rem;
  }
}
@media screen and (min-width: 75em) {
  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.1875rem;
  }

  h3 {
    font-size: 1.875rem;
  }
}
a {
  line-height: inherit;
  color: #18838b;
  text-decoration: none;
  cursor: pointer;
}
a:hover, a:focus {
  color: #157178;
}
a img {
  border: 0;
}

hr {
  clear: both;
  max-width: 87.5rem;
  height: 0;
  margin: 1.25rem auto;
  border-top: 0;
  border-right: 0;
  border-bottom: 1px solid #4e3838;
  border-left: 0;
}

ul,
ol,
dl {
  margin-bottom: 1rem;
  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 1rem;
  padding: 0.5625rem 1.25rem 0 1.1875rem;
  border-left: 1px solid #4e3838;
}
blockquote, blockquote p {
  line-height: 1.6;
  color: #32444A;
}

cite {
  display: block;
  font-size: 0.8125rem;
  color: #32444A;
}
cite:before {
  content: "— ";
}

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

figure {
  margin: 0;
}

code {
  padding: 0.125rem 0.3125rem 0.0625rem;
  border: 1px solid #4e3838;
  background-color: #F8F8F8;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  font-weight: normal;
  color: #112226;
}

kbd {
  margin: 0;
  padding: 0.125rem 0.25rem 0;
  background-color: #F8F8F8;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  color: #112226;
  border-radius: 1rem;
}

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

.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: 21.875em) {
  .iphone-text-left {
    text-align: left;
  }

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

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

  .iphone-text-justify {
    text-align: justify;
  }
}
@media print, screen and (min-width: 40em) {
  .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: 64em) {
  .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: 75em) {
  .xlarge-text-left {
    text-align: left;
  }

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

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

  .xlarge-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 #32444A;
    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,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    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: 2.3125rem;
  margin: 0 0 1rem;
  padding: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
  background-color: #fff;
  box-shadow: 0;
  font-family: "hk_grotesksemibold", sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  color: #112226;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  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: 1px solid #18838b;
  background-color: #fff;
  box-shadow: 0 0 0 #4e3838;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}

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

input::placeholder,
textarea::placeholder {
  color: #4e3838;
}
input:disabled, input[readonly],
textarea:disabled,
textarea[readonly] {
  background-color: #F8F8F8;
  cursor: not-allowed;
}

[type='submit'],
[type='button'] {
  appearance: none;
  border-radius: 1rem;
}

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

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

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

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

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

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

.help-text {
  margin-top: -0.5rem;
  font-size: 0.8125rem;
  font-style: italic;
  color: #112226;
}

.input-group {
  display: table;
  width: 100%;
  margin-bottom: 1rem;
}
.input-group > :first-child {
  border-radius: 1rem 0 0 1rem;
}
.input-group > :last-child > * {
  border-radius: 0 1rem 1rem 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 2rem;
  border: 1px solid #18838b;
  background: #F8F8F8;
  color: #112226;
  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: 2.375rem;
}

.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: 2.375rem;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 0.875rem;
}

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

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

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

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

select {
  height: 2.3125rem;
  margin: 0 0 1rem;
  padding: 0.5rem;
  appearance: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
  background-color: #fff;
  font-family: "hk_grotesksemibold", sans-serif;
  font-size: 0.875rem;
  line-height: normal;
  color: #112226;
  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%2850, 68, 74%29'></polygon></svg>");
  background-origin: content-box;
  background-position: right -1rem center;
  background-repeat: no-repeat;
  background-size: 9px 6px;
  padding-right: 1.5rem;
  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: 1px solid #18838b;
  background-color: #fff;
  box-shadow: 0 0 0 #4e3838;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}
select:disabled {
  background-color: #F8F8F8;
  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: #faedeb;
}
.is-invalid-input:not(:focus)::placeholder {
  color: #cc4b37;
}

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

.form-error {
  display: none;
  margin-top: -0.5rem;
  margin-bottom: 1rem;
  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 1rem 0;
  padding: 0.85em 1em;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 2rem;
  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: #18838b;
  color: #fff;
}
[data-whatinput='mouse'] .button {
  outline: 0;
}
.button:hover, .button:focus {
  background-color: #146f76;
  color: #fff;
}
.button.tiny {
  font-size: 0.6rem;
}
.button.small {
  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: #18838b;
  color: #fff;
}
.button.primary:hover, .button.primary:focus {
  background-color: #13696f;
  color: #fff;
}
.button.secondary {
  background-color: #DA577E;
  color: #112226;
}
.button.secondary:hover, .button.secondary:focus {
  background-color: #c82c5a;
  color: #112226;
}
.button.success {
  background-color: #3adb76;
  color: #112226;
}
.button.success:hover, .button.success:focus {
  background-color: #22bb5b;
  color: #112226;
}
.button.warning {
  background-color: #c9a95e;
  color: #112226;
}
.button.warning:hover, .button.warning:focus {
  background-color: #b18e3b;
  color: #112226;
}
.button.alert {
  background-color: #cc4b37;
  color: #fff;
}
.button.alert:hover, .button.alert:focus {
  background-color: #a53b2a;
  color: #fff;
}
.button.hollow {
  border: 1px solid #18838b;
  color: #18838b;
}
.button.hollow, .button.hollow:hover, .button.hollow:focus {
  background-color: transparent;
}
.button.hollow:hover, .button.hollow:focus {
  border-color: #0c4246;
  color: #0c4246;
}
.button.hollow.primary {
  border: 1px solid #18838b;
  color: #18838b;
}
.button.hollow.primary:hover, .button.hollow.primary:focus {
  border-color: #0c4246;
  color: #0c4246;
}
.button.hollow.secondary {
  border: 1px solid #DA577E;
  color: #DA577E;
}
.button.hollow.secondary:hover, .button.hollow.secondary:focus {
  border-color: #7d1c39;
  color: #7d1c39;
}
.button.hollow.success {
  border: 1px solid #3adb76;
  color: #3adb76;
}
.button.hollow.success:hover, .button.hollow.success:focus {
  border-color: #157539;
  color: #157539;
}
.button.hollow.warning {
  border: 1px solid #c9a95e;
  color: #c9a95e;
}
.button.hollow.warning:hover, .button.hollow.warning:focus {
  border-color: #6e5925;
  color: #6e5925;
}
.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: #18838b;
  color: #fff;
}
.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: #18838b;
  color: #fff;
}
.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: #DA577E;
  color: #112226;
}
.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: #3adb76;
  color: #112226;
}
.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: #c9a95e;
  color: #112226;
}
.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: #fff;
}
.button.dropdown::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 0.4em;
  content: '';
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: #fff transparent transparent;
  position: relative;
  top: 0.4em;
  display: inline-block;
  float: right;
  margin-left: 1em;
}
.button.dropdown.hollow::after {
  border-top-color: #18838b;
}
.button.dropdown.hollow.primary::after {
  border-top-color: #18838b;
}
.button.dropdown.hollow.secondary::after {
  border-top-color: #DA577E;
}
.button.dropdown.hollow.success::after {
  border-top-color: #3adb76;
}
.button.dropdown.hollow.warning::after {
  border-top-color: #c9a95e;
}
.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: #fff;
  list-style-type: none;
}

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

.accordion-title {
  position: relative;
  display: block;
  padding: 1.25rem 1rem;
  border: 1px solid #F8F8F8;
  border-bottom: 0;
  font-size: 0.75rem;
  line-height: 1;
  color: #18838b;
}
:last-child:not(.is-active) > .accordion-title {
  border-bottom: 1px solid #F8F8F8;
  border-radius: 0 0 1rem 1rem;
}
.accordion-title:hover, .accordion-title:focus {
  background-color: #F8F8F8;
}
.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 #F8F8F8;
  border-bottom: 0;
  background-color: #fff;
  color: #112226;
}
:last-child > .accordion-content:last-child {
  border-bottom: 1px solid #F8F8F8;
}

.is-accordion-submenu-parent > a {
  position: relative;
}
.is-accordion-submenu-parent > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: '';
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: #18838b transparent transparent;
  position: absolute;
  top: 50%;
  margin-top: -3px;
  right: 1rem;
}

.is-accordion-submenu-parent[aria-expanded='true'] > a::after {
  transform: rotate(180deg);
  transform-origin: 50% 50%;
}

.badge {
  display: inline-block;
  min-width: 2.1em;
  padding: 0.3em;
  border-radius: 50%;
  font-size: 0.6rem;
  text-align: center;
  background: #18838b;
  color: #fff;
}
.badge.primary {
  background: #18838b;
  color: #fff;
}
.badge.secondary {
  background: #DA577E;
  color: #112226;
}
.badge.success {
  background: #3adb76;
  color: #112226;
}
.badge.warning {
  background: #c9a95e;
  color: #112226;
}
.badge.alert {
  background: #cc4b37;
  color: #fff;
}

.breadcrumbs {
  margin: 0 0 1rem 0;
  list-style: none;
}
.breadcrumbs::before, .breadcrumbs::after {
  display: table;
  content: ' ';
}
.breadcrumbs::after {
  clear: both;
}
.breadcrumbs li {
  float: left;
  font-size: 0.6875rem;
  color: #112226;
  cursor: default;
  text-transform: uppercase;
}
.breadcrumbs li:not(:last-child)::after {
  position: relative;
  top: 1px;
  margin: 0 0.75rem;
  opacity: 1;
  content: "/";
  color: #4e3838;
}
.breadcrumbs a {
  color: #18838b;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.breadcrumbs .disabled {
  color: #4e3838;
  cursor: not-allowed;
}

.button-group {
  margin-bottom: 1rem;
  font-size: 0;
}
.button-group::before, .button-group::after {
  display: table;
  content: ' ';
}
.button-group::after {
  clear: both;
}
.button-group .button {
  margin: 0;
  margin-right: 1px;
  margin-bottom: 1px;
  font-size: 0.9rem;
}
.button-group .button:last-child {
  margin-right: 0;
}
.button-group.tiny .button {
  font-size: 0.6rem;
}
.button-group.small .button {
  font-size: 0.75rem;
}
.button-group.large .button {
  font-size: 1.25rem;
}
.button-group.expanded {
  margin-right: -1px;
}
.button-group.expanded::before, .button-group.expanded::after {
  display: none;
}
.button-group.expanded .button:first-child:last-child {
  width: 100%;
}
.button-group.expanded .button:first-child:nth-last-child(2), .button-group.expanded .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button {
  display: inline-block;
  width: calc(50% - 1px);
  margin-right: 1px;
}
.button-group.expanded .button:first-child:nth-last-child(2):last-child, .button-group.expanded .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button:last-child {
  margin-right: -6px;
}
.button-group.expanded .button:first-child:nth-last-child(3), .button-group.expanded .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button {
  display: inline-block;
  width: calc(33.33333% - 1px);
  margin-right: 1px;
}
.button-group.expanded .button:first-child:nth-last-child(3):last-child, .button-group.expanded .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button:last-child {
  margin-right: -6px;
}
.button-group.expanded .button:first-child:nth-last-child(4), .button-group.expanded .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button {
  display: inline-block;
  width: calc(25% - 1px);
  margin-right: 1px;
}
.button-group.expanded .button:first-child:nth-last-child(4):last-child, .button-group.expanded .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button:last-child {
  margin-right: -6px;
}
.button-group.expanded .button:first-child:nth-last-child(5), .button-group.expanded .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button {
  display: inline-block;
  width: calc(20% - 1px);
  margin-right: 1px;
}
.button-group.expanded .button:first-child:nth-last-child(5):last-child, .button-group.expanded .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button:last-child {
  margin-right: -6px;
}
.button-group.expanded .button:first-child:nth-last-child(6), .button-group.expanded .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button {
  display: inline-block;
  width: calc(16.66667% - 1px);
  margin-right: 1px;
}
.button-group.expanded .button:first-child:nth-last-child(6):last-child, .button-group.expanded .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button:last-child {
  margin-right: -6px;
}
.button-group.primary .button {
  background-color: #18838b;
  color: #fff;
}
.button-group.primary .button:hover, .button-group.primary .button:focus {
  background-color: #13696f;
  color: #fff;
}
.button-group.secondary .button {
  background-color: #DA577E;
  color: #112226;
}
.button-group.secondary .button:hover, .button-group.secondary .button:focus {
  background-color: #c82c5a;
  color: #112226;
}
.button-group.success .button {
  background-color: #3adb76;
  color: #112226;
}
.button-group.success .button:hover, .button-group.success .button:focus {
  background-color: #22bb5b;
  color: #112226;
}
.button-group.warning .button {
  background-color: #c9a95e;
  color: #112226;
}
.button-group.warning .button:hover, .button-group.warning .button:focus {
  background-color: #b18e3b;
  color: #112226;
}
.button-group.alert .button {
  background-color: #cc4b37;
  color: #fff;
}
.button-group.alert .button:hover, .button-group.alert .button:focus {
  background-color: #a53b2a;
  color: #fff;
}
.button-group.stacked .button, .button-group.stacked-for-small .button, .button-group.stacked-for-medium .button {
  width: 100%;
}
.button-group.stacked .button:last-child, .button-group.stacked-for-small .button:last-child, .button-group.stacked-for-medium .button:last-child {
  margin-bottom: 0;
}
@media print, screen and (min-width: 40em) {
  .button-group.stacked-for-small .button {
    width: auto;
    margin-bottom: 0;
  }
}
@media print, screen and (min-width: 64em) {
  .button-group.stacked-for-medium .button {
    width: auto;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 21.8125em) {
  .button-group.stacked-for-small.expanded {
    display: block;
  }
  .button-group.stacked-for-small.expanded .button {
    display: block;
    margin-right: 0;
  }
}

.callout {
  position: relative;
  margin: 0 0 1rem 0;
  padding: 1rem;
  border: 1px solid rgba(17, 34, 38, 0.25);
  border-radius: 1rem;
  background-color: white;
  color: #112226;
}
.callout > :first-child {
  margin-top: 0;
}
.callout > :last-child {
  margin-bottom: 0;
}
.callout.primary {
  background-color: #d3f5f7;
  color: #112226;
}
.callout.secondary {
  background-color: #f9e6ec;
  color: #112226;
}
.callout.success {
  background-color: #e1faea;
  color: #112226;
}
.callout.warning {
  background-color: #f7f2e7;
  color: #112226;
}
.callout.alert {
  background-color: #f7e4e1;
  color: #112226;
}
.callout.small {
  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 #F8F8F8;
  border-radius: 1rem;
  background: #fff;
  box-shadow: none;
  overflow: hidden;
  color: #112226;
}
.card > :last-child {
  margin-bottom: 0;
}

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

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

.close-button {
  position: absolute;
  color: #32444A;
  cursor: pointer;
}
[data-whatinput='mouse'] .close-button {
  outline: 0;
}
.close-button:hover, .close-button:focus {
  color: #112226;
}
.close-button.small {
  right: 0.66rem;
  top: 0.33em;
  font-size: 1.5em;
  line-height: 1;
}
.close-button, .close-button.medium {
  right: 1rem;
  top: 0.5rem;
  font-size: 2em;
  line-height: 1;
}

.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: 0.7rem 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.3rem;
  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: 21.875em) {
  .menu.iphone-horizontal > li {
    display: table-cell;
  }
  .menu.iphone-expanded {
    display: table;
    width: 100%;
    table-layout: fixed;
  }
  .menu.iphone-expanded > li:first-child:last-child {
    width: 100%;
  }
  .menu.iphone-vertical > li {
    display: block;
  }
}
@media print, screen and (min-width: 40em) {
  .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: 64em) {
  .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: 75em) {
  .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;
  }
}
.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.3rem;
}
.menu.icon-top.vertical a > span {
  margin: auto;
}
.menu.nested {
  margin-left: 1rem;
}
.menu .active > a {
  background: #18838b;
  color: #fff;
}
.menu.menu-bordered li {
  border: 1px solid #F8F8F8;
}
.menu.menu-bordered li:not(:first-child) {
  border-top: 0;
}
.menu.menu-hover li:hover {
  background-color: #F8F8F8;
}

.menu-text {
  padding-top: 0;
  padding-bottom: 0;
  padding: 0.7rem 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: #fff;
  box-shadow: 0 7px 0 #fff, 0 14px 0 #fff;
  content: '';
}
.menu-icon:hover::after {
  background: #4e3838;
  box-shadow: 0 7px 0 #4e3838, 0 14px 0 #4e3838;
}

.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: #112226;
  box-shadow: 0 7px 0 #112226, 0 14px 0 #112226;
  content: '';
}
.menu-icon.dark:hover::after {
  background: #32444A;
  box-shadow: 0 7px 0 #32444A, 0 14px 0 #32444A;
}

.is-drilldown {
  position: relative;
  overflow: hidden;
}
.is-drilldown li {
  display: block;
}
.is-drilldown.animate-height {
  transition: height 0.5s;
}

.is-drilldown-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: -1;
  width: 100%;
  background: #fff;
  transition: transform 0.15s linear;
}
.is-drilldown-submenu.is-active {
  z-index: 1;
  display: block;
  transform: translateX(-100%);
}
.is-drilldown-submenu.is-closing {
  transform: translateX(100%);
}

.drilldown-submenu-cover-previous {
  min-height: 100%;
}

.is-drilldown-submenu-parent > a {
  position: relative;
}
.is-drilldown-submenu-parent > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: '';
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent #18838b;
  position: absolute;
  top: 50%;
  margin-top: -6px;
  right: 1rem;
}

.js-drilldown-back > a::before {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: '';
  border-left-width: 0;
  border-right-style: solid;
  border-color: transparent #18838b transparent transparent;
  border-left-width: 0;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.75rem;
  border-left-width: 0;
}

.dropdown-pane {
  position: absolute;
  z-index: 10;
  display: block;
  width: 300px;
  padding: 1rem;
  visibility: hidden;
  border: 1px solid #4e3838;
  border-radius: 1rem;
  background-color: #F8F8F8;
  font-size: 1rem;
}
.dropdown-pane.is-open {
  visibility: visible;
}

.dropdown-pane.tiny {
  width: 100px;
}

.dropdown-pane.small {
  width: 200px;
}

.dropdown-pane.large {
  width: 400px;
}

.dropdown.menu > li.opens-left > .is-dropdown-submenu {
  top: 100%;
  right: 0;
  left: auto;
}
.dropdown.menu > li.opens-right > .is-dropdown-submenu {
  top: 100%;
  right: auto;
  left: 0;
}
.dropdown.menu > li.is-dropdown-submenu-parent > a {
  position: relative;
  padding-right: 1.5rem;
}
.dropdown.menu > li.is-dropdown-submenu-parent > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: '';
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: #18838b transparent transparent;
  right: 5px;
  margin-top: -3px;
}
[data-whatinput='mouse'] .dropdown.menu a {
  outline: 0;
}
.no-js .dropdown.menu ul {
  display: none;
}
.dropdown.menu.vertical > li .is-dropdown-submenu {
  top: 0;
}
.dropdown.menu.vertical > li.opens-left > .is-dropdown-submenu {
  right: 100%;
  left: auto;
}
.dropdown.menu.vertical > li.opens-right > .is-dropdown-submenu {
  right: auto;
  left: 100%;
}
.dropdown.menu.vertical > li > a::after {
  right: 14px;
}
.dropdown.menu.vertical > li.opens-left > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: '';
  border-left-width: 0;
  border-right-style: solid;
  border-color: transparent #18838b transparent transparent;
}
.dropdown.menu.vertical > li.opens-right > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: '';
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent #18838b;
}
@media print, screen and (min-width: 21.875em) {
  .dropdown.menu.iphone-horizontal > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto;
  }
  .dropdown.menu.iphone-horizontal > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0;
  }
  .dropdown.menu.iphone-horizontal > li.is-dropdown-submenu-parent > a {
    position: relative;
    padding-right: 1.5rem;
  }
  .dropdown.menu.iphone-horizontal > li.is-dropdown-submenu-parent > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #18838b transparent transparent;
    right: 5px;
    margin-top: -3px;
  }
  .dropdown.menu.iphone-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.iphone-vertical > li.opens-left > .is-dropdown-submenu {
    right: 100%;
    left: auto;
  }
  .dropdown.menu.iphone-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
  .dropdown.menu.iphone-vertical > li > a::after {
    right: 14px;
  }
  .dropdown.menu.iphone-vertical > li.opens-left > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-left-width: 0;
    border-right-style: solid;
    border-color: transparent #18838b transparent transparent;
  }
  .dropdown.menu.iphone-vertical > li.opens-right > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-right-width: 0;
    border-left-style: solid;
    border-color: transparent transparent transparent #18838b;
  }
}
@media print, screen and (min-width: 40em) {
  .dropdown.menu.medium-horizontal > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto;
  }
  .dropdown.menu.medium-horizontal > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0;
  }
  .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a {
    position: relative;
    padding-right: 1.5rem;
  }
  .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #18838b transparent transparent;
    right: 5px;
    margin-top: -3px;
  }
  .dropdown.menu.medium-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.medium-vertical > li.opens-left > .is-dropdown-submenu {
    right: 100%;
    left: auto;
  }
  .dropdown.menu.medium-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
  .dropdown.menu.medium-vertical > li > a::after {
    right: 14px;
  }
  .dropdown.menu.medium-vertical > li.opens-left > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-left-width: 0;
    border-right-style: solid;
    border-color: transparent #18838b transparent transparent;
  }
  .dropdown.menu.medium-vertical > li.opens-right > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-right-width: 0;
    border-left-style: solid;
    border-color: transparent transparent transparent #18838b;
  }
}
@media print, screen and (min-width: 64em) {
  .dropdown.menu.large-horizontal > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto;
  }
  .dropdown.menu.large-horizontal > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0;
  }
  .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a {
    position: relative;
    padding-right: 1.5rem;
  }
  .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #18838b transparent transparent;
    right: 5px;
    margin-top: -3px;
  }
  .dropdown.menu.large-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.large-vertical > li.opens-left > .is-dropdown-submenu {
    right: 100%;
    left: auto;
  }
  .dropdown.menu.large-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
  .dropdown.menu.large-vertical > li > a::after {
    right: 14px;
  }
  .dropdown.menu.large-vertical > li.opens-left > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-left-width: 0;
    border-right-style: solid;
    border-color: transparent #18838b transparent transparent;
  }
  .dropdown.menu.large-vertical > li.opens-right > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-right-width: 0;
    border-left-style: solid;
    border-color: transparent transparent transparent #18838b;
  }
}
@media screen and (min-width: 75em) {
  .dropdown.menu.xlarge-horizontal > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto;
  }
  .dropdown.menu.xlarge-horizontal > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0;
  }
  .dropdown.menu.xlarge-horizontal > li.is-dropdown-submenu-parent > a {
    position: relative;
    padding-right: 1.5rem;
  }
  .dropdown.menu.xlarge-horizontal > li.is-dropdown-submenu-parent > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #18838b transparent transparent;
    right: 5px;
    margin-top: -3px;
  }
  .dropdown.menu.xlarge-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.xlarge-vertical > li.opens-left > .is-dropdown-submenu {
    right: 100%;
    left: auto;
  }
  .dropdown.menu.xlarge-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
  .dropdown.menu.xlarge-vertical > li > a::after {
    right: 14px;
  }
  .dropdown.menu.xlarge-vertical > li.opens-left > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-left-width: 0;
    border-right-style: solid;
    border-color: transparent #18838b transparent transparent;
  }
  .dropdown.menu.xlarge-vertical > li.opens-right > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-right-width: 0;
    border-left-style: solid;
    border-color: transparent transparent transparent #18838b;
  }
}
.dropdown.menu.align-right .is-dropdown-submenu.first-sub {
  top: 100%;
  right: 0;
  left: auto;
}

.is-dropdown-menu.vertical {
  width: 100px;
}
.is-dropdown-menu.vertical.align-right {
  float: right;
}

.is-dropdown-submenu-parent {
  position: relative;
}
.is-dropdown-submenu-parent a::after {
  position: absolute;
  top: 50%;
  right: 5px;
  margin-top: -6px;
}
.is-dropdown-submenu-parent.opens-inner > .is-dropdown-submenu {
  top: 100%;
  left: auto;
}
.is-dropdown-submenu-parent.opens-left > .is-dropdown-submenu {
  right: 100%;
  left: auto;
}
.is-dropdown-submenu-parent.opens-right > .is-dropdown-submenu {
  right: auto;
  left: 100%;
}

.is-dropdown-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: 1;
  display: none;
  min-width: 200px;
  border: 1px solid #4e3838;
  background: #fff;
}
.is-dropdown-submenu .is-dropdown-submenu-parent > a::after {
  right: 14px;
}
.is-dropdown-submenu .is-dropdown-submenu-parent.opens-left > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: '';
  border-left-width: 0;
  border-right-style: solid;
  border-color: transparent #18838b transparent transparent;
}
.is-dropdown-submenu .is-dropdown-submenu-parent.opens-right > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: '';
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent #18838b;
}
.is-dropdown-submenu .is-dropdown-submenu {
  margin-top: -1px;
}
.is-dropdown-submenu > li {
  width: 100%;
}
.is-dropdown-submenu.js-dropdown-active {
  display: block;
}

.responsive-embed,
.flex-video {
  position: relative;
  height: 0;
  margin-bottom: 1rem;
  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%;
}

.label {
  display: inline-block;
  padding: 0.33333rem 0.5rem;
  border-radius: 1rem;
  font-size: 0.8rem;
  line-height: 1;
  white-space: nowrap;
  cursor: default;
  background: #18838b;
  color: #fff;
}
.label.primary {
  background: #18838b;
  color: #fff;
}
.label.secondary {
  background: #DA577E;
  color: #112226;
}
.label.success {
  background: #3adb76;
  color: #112226;
}
.label.warning {
  background: #c9a95e;
  color: #112226;
}
.label.alert {
  background: #cc4b37;
  color: #fff;
}

.media-object {
  display: block;
  margin-bottom: 1rem;
}
.media-object img {
  max-width: none;
}
@media screen and (max-width: 21.8125em) {
  .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;
}

.is-off-canvas-open {
  overflow: hidden;
}

.js-off-canvas-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  background: rgba(255, 255, 255, 0.25);
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}
.js-off-canvas-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}
.js-off-canvas-overlay.is-closable {
  cursor: pointer;
}
.js-off-canvas-overlay.is-overlay-absolute {
  position: absolute;
}
.js-off-canvas-overlay.is-overlay-fixed {
  position: fixed;
}

.off-canvas-wrapper {
  position: relative;
  overflow: hidden;
}

.off-canvas {
  position: fixed;
  z-index: 1;
  transition: transform 0.5s ease;
  backface-visibility: hidden;
  background: #F8F8F8;
}
[data-whatinput='mouse'] .off-canvas {
  outline: 0;
}
.off-canvas.is-transition-overlap {
  z-index: 10;
}
.off-canvas.is-transition-overlap.is-open {
  box-shadow: 0 0 10px rgba(17, 34, 38, 0.7);
}
.off-canvas.is-open {
  transform: translate(0, 0);
}

.off-canvas-absolute {
  position: absolute;
  z-index: 1;
  transition: transform 0.5s ease;
  backface-visibility: hidden;
  background: #F8F8F8;
}
[data-whatinput='mouse'] .off-canvas-absolute {
  outline: 0;
}
.off-canvas-absolute.is-transition-overlap {
  z-index: 10;
}
.off-canvas-absolute.is-transition-overlap.is-open {
  box-shadow: 0 0 10px rgba(17, 34, 38, 0.7);
}
.off-canvas-absolute.is-open {
  transform: translate(0, 0);
}

.position-left {
  top: 0;
  left: 0;
  width: 250px;
  height: 100%;
  transform: translateX(-250px);
  overflow-y: auto;
}
.position-left.is-open ~ .off-canvas-content {
  transform: translateX(250px);
}
.position-left.is-transition-push::after {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 1px;
  box-shadow: 0 0 10px rgba(17, 34, 38, 0.7);
  content: " ";
}
.position-left.is-transition-overlap.is-open ~ .off-canvas-content {
  transform: none;
}

.position-right {
  top: 0;
  right: 0;
  width: 250px;
  height: 100%;
  transform: translateX(250px);
  overflow-y: auto;
}
.position-right.is-open ~ .off-canvas-content {
  transform: translateX(-250px);
}
.position-right.is-transition-push::after {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 1px;
  box-shadow: 0 0 10px rgba(17, 34, 38, 0.7);
  content: " ";
}
.position-right.is-transition-overlap.is-open ~ .off-canvas-content {
  transform: none;
}

.position-top {
  top: 0;
  left: 0;
  width: 100%;
  height: 250px;
  transform: translateY(-250px);
  overflow-x: auto;
}
.position-top.is-open ~ .off-canvas-content {
  transform: translateY(250px);
}
.position-top.is-transition-push::after {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  box-shadow: 0 0 10px rgba(17, 34, 38, 0.7);
  content: " ";
}
.position-top.is-transition-overlap.is-open ~ .off-canvas-content {
  transform: none;
}

.position-bottom {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 250px;
  transform: translateY(250px);
  overflow-x: auto;
}
.position-bottom.is-open ~ .off-canvas-content {
  transform: translateY(-250px);
}
.position-bottom.is-transition-push::after {
  position: absolute;
  top: 0;
  left: 0;
  height: 1px;
  width: 100%;
  box-shadow: 0 0 10px rgba(17, 34, 38, 0.7);
  content: " ";
}
.position-bottom.is-transition-overlap.is-open ~ .off-canvas-content {
  transform: none;
}

.off-canvas-content {
  transition: transform 0.5s ease;
  backface-visibility: hidden;
}

@media print, screen and (min-width: 21.875em) {
  .position-left.reveal-for-iphone {
    transform: none;
    z-index: 1;
  }
  .position-left.reveal-for-iphone ~ .off-canvas-content {
    margin-left: 250px;
  }

  .position-right.reveal-for-iphone {
    transform: none;
    z-index: 1;
  }
  .position-right.reveal-for-iphone ~ .off-canvas-content {
    margin-right: 250px;
  }

  .position-top.reveal-for-iphone {
    transform: none;
    z-index: 1;
  }
  .position-top.reveal-for-iphone ~ .off-canvas-content {
    margin-top: 250px;
  }

  .position-bottom.reveal-for-iphone {
    transform: none;
    z-index: 1;
  }
  .position-bottom.reveal-for-iphone ~ .off-canvas-content {
    margin-bottom: 250px;
  }
}
@media print, screen and (min-width: 40em) {
  .position-left.reveal-for-medium {
    transform: none;
    z-index: 1;
  }
  .position-left.reveal-for-medium ~ .off-canvas-content {
    margin-left: 250px;
  }

  .position-right.reveal-for-medium {
    transform: none;
    z-index: 1;
  }
  .position-right.reveal-for-medium ~ .off-canvas-content {
    margin-right: 250px;
  }

  .position-top.reveal-for-medium {
    transform: none;
    z-index: 1;
  }
  .position-top.reveal-for-medium ~ .off-canvas-content {
    margin-top: 250px;
  }

  .position-bottom.reveal-for-medium {
    transform: none;
    z-index: 1;
  }
  .position-bottom.reveal-for-medium ~ .off-canvas-content {
    margin-bottom: 250px;
  }
}
@media print, screen and (min-width: 64em) {
  .position-left.reveal-for-large {
    transform: none;
    z-index: 1;
  }
  .position-left.reveal-for-large ~ .off-canvas-content {
    margin-left: 250px;
  }

  .position-right.reveal-for-large {
    transform: none;
    z-index: 1;
  }
  .position-right.reveal-for-large ~ .off-canvas-content {
    margin-right: 250px;
  }

  .position-top.reveal-for-large {
    transform: none;
    z-index: 1;
  }
  .position-top.reveal-for-large ~ .off-canvas-content {
    margin-top: 250px;
  }

  .position-bottom.reveal-for-large {
    transform: none;
    z-index: 1;
  }
  .position-bottom.reveal-for-large ~ .off-canvas-content {
    margin-bottom: 250px;
  }
}
@media screen and (min-width: 75em) {
  .position-left.reveal-for-xlarge {
    transform: none;
    z-index: 1;
  }
  .position-left.reveal-for-xlarge ~ .off-canvas-content {
    margin-left: 250px;
  }

  .position-right.reveal-for-xlarge {
    transform: none;
    z-index: 1;
  }
  .position-right.reveal-for-xlarge ~ .off-canvas-content {
    margin-right: 250px;
  }

  .position-top.reveal-for-xlarge {
    transform: none;
    z-index: 1;
  }
  .position-top.reveal-for-xlarge ~ .off-canvas-content {
    margin-top: 250px;
  }

  .position-bottom.reveal-for-xlarge {
    transform: none;
    z-index: 1;
  }
  .position-bottom.reveal-for-xlarge ~ .off-canvas-content {
    margin-bottom: 250px;
  }
}
.orbit {
  position: relative;
}

.orbit-container {
  position: relative;
  height: 0;
  margin: 0;
  list-style: none;
  overflow: hidden;
}

.orbit-slide {
  width: 100%;
}
.orbit-slide.no-motionui.is-active {
  top: 0;
  left: 0;
}

.orbit-figure {
  margin: 0;
}

.orbit-image {
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.orbit-caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  margin-bottom: 0;
  padding: 1rem;
  background-color: rgba(17, 34, 38, 0.5);
  color: #fff;
}

.orbit-previous, .orbit-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  padding: 1rem;
  color: #fff;
}
[data-whatinput='mouse'] .orbit-previous, [data-whatinput='mouse'] .orbit-next {
  outline: 0;
}
.orbit-previous:hover, .orbit-next:hover, .orbit-previous:active, .orbit-next:active, .orbit-previous:focus, .orbit-next:focus {
  background-color: rgba(17, 34, 38, 0.5);
}

.orbit-previous {
  left: 0;
}

.orbit-next {
  left: auto;
  right: 0;
}

.orbit-bullets {
  position: relative;
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
  text-align: center;
}
[data-whatinput='mouse'] .orbit-bullets {
  outline: 0;
}
.orbit-bullets button {
  width: 1.2rem;
  height: 1.2rem;
  margin: 0.1rem;
  border-radius: 50%;
  background-color: #4e3838;
}
.orbit-bullets button:hover {
  background-color: #32444A;
}
.orbit-bullets button.is-active {
  background-color: #32444A;
}

.pagination {
  margin-left: 0;
  margin-bottom: 1rem;
}
.pagination::before, .pagination::after {
  display: table;
  content: ' ';
}
.pagination::after {
  clear: both;
}
.pagination li {
  margin-right: 0.0625rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  display: none;
}
.pagination li:last-child, .pagination li:first-child {
  display: inline-block;
}
@media print, screen and (min-width: 40em) {
  .pagination li {
    display: inline-block;
  }
}
.pagination a,
.pagination button {
  display: block;
  padding: 0.1875rem 0.625rem;
  border-radius: 1rem;
  color: #112226;
}
.pagination a:hover,
.pagination button:hover {
  background: #F8F8F8;
}
.pagination .current {
  padding: 0.1875rem 0.625rem;
  background: #18838b;
  color: #fff;
  cursor: default;
}
.pagination .disabled {
  padding: 0.1875rem 0.625rem;
  color: #4e3838;
  cursor: not-allowed;
}
.pagination .disabled:hover {
  background: transparent;
}
.pagination .ellipsis::after {
  padding: 0.1875rem 0.625rem;
  content: '\2026';
  color: #112226;
}

.pagination-previous a::before,
.pagination-previous.disabled::before {
  display: inline-block;
  margin-right: 0.5rem;
  content: '\00ab';
}

.pagination-next a::after,
.pagination-next.disabled::after {
  display: inline-block;
  margin-left: 0.5rem;
  content: '\00bb';
}

.progress {
  height: 1rem;
  margin-bottom: 1rem;
  border-radius: 1rem;
  background-color: #4e3838;
}
.progress.primary .progress-meter {
  background-color: #18838b;
}
.progress.secondary .progress-meter {
  background-color: #DA577E;
}
.progress.success .progress-meter {
  background-color: #3adb76;
}
.progress.warning .progress-meter {
  background-color: #c9a95e;
}
.progress.alert .progress-meter {
  background-color: #cc4b37;
}

.progress-meter {
  position: relative;
  display: block;
  width: 0%;
  height: 100%;
  background-color: #18838b;
  border-radius: 1rem;
}

.progress-meter-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  margin: 0;
  font-size: 0.75rem;
  font-weight: bold;
  color: #fff;
  white-space: nowrap;
  border-radius: 1rem;
}

.slider {
  position: relative;
  height: 0.5rem;
  margin-top: 1.25rem;
  margin-bottom: 2.25rem;
  background-color: #F8F8F8;
  cursor: pointer;
  user-select: none;
  touch-action: none;
}

.slider-fill {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  max-width: 100%;
  height: 0.5rem;
  background-color: #4e3838;
  transition: all 0.2s ease-in-out;
}
.slider-fill.is-dragging {
  transition: all 0s linear;
}

.slider-handle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  left: 0;
  z-index: 1;
  display: inline-block;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 1rem;
  background-color: #18838b;
  transition: all 0.2s ease-in-out;
  touch-action: manipulation;
}
[data-whatinput='mouse'] .slider-handle {
  outline: 0;
}
.slider-handle:hover {
  background-color: #146f76;
}
.slider-handle.is-dragging {
  transition: all 0s linear;
}

.slider.disabled,
.slider[disabled] {
  opacity: 0.25;
  cursor: not-allowed;
}

.slider.vertical {
  display: inline-block;
  width: 0.5rem;
  height: 12.5rem;
  margin: 0 1.25rem;
  transform: scale(1, -1);
}
.slider.vertical .slider-fill {
  top: 0;
  width: 0.5rem;
  max-height: 100%;
}
.slider.vertical .slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1.4rem;
  height: 1.4rem;
  transform: translateX(-50%);
}

.sticky-container {
  position: relative;
}

.sticky {
  position: relative;
  z-index: 0;
  transform: translate3d(0, 0, 0);
}

.sticky.is-stuck {
  position: fixed;
  z-index: 5;
}
.sticky.is-stuck.is-at-top {
  top: 0;
}
.sticky.is-stuck.is-at-bottom {
  bottom: 0;
}

.sticky.is-anchored {
  position: relative;
  right: auto;
  left: auto;
}
.sticky.is-anchored.is-at-bottom {
  bottom: 0;
}

body.is-reveal-open {
  overflow: hidden;
}

html.is-reveal-open,
html.is-reveal-open body {
  min-height: 100%;
  overflow: hidden;
  position: fixed;
  user-select: none;
}

.reveal-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1005;
  display: none;
  background-color: rgba(17, 34, 38, 0.45);
  overflow-y: scroll;
}

.reveal {
  z-index: 1006;
  backface-visibility: hidden;
  display: none;
  padding: 1rem;
  border: 1px solid #4e3838;
  border-radius: 1rem;
  background-color: #fff;
  position: relative;
  top: 100px;
  margin-right: auto;
  margin-left: auto;
  overflow-y: auto;
}
[data-whatinput='mouse'] .reveal {
  outline: 0;
}
@media print, screen and (min-width: 40em) {
  .reveal {
    min-height: 0;
  }
}
.reveal .column, .reveal .columns {
  min-width: 0;
}
.reveal > :last-child {
  margin-bottom: 0;
}
@media print, screen and (min-width: 40em) {
  .reveal {
    width: 600px;
    max-width: 87.5rem;
  }
}
@media print, screen and (min-width: 40em) {
  .reveal .reveal {
    right: auto;
    left: auto;
    margin: 0 auto;
  }
}
.reveal.collapse {
  padding: 0;
}
@media print, screen and (min-width: 40em) {
  .reveal.tiny {
    width: 30%;
    max-width: 87.5rem;
  }
}
@media print, screen and (min-width: 40em) {
  .reveal.small {
    width: 50%;
    max-width: 87.5rem;
  }
}
@media print, screen and (min-width: 40em) {
  .reveal.large {
    width: 90%;
    max-width: 87.5rem;
  }
}
.reveal.full {
  top: 0;
  left: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  height: 100vh;
  min-height: 100vh;
  margin-left: 0;
  border: 0;
  border-radius: 0;
}
@media screen and (max-width: 21.8125em) {
  .reveal {
    top: 0;
    left: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    height: 100vh;
    min-height: 100vh;
    margin-left: 0;
    border: 0;
    border-radius: 0;
  }
}
.reveal.without-overlay {
  position: fixed;
}

.switch {
  height: 2rem;
  position: relative;
  margin-bottom: 1rem;
  outline: 0;
  font-size: 0.875rem;
  font-weight: bold;
  color: #fff;
  user-select: none;
}

.switch-input {
  position: absolute;
  margin-bottom: 0;
  opacity: 0;
}

.switch-paddle {
  position: relative;
  display: block;
  width: 4rem;
  height: 2rem;
  border-radius: 1rem;
  background: #4e3838;
  transition: all 0.25s ease-out;
  font-weight: inherit;
  color: inherit;
  cursor: pointer;
}
input + .switch-paddle {
  margin: 0;
}
.switch-paddle::after {
  position: absolute;
  top: 0.25rem;
  left: 0.25rem;
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  transform: translate3d(0, 0, 0);
  border-radius: 1rem;
  background: #fff;
  transition: all 0.25s ease-out;
  content: '';
}
input:checked ~ .switch-paddle {
  background: #18838b;
}
input:checked ~ .switch-paddle::after {
  left: 2.25rem;
}
[data-whatinput='mouse'] input:focus ~ .switch-paddle {
  outline: 0;
}

.switch-active, .switch-inactive {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.switch-active {
  left: 8%;
  display: none;
}
input:checked + label > .switch-active {
  display: block;
}

.switch-inactive {
  right: 15%;
}
input:checked + label > .switch-inactive {
  display: none;
}

.switch.tiny {
  height: 1.5rem;
}
.switch.tiny .switch-paddle {
  width: 3rem;
  height: 1.5rem;
  font-size: 0.625rem;
}
.switch.tiny .switch-paddle::after {
  top: 0.25rem;
  left: 0.25rem;
  width: 1rem;
  height: 1rem;
}
.switch.tiny input:checked ~ .switch-paddle::after {
  left: 1.75rem;
}

.switch.small {
  height: 1.75rem;
}
.switch.small .switch-paddle {
  width: 3.5rem;
  height: 1.75rem;
  font-size: 0.75rem;
}
.switch.small .switch-paddle::after {
  top: 0.25rem;
  left: 0.25rem;
  width: 1.25rem;
  height: 1.25rem;
}
.switch.small input:checked ~ .switch-paddle::after {
  left: 2rem;
}

.switch.large {
  height: 2.5rem;
}
.switch.large .switch-paddle {
  width: 5rem;
  height: 2.5rem;
  font-size: 1rem;
}
.switch.large .switch-paddle::after {
  top: 0.25rem;
  left: 0.25rem;
  width: 2rem;
  height: 2rem;
}
.switch.large input:checked ~ .switch-paddle::after {
  left: 2.75rem;
}

table {
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 1rem;
}
thead,
tbody,
tfoot {
  border: 1px solid #f2f2f2;
  background-color: #fff;
}

caption {
  padding: 0.5rem 0.625rem 0.625rem;
  font-weight: bold;
}

thead {
  background: #f9f9f9;
  color: #112226;
}

tfoot {
  background: #f2f2f2;
  color: #112226;
}

thead tr,
tfoot tr {
  background: transparent;
}
thead th,
thead td,
tfoot th,
tfoot td {
  padding: 0.5rem 0.625rem 0.625rem;
  font-weight: bold;
  text-align: left;
}

tbody th,
tbody td {
  padding: 0.5rem 0.625rem 0.625rem;
}

tbody tr:nth-child(even) {
  border-bottom: 0;
  background-color: #f2f2f2;
}

table.unstriped tbody {
  background-color: #fff;
}
table.unstriped tbody tr {
  border-bottom: 0;
  border-bottom: 1px solid #f2f2f2;
  background-color: #fff;
}

@media screen and (max-width: 63.9375em) {
  table.stack thead {
    display: none;
  }
  table.stack tfoot {
    display: none;
  }
  table.stack tr,
  table.stack th,
  table.stack td {
    display: block;
  }
  table.stack td {
    border-top: 0;
  }
}

table.scroll {
  display: block;
  width: 100%;
  overflow-x: auto;
}

table.hover thead tr:hover {
  background-color: #f4f4f4;
}
table.hover tfoot tr:hover {
  background-color: #ededed;
}
table.hover tbody tr:hover {
  background-color: #fafafa;
}
table.hover:not(.unstriped) tr:nth-of-type(even):hover {
  background-color: #ededed;
}

.table-scroll {
  overflow-x: auto;
}
.table-scroll table {
  width: auto;
}

.tabs {
  margin: 0;
  border: 1px solid #F8F8F8;
  background: #fff;
  list-style-type: none;
}
.tabs::before, .tabs::after {
  display: table;
  content: ' ';
}
.tabs::after {
  clear: both;
}

.tabs.vertical > li {
  display: block;
  float: none;
  width: auto;
}

.tabs.simple > li > a {
  padding: 0;
}
.tabs.simple > li > a:hover {
  background: transparent;
}

.tabs.primary {
  background: #18838b;
}
.tabs.primary > li > a {
  color: #fff;
}
.tabs.primary > li > a:hover, .tabs.primary > li > a:focus {
  background: #1b919a;
}

.tabs-title {
  float: left;
}
.tabs-title > a {
  display: block;
  padding: 1.25rem 1.5rem;
  font-size: 0.75rem;
  line-height: 1;
  color: #18838b;
}
.tabs-title > a:hover {
  background: #fff;
  color: #157178;
}
.tabs-title > a:focus, .tabs-title > a[aria-selected='true'] {
  background: #F8F8F8;
  color: #18838b;
}

.tabs-content {
  border: 1px solid #F8F8F8;
  border-top: 0;
  background: #fff;
  color: #112226;
  transition: all 0.5s ease;
}

.tabs-content.vertical {
  border: 1px solid #F8F8F8;
  border-left: 0;
}

.tabs-panel {
  display: none;
  padding: 1rem;
}
.tabs-panel[aria-hidden="false"] {
  display: block;
}

.thumbnail {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 1rem;
  border: solid 4px #fff;
  border-radius: 1rem;
  box-shadow: 0 0 0 1px rgba(17, 34, 38, 0.2);
  line-height: 0;
}

a.thumbnail {
  transition: box-shadow 200ms ease-out;
}
a.thumbnail:hover, a.thumbnail:focus {
  box-shadow: 0 0 6px 1px rgba(24, 131, 139, 0.5);
}
a.thumbnail image {
  box-shadow: none;
}

.title-bar {
  padding: 0.5rem;
  background: #112226;
  color: #fff;
}
.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: bold;
}

.has-tip {
  position: relative;
  display: inline-block;
  border-bottom: dotted 1px #32444A;
  font-weight: bold;
  cursor: help;
}

.tooltip {
  position: absolute;
  top: calc(100% + 0.6495rem);
  z-index: 1200;
  max-width: 10rem;
  padding: 0.75rem;
  border-radius: 1rem;
  background-color: #112226;
  font-size: 90%;
  color: #fff;
}
.tooltip::before {
  display: block;
  width: 0;
  height: 0;
  border: inset 0.75rem;
  content: '';
  border-top-width: 0;
  border-bottom-style: solid;
  border-color: transparent transparent #112226;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
}
.tooltip.top::before {
  display: block;
  width: 0;
  height: 0;
  border: inset 0.75rem;
  content: '';
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: #112226 transparent transparent;
  top: 100%;
  bottom: auto;
}
.tooltip.left::before {
  display: block;
  width: 0;
  height: 0;
  border: inset 0.75rem;
  content: '';
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent #112226;
  top: 50%;
  bottom: auto;
  left: 100%;
  transform: translateY(-50%);
}
.tooltip.right::before {
  display: block;
  width: 0;
  height: 0;
  border: inset 0.75rem;
  content: '';
  border-left-width: 0;
  border-right-style: solid;
  border-color: transparent #112226 transparent transparent;
  top: 50%;
  right: 100%;
  bottom: auto;
  left: auto;
  transform: translateY(-50%);
}

.top-bar {
  padding: 0.5rem;
}
.top-bar::before, .top-bar::after {
  display: table;
  content: ' ';
}
.top-bar::after {
  clear: both;
}
.top-bar,
.top-bar ul {
  background-color: #F8F8F8;
}
.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: 40em) {
  .top-bar .top-bar-left,
  .top-bar .top-bar-right {
    width: auto;
  }
}
@media screen and (max-width: 39.9375em) {
  .top-bar.stacked-for-iphone .top-bar-left,
  .top-bar.stacked-for-iphone .top-bar-right {
    width: 100%;
  }
}
@media screen and (max-width: 63.9375em) {
  .top-bar.stacked-for-medium .top-bar-left,
  .top-bar.stacked-for-medium .top-bar-right {
    width: 100%;
  }
}
@media screen and (max-width: 74.9375em) {
  .top-bar.stacked-for-large .top-bar-left,
  .top-bar.stacked-for-large .top-bar-right {
    width: 100%;
  }
}
.top-bar.stacked-for-xlarge .top-bar-left,
.top-bar.stacked-for-xlarge .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;
}

.hide {
  display: none !important;
}

.invisible {
  visibility: hidden;
}

@media screen and (max-width: 21.8125em) {
  .hide-for-small-only {
    display: none !important;
  }
}

@media screen and (max-width: 0em), screen and (min-width: 21.875em) {
  .show-for-small-only {
    display: none !important;
  }
}

@media print, screen and (min-width: 21.875em) {
  .hide-for-iphone {
    display: none !important;
  }
}

@media screen and (max-width: 21.8125em) {
  .show-for-iphone {
    display: none !important;
  }
}

@media screen and (min-width: 21.875em) and (max-width: 39.9375em) {
  .hide-for-iphone-only {
    display: none !important;
  }
}

@media screen and (max-width: 21.8125em), screen and (min-width: 40em) {
  .show-for-iphone-only {
    display: none !important;
  }
}

@media print, screen and (min-width: 40em) {
  .hide-for-medium {
    display: none !important;
  }
}

@media screen and (max-width: 39.9375em) {
  .show-for-medium {
    display: none !important;
  }
}

@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .hide-for-medium-only {
    display: none !important;
  }
}

@media screen and (max-width: 39.9375em), screen and (min-width: 64em) {
  .show-for-medium-only {
    display: none !important;
  }
}

@media print, screen and (min-width: 64em) {
  .hide-for-large {
    display: none !important;
  }
}

@media screen and (max-width: 63.9375em) {
  .show-for-large {
    display: none !important;
  }
}

@media screen and (min-width: 64em) and (max-width: 74.9375em) {
  .hide-for-large-only {
    display: none !important;
  }
}

@media screen and (max-width: 63.9375em), screen and (min-width: 75em) {
  .show-for-large-only {
    display: none !important;
  }
}

@media screen and (min-width: 75em) {
  .hide-for-xlarge {
    display: none !important;
  }
}

@media screen and (max-width: 74.9375em) {
  .show-for-xlarge {
    display: none !important;
  }
}

@media screen and (min-width: 75em) {
  .hide-for-xlarge-only {
    display: none !important;
  }
}

@media screen and (max-width: 74.9375em) {
  .show-for-xlarge-only {
    display: none !important;
  }
}

.show-for-sr,
.show-on-focus {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.show-on-focus:active, .show-on-focus:focus {
  position: static !important;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
}

.show-for-landscape,
.hide-for-portrait {
  display: block !important;
}
@media screen and (orientation: landscape) {
  .show-for-landscape,
  .hide-for-portrait {
    display: block !important;
  }
}
@media screen and (orientation: portrait) {
  .show-for-landscape,
  .hide-for-portrait {
    display: none !important;
  }
}

.hide-for-landscape,
.show-for-portrait {
  display: none !important;
}
@media screen and (orientation: landscape) {
  .hide-for-landscape,
  .show-for-portrait {
    display: none !important;
  }
}
@media screen and (orientation: portrait) {
  .hide-for-landscape,
  .show-for-portrait {
    display: block !important;
  }
}

.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;
}

@font-face {
  font-family: 'hk_groteskmedium';
  src: url("../fonts/hkgrotesk-medium-webfont.woff2") format("woff2"), url("../fonts/hkgrotesk-medium-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'hk_groteskregular';
  src: url("../fonts/hkgrotesk-regular-webfont.woff2") format("woff2"), url("../fonts/hkgrotesk-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'hk_grotesksemibold';
  src: url("../fonts/hkgrotesk-semibold-webfont.woff2") format("woff2"), url("../fonts/hkgrotesk-semibold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
/************************************************

Stylesheet: Main Stylesheet

*************************************************/
/*********************
GENERAL STYLES
*********************/
body, html {
  background-color: #18838b;
}
body .off-canvas-wrapper, html .off-canvas-wrapper {
  background-color: #F8F8F8;
}

@media screen and (max-width: 21.8125em) {
  .off-canvas-wrapper {
    padding-top: 4rem;
  }
}
@media screen and (min-width: 64em) and (max-width: 74.9375em) {
  .row {
    max-width: 980px;
  }
}
@media screen and (min-width: 75em) {
  .row {
    max-width: 1150px;
  }
}
.gutter {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media print, screen and (min-width: 40em) {
  .gutter {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media print, screen and (min-width: 64em) {
  .gutter {
    padding-left: 0;
    padding-right: 0;
  }
}

div.section {
  position: relative;
  padding-top: 3rem;
  padding-bottom: 5rem;
}
@media print, screen and (min-width: 40em) {
  div.section {
    padding-top: 5rem;
    padding-bottom: 7rem;
  }
}
@media print, screen and (min-width: 64em) {
  div.section {
    padding-top: 6rem;
    padding-bottom: 8.5rem;
  }
}
div.section > .page-title {
  margin-top: 0;
}
div.section:after {
  content: "";
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 0;
  height: 2rem;
  background: url(../svg/lines.svg) repeat-x left bottom;
}
@media print, screen and (min-width: 40em) {
  div.section:after {
    left: 3rem;
    right: 3rem;
  }
}
@media print, screen and (min-width: 64em) {
  div.section:after {
    left: 0;
    right: 0;
  }
}
div.section:last-child:after, div.section:first-child:after {
  display: none;
}
div.section:first-child {
  padding: 0;
}
div.section:last-child {
  padding-bottom: 0;
}
div.section .columns:last-child .panel {
  margin-bottom: 0;
}

#content #inner-content {
  padding: 1rem 0 2rem;
}
@media print, screen and (min-width: 40em) {
  #content #inner-content {
    padding: 0 0 4rem;
  }
}
@media print, screen and (min-width: 64em) {
  #content #inner-content {
    padding: 0 0 4rem;
  }
}

.home .banner.gutter .column:last-child .panel, .home .banner.gutter .columns:last-child .panel {
  margin-bottom: 0;
}
@media print, screen and (min-width: 40em) {
  .home .banner.gutter {
    margin-bottom: 0;
  }
}
.home .page-title {
  margin-top: 0;
}
.home #content #inner-content {
  padding-top: 0;
}

.archive #content #inner-content {
  padding-top: 2rem;
}
@media print, screen and (min-width: 40em) {
  .archive #content #inner-content {
    padding-top: 6rem;
  }
}
@media print, screen and (min-width: 64em) {
  .archive #content #inner-content {
    padding-top: 0;
  }
}
.archive .page-title {
  margin-bottom: 2.5rem;
}
@media print, screen and (min-width: 40em) {
  .archive .page-title {
    margin-bottom: 4rem;
  }
}
.archive main {
  background: url(../svg/lines.svg) repeat-x;
  padding-top: 5rem;
}
.archive div.section {
  padding-top: 0;
  padding-bottom: 4em;
  margin-bottom: 4em;
}
@media print, screen and (min-width: 40em) {
  .archive div.section {
    padding-bottom: 6em;
    margin-bottom: 7.5em;
  }
}
.archive div.section:first-of-type .columns:first-child .article-header {
  margin-left: 0;
}
@media print, screen and (min-width: 40em) {
  .archive div.section:first-of-type .columns:first-child .article-header {
    margin-right: 15%;
  }
}
.archive div.section:first-of-type .columns:first-child .featured-image {
  position: relative;
}
.archive div.section:first-of-type .columns:first-child .featured-image:after {
  content: "";
  margin: 0;
  background: #18838b;
  position: absolute;
  top: calc(100% - 3rem);
  right: 0;
  height: 14rem;
  width: 65%;
  z-index: 1;
}
@media print, screen and (min-width: 40em) {
  .archive div.section:first-of-type .columns:first-child .featured-image:after {
    top: 100%;
    height: 5rem;
    right: 5%;
    width: 45%;
    z-index: -1;
  }
}
.archive.author .page-title {
  margin-bottom: 1.5rem;
}
@media print, screen and (min-width: 40em) {
  .archive.author .page-title {
    margin-bottom: 2rem;
  }
}
.archive.author .taxonomy-description {
  font-size: 1.25rem;
  margin-bottom: 0;
  padding-bottom: 0;
}
@media print, screen and (min-width: 40em) {
  .archive.author .taxonomy-description {
    font-size: 1.15rem;
    margin-bottom: 3rem;
  }
}
@media print, screen and (min-width: 64em) {
  .archive.author .taxonomy-description {
    font-size: 1.25rem;
  }
}
.archive.author #avatar {
  margin-bottom: 3rem;
}
@media print, screen and (min-width: 64em) {
  .archive.author #avatar {
    margin-bottom: 4rem;
  }
}

/*********************
LINK STYLES
*********************/
a, a:visited {
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
a:link, a:visited:link {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
}
a:hover, a:visited:hover {
  opacity: .7;
}

button, input, optgroup, select, textarea {
  font-family: "hk_grotesksemibold", sans-serif;
}

.button {
  padding: .65rem 1rem .7rem;
}

a:focus, img:focus,
a:hover, img:hover {
  outline: none;
}

.newsletter {
  margin-bottom: 1.5rem;
}
.newsletter [type='email'],
.newsletter [type='email']:focus {
  max-width: 95%;
  height: auto;
  padding: 0.6rem 0.5rem 0.5rem .7rem;
  border: solid 1px #112226;
  box-shadow: none;
}
.newsletter [type='email']:focus {
  -webkit-box-shadow: inset 0 0 1rem 0 rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 0 1rem 0 rgba(0, 0, 0, 0.05);
}

/*********************
H1, H2, H3, H4, H5 P STYLES
*********************/
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5 {
  font-family: "kepler-std", serif;
  letter-spacing: -0.03rem;
  line-height: 1.2;
}
h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a {
  color: #112226;
}
h1 b, h1 strong, .h1 b, .h1 strong, h2 b, h2 strong, .h2 b, .h2 strong, h3 b, h3 strong, .h3 b, .h3 strong, h4 b, h4 strong, .h4 b, .h4 strong, h5 b, h5 strong, .h5 b, .h5 strong {
  font-weight: normal;
}

h1, .h1 {
  line-height: 1.15;
}

h2, .h2 {
  margin: 4rem 0 1.5rem;
}
h2 a:hover,
h2 a:focus, .h2 a:hover,
.h2 a:focus {
  color: #112226;
}

h3, .h3 {
  line-height: 1.4;
}

p, li {
  font-size: 1.1rem;
}

p {
  margin-bottom: 2.2rem;
}

label {
  font-family: "hk_grotesksemibold", sans-serif;
  margin-top: 2rem;
  margin-bottom: .2rem;
  font-size: 1rem;
}

.field-group ul {
  margin-left: 0;
  list-style-type: none;
}
.field-group ul li {
  display: inline;
  margin-right: 1rem;
}
.field-group label {
  margin: 0 0 0 .7rem;
}

/*********************
HEADER STYLES
*********************/
.top-bar {
  background-color: #F8F8F8;
  padding: 2.5rem 0 3rem;
}
@media print, screen and (min-width: 64em) {
  .top-bar {
    padding: 3.5rem 0 4.5rem;
  }
}
.top-bar ul.off-canvas-list li {
  list-style: none;
}
.top-bar .logo {
  float: left;
  max-width: 18rem;
}
@media screen and (min-width: 75em) {
  .top-bar .logo {
    max-width: 22rem;
  }
}
.top-bar .title-area {
  z-index: 1;
}

/*********************
NAVIGATION STYLES
*********************/
.search-panel {
  position: relative;
  border-left: solid 1px #32444A;
  border-right: solid 1px #32444A;
  height: 20px;
  z-index: 100;
  margin-left: 1rem;
}
@media print, screen and (min-width: 40em) {
  .search-panel {
    margin-left: 1.5rem;
  }
}
.search-panel .search-icon {
  text-indent: -9999px;
  display: inline-block;
  height: 20px;
  width: 25px;
  margin: 0 .8rem;
  -webkit-transition: opacity 0.6s linear;
  -moz-transition: opacity 0.6s linear;
  -ms-transition: opacity 0.6s linear;
  -o-transition: opacity 0.6s linear;
  transition: opacity 0.6s linear;
  background: transparent url(../svg/search-icon-green.svg) no-repeat center center;
}
.search-panel .search-icon:focus {
  opacity: 1;
}
.search-panel .search-overlay {
  transform: translateY(-100%);
  position: absolute;
  right: -1px;
  top: -1.3rem;
  bottom: -1.3rem;
  background: #1C2D31;
  width: 400px;
  opacity: 0;
  -webkit-transition: opacity 0.2s linear, all 0.6s cubic-bezier(0.2, 1, 0.22, 1);
  -moz-transition: opacity 0.2s linear, all 0.6s cubic-bezier(0.2, 1, 0.22, 1);
  -ms-transition: opacity 0.2s linear, all 0.6s cubic-bezier(0.2, 1, 0.22, 1);
  -o-transition: opacity 0.2s linear, all 0.6s cubic-bezier(0.2, 1, 0.22, 1);
  transition: opacity 0.2s linear, all 0.6s cubic-bezier(0.2, 1, 0.22, 1);
}
@media screen and (max-width: 21.8125em) {
  .search-panel .search-overlay {
    right: calc(0% - 3.7rem);
    width: 280px;
  }
}
.search-panel .search-overlay .cancel-button {
  color: #fff;
  position: absolute;
  right: 1rem;
  top: 1.3rem;
  font-size: .85rem;
  font-family: "hk_grotesksemibold", sans-serif;
}
.search-panel .search-overlay .search-form {
  float: right;
}
.search-panel .search-overlay .search-form label {
  margin: 0;
  display: inline-block;
}
.search-panel .search-overlay .search-form label .search-field {
  border-radius: 0 !important;
  position: absolute;
  left: 0;
  margin: 0;
  top: 0;
  bottom: 0;
  right: 0;
  height: auto;
  background: #1C2D31;
  color: #fff;
  box-shadow: none;
  padding: 1rem 7rem 1rem 1.5rem;
  max-width: 100%;
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -ms-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}
.search-panel .search-overlay .search-form label .search-field:active, .search-panel .search-overlay .search-form label .search-field:focus,
.search-panel .search-overlay .search-form label .search-field :-webkit-autofill {
  outline: none;
  border: none;
  box-shadow: none;
  background: #233438;
}
.search-panel .search-overlay .search-form .button {
  position: absolute;
  right: 4.5rem;
  top: 1rem;
  margin: 0;
  width: auto;
  position: relative;
  padding: .4rem .9rem .5rem;
}
.search-panel.is-active .search-overlay {
  display: block;
  opacity: 1;
  width: 500px;
  transform: translateY(0);
}
@media screen and (max-width: 21.8125em) {
  .search-panel.is-active .search-overlay {
    right: calc(0% - 3.7rem);
    width: 320px;
  }
}

.search-panel-alt {
  border-color: #DBDEDF;
}
.search-panel-alt .search-overlay {
  background: #fff;
  transform: translateY(-150%);
  right: -1px;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.04);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.04);
}
.search-panel-alt .search-overlay .cancel-button {
  color: #18838b;
}
.search-panel-alt .search-overlay .search-form label .search-field {
  background: #fff;
  border: none;
  color: #112226;
  border: solid 1px #fff !important;
}
.search-panel-alt .search-overlay .search-form label .search-field:active, .search-panel-alt .search-overlay .search-form label .search-field:focus,
.search-panel-alt .search-overlay .search-form label .search-field :-webkit-autofill {
  background: #fff;
  border-color: #18838b !important;
}
.search-panel-alt.is-active .search-overlay {
  width: 510px;
}

.menu.horizontal {
  float: right;
}
.menu.horizontal li {
  padding: 0;
}
.menu.horizontal li a {
  padding: .1rem;
  margin: 0 .7rem;
  font-family: "hk_grotesksemibold", sans-serif;
  font-size: .91rem;
  color: #112226;
}
@media screen and (min-width: 75em) {
  .menu.horizontal li a {
    font-size: 1rem;
    margin: 0 .8rem;
  }
}
.menu.horizontal li.active > a, .menu.horizontal li.is-active.current-menu-parent > a {
  color: #18838b;
  background: none;
}
.menu.horizontal li:last-child:not(.button) > a {
  padding-right: 0;
  margin-right: 0;
}
.menu.horizontal li:last-child a {
  padding-left: 1rem;
}
.menu.horizontal ul.is-dropdown-submenu {
  background: rgba(255, 255, 255, 0.98);
  border: none;
  padding: 1rem;
  z-index: 10;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.04);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.04);
}
.menu.horizontal ul.is-dropdown-submenu li a {
  margin: 0;
  padding: .7rem;
}
.menu.horizontal ul.is-dropdown-submenu li a:hover {
  color: #18838b;
}
.menu.horizontal.dropdown > li.is-dropdown-submenu-parent > a::before {
  display: block;
  width: 0;
  height: 0;
  border: inset 5px;
  position: absolute;
  top: .55rem;
  left: 0;
  content: '';
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: #18838b transparent transparent;
}
.menu.horizontal.dropdown > li.is-dropdown-submenu-parent > a::after {
  display: none;
}
.menu.horizontal li.opens-left > .is-dropdown-submenu {
  top: calc(100% + 1.2rem);
}

.header-links {
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 75em) {
  .header-links {
    margin-bottom: 1.8rem;
  }
}
.header-links .menu.horizontal {
  float: none;
  padding-left: .4rem;
}
@media print, screen and (min-width: 40em) {
  .header-links .menu.horizontal {
    padding-left: .9rem;
  }
}
.header-links .menu.horizontal li a {
  font-size: .85rem;
  padding: 0 0.8rem;
  margin: 0;
  font-family: "hk_grotesksemibold", sans-serif;
  font-size: .6rem;
  text-transform: uppercase;
  letter-spacing: 0.02rem;
  color: #4e3838;
  border-left: solid 1px #DBDEDF;
  vertical-align: middle;
}
.header-links .menu.horizontal li a[href*="facebook.com"], .header-links .menu.horizontal li a[href*="twitter.com"], .header-links .menu.horizontal li a[href*="instagram.com"], .header-links .menu.horizontal li a[href*="warwick.padlet.org"] {
  margin: 0;
  padding: 0;
  border: none;
  width: 1.8rem;
  font-size: 0.9rem;
}
.header-links .menu.horizontal li.menu-button {
  padding: 0;
  position: relative;
  top: -.3rem;
}
.header-links .menu.horizontal li.menu-button a {
  color: #fff;
  padding: .28rem .8rem .3rem;
  background: #18838b;
  display: inline-block;
  height: auto;
  border-radius: 1rem;
  text-transform: none;
  letter-spacing: 0;
  font-family: "hk_grotesksemibold", sans-serif;
  font-size: .7rem;
  border: none;
}

.menu-overlay {
  height: 16px;
  padding-left: 0;
  width: 2.4rem;
}
.menu-overlay .menu-icon {
  vertical-align: top;
  float: right;
}
.menu-overlay .menu-icon::after {
  background: #18838b;
  box-shadow: 0 7px 0 #18838b, 0 14px 0 #18838b;
}

.top-bar-slim {
  background: #112226;
  width: 100%;
  padding: 1rem 1.1rem;
  position: fixed;
  z-index: 210;
  left: 0;
  top: 0;
  right: 0;
}
.top-bar-slim a {
  color: white !important;
}
.top-bar-slim .top-bar-left {
  display: flex;
  position: relative;
  overflow: hidden;
}
.top-bar-slim .top-bar-left:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 6rem;
  background: rgba(17, 34, 38, 0);
  background: linear-gradient(90deg, rgba(17, 34, 38, 0) 0%, rgba(17, 34, 38, 0.99) 90%);
}
.top-bar-slim .logo-icon {
  z-index: 100;
  position: relative;
}
.top-bar-slim .logo-icon img {
  height: 30px;
  width: 30px;
}
.top-bar-slim .current-page {
  margin: 0 -2rem 0 1.3rem;
  color: #fff;
  white-space: nowrap;
  position: absolute;
  left: 2rem;
  top: .1rem;
  font-family: "hk_grotesksemibold", sans-serif;
  font-size: 1rem;
  line-height: 1.4;
}
@media print, screen and (min-width: 64em) {
  .top-bar-slim .current-page {
    margin-right: 0;
  }
}
.top-bar-slim .current-page a {
  font-family: "hk_groteskmedium", sans-serif;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  font-size: .8rem;
  margin-right: 1rem;
}
.top-bar-slim .header-links {
  max-width: 100%;
  margin: 0;
}
.top-bar-slim .header-links .menu-overlay.close {
  padding-left: 0;
}
.top-bar-slim .header-links .menu-overlay.close button {
  display: block;
  cursor: pointer;
  float: right;
}
.top-bar-slim .header-links .menu-overlay.close img {
  vertical-align: top;
}
.top-bar-slim .header-links .menu.horizontal li.menu-button {
  top: -.2rem;
}
.top-bar-slim .header-links .menu.secondary li:not(.menu-button) {
  display: none;
}

header.top-bar-slim {
  transform: translateY(0%);
}
@media print, screen and (min-width: 64em) {
  header.top-bar-slim {
    transform: translateY(-100%);
  }
}
header.headroom {
  will-change: transform;
  transition: opacity 100ms linear, transform 200ms ease;
}
header.headroom--pinned {
  transform: translateY(0%);
  opacity: 1;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.3);
}
header.headroom--unpinned {
  transform: translateY(-100%);
}
header.headroom--top {
  transform: translateY(0%);
}
@media print, screen and (min-width: 64em) {
  header.headroom--top {
    transform: translateY(-100%);
  }
}
header.headroom--top {
  opacity: 1;
}
@media print, screen and (min-width: 64em) {
  header.headroom--top {
    opacity: 0;
  }
}

.single-post header.top-bar-slim,
.single-blog header.top-bar-slim,
.single-podcast header.top-bar-slim,
.page-template-template-blog header.top-bar-slim,
.page-template-template-podcast header.top-bar-slim {
  transform: translateY(0%);
}
.single-post header.headroom--pinned,
.single-blog header.headroom--pinned,
.single-podcast header.headroom--pinned,
.page-template-template-blog header.headroom--pinned,
.page-template-template-podcast header.headroom--pinned {
  transform: translateY(0%);
  opacity: 1;
}
.single-post header.headroom--unpinned,
.single-blog header.headroom--unpinned,
.single-podcast header.headroom--unpinned,
.page-template-template-blog header.headroom--unpinned,
.page-template-template-podcast header.headroom--unpinned {
  transform: translateY(-100%);
}
.single-post header.headroom--top,
.single-blog header.headroom--top,
.single-podcast header.headroom--top,
.page-template-template-blog header.headroom--top,
.page-template-template-podcast header.headroom--top {
  transform: translateY(-100%);
}
.single-post header.headroom--top,
.single-blog header.headroom--top,
.single-podcast header.headroom--top,
.page-template-template-blog header.headroom--top,
.page-template-template-podcast header.headroom--top {
  opacity: 1;
  transform: translateY(0%);
}

@media print, screen and (min-width: 40em) {
  .page-template-template-blog header,
  .page-template-template-podcast header {
    transition: all 200ms ease, opacity 100ms linear, background 400ms linear;
  }
  .page-template-template-blog header.headroom--pinned, .page-template-template-blog header.headroom--unpinned,
  .page-template-template-podcast header.headroom--pinned,
  .page-template-template-podcast header.headroom--unpinned {
    background: rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 0 15px 0 transparent;
    box-shadow: 0 0 15px 0 transparent;
  }
  .page-template-template-blog header.headroom--not-top,
  .page-template-template-podcast header.headroom--not-top {
    background: rgba(17, 34, 38, 0.98);
    -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.04);
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.04);
  }
}
#off-canvas.is-open + #off-canvas-content .top-bar-slim.headroom {
  transform: translateY(0%) !important;
  opacity: 1 !important;
  box-shadow: none !important;
}

/* Full nav in footer */
.full-nav h3 {
  color: #fff;
  font-family: "hk_grotesksemibold", sans-serif;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: .1rem;
}
.full-nav .menu.vertical {
  margin: 1rem 0 2rem;
}
.full-nav .menu.vertical li {
  border-bottom: solid 1px rgba(255, 255, 255, 0.06);
}
.full-nav .menu.vertical li:last-child {
  border: none;
}
.full-nav .menu.vertical li a {
  font-size: .8rem;
  color: #c9a95e;
  padding: .8rem 0;
}
.full-nav .menu.vertical li.active a,
.full-nav .menu.vertical li a:hover {
  color: #fff;
  opacity: 1;
  background: none;
}

/* Full nav in overlay */
.off-canvas {
  opacity: 0;
  transform: translateY(-100%);
  background: rgba(17, 34, 38, 0.99);
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media print, screen and (min-width: 40em) {
  .off-canvas {
    align-items: center;
    display: flex;
  }
}
.off-canvas.is-open {
  opacity: 1;
  z-index: 200;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.off-canvas.is-open .full-nav {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}
.off-canvas.position-top {
  bottom: 0;
  height: auto;
  padding: 2rem;
}
.off-canvas .top-bar-slim {
  background-color: transparent;
}
.off-canvas .full-nav {
  margin-top: 4rem;
  width: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.6s linear, transform 0.6s cubic-bezier(0.2, 1, 0.22, 1);
  -moz-transition: opacity 0.6s linear, transform 0.6s cubic-bezier(0.2, 1, 0.22, 1);
  -ms-transition: opacity 0.6s linear, transform 0.6s cubic-bezier(0.2, 1, 0.22, 1);
  -o-transition: opacity 0.6s linear, transform 0.6s cubic-bezier(0.2, 1, 0.22, 1);
  transition: opacity 0.6s linear, transform 0.6s cubic-bezier(0.2, 1, 0.22, 1);
  transform: scale3d(3, 3, 3);
}
@media print, screen and (min-width: 40em) {
  .off-canvas .full-nav {
    margin-top: 0rem;
  }
}
.off-canvas .full-nav h3 {
  font-size: 1.4rem;
}
.off-canvas .full-nav .menu.vertical {
  margin: 1rem 0 3rem;
}
@media print, screen and (min-width: 40em) {
  .off-canvas .full-nav .menu.vertical {
    margin: 2rem 0 0;
  }
}
.off-canvas .full-nav .menu.vertical li {
  border: none;
  font-family: "hk_grotesksemibold", sans-serif;
}
.off-canvas .full-nav .menu.vertical li a {
  font-size: 1.2rem;
  padding: .4rem 0;
  color: #c9a95e;
}
.off-canvas .full-nav .menu.vertical li a:hover {
  color: #18838b;
  opacity: 1;
}
@media print, screen and (min-width: 40em) {
  .off-canvas .full-nav .menu.vertical li a {
    font-size: 1.5rem;
    padding: .5rem 0;
  }
}

.page-navigation {
  text-align: center;
  width: 100%;
}
.page-navigation .pagination {
  display: inline-block;
}
.page-navigation .pagination li {
  border: solid 1px #DBDEDF;
  margin: 0 .3rem;
  font-size: .8rem;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.page-navigation .pagination li:hover, .page-navigation .pagination li.current {
  border-color: #18838b;
}
.page-navigation .pagination li:empty {
  border: none;
}
.page-navigation .pagination li a:hover {
  opacity: 1;
}

/*********************
POSTS & CONTENT STYLES
*********************/
.home .panel.large .featured-image:after {
  top: calc(100% - 1.5rem);
}
@media print, screen and (min-width: 64em) {
  .home .panel.large .featured-image:after {
    top: 4rem;
  }
}
.home .panel.large.banner {
  margin-bottom: 2rem;
}
.home .panel.large .article-header {
  margin-right: 1.5rem;
}
@media print, screen and (min-width: 64em) {
  .home .panel.large .article-header {
    margin-right: 0;
  }
}

.page-title {
  position: relative;
  display: inline-block;
  font-family: "kepler-std", serif;
  font-size: 2.8rem;
}
@media print, screen and (min-width: 64em) {
  .page-title {
    margin-bottom: 3rem;
    font-size: 3rem;
  }
}
@media screen and (min-width: 75em) {
  .page-title {
    margin-bottom: 3rem;
    font-size: 3.4rem;
  }
}
.page-title:after {
  content: "";
  display: block;
  position: absolute;
  background: #112226;
  opacity: .9;
  height: 3px;
  bottom: 2%;
  left: 0;
  width: 100%;
  border-radius: 10rem;
}

.taxonomy-description {
  padding: 0rem 0 3rem;
  font-family: "hk_groteskregular", sans-serif;
  font-size: 1.3rem;
}
@media print, screen and (min-width: 64em) {
  .taxonomy-description {
    font-size: 1.5rem;
    padding-bottom: 5rem;
  }
}
.taxonomy-description p {
  line-height: 1.3;
  font-size: 1.4rem;
  line-height: 1.4;
  margin: 0;
}
@media print, screen and (min-width: 40em) {
  .taxonomy-description p {
    font-size: 1.8rem;
  }
}

.search .taxonomy-description {
  margin-top: .9rem;
}

.avatar {
  position: relative;
  overflow: hidden;
  text-align: center;
  width: 100%;
  margin-top: -1rem;
  background: url(../svg/triangle.svg) bottom left;
}
@media screen and (max-width: 21.8125em) {
  .avatar {
    max-width: 240px;
    margin: 2rem auto 0;
  }
}
.avatar img {
  border-radius: 50%;
  position: relative;
  z-index: 2;
  margin: 3.5rem auto 2rem;
  width: 70%;
}

p.author {
  font-family: "hk_groteskmedium", sans-serif;
  font-size: .85rem;
  padding: .5em 0;
}
p.author a {
  color: #112226;
}
@media screen and (max-width: 21.8125em) {
  p.author {
    text-align: center;
  }
}

.panel {
  font-family: "hk_groteskregular", sans-serif;
  margin-bottom: 3rem;
}
.panel p {
  line-height: 1.4;
  margin: 0 0 1rem;
  font-family: "hk_groteskregular", sans-serif;
  color: #595959;
  font-size: .95rem;
}
@media print, screen and (min-width: 40em) {
  .panel p {
    font-size: 1rem;
  }
}
.panel h3 {
  margin: 0 0 .5rem;
  font-size: 1.4rem;
  line-height: 1.3;
}
.panel h3 a:hover {
  color: #112226;
}
@media print, screen and (min-width: 64em) {
  .panel h3 {
    font-size: 1.3rem;
  }
}
.panel .article-header {
  background: #fff;
  padding: 1.4rem;
  margin: -2rem 1rem 0 0;
  position: relative;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.04);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.04);
  margin-left: 0;
}
.panel .article-header > *:last-child {
  margin-bottom: 0;
}
@media print, screen and (min-width: 40em) {
  .panel .article-header {
    padding: 1.9rem;
    margin: -4rem 1.5rem 0 0;
  }
}
.panel:not(.has-post-thumbnail) .article-header {
  margin: 0;
}
.panel:not(.has-post-thumbnail) .article-header h3 {
  font-size: 1.8rem;
  line-height: 1.2;
  margin: 1.8rem 0 1.3rem;
}
.panel .featured-image {
  background: #F8F8F8;
}
.panel .featured-image img {
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.panel .featured-image a:hover {
  opacity: .92;
}
.panel .featured-image:hover,
.panel .featured-image:hover +
.article-header {
  -webkit-transition: transform 0.7s cubic-bezier(0.2, 1, 0.22, 1);
  -moz-transition: transform 0.7s cubic-bezier(0.2, 1, 0.22, 1);
  -ms-transition: transform 0.7s cubic-bezier(0.2, 1, 0.22, 1);
  -o-transition: transform 0.7s cubic-bezier(0.2, 1, 0.22, 1);
  transition: transform 0.7s cubic-bezier(0.2, 1, 0.22, 1);
}
@media screen and (max-width: 21.8125em) {
  .small-6 .panel h3 {
    font-size: 1rem;
    margin-bottom: 0;
  }
  .small-6 .panel .article-header {
    margin: 0 !important;
    padding: 1.1rem !important;
  }
  .small-6 .panel .byline {
    display: none;
  }
  .small-6 .panel .categories a {
    font-size: .7rem;
  }
}

.panel:not(.large) .featured-image:hover {
  transform: translateY(-0.35rem);
}
.panel:not(.large) .featured-image:hover + .article-header {
  transform: translateY(0.35rem);
}

.panel.medium h3 {
  margin-bottom: .5rem;
}
@media print, screen and (min-width: 64em) {
  .panel.medium h3 {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 75em) {
  .panel.medium h3 {
    font-size: 1.8rem;
  }
}
.panel.medium .article-header {
  padding: 2.5rem;
  margin-top: -6rem;
}
@media print, screen and (min-width: 64em) {
  .panel.medium .article-header {
    font-size: 1.5rem;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }
}

.panel.large {
  margin: 0;
}
@media print, screen and (min-width: 64em) {
  .panel.large {
    display: flex;
    flex-direction: row;
  }
}
.panel.large .article-header {
  padding: 2.5rem;
  margin: 0;
  z-index: 2;
  position: relative;
}
.panel.large .article-header h3 {
  margin-top: 2rem;
  font-size: 2rem;
  line-height: 1.1;
  font-family: "kepler-std", serif;
  margin-bottom: 1rem;
}
@media print, screen and (min-width: 64em) {
  .panel.large .article-header h3 {
    margin-top: 1rem;
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 75em) {
  .panel.large .article-header h3 {
    margin-top: auto;
    font-size: 2.6rem;
  }
}
.panel.large .article-header .categories {
  margin-bottom: auto;
}
.panel.large .article-header .categories a {
  font-size: .9rem;
}
@media print, screen and (min-width: 64em) {
  .panel.large .article-header {
    display: flex;
    flex-direction: column;
    padding: 2.5rem;
    width: 45%;
    margin-left: -10%;
    margin-top: 7rem;
    margin-bottom: -4rem;
  }
}
@media screen and (min-width: 75em) {
  .panel.large .article-header {
    padding: 3rem;
  }
}
.panel.large .featured-image {
  position: relative;
}
@media print, screen and (min-width: 64em) {
  .panel.large .featured-image {
    width: 65%;
  }
}
.panel.large .featured-image img {
  vertical-align: bottom;
}
.panel.large .featured-image:after {
  content: "";
  margin: 0;
  background: #DA577E;
  position: absolute;
  top: calc(100% - 1rem);
  right: 0;
  height: 14rem;
  width: 65%;
}
@media print, screen and (min-width: 64em) {
  .panel.large .featured-image:after {
    bottom: auto;
    top: 4rem;
    height: 4rem;
    left: 100%;
    width: 45%;
  }
}

.panel.large.featured {
  display: flex;
  flex-direction: column;
  color: lightgray;
}
@media print, screen and (min-width: 64em) {
  .panel.large.featured {
    flex-direction: row;
    margin-top: -2rem;
  }
}
.panel.large.featured .article-header {
  background: #112226;
  margin: 0;
  margin-right: 1.5rem;
  -ms-flex-order: 2;
  order: 2;
}
@media print, screen and (min-width: 64em) {
  .panel.large.featured .article-header {
    margin: 0;
    margin: 6rem -10% 0 0;
    -ms-flex-order: 1;
    order: 1;
  }
}
.panel.large.featured .article-header h3 a {
  color: #fff;
}
.panel.large.featured .article-header p {
  color: #F8F8F8;
}
.panel.large.featured .article-header .byline p a {
  color: #fff;
}
.panel.large.featured .article-header .categories a {
  color: #4e3838;
}
.panel.large.featured .article-header .categories a:first-child {
  color: #fff;
}
.panel.large.featured .article-header .categories a + a:before {
  background: #4e3838;
}
.panel.large.featured .featured-image {
  -ms-flex-order: 1;
  order: 1;
}
@media print, screen and (min-width: 64em) {
  .panel.large.featured .featured-image {
    margin: 0;
    -ms-flex-order: 2;
    order: 2;
  }
}
.panel.large.featured .featured-image:after {
  content: "";
  margin: 0;
  background: #18838b;
  position: absolute;
  top: calc(100% - 1rem);
  right: 0;
  height: 14rem;
  width: 65%;
  z-index: -1;
}
@media print, screen and (min-width: 64em) {
  .panel.large.featured .featured-image:after {
    bottom: auto;
    top: 4rem;
    height: 14rem;
    right: 100%;
    left: auto;
    width: 25%;
  }
}

.panel.blog-post .article-header {
  margin: 0;
  position: relative;
  overflow: hidden;
}
.panel.blog-post .article-header:after {
  content: "";
  background: #18838b;
  position: absolute;
  bottom: -2.5rem;
  right: -2.5rem;
  height: 4rem;
  width: 4rem;
  transform: rotate(45deg);
}

.panel.custom_cat-human-rights-news .article-header:after {
  background: #DA577E;
}

@media print, screen and (min-width: 40em) {
  .home-upper {
    margin-top: 1rem;
  }
}

@media print, screen and (min-width: 40em) {
  .home-lower .panel {
    margin-bottom: 0;
  }
}

@media print, screen and (min-width: 64em) {
  .series .taxonomy-description {
    padding: 4rem 3rem;
  }
  .series .taxonomy-description p {
    font-size: 2rem;
  }
}
@media screen and (min-width: 75em) {
  .series .taxonomy-description {
    padding: 4rem 3rem;
  }
  .series .taxonomy-description p {
    font-size: 2.2rem;
  }
}

.description {
  font-size: 20px;
  line-height: 1.5;
  margin: 0 0 3rem;
}

.panel-podcast {
  background: #112226;
}
.panel-podcast p {
  color: #fff;
  font-size: .84rem;
}
.panel-podcast .article-header {
  padding: 2em;
  display: flex;
  flex-direction: column;
}
.panel-podcast .article-header h3 {
  font-size: 1.3rem;
  line-height: 1.2;
}
.panel-podcast .article-header h3 a {
  color: #fff;
}
.panel-podcast .article-header p {
  margin-bottom: 0;
  margin-top: 1rem;
  opacity: .7;
}
@media print, screen and (min-width: 40em) {
  .panel-podcast .article-header {
    order: 2;
  }
}
.panel-podcast .featured-image {
  background-size: cover;
  position: relative;
  display: flex;
  min-height: 200px;
  flex-direction: column;
  overflow: hidden;
}
@media print, screen and (min-width: 40em) {
  .panel-podcast .featured-image {
    order: 3;
  }
}
.panel-podcast .featured-image .categories {
  padding: 1em;
  margin: auto 0 0;
  display: flex;
  flex-direction: column;
  position: relative;
}
.panel-podcast .featured-image .categories p {
  color: #fff;
  line-height: 1.3;
  font-size: 1.2rem;
  margin: 0;
}
.panel-podcast .featured-image:before {
  content: "";
  height: 8rem;
  width: 8rem;
  position: absolute;
  left: -.1rem;
  bottom: -.1rem;
  background: transparent url(../svg/triangle.svg) no-repeat left bottom;
  background-size: 100%;
  -ms-transform: rotate(90deg);
  /* IE 9 */
  -webkit-transform: rotate(90deg);
  /* Chrome, Safari, Opera */
  transform: rotate(90deg);
}
.panel-podcast aside {
  display: flex;
  flex-direction: column;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}
@media print, screen and (min-width: 40em) {
  .panel-podcast aside {
    order: 1;
  }
}
.panel-podcast aside .byline {
  margin-top: auto;
  padding: 0 2rem 2rem;
}
.panel-podcast aside .byline p {
  margin: 1rem 0 0;
}
.panel-podcast aside .episode {
  padding: 2rem 2rem 0;
  font-size: .7rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.panel-podcast aside .episode strong {
  font-size: 3rem;
  line-height: .9;
  display: block;
}

.video-audio .medium-order-1 p:first-of-type {
  font-size: 1.6rem;
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  line-height: 1.4;
  border-bottom: solid 3px #112226;
}
.video-audio .embed-container .video {
  position: relative;
}
.video-audio .embed-container .video:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -.75rem;
  left: -.75rem;
  height: 140px;
  width: 140px;
  background: transparent url(../svg/triangle-green.svg) no-repeat 50% 50%;
  background-size: contain;
  z-index: 1;
  -ms-transform: rotate(90deg);
  /* IE 9 */
  -webkit-transform: rotate(90deg);
  /* Chrome, Safari, Opera */
  transform: rotate(90deg);
}
@media print, screen and (min-width: 40em) {
  .video-audio .embed-container .video:after {
    bottom: -1.5rem;
    left: -1.5rem;
    height: 240px;
    width: 240px;
  }
}
.video-audio .embed-container .video iframe {
  border: solid 3px #112226;
  z-index: 2;
}
.video-audio .embed-container .video-caption {
  color: #4e3838;
  font-size: .8rem;
  font-family: "hk_groteskregular", sans-serif;
  margin-top: 3rem;
}

.categories {
  width: 100%;
  clear: both;
  float: left;
  margin-bottom: .7rem;
}
.categories a {
  color: #4e3838;
  font-size: .8rem;
  font-family: "hk_grotesksemibold", sans-serif;
  padding: 0;
  float: left;
}
.categories a:first-child {
  color: #112226;
}
.categories a + a:before {
  content: "";
  background: #4e3838;
  opacity: .4;
  position: relative;
  display: inline-block;
  margin: 0 .6rem;
  left: 0;
  top: .15rem;
  width: 1px;
  height: 13px;
}

.byline p {
  font-size: .75rem;
  margin: 0;
  font-family: "hk_grotesksemibold", sans-serif;
  display: inline-block;
}
.byline p a {
  color: #DA577E;
}
.byline p + p {
  margin-left: .7rem;
  color: #4e3838;
}

.single-post,
.single-blog,
.single-podcast {
  background: #fff;
}
.single-post #content,
.single-blog #content,
.single-podcast #content {
  background: #fff;
}
.single-post #content #inner-content,
.single-blog #content #inner-content,
.single-podcast #content #inner-content {
  padding-left: 1rem;
  padding-right: 1rem;
}
@media print, screen and (min-width: 64em) {
  .single-post #content #inner-content,
  .single-blog #content #inner-content,
  .single-podcast #content #inner-content {
    padding-left: 0;
    padding-right: 0;
  }
}
.single-post .intro,
.single-post .entry-content > .medium-8 > p:first-of-type:not(.note),
.single-blog .intro,
.single-blog .entry-content > .medium-8 > p:first-of-type:not(.note),
.single-podcast .intro,
.single-podcast .entry-content > .medium-8 > p:first-of-type:not(.note) {
  font-size: 1.6rem;
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  line-height: 1.3;
  letter-spacing: -0.03rem;
  border-bottom: solid 3px #112226;
  font-family: "kepler-std", serif;
}
@media print, screen and (min-width: 40em) {
  .single-post .intro,
  .single-post .entry-content > .medium-8 > p:first-of-type:not(.note),
  .single-blog .intro,
  .single-blog .entry-content > .medium-8 > p:first-of-type:not(.note),
  .single-podcast .intro,
  .single-podcast .entry-content > .medium-8 > p:first-of-type:not(.note) {
    font-size: 1.9rem;
  }
}
@media print, screen and (min-width: 64em) {
  .single-post .intro,
  .single-post .entry-content > .medium-8 > p:first-of-type:not(.note),
  .single-blog .intro,
  .single-blog .entry-content > .medium-8 > p:first-of-type:not(.note),
  .single-podcast .intro,
  .single-podcast .entry-content > .medium-8 > p:first-of-type:not(.note) {
    font-size: 1.8rem;
  }
}
.single-post .intro strong,
.single-post .entry-content > .medium-8 > p:first-of-type:not(.note) strong,
.single-blog .intro strong,
.single-blog .entry-content > .medium-8 > p:first-of-type:not(.note) strong,
.single-podcast .intro strong,
.single-podcast .entry-content > .medium-8 > p:first-of-type:not(.note) strong {
  font-weight: normal;
}
.single-post .intro em,
.single-post .entry-content > .medium-8 > p:first-of-type:not(.note) em,
.single-blog .intro em,
.single-blog .entry-content > .medium-8 > p:first-of-type:not(.note) em,
.single-podcast .intro em,
.single-podcast .entry-content > .medium-8 > p:first-of-type:not(.note) em {
  font-style: normal;
}
.single-post .entry-content > .medium-8 > p.intro:first-of-type,
.single-post .entry-content > .medium-8 > p:first-of-type:not(.note),
.single-blog .entry-content > .medium-8 > p.intro:first-of-type,
.single-blog .entry-content > .medium-8 > p:first-of-type:not(.note),
.single-podcast .entry-content > .medium-8 > p.intro:first-of-type,
.single-podcast .entry-content > .medium-8 > p:first-of-type:not(.note) {
  font-size: 1.6rem;
}
@media print, screen and (min-width: 40em) {
  .single-post .entry-content > .medium-8 > p.intro:first-of-type,
  .single-post .entry-content > .medium-8 > p:first-of-type:not(.note),
  .single-blog .entry-content > .medium-8 > p.intro:first-of-type,
  .single-blog .entry-content > .medium-8 > p:first-of-type:not(.note),
  .single-podcast .entry-content > .medium-8 > p.intro:first-of-type,
  .single-podcast .entry-content > .medium-8 > p:first-of-type:not(.note) {
    font-size: 1.8rem;
  }
}
@media print, screen and (min-width: 64em) {
  .single-post .entry-content > .medium-8 > p.intro:first-of-type,
  .single-post .entry-content > .medium-8 > p:first-of-type:not(.note),
  .single-blog .entry-content > .medium-8 > p.intro:first-of-type,
  .single-blog .entry-content > .medium-8 > p:first-of-type:not(.note),
  .single-podcast .entry-content > .medium-8 > p.intro:first-of-type,
  .single-podcast .entry-content > .medium-8 > p:first-of-type:not(.note) {
    font-size: 1.9rem;
  }
}
.single-post .frame,
.single-blog .frame,
.single-podcast .frame {
  border: solid 3px #112226;
  padding: 2rem;
  margin-bottom: 3rem;
  font-style: italic;
}
.single-post .frame > *:last-child,
.single-blog .frame > *:last-child,
.single-podcast .frame > *:last-child {
  margin-bottom: 0;
}
.single-post iframe,
.single-blog iframe,
.single-podcast iframe {
  max-width: 100%;
}
.single-post .factbox,
.single-blog .factbox,
.single-podcast .factbox {
  position: relative;
  z-index: 20;
  margin: 3rem 0;
}
@media print, screen and (min-width: 40em) {
  .single-post .factbox,
  .single-blog .factbox,
  .single-podcast .factbox {
    float: right;
    width: 65%;
    margin: 1.5rem -53.3% 3rem 4rem;
  }
}
@media print, screen and (min-width: 40em) {
  .single-post .factbox,
  .single-blog .factbox,
  .single-podcast .factbox {
    width: 70%;
  }
}
.single-post .factbox .inner,
.single-blog .factbox .inner,
.single-podcast .factbox .inner {
  border: solid 3px #112226;
  padding: 2rem;
  background: #fff;
}
.single-post .factbox .inner p,
.single-blog .factbox .inner p,
.single-podcast .factbox .inner p {
  font-size: 1.05rem;
}
.single-post .factbox .inner h3,
.single-blog .factbox .inner h3,
.single-podcast .factbox .inner h3 {
  margin-bottom: 1.5rem;
}
.single-post .factbox .inner > *:first-child,
.single-blog .factbox .inner > *:first-child,
.single-podcast .factbox .inner > *:first-child {
  margin-top: 0;
}
.single-post .factbox .inner > *:last-child,
.single-blog .factbox .inner > *:last-child,
.single-podcast .factbox .inner > *:last-child {
  margin-bottom: 0;
}
.single-post .factbox:before,
.single-blog .factbox:before,
.single-podcast .factbox:before {
  content: "";
  position: absolute;
  top: -1rem;
  left: -1rem;
  height: 150px;
  width: 150px;
  background: transparent url(../svg/triangle-pink.svg) no-repeat 50% 50%;
  background-size: contain;
  z-index: -1;
  -ms-transform: rotate(180deg);
  /* IE 9 */
  -webkit-transform: rotate(180deg);
  /* Chrome, Safari, Opera */
  transform: rotate(180deg);
}
.single-post .byline p,
.single-blog .byline p,
.single-podcast .byline p {
  color: #4e3838;
}
.single-post .entry-title,
.single-blog .entry-title,
.single-podcast .entry-title {
  margin: 1rem 0 1rem;
}
@media print, screen and (min-width: 64em) {
  .single-post .entry-title,
  .single-blog .entry-title,
  .single-podcast .entry-title {
    margin: 1rem 0 2rem;
  }
}
.single-post .attachment-full,
.single-blog .attachment-full,
.single-podcast .attachment-full {
  margin-bottom: 2rem;
  width: 100%;
}
@media print, screen and (min-width: 40em) {
  .single-post .attachment-full,
  .single-blog .attachment-full,
  .single-podcast .attachment-full {
    margin-bottom: 5rem;
  }
}
.single-post .attachment-fullres,
.single-blog .attachment-fullres,
.single-podcast .attachment-fullres {
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
}
.single-post .tags,
.single-blog .tags,
.single-podcast .tags {
  font-size: .85rem;
  padding-bottom: 1.75rem;
}
.single-post .tags .tags-title,
.single-blog .tags .tags-title,
.single-podcast .tags .tags-title {
  margin-right: 0.5rem;
}
.single-post .tags .tags-title:before,
.single-blog .tags .tags-title:before,
.single-podcast .tags .tags-title:before {
  content: "";
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  margin-right: 0.5rem;
  vertical-align: middle;
  background: transparent url(../svg/triangle-pink.svg) no-repeat 50% 50%;
  background-size: contain;
  -ms-transform: rotate(-90deg);
  /* IE 9 */
  -webkit-transform: rotate(-90deg);
  /* Chrome, Safari, Opera */
  transform: rotate(-90deg);
}
.single-post .tags a,
.single-blog .tags a,
.single-podcast .tags a {
  display: inline-block;
  border: solid 1px rgba(0, 0, 0, 0.06);
  padding: 0.25em 1.1em;
  border-radius: 2rem;
  font-size: .65rem;
  font-family: "hk_grotesksemibold", sans-serif;
  letter-spacing: .05rem;
  color: #112226;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.single-post .tags a:hover,
.single-blog .tags a:hover,
.single-podcast .tags a:hover {
  opacity: 1;
  border-color: #DA577E;
}
.single-post .article-header.main,
.single-blog .article-header.main,
.single-podcast .article-header.main {
  padding: 1rem 0 0;
}
.single-post .article-header.main .full-width-image img,
.single-blog .article-header.main .full-width-image img,
.single-podcast .article-header.main .full-width-image img {
  width: 100%;
  margin: 2rem 0;
}
@media screen and (max-width: 21.8125em) {
  .single-post .article-header.main .full-width-image,
  .single-blog .article-header.main .full-width-image,
  .single-podcast .article-header.main .full-width-image {
    background-image: none !important;
  }
}
.single-post .article-header.main .attachment-fullres,
.single-blog .article-header.main .attachment-fullres,
.single-podcast .article-header.main .attachment-fullres {
  margin-bottom: 3rem;
}
@media print, screen and (min-width: 40em) {
  .single-post .article-header.main .byline > *,
  .single-post .article-header.main .categories > *,
  .single-blog .article-header.main .byline > *,
  .single-blog .article-header.main .categories > *,
  .single-podcast .article-header.main .byline > *,
  .single-podcast .article-header.main .categories > * {
    font-size: 1rem;
  }
}
@media screen and (max-width: 21.8125em) {
  .single-post .article-header.main > .row,
  .single-blog .article-header.main > .row,
  .single-podcast .article-header.main > .row {
    margin-right: -0.625rem;
    margin-left: -0.625rem;
  }
}
@media print, screen and (min-width: 40em) {
  .single-post .article-header.main,
  .single-blog .article-header.main,
  .single-podcast .article-header.main {
    padding: 5.5rem 0 2rem;
  }
  .single-post .article-header.main.fullwidth,
  .single-blog .article-header.main.fullwidth,
  .single-podcast .article-header.main.fullwidth {
    position: relative;
    height: calc(100vh + 1px);
    overflow: hidden;
    margin-bottom: 7rem;
    padding: 0;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
  .single-post .article-header.main.fullwidth .columns, .single-post .article-header.main.fullwidth .row,
  .single-blog .article-header.main.fullwidth .columns,
  .single-blog .article-header.main.fullwidth .row,
  .single-podcast .article-header.main.fullwidth .columns,
  .single-podcast .article-header.main.fullwidth .row {
    height: 100%;
  }
  .single-post .article-header.main.fullwidth .columns,
  .single-blog .article-header.main.fullwidth .columns,
  .single-podcast .article-header.main.fullwidth .columns {
    z-index: 2;
    padding: 7rem 2rem 4rem;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .single-post .article-header.main.fullwidth .columns .byline,
  .single-blog .article-header.main.fullwidth .columns .byline,
  .single-podcast .article-header.main.fullwidth .columns .byline {
    margin-top: auto;
  }
  .single-post .article-header.main.fullwidth .columns .byline p,
  .single-blog .article-header.main.fullwidth .columns .byline p,
  .single-podcast .article-header.main.fullwidth .columns .byline p {
    color: #112226;
  }
  .single-post .article-header.main.fullwidth .columns .entry-title,
  .single-blog .article-header.main.fullwidth .columns .entry-title,
  .single-podcast .article-header.main.fullwidth .columns .entry-title {
    margin-top: auto;
    margin-bottom: auto;
  }
}
@media print, screen and (min-width: 40em) and (min-width: 64em) {
  .single-post .article-header.main.fullwidth .columns .entry-title,
  .single-blog .article-header.main.fullwidth .columns .entry-title,
  .single-podcast .article-header.main.fullwidth .columns .entry-title {
    font-size: 3.8rem;
    line-height: 1.1;
    max-width: 60%;
  }
}
@media print, screen and (min-width: 40em) {
  .single-post .article-header.main.fullwidth .columns .categories,
  .single-blog .article-header.main.fullwidth .columns .categories,
  .single-podcast .article-header.main.fullwidth .columns .categories {
    margin-bottom: auto;
  }
  .single-post .article-header.main.fullwidth .columns .categories a:last-child,
  .single-blog .article-header.main.fullwidth .columns .categories a:last-child,
  .single-podcast .article-header.main.fullwidth .columns .categories a:last-child {
    opacity: .5;
  }
  .single-post .article-header.main.fullwidth .columns .categories a + a:before,
  .single-blog .article-header.main.fullwidth .columns .categories a + a:before,
  .single-podcast .article-header.main.fullwidth .columns .categories a + a:before {
    opacity: .4;
  }
  .single-post .article-header.main.fullwidth .full-width-image,
  .single-blog .article-header.main.fullwidth .full-width-image,
  .single-podcast .article-header.main.fullwidth .full-width-image {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    background-position: center;
    background-size: cover;
  }
  .single-post .article-header.main.fullwidth .full-width-image:after,
  .single-blog .article-header.main.fullwidth .full-width-image:after,
  .single-podcast .article-header.main.fullwidth .full-width-image:after {
    content: "";
    background: red;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0.65+0,0+100;Neutral+Density */
    background: -moz-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  }
}
@media print, screen and (min-width: 40em) and (min-width: 40em) {
  .single-post .article-header.main.fullwidth .full-width-image img,
  .single-blog .article-header.main.fullwidth .full-width-image img,
  .single-podcast .article-header.main.fullwidth .full-width-image img {
    display: none;
  }
}
@media print, screen and (min-width: 40em) {
  .single-post .article-header.main.fullwidth.white-text .columns .entry-title,
  .single-blog .article-header.main.fullwidth.white-text .columns .entry-title,
  .single-podcast .article-header.main.fullwidth.white-text .columns .entry-title {
    color: #fff;
  }
}
@media print, screen and (min-width: 40em) and (min-width: 64em) {
  .single-post .article-header.main.fullwidth.white-text .columns .entry-title,
  .single-blog .article-header.main.fullwidth.white-text .columns .entry-title,
  .single-podcast .article-header.main.fullwidth.white-text .columns .entry-title {
    text-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.15);
  }
}
@media print, screen and (min-width: 40em) {
  .single-post .article-header.main.fullwidth.white-text .columns .byline p,
  .single-blog .article-header.main.fullwidth.white-text .columns .byline p,
  .single-podcast .article-header.main.fullwidth.white-text .columns .byline p {
    color: #fff;
  }
  .single-post .article-header.main.fullwidth.white-text .columns .categories a,
  .single-post .article-header.main.fullwidth.white-text .columns .categories a:first-child,
  .single-blog .article-header.main.fullwidth.white-text .columns .categories a,
  .single-blog .article-header.main.fullwidth.white-text .columns .categories a:first-child,
  .single-podcast .article-header.main.fullwidth.white-text .columns .categories a,
  .single-podcast .article-header.main.fullwidth.white-text .columns .categories a:first-child {
    color: #fff;
  }
  .single-post .article-header.main.fullwidth.white-text .columns .categories a:last-child,
  .single-blog .article-header.main.fullwidth.white-text .columns .categories a:last-child,
  .single-podcast .article-header.main.fullwidth.white-text .columns .categories a:last-child {
    opacity: .5;
  }
  .single-post .article-header.main.fullwidth.white-text .columns .categories a + a:before,
  .single-blog .article-header.main.fullwidth.white-text .columns .categories a + a:before,
  .single-podcast .article-header.main.fullwidth.white-text .columns .categories a + a:before {
    background: #fff;
    opacity: .4;
  }
}
@media print, screen and (min-width: 64em) {
  .single-post .article-header.main,
  .single-blog .article-header.main,
  .single-podcast .article-header.main {
    padding-top: 10rem;
  }
}
.single-post .article-footer,
.single-blog .article-footer,
.single-podcast .article-footer {
  margin: 2rem 0;
}
@media print, screen and (min-width: 64em) {
  .single-post .article-footer,
  .single-blog .article-footer,
  .single-podcast .article-footer {
    margin: 4rem 0;
  }
}
.single-post .article-footer p,
.single-blog .article-footer p,
.single-podcast .article-footer p {
  margin-bottom: 0;
}
.single-post .article-footer .spaced,
.single-blog .article-footer .spaced,
.single-podcast .article-footer .spaced {
  display: inline-block;
  padding: 0 1rem;
  color: #DBDEDF;
}
.single-post .article-footer .row:first-of-type,
.single-blog .article-footer .row:first-of-type,
.single-podcast .article-footer .row:first-of-type {
  border-bottom: solid 3px #112226;
  margin-bottom: 2rem;
  padding-bottom: 0;
}
.single-post .article-footer input[type='email'],
.single-blog .article-footer input[type='email'],
.single-podcast .article-footer input[type='email'] {
  background-color: #F8F8F8;
  border: none;
  margin: 0;
}
.single-post .article-footer input[type='submit'],
.single-blog .article-footer input[type='submit'],
.single-podcast .article-footer input[type='submit'] {
  margin-left: 0;
  border: 0;
}
.single-post .article-footer .author,
.single-blog .article-footer .author,
.single-podcast .article-footer .author {
  margin-bottom: 1.75rem;
  padding: 0;
  color: #595959;
}
.single-post .article-footer .author a[rel="author"],
.single-blog .article-footer .author a[rel="author"],
.single-podcast .article-footer .author a[rel="author"] {
  color: #DA577E;
}
.single-post .social-share,
.single-blog .social-share,
.single-podcast .social-share {
  text-align: center;
}
.single-post .social-share p,
.single-blog .social-share p,
.single-podcast .social-share p {
  display: inline-block;
  margin-right: .2rem;
  font-size: .95rem;
}
.single-post .social-share a,
.single-blog .social-share a,
.single-podcast .social-share a {
  height: 24px;
  width: 24px;
  background: #112226;
  margin-left: .05rem;
  text-indent: -9999px;
  display: inline-block;
  background: transparent url(../svg/share-facebook.svg) no-repeat;
  background-size: contain;
}
.single-post .social-share a.twitter,
.single-blog .social-share a.twitter,
.single-podcast .social-share a.twitter {
  background-image: url(../svg/share-twitter.svg);
}
.single-post .social-share a.google-plus,
.single-blog .social-share a.google-plus,
.single-podcast .social-share a.google-plus {
  background-image: url(../svg/share-google.svg);
}
.single-post .social-share a.email,
.single-blog .social-share a.email,
.single-podcast .social-share a.email {
  background-image: url(../svg/share-email.svg);
}
.single-post .poetry .intro,
.single-post .poetry .entry-content > .medium-8 > p:first-of-type,
.single-blog .poetry .intro,
.single-blog .poetry .entry-content > .medium-8 > p:first-of-type,
.single-podcast .poetry .intro,
.single-podcast .poetry .entry-content > .medium-8 > p:first-of-type {
  border: none;
  padding-bottom: 1rem;
}
.single-post .poetry .medium-order-3 .poem:first-child,
.single-blog .poetry .medium-order-3 .poem:first-child,
.single-podcast .poetry .medium-order-3 .poem:first-child {
  margin-top: 4rem;
}
.single-post .poetry .medium-order-3 .row,
.single-blog .poetry .medium-order-3 .row,
.single-podcast .poetry .medium-order-3 .row {
  margin-bottom: 4rem;
}
.single-post .poetry .medium-order-3 .row .panel-text,
.single-blog .poetry .medium-order-3 .row .panel-text,
.single-podcast .poetry .medium-order-3 .row .panel-text {
  position: relative;
}
.single-post .poetry .medium-order-3 .row .panel-text:after,
.single-blog .poetry .medium-order-3 .row .panel-text:after,
.single-podcast .poetry .medium-order-3 .row .panel-text:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: .75rem;
  height: 150px;
  width: 150px;
  background: transparent url(../svg/triangle-green.svg) no-repeat 50% 50%;
  background-size: contain;
  z-index: 1;
}
@media print, screen and (min-width: 40em) {
  .single-post .poetry .medium-order-3 .row .panel-text:after,
  .single-blog .poetry .medium-order-3 .row .panel-text:after,
  .single-podcast .poetry .medium-order-3 .row .panel-text:after {
    right: 1rem;
  }
}
.single-post .poetry .medium-order-3 .row .panel-text .inner,
.single-blog .poetry .medium-order-3 .row .panel-text .inner,
.single-podcast .poetry .medium-order-3 .row .panel-text .inner {
  position: relative;
  border: solid 3px #112226;
  padding: 3rem;
  margin-right: .6rem;
  z-index: 2;
  background-color: #fff;
  margin-bottom: 1.2rem;
}
.single-post .poetry .medium-order-3 .row .panel-text .inner p,
.single-blog .poetry .medium-order-3 .row .panel-text .inner p,
.single-podcast .poetry .medium-order-3 .row .panel-text .inner p {
  font-size: 1rem;
  font-style: italic;
  opacity: .9;
  margin-bottom: 1.6rem;
}
.single-post .poetry .medium-order-3 .row .panel-text .inner h2,
.single-blog .poetry .medium-order-3 .row .panel-text .inner h2,
.single-podcast .poetry .medium-order-3 .row .panel-text .inner h2 {
  font-size: 1.8rem;
}
.single-post .poetry .medium-order-3 .row .panel-text .inner h2:first-of-type,
.single-blog .poetry .medium-order-3 .row .panel-text .inner h2:first-of-type,
.single-podcast .poetry .medium-order-3 .row .panel-text .inner h2:first-of-type {
  margin-top: 0;
}
.single-post .poetry .medium-order-3 .row .panel-text .inner > :last-child,
.single-blog .poetry .medium-order-3 .row .panel-text .inner > :last-child,
.single-podcast .poetry .medium-order-3 .row .panel-text .inner > :last-child {
  margin-bottom: 0;
}
@media print, screen and (min-width: 64em) {
  .single-post .poetry .medium-order-3 .row .panel-text .inner,
  .single-blog .poetry .medium-order-3 .row .panel-text .inner,
  .single-podcast .poetry .medium-order-3 .row .panel-text .inner {
    padding: 4rem;
  }
}
.single-post .poetry .medium-order-3 .row .panel-text.large-order-2:after,
.single-blog .poetry .medium-order-3 .row .panel-text.large-order-2:after,
.single-podcast .poetry .medium-order-3 .row .panel-text.large-order-2:after {
  right: auto;
  left: .75rem;
  -ms-transform: rotate(90deg);
  /* IE 9 */
  -webkit-transform: rotate(90deg);
  /* Chrome, Safari, Opera */
  transform: rotate(90deg);
}
@media print, screen and (min-width: 40em) {
  .single-post .poetry .medium-order-3 .row .panel-text.large-order-2:after,
  .single-blog .poetry .medium-order-3 .row .panel-text.large-order-2:after,
  .single-podcast .poetry .medium-order-3 .row .panel-text.large-order-2:after {
    left: 1rem;
  }
}
.single-post .poetry .medium-order-3 .row .panel-text.large-order-2 .inner,
.single-blog .poetry .medium-order-3 .row .panel-text.large-order-2 .inner,
.single-podcast .poetry .medium-order-3 .row .panel-text.large-order-2 .inner {
  margin-right: 0;
  margin-left: .6rem;
}
.single-post .poetry .medium-order-3 .row .panel-image,
.single-blog .poetry .medium-order-3 .row .panel-image,
.single-podcast .poetry .medium-order-3 .row .panel-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.single-post .poetry .medium-order-3 :nth-of-type(odd) .panel-text:after,
.single-blog .poetry .medium-order-3 :nth-of-type(odd) .panel-text:after,
.single-podcast .poetry .medium-order-3 :nth-of-type(odd) .panel-text:after {
  background: transparent url(../svg/triangle-pink.svg) no-repeat 50% 50%;
}
.single-post .post-series,
.single-blog .post-series,
.single-podcast .post-series {
  padding: 4rem 0 1rem;
}
.single-post .post-series > h3.post-title,
.single-blog .post-series > h3.post-title,
.single-podcast .post-series > h3.post-title {
  font-size: 1.1rem;
  font-family: "hk_grotesksemibold", sans-serif;
  position: relative;
  padding-left: 1.5rem;
  margin: 0 0 2rem;
  text-decoration: none;
}
@media print, screen and (min-width: 40em) {
  .single-post .post-series > h3.post-title,
  .single-blog .post-series > h3.post-title,
  .single-podcast .post-series > h3.post-title {
    font-size: 1.3rem;
  }
}
.single-post .post-series > h3.post-title:after,
.single-blog .post-series > h3.post-title:after,
.single-podcast .post-series > h3.post-title:after {
  content: "";
  position: absolute;
  top: .3rem;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 15px 15px;
  border-color: transparent transparent #DA577E transparent;
}
.single-post .post-series p,
.single-blog .post-series p,
.single-podcast .post-series p {
  font-size: .5rem;
}
.single-post .post-series .post,
.single-blog .post-series .post,
.single-podcast .post-series .post {
  padding: 0;
  margin-bottom: 1rem;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.08);
}
@media print, screen and (min-width: 40em) {
  .single-post .post-series .post,
  .single-blog .post-series .post,
  .single-podcast .post-series .post {
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
@media print, screen and (min-width: 40em) {
  .single-post .post-series .post .featured-image,
  .single-blog .post-series .post .featured-image,
  .single-podcast .post-series .post .featured-image {
    max-width: 30%;
  }
}
@media print, screen and (min-width: 64em) {
  .single-post .post-series .post .featured-image,
  .single-blog .post-series .post .featured-image,
  .single-podcast .post-series .post .featured-image {
    max-width: 28%;
  }
}
@media screen and (min-width: 75em) {
  .single-post .post-series .post .featured-image,
  .single-blog .post-series .post .featured-image,
  .single-podcast .post-series .post .featured-image {
    max-width: 25%;
  }
}
.single-post .post-series .post .article-header,
.single-blog .post-series .post .article-header,
.single-podcast .post-series .post .article-header {
  padding: 1.5rem;
}
.single-post .post-series .post h4,
.single-blog .post-series .post h4,
.single-podcast .post-series .post h4 {
  font-size: 1.2rem;
  padding: .6rem 0 0;
  margin: 0;
  line-height: 1.3;
}
@media print, screen and (min-width: 40em) {
  .single-post .post-series .post h4,
  .single-blog .post-series .post h4,
  .single-podcast .post-series .post h4 {
    font-size: 1.2rem;
  }
}
@media print, screen and (min-width: 64em) {
  .single-post .post-series .post h4,
  .single-blog .post-series .post h4,
  .single-podcast .post-series .post h4 {
    font-size: 1.2rem;
  }
}

.entry-content {
  font-family: Georgia, 'Times New Roman', Times, serif;
}
.entry-content a {
  text-decoration: underline;
  color: #112226;
}
.entry-content .content-area > *:first-child {
  margin-top: 0;
}
.entry-content .content-area h2, .entry-content .content-area h3 {
  font-size: 1.4rem;
  text-transform: uppercase;
  margin: 3rem 0 2rem;
  letter-spacing: 0.1rem;
  text-decoration: underline;
  font-family: "hk_grotesksemibold", sans-serif;
}
@media print, screen and (min-width: 40em) {
  .entry-content .content-area h2, .entry-content .content-area h3 {
    margin-top: 5rem;
  }
}
@media print, screen and (min-width: 64em) {
  .entry-content .content-area h2, .entry-content .content-area h3 {
    font-size: 1.6rem;
  }
}
.entry-content .content-area h2 {
  font-size: 1.5	rem;
}
@media print, screen and (min-width: 64em) {
  .entry-content .content-area h2 {
    font-size: 1.7rem;
  }
}
.entry-content hr {
  margin: 3rem 0;
  opacity: .6;
}
@media print, screen and (min-width: 64em) {
  .entry-content hr {
    margin: 4rem 0;
  }
}
.entry-content .note {
  color: #4e3838;
  font-size: 90%;
  margin-bottom: .5rem;
}
.entry-content .pullout {
  font-size: 1.6rem;
  font-family: "kepler-std", serif;
  letter-spacing: -0.03rem;
  line-height: 1.3;
  color: #112226;
}
@media print, screen and (min-width: 40em) {
  .entry-content .pullout {
    font-size: 1.8rem;
  }
}
@media print, screen and (min-width: 40em) {
  .entry-content .pullout {
    font-size: 2.1rem;
    line-height: 1.2;
  }
}
.entry-content blockquote,
.entry-content .pullout {
  margin: 3rem 0;
  position: relative;
  border: none;
  padding: 0 0 0 4.5rem;
}
.entry-content blockquote:after, .entry-content blockquote:not(.pullout):before,
.entry-content .pullout:after,
.entry-content .pullout:not(.pullout):before {
  content: "";
  display: block;
  position: absolute;
  top: .7rem;
  left: 0;
  height: 3rem;
  width: 3rem;
  background: transparent url(../svg/triangle-pink.svg) no-repeat 50% 50%;
  background-size: contain;
  z-index: 1;
  -ms-transform: rotate(270deg);
  /* IE 9 */
  -webkit-transform: rotate(270deg);
  /* Chrome, Safari, Opera */
  transform: rotate(270deg);
}
@media print, screen and (min-width: 64em) {
  .entry-content blockquote,
  .entry-content .pullout {
    padding: 0;
    margin: 4rem 0;
  }
  .entry-content blockquote:after,
  .entry-content .pullout:after {
    right: calc(100% + 2rem);
    left: auto;
    height: 3.6rem;
    width: 3.6rem;
  }
}
.entry-content blockquote p {
  text-align: left !important;
  font-size: 1.5rem;
  font-family: "kepler-std", serif;
  letter-spacing: -0.03rem;
  line-height: 1.3;
  color: #112226;
}
@media print, screen and (min-width: 64em) {
  .entry-content blockquote p {
    font-size: 1.7rem;
  }
}
.entry-content blockquote:after, .entry-content blockquote:not(.pullout):before {
  height: 1.3rem;
  width: 1.3rem;
}
.entry-content blockquote:not(.pullout):before {
  left: 1.5rem;
}
@media print, screen and (min-width: 64em) {
  .entry-content blockquote:after, .entry-content blockquote:not(.pullout):before {
    height: 1.5rem;
    width: 1.5rem;
  }
  .entry-content blockquote:not(.pullout):before {
    right: calc(100% + 3.8rem);
    left: auto;
  }
}
.entry-content > *:first-child {
  margin-top: 0;
}
.entry-content img {
  max-width: 100%;
  height: auto;
}
.entry-content p > img,
.entry-content .video {
  margin: 3rem 0;
}
@media print, screen and (min-width: 64em) {
  .entry-content p > img,
  .entry-content .video {
    margin: 4rem 0;
  }
}
.entry-content .royalSlider {
  margin: 3rem 0 4rem;
}
@media print, screen and (min-width: 40em) {
  .entry-content .royalSlider {
    margin: 4rem 0 5rem;
  }
}
.entry-content .alignleft, .entry-content img.alignleft {
  margin: .2rem 3rem 2rem 0;
  display: inline;
  float: left;
  padding: 0;
}
@media print, screen and (min-width: 40em) {
  .entry-content .alignleft, .entry-content img.alignleft {
    max-width: 40%;
  }
}
.entry-content .alignright, .entry-content .alignright, .entry-content img.alignright {
  margin: .2rem 0 2rem 3rem;
  display: inline-block;
  float: right;
  padding: 0;
}
@media print, screen and (min-width: 40em) {
  .entry-content .alignright, .entry-content .alignright, .entry-content img.alignright {
    max-width: 75%;
    margin-right: -50%;
  }
}
.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;
}

.page-template-default #content #inner-content {
  padding-top: 1rem;
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .page-template-default #content #inner-content {
    padding-top: 5rem;
  }
}
.page-template-default .team-content .row {
  margin-bottom: 2rem;
}
@media print, screen and (min-width: 64em) {
  .page-template-default .team-content .row {
    margin-bottom: 4rem;
  }
}
.page-template-default .team-content h3 {
  margin: 0 0 1rem;
}
.page-template-default .team-content a:hover {
  opacity: .9;
}
.page-template-default .team-content .avatar {
  margin: 0 0 2rem;
}
@media print, screen and (min-width: 40em) {
  .page-template-default .team-content .avatar {
    margin: -1rem 0 0;
  }
}
.page-template-default .team-content .avatar.pink {
  background-image: url(../svg/triangle-pink-avatar.svg);
}
.page-template-default .team-content .team-title {
  border-bottom: solid 3px #112226;
  margin-top: 1rem;
  padding-bottom: 1rem;
  text-transform: none;
  text-decoration: none;
  font-size: 1.8rem;
}

.wp-caption {
  max-width: 100%;
  padding: 3rem 0;
}
.wp-caption img {
  max-width: 100%;
  margin-bottom: 0;
  width: 100%;
}
.wp-caption p.wp-caption-text {
  font-size: 0.85em;
  margin: 1rem 0 0;
  text-align: left;
  position: relative;
  padding-left: 1.8rem;
  font-family: "hk_grotesksemibold", sans-serif;
}
.wp-caption p.wp-caption-text:after {
  content: "";
  position: absolute;
  top: .4rem;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 14px 14px 0;
  border-color: transparent #DA577E transparent transparent;
}

.related-posts {
  background: #F8F8F8;
  padding-top: 7rem;
  padding-bottom: 5rem;
}
.related-posts h3.column, .related-posts h3.columns {
  text-decoration: underline;
  padding-bottom: 1.5rem;
  font-size: 1.8rem;
}

/*********************
LACUNA BLOG
*********************/
.blog-header {
  overflow: hidden;
  margin-bottom: 3rem;
}
.blog-header .full-width-image {
  background-position: center top;
  background-size: cover;
  position: relative;
}
.blog-header .full-width-image:after {
  content: "test";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5));
}
.blog-header .row {
  background: transparent url(../svg/angular-1.svg) no-repeat 1rem bottom;
  background-size: 40%;
  position: relative;
  z-index: 1;
}
@media print, screen and (min-width: 40em) {
  .blog-header .row {
    background-size: auto;
  }
}
.blog-header h1 {
  margin: 5rem 0 7rem;
  color: #fff;
  font-family: "hk_grotesksemibold", sans-serif;
  font-size: 2.5rem;
}
@media print, screen and (min-width: 40em) {
  .blog-header h1 {
    font-size: 4rem;
    margin: 12rem 0 10rem;
  }
}
.blog-header h1:after {
  background-color: #fff;
}

.blog-landing .section-blog {
  padding-top: 3em;
  padding-bottom: 3rem;
}
@media print, screen and (min-width: 40em) {
  .blog-landing .section-blog {
    padding-top: 4rem;
  }
}
@media print, screen and (min-width: 64em) {
  .blog-landing .section-blog {
    padding-top: 5rem;
    padding-bottom: 4rem;
  }
}
.blog-landing .section-blog:last-child {
  padding-bottom: 4rem;
}
@media print, screen and (min-width: 40em) {
  .blog-landing .section-blog:last-child {
    padding-bottom: 5rem;
  }
}
@media print, screen and (min-width: 64em) {
  .blog-landing .section-blog:last-child {
    padding-bottom: 6rem;
  }
}
.blog-landing .category-title {
  font-family: "hk_grotesksemibold", sans-serif;
  font-size: 1.6rem;
  margin-bottom: 2rem;
  text-decoration-color: none !important;
}
.blog-landing .category-title a {
  text-decoration: underline;
}
@media print, screen and (min-width: 40em) {
  .blog-landing .category-title {
    font-size: 2rem;
  }
}
.blog-landing#content #inner-content {
  padding: 0;
}

.call-to-action {
  background: #112226;
  padding: 4rem 2rem 0;
  position: relative;
}
@media print, screen and (min-width: 40em) {
  .call-to-action {
    padding: 5.5rem 0 0;
  }
}
.call-to-action h2 {
  color: #fff;
  margin-top: 0;
  border-bottom: solid 1px rgba(255, 255, 255, 0.2);
  padding-bottom: 1.5rem;
}
@media print, screen and (min-width: 40em) {
  .call-to-action h2 {
    margin-top: 1rem;
  }
}
.call-to-action p {
  color: rgba(255, 255, 255, 0.6);
}
.call-to-action p strong {
  color: #fff;
  font-weight: normal;
}
.call-to-action .button {
  padding: .7rem 1.6rem .8rem;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}
.call-to-action .image {
  position: relative;
}
.call-to-action .image:after {
  content: '';
  position: absolute;
  top: 25%;
  bottom: 0;
  right: -2rem;
  width: 2rem;
  background-color: #18838b;
}
.call-to-action:after, .call-to-action:before {
  content: '';
  position: absolute;
  background: #112226;
  top: 0;
  bottom: 0;
  right: 100%;
  width: 1000px;
}
.call-to-action:before {
  left: 100%;
  right: auto;
}
@media screen and (max-width: 21.8125em) {
  .call-to-action .column:nth-child(1), .call-to-action .columns:nth-child(1) {
    order: 2;
  }
  .call-to-action .column:nth-child(2), .call-to-action .columns:nth-child(2) {
    order: 1;
  }
}

.post-password-form input[type="submit"] {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 1rem 0;
  padding: 0.85em 1em;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 2rem;
  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: #18838b;
  color: #fff;
}
[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: #146f76;
  color: #fff;
}

/*********************
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;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -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;
  background: #112226;
  padding: 3rem 0;
  font-family: "hk_groteskmedium", sans-serif;
  text-align: center;
}
@media print, screen and (min-width: 40em) {
  .footer {
    padding: 5rem 0;
    text-align: left;
  }
}
@media print, screen and (min-width: 64em) {
  .footer {
    padding: 7rem 0;
  }
}
.footer #inner-footer {
  position: relative;
}
.footer #inner-footer p {
  color: #fff;
}
.footer #inner-footer .footer-excerpt {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-style: italic;
  padding: 2rem 0;
  border-bottom: solid 1px rgba(255, 255, 255, 0.06);
  border-top: solid 1px rgba(255, 255, 255, 0.06);
}
.footer #inner-footer .footer-excerpt p {
  margin: 0;
}
.footer #inner-footer a, .footer #inner-footer a:visited {
  color: #c9a95e;
}
.footer #inner-footer a.active a, .footer #inner-footer a:hover, .footer #inner-footer a:visited.active a, .footer #inner-footer a:visited:hover {
  opacity: .75;
  background: none;
}
.footer #inner-footer .copyright {
  margin: 2rem 0;
}
.footer #inner-footer .copyright a, .footer #inner-footer .copyright p {
  display: inline-block;
  margin: 0;
}
.footer #inner-footer .copyright .logo-footer {
  margin-right: 1rem;
}
.footer #inner-footer .btn-top {
  position: absolute;
  display: inline-block;
  bottom: 0;
  right: 1.5625rem;
  border: solid 1px rgba(255, 255, 255, 0.06);
  padding: 0.85em 1.3em;
  border-radius: 2rem;
  font-size: 0.75rem;
  color: #fff;
  text-align: center;
}
.footer #inner-footer .btn-top:after {
  content: "";
  display: inline-block;
  width: .8rem;
  height: .8rem;
  margin-left: .3rem;
  margin-bottom: -.15rem;
  vertical-align: baseline;
  background: transparent url(../svg/arrow-1.svg) no-repeat 50% 50%;
  background-size: contain;
}
.footer #inner-footer .btn-top:hover {
  border-color: #18838b;
  opacity: 1;
}

.loadFade {
  opacity: 0;
  -webkit-transition: opacity 1s ease;
  -moz-transition: opacity 1s ease;
  -ms-transition: opacity 1s ease;
  -o-transition: opacity 1s ease;
  transition: opacity 1s ease;
}

.loadFade.fadeIn {
  opacity: 1;
}

.scrollFade {
  opacity: 0;
  -webkit-transition: opacity 0.2s linear, transform 1.2s cubic-bezier(0.2, 1, 0.22, 1);
  -moz-transition: opacity 0.2s linear, transform 1.2s cubic-bezier(0.2, 1, 0.22, 1);
  -ms-transition: opacity 0.2s linear, transform 1.2s cubic-bezier(0.2, 1, 0.22, 1);
  -o-transition: opacity 0.2s linear, transform 1.2s cubic-bezier(0.2, 1, 0.22, 1);
  transition: opacity 0.2s linear, transform 1.2s cubic-bezier(0.2, 1, 0.22, 1);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transform: translate3d(0, 30%, 0);
  transform: translate3d(0, 30%, 0);
}

.scrollFade.medium-6.fadeIn,
.scrollFade.medium-6.fadeIn:last-child,
.scrollFade.fadeIn {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.home-lower .featured-image,
.home-lower .article-header {
  -webkit-transition: opacity 0.2s linear, transform 1.2s cubic-bezier(0.2, 1, 0.22, 1);
  -moz-transition: opacity 0.2s linear, transform 1.2s cubic-bezier(0.2, 1, 0.22, 1);
  -ms-transition: opacity 0.2s linear, transform 1.2s cubic-bezier(0.2, 1, 0.22, 1);
  -o-transition: opacity 0.2s linear, transform 1.2s cubic-bezier(0.2, 1, 0.22, 1);
  transition: opacity 0.2s linear, transform 1.2s cubic-bezier(0.2, 1, 0.22, 1);
}
.home-lower .featured-image:hover,
.home-lower .featured-image:hover +
.article-header {
  -webkit-transition: transform 0.7s cubic-bezier(0.2, 1, 0.22, 1);
  -moz-transition: transform 0.7s cubic-bezier(0.2, 1, 0.22, 1);
  -ms-transition: transform 0.7s cubic-bezier(0.2, 1, 0.22, 1);
  -o-transition: transform 0.7s cubic-bezier(0.2, 1, 0.22, 1);
  transition: transform 0.7s cubic-bezier(0.2, 1, 0.22, 1);
}

.loadFade .home-lower {
  transform: translateY(-5rem);
  opacity: 0;
  -webkit-transition: opacity 2s linear, transform 2s cubic-bezier(0.2, 1, 0.22, 1);
  -moz-transition: opacity 2s linear, transform 2s cubic-bezier(0.2, 1, 0.22, 1);
  -ms-transition: opacity 2s linear, transform 2s cubic-bezier(0.2, 1, 0.22, 1);
  -o-transition: opacity 2s linear, transform 2s cubic-bezier(0.2, 1, 0.22, 1);
  transition: opacity 2s linear, transform 2s cubic-bezier(0.2, 1, 0.22, 1);
}
.loadFade.fadeIn .home-lower {
  transform: translateY(0);
  opacity: 1;
}

@media print, screen and (min-width: 21.875em) {
  .iphone-shrink {
    flex: 0 0 auto;
    max-width: 100%;
  }
}
@media screen and (min-width: 21.875em) and (max-width: 21.8125em) {
  .iphone-shrink {
    text-align: center;
  }
}

@media print, screen and (min-width: 40em) {
  .medium-shrink {
    flex: 0 0 auto;
    max-width: 100%;
  }
}
@media screen and (min-width: 40em) and (max-width: 21.8125em) {
  .medium-shrink {
    text-align: center;
  }
}

@media print, screen and (min-width: 64em) {
  .large-shrink {
    flex: 0 0 auto;
    max-width: 100%;
  }
}
@media screen and (min-width: 64em) and (max-width: 21.8125em) {
  .large-shrink {
    text-align: center;
  }
}

@media screen and (min-width: 75em) {
  .xlarge-shrink {
    flex: 0 0 auto;
    max-width: 100%;
  }
}
@media screen and (min-width: 75em) and (max-width: 21.8125em) {
  .xlarge-shrink {
    text-align: center;
  }
}

.single-post .external-link .post p,
.single-blog .external-link .post p,
.single-podcast .external-link .post p {
  font-size: .95rem;
  margin: .7rem 0 0;
  line-height: 1.3;
  opacity: .6;
}

.single-post .external-link .post h4,
.single-blog .external-link .post h4,
.single-podcast .external-link .post h4 {
  margin: 0;
}

.single-post .external-link .post a,
.single-blog .external-link .post a,
.single-podcast .external-link .post a {
  text-decoration: none;
}

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

Stylesheet: Retina Screens & Devices Stylesheet

When handling retina screens you need to make adjustments, especially
if you're not using font icons. Here you can add them in one neat
place.

******************************************************************/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  /* 
  
  EXAMPLE 
  Let's say you have an image and you need to make sure it looks ok
  on retina screens. Let's say we have an icon which dimension are
  24px x 24px. In your regular stylesheets, it would look something
  like this:
  
  .icon {
  	width: 24px;
  	height: 24px;
  	background: url(img/test.png) no-repeat;
  }
  
  For retina screens, we have to make some adjustments, so that image
  doesn't look blurry. So, taking into account the image above and the
  dimensions, this is what we would put in our retina stylesheet:
  
  .icon {
  	background: url(img/test@2x.png) no-repeat;
  	background-size: 24px 24px;
  }
  
  So, you would create the same icon, but at double the resolution, meaning 
  it would be 48px x 48px. You'd name it the same, but with a @2x at the end
  (this is pretty standard practice). Set the background image so it matches
  the original dimensions and you are good to go. 
  
  */
}
/******************************************************************

Stylesheet: Print Stylesheet

This is the print stylesheet. There's probably not a lot
of reasons to edit this stylesheet. 

Remember to add things that won't make sense to print at 
the bottom. Things like nav, ads, and forms shouldbe set 
to display none.
******************************************************************/
@media print {
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important;
  }

  a, a:visited {
    color: #444 !important;
    text-decoration: underline;
  }
  a:after, a:visited:after {
    content: " (" attr(href) ")";
  }
  a abbr[title]:after, a:visited abbr[title]:after {
    content: " (" attr(title) ")";
  }

  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }

  pre, blockquote {
    border: 1px solid #999;
    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, h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }

  .sidebar,
  .page-navigation,
  .wp-prev-next,
  .respond-form,
  nav {
    display: none;
  }
}
