@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.

******************************************************************/
.caps {
  text-transform: uppercase; }

.center {
  text-align: center;
  display: block;
  margin: auto; }

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

Stylesheet: Mixins & Constants Stylesheet

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

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

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

/*********************
CSS3 GRADIENTS.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/**
 * Foundation for Sites by ZURB
 * Version 6.3.0
 * 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&medium=40em&large=64em&xlarge=75em&xxlarge=90em"; }

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

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

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

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

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

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

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

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

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

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

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

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

.column.row.row, .row.row.columns {
  display: -ms-flexbox;
  display: flex; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.row.medium-unstack > .column, .row.medium-unstack > .columns {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%; }
  @media print, screen and (min-width: 40em) {
    .row.medium-unstack > .column, .row.medium-unstack > .columns {
      -ms-flex: 1 1 0px;
      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: 0.9375rem;
    padding-left: 0.9375rem; } }

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

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

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

.row.large-unstack > .column, .row.large-unstack > .columns {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%; }
  @media print, screen and (min-width: 64em) {
    .row.large-unstack > .column, .row.large-unstack > .columns {
      -ms-flex: 1 1 0px;
      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: 0.9375rem;
    padding-left: 0.9375rem; } }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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: "Raleway", 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: #585858; }

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

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

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

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

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

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

@media print, screen and (min-width: 40em) {
  h1 {
    font-size: 3.8rem; }
  h2 {
    font-size: 2.4rem; }
  h3 {
    font-size: 1.6rem; }
  h4 {
    font-size: 1.4rem; }
  h5 {
    font-size: 1.1rem; }
  h6 {
    font-size: 1.1rem; } }

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

hr {
  clear: both;
  max-width: 68.75rem;
  height: 0;
  margin: 1.25rem auto;
  border-top: 0;
  border-right: 0;
  border-bottom: 1px solid #A7A8A9;
  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 #A7A8A9; }
  blockquote, blockquote p {
    line-height: 1.6;
    color: #F4364C; }

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

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

figure {
  margin: 0; }

code {
  padding: 0.125rem 0.3125rem 0.0625rem;
  border: 1px solid #A7A8A9;
  background-color: #e6e6e6;
  font-family: Courier, monospace;
  font-weight: normal;
  color: #212322; }

kbd {
  margin: 0;
  padding: 0.125rem 0.25rem 0;
  background-color: #e6e6e6;
  font-family: Courier, monospace;
  color: #212322; }

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

.lead {
  font-size: 150%;
  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: 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; } }

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

[type='text'], [type='password'], [type='date'], [type='datetime'], [type='datetime-local'], [type='month'], [type='week'], [type='email'], [type='number'], [type='search'], [type='tel'], [type='time'], [type='url'], [type='color'],
textarea {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 3.0625rem;
  margin: 0 0 1.25rem;
  padding: 0.625rem;
  border: 1px solid #A7A8A9;
  border-radius: 0;
  background-color: #fefefe;
  box-shadow: inset 0 1px 2px rgba(33, 35, 34, 0.1);
  font-family: inherit;
  font-size: 1.25rem;
  font-weight: normal;
  color: #212322;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }
  [type='text']:focus, [type='password']:focus, [type='date']:focus, [type='datetime']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='week']:focus, [type='email']:focus, [type='number']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='url']:focus, [type='color']:focus,
  textarea:focus {
    outline: none;
    border: 1px solid #585858;
    background-color: #fefefe;
    box-shadow: 0 0 5px #A7A8A9;
    transition: box-shadow 0.5s, border-color 0.25s ease-in-out; }

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

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

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

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

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

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

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

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

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

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

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

.help-text {
  margin-top: -0.625rem;
  font-size: 1rem;
  font-style: italic;
  color: #212322; }

.input-group {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-bottom: 1.25rem;
  -ms-flex-align: stretch;
  align-items: stretch; }
  .input-group > :first-child {
    border-radius: 0 0 0 0; }
  .input-group > :last-child > * {
    border-radius: 0 0 0 0; }

.input-group-label, .input-group-field, .input-group-button, .input-group-button a,
.input-group-button input,
.input-group-button button,
.input-group-button label {
  margin: 0;
  white-space: nowrap; }

.input-group-label {
  padding: 0 1rem;
  border: 1px solid #A7A8A9;
  background: #e6e6e6;
  color: #212322;
  text-align: center;
  white-space: nowrap;
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -ms-flex-align: center;
  align-items: center; }
  .input-group-label:first-child {
    border-right: 0; }
  .input-group-label:last-child {
    border-left: 0; }

.input-group-field {
  border-radius: 0;
  -ms-flex: 1 1 0px;
  flex: 1 1 0px;
  height: auto;
  min-width: 0; }

.input-group-button {
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto; }
  .input-group-button a,
  .input-group-button input,
  .input-group-button button,
  .input-group-button label {
    height: 3.125rem;
    padding-top: 0;
    padding-bottom: 0;
    font-size: 1.25rem; }

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

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

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

select {
  height: 3.0625rem;
  margin: 0 0 1.25rem;
  padding: 0.625rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #A7A8A9;
  border-radius: 0;
  background-color: #fefefe;
  font-family: inherit;
  font-size: 1.25rem;
  line-height: normal;
  color: #212322;
  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%2888, 88, 88%29'></polygon></svg>");
  background-origin: content-box;
  background-position: right -1.25rem center;
  background-repeat: no-repeat;
  background-size: 9px 6px;
  padding-right: 1.875rem;
  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 #585858;
    background-color: #fefefe;
    box-shadow: 0 0 5px #A7A8A9;
    transition: box-shadow 0.5s, border-color 0.25s ease-in-out; }
  select:disabled {
    background-color: #e6e6e6;
    cursor: not-allowed; }
  select::-ms-expand {
    display: none; }
  select[multiple] {
    height: auto;
    background-image: none; }

.is-invalid-input:not(:focus) {
  border-color: #FF8F1C;
  background-color: #fef3e7; }
  .is-invalid-input:not(:focus):-ms-input-placeholder {
    color: #FF8F1C; }
  .is-invalid-input:not(:focus)::placeholder {
    color: #FF8F1C; }

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

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

.button {
  display: inline-block;
  vertical-align: middle;
  margin: 1.5rem 0;
  padding: 2.2rem 3.5rem;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  font-size: 1rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  background-color: #ffffff;
  color: #ffffff; }
  [data-whatinput='mouse'] .button {
    outline: 0; }
  .button:hover, .button:focus {
    background-color: #F4364C;
    color: #ffffff; }
  .button.tiny {
    font-size: 1rem; }
  .button.small {
    font-size: 1rem; }
  .button.large {
    font-size: 1rem; }
  .button.expanded {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-left: 0; }
  .button.primary {
    background-color: #F4364C;
    color: #ffffff; }
    .button.primary:hover, .button.primary:focus {
      background-color: #e20c25;
      color: #ffffff; }
  .button.secondary {
    background-color: #63666A;
    color: #ffffff; }
    .button.secondary:hover, .button.secondary:focus {
      background-color: #4f5255;
      color: #ffffff; }
  .button.success {
    background-color: #7248BD;
    color: #ffffff; }
    .button.success:hover, .button.success:focus {
      background-color: #5b3799;
      color: #ffffff; }
  .button.warning {
    background-color: #001A70;
    color: #ffffff; }
    .button.warning:hover, .button.warning:focus {
      background-color: #00155a;
      color: #ffffff; }
  .button.alert {
    background-color: #FF8F1C;
    color: #ffffff; }
    .button.alert:hover, .button.alert:focus {
      background-color: #e27300;
      color: #ffffff; }
  .button.hollow {
    border: 1px solid #F4364C;
    color: #F4364C; }
    .button.hollow, .button.hollow:hover, .button.hollow:focus {
      background-color: transparent; }
    .button.hollow:hover, .button.hollow:focus {
      border-color: #8d0817;
      color: #8d0817; }
    .button.hollow.primary {
      border: 1px solid #F4364C;
      color: #F4364C; }
      .button.hollow.primary:hover, .button.hollow.primary:focus {
        border-color: #8d0817;
        color: #8d0817; }
    .button.hollow.secondary {
      border: 1px solid #63666A;
      color: #63666A; }
      .button.hollow.secondary:hover, .button.hollow.secondary:focus {
        border-color: #323335;
        color: #323335; }
    .button.hollow.success {
      border: 1px solid #7248BD;
      color: #7248BD; }
      .button.hollow.success:hover, .button.hollow.success:focus {
        border-color: #392360;
        color: #392360; }
    .button.hollow.warning {
      border: 1px solid #001A70;
      color: #001A70; }
      .button.hollow.warning:hover, .button.hollow.warning:focus {
        border-color: #000d38;
        color: #000d38; }
    .button.hollow.alert {
      border: 1px solid #FF8F1C;
      color: #FF8F1C; }
      .button.hollow.alert:hover, .button.hollow.alert:focus {
        border-color: #8e4800;
        color: #8e4800; }
  .button.disabled, .button[disabled] {
    opacity: 0.25;
    cursor: not-allowed; }
    .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
      background-color: #F4364C;
      color: #ffffff; }
    .button.disabled.primary, .button[disabled].primary {
      opacity: 0.25;
      cursor: not-allowed; }
      .button.disabled.primary:hover, .button.disabled.primary:focus, .button[disabled].primary:hover, .button[disabled].primary:focus {
        background-color: #F4364C;
        color: #ffffff; }
    .button.disabled.secondary, .button[disabled].secondary {
      opacity: 0.25;
      cursor: not-allowed; }
      .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
        background-color: #63666A;
        color: #ffffff; }
    .button.disabled.success, .button[disabled].success {
      opacity: 0.25;
      cursor: not-allowed; }
      .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus {
        background-color: #7248BD;
        color: #ffffff; }
    .button.disabled.warning, .button[disabled].warning {
      opacity: 0.25;
      cursor: not-allowed; }
      .button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning:hover, .button[disabled].warning:focus {
        background-color: #001A70;
        color: #ffffff; }
    .button.disabled.alert, .button[disabled].alert {
      opacity: 0.25;
      cursor: not-allowed; }
      .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus {
        background-color: #FF8F1C;
        color: #ffffff; }
  .button.dropdown::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 0.4em;
    content: '';
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #fefefe transparent transparent;
    position: relative;
    top: 0.4em;
    display: inline-block;
    float: right;
    margin-left: 3.5rem; }
  .button.arrow-only::after {
    top: -0.1em;
    float: none;
    margin-left: 0; }

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

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

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

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

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

.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: #F4364C 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: #F4364C;
  color: #fefefe; }
  .badge.primary {
    background: #F4364C;
    color: #fefefe; }
  .badge.secondary {
    background: #63666A;
    color: #fefefe; }
  .badge.success {
    background: #7248BD;
    color: #fefefe; }
  .badge.warning {
    background: #001A70;
    color: #fefefe; }
  .badge.alert {
    background: #FF8F1C;
    color: #212322; }

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

.button-group {
  margin-bottom: 1rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -ms-flex-align: stretch;
  align-items: stretch; }
  .button-group::before, .button-group::after {
    display: table;
    content: ' ';
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-order: 1;
    order: 1; }
  .button-group::after {
    clear: both; }
  .button-group .button {
    margin: 0;
    margin-right: 1px;
    margin-bottom: 1px;
    font-size: 1rem;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }
    .button-group .button:last-child {
      margin-right: 0; }
  .button-group.tiny .button {
    font-size: 1rem; }
  .button-group.small .button {
    font-size: 1rem; }
  .button-group.large .button {
    font-size: 1rem; }
  .button-group.expanded .button {
    -ms-flex: 1 1 0px;
    flex: 1 1 0px; }
  .button-group.primary .button {
    background-color: #F4364C;
    color: #ffffff; }
    .button-group.primary .button:hover, .button-group.primary .button:focus {
      background-color: #e20c25;
      color: #ffffff; }
  .button-group.secondary .button {
    background-color: #63666A;
    color: #ffffff; }
    .button-group.secondary .button:hover, .button-group.secondary .button:focus {
      background-color: #4f5255;
      color: #ffffff; }
  .button-group.success .button {
    background-color: #7248BD;
    color: #ffffff; }
    .button-group.success .button:hover, .button-group.success .button:focus {
      background-color: #5b3799;
      color: #ffffff; }
  .button-group.warning .button {
    background-color: #001A70;
    color: #ffffff; }
    .button-group.warning .button:hover, .button-group.warning .button:focus {
      background-color: #00155a;
      color: #ffffff; }
  .button-group.alert .button {
    background-color: #FF8F1C;
    color: #ffffff; }
    .button-group.alert .button:hover, .button-group.alert .button:focus {
      background-color: #e27300;
      color: #ffffff; }
  .button-group.stacked, .button-group.stacked-for-small, .button-group.stacked-for-medium {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .button-group.stacked .button, .button-group.stacked-for-small .button, .button-group.stacked-for-medium .button {
      -ms-flex: 0 0 100%;
      flex: 0 0 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 {
      -ms-flex: 1 1 0px;
      flex: 1 1 0px;
      margin-bottom: 0; } }
  @media print, screen and (min-width: 64em) {
    .button-group.stacked-for-medium .button {
      -ms-flex: 1 1 0px;
      flex: 1 1 0px;
      margin-bottom: 0; } }
  @media screen and (max-width: 39.9375em) {
    .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(33, 35, 34, 0.25);
  border-radius: 0;
  background-color: white;
  color: #212322; }
  .callout > :first-child {
    margin-top: 0; }
  .callout > :last-child {
    margin-bottom: 0; }
  .callout.primary {
    background-color: #fde1e4;
    color: #212322; }
  .callout.secondary {
    background-color: #e7e8e9;
    color: #212322; }
  .callout.success {
    background-color: #eae4f5;
    color: #212322; }
  .callout.warning {
    background-color: #c3d1ff;
    color: #212322; }
  .callout.alert {
    background-color: #ffeedd;
    color: #212322; }
  .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 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 1rem;
  border: 1px solid #e6e6e6;
  border-radius: 0;
  background: #fefefe;
  box-shadow: none;
  overflow: hidden;
  color: #212322; }
  .card > :last-child {
    margin-bottom: 0; }

.card-divider {
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  padding: 1rem;
  background: #e6e6e6; }
  .card-divider > :last-child {
    margin-bottom: 0; }

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

.close-button {
  position: absolute;
  color: #585858;
  cursor: pointer; }
  [data-whatinput='mouse'] .close-button {
    outline: 0; }
  .close-button:hover, .close-button:focus {
    color: #212322; }
  .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;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -ms-flex-align: center;
  align-items: center;
  width: 100%; }
  .menu > li {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; }
    [data-whatinput='mouse'] .menu > li {
      outline: 0; }
  .menu > li > a {
    display: block;
    padding: 1rem;
    line-height: 1; }
  .menu input,
  .menu select,
  .menu a,
  .menu button {
    margin-bottom: 0; }
  .menu > li > a {
    display: -ms-flexbox;
    display: flex; }
  .menu > li > a {
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap; }
    .menu > li > a img,
    .menu > li > a i,
    .menu > li > a svg {
      margin-right: 0.25rem; }
  .menu, .menu.horizontal {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap; }
    .menu > li, .menu.horizontal > li {
      -ms-flex: 0 0 auto;
      flex: 0 0 auto; }
  .menu.expanded > li {
    -ms-flex: 1 1 0px;
    flex: 1 1 0px; }
  .menu.expanded > li:first-child:last-child {
    width: 100%; }
  .menu.vertical {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .menu.vertical > li {
      -ms-flex: 0 0 100%;
      flex: 0 0 100%;
      max-width: 100%; }
    .menu.vertical > li > a {
      -ms-flex-pack: start;
      justify-content: flex-start;
      -ms-flex-align: start;
      align-items: flex-start; }
  @media print, screen and (min-width: 40em) {
    .menu.medium-horizontal {
      -ms-flex-wrap: nowrap;
      flex-wrap: nowrap; }
      .menu.medium-horizontal > li {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto; }
    .menu.medium-expanded > li {
      -ms-flex: 1 1 0px;
      flex: 1 1 0px; }
    .menu.medium-expanded > li:first-child:last-child {
      width: 100%; }
    .menu.medium-vertical {
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
      .menu.medium-vertical > li {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%; }
      .menu.medium-vertical > li > a {
        -ms-flex-pack: start;
        justify-content: flex-start;
        -ms-flex-align: start;
        align-items: flex-start; } }
  @media print, screen and (min-width: 64em) {
    .menu.large-horizontal {
      -ms-flex-wrap: nowrap;
      flex-wrap: nowrap; }
      .menu.large-horizontal > li {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto; }
    .menu.large-expanded > li {
      -ms-flex: 1 1 0px;
      flex: 1 1 0px; }
    .menu.large-expanded > li:first-child:last-child {
      width: 100%; }
    .menu.large-vertical {
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
      .menu.large-vertical > li {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%; }
      .menu.large-vertical > li > a {
        -ms-flex-pack: start;
        justify-content: flex-start;
        -ms-flex-align: start;
        align-items: flex-start; } }
  .menu.simple li {
    display: inline-block;
    margin-right: 1rem;
    line-height: 1; }
  .menu.simple a {
    padding: 0; }
  .menu.align-right {
    -ms-flex-pack: end;
    justify-content: flex-end; }
  .menu.icon-top > li > a {
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap; }
    .menu.icon-top > li > a img,
    .menu.icon-top > li > a i,
    .menu.icon-top > li > a svg {
      -ms-flex-item-align: stretch;
      align-self: stretch;
      margin-bottom: 0.25rem;
      text-align: center; }
  .menu.icon-top.vertical a > span {
    margin: auto; }
  .menu.nested {
    margin-left: 1rem; }
  .menu .active > a {
    background: #F4364C;
    color: #fefefe; }
  .menu.menu-bordered li {
    border: 1px solid #e6e6e6; }
    .menu.menu-bordered li:not(:first-child) {
      border-top: 0; }
  .menu.menu-hover li:hover {
    background-color: #e6e6e6; }

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

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

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

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

.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: #fefefe;
  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 #F4364C;
    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 #F4364C 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 #A7A8A9;
  border-radius: 0;
  background-color: #fefefe;
  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: #F4364C 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 #F4364C 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 #F4364C; }

@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: #F4364C 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 #F4364C 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 #F4364C; } }

@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: #F4364C 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 #F4364C 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 #F4364C; } }

.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 #A7A8A9;
  background: #fefefe; }
  .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 #F4364C 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 #F4364C; }
  .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: 0;
  font-size: 0.8rem;
  line-height: 1;
  white-space: nowrap;
  cursor: default;
  background: #F4364C;
  color: #fefefe; }
  .label.primary {
    background: #F4364C;
    color: #fefefe; }
  .label.secondary {
    background: #63666A;
    color: #fefefe; }
  .label.success {
    background: #7248BD;
    color: #fefefe; }
  .label.warning {
    background: #001A70;
    color: #fefefe; }
  .label.alert {
    background: #FF8F1C;
    color: #212322; }

.media-object {
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1rem;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap; }
  .media-object img {
    max-width: none; }
  @media screen and (max-width: 39.9375em) {
    .media-object.stack-for-small {
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; } }
  @media screen and (max-width: 39.9375em) {
    .media-object.stack-for-small .media-object-section {
      padding: 0;
      padding-bottom: 1rem;
      -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
      max-width: 100%; }
      .media-object.stack-for-small .media-object-section img {
        width: 100%; } }

.media-object-section {
  -ms-flex: 0 1 auto;
  flex: 0 1 auto; }
  .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.main-section {
    -ms-flex: 1 1 0px;
    flex: 1 1 0px; }

.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(254, 254, 254, 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: #e6e6e6; }
  [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(33, 35, 34, 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: #e6e6e6; }
  [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(33, 35, 34, 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(33, 35, 34, 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(33, 35, 34, 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(33, 35, 34, 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(33, 35, 34, 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: 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; } }

.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(33, 35, 34, 0.5);
  color: #fefefe; }

.orbit-previous, .orbit-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  padding: 1rem;
  color: #fefefe; }
  [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(33, 35, 34, 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: #A7A8A9; }
    .orbit-bullets button:hover {
      background-color: #585858; }
    .orbit-bullets button.is-active {
      background-color: #585858; }

.pagination {
  margin-left: 0;
  margin-bottom: 1rem; }
  .pagination::before, .pagination::after {
    display: table;
    content: ' ';
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-order: 1;
    order: 1; }
  .pagination::after {
    clear: both; }
  .pagination li {
    margin-right: 0.25rem;
    border-radius: 0;
    font-size: 1rem;
    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.625rem 0.9375rem;
    border-radius: 0;
    color: #212322; }
    .pagination a:hover,
    .pagination button:hover {
      background: #e6e6e6; }
  .pagination .current {
    padding: 0.625rem 0.9375rem;
    background: #F4364C;
    color: #fefefe;
    cursor: default; }
  .pagination .disabled {
    padding: 0.625rem 0.9375rem;
    color: #A7A8A9;
    cursor: not-allowed; }
    .pagination .disabled:hover {
      background: transparent; }
  .pagination .ellipsis::after {
    padding: 0.625rem 0.9375rem;
    content: '\2026';
    color: #212322; }

.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: 0;
  background-color: #A7A8A9; }
  .progress.primary .progress-meter {
    background-color: #F4364C; }
  .progress.secondary .progress-meter {
    background-color: #63666A; }
  .progress.success .progress-meter {
    background-color: #7248BD; }
  .progress.warning .progress-meter {
    background-color: #001A70; }
  .progress.alert .progress-meter {
    background-color: #FF8F1C; }

.progress-meter {
  position: relative;
  display: block;
  width: 0%;
  height: 100%;
  background-color: #F4364C; }

.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: #fefefe;
  white-space: nowrap; }

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

.slider-fill {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  max-width: 100%;
  height: 0.5rem;
  background-color: #A7A8A9;
  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: 0;
  background-color: #F4364C;
  transition: all 0.2s ease-in-out;
  -ms-touch-action: manipulation;
  touch-action: manipulation; }
  [data-whatinput='mouse'] .slider-handle {
    outline: 0; }
  .slider-handle:hover {
    background-color: #f00d27; }
  .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;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

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

.reveal {
  z-index: 1006;
  backface-visibility: hidden;
  display: none;
  padding: 1rem;
  border: 1px solid #A7A8A9;
  border-radius: 0;
  background-color: #fefefe;
  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,
  .reveal .columns {
    min-width: 0; }
  .reveal > :last-child {
    margin-bottom: 0; }
  @media print, screen and (min-width: 40em) {
    .reveal {
      width: 600px;
      max-width: 68.75rem; } }
  @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: 68.75rem; } }
  @media print, screen and (min-width: 40em) {
    .reveal.small {
      width: 50%;
      max-width: 68.75rem; } }
  @media print, screen and (min-width: 40em) {
    .reveal.large {
      width: 90%;
      max-width: 68.75rem; } }
  .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: 39.9375em) {
    .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: #fefefe;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

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

.switch-paddle {
  position: relative;
  display: block;
  width: 4rem;
  height: 2rem;
  border-radius: 0;
  background: #A7A8A9;
  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: 0;
    background: #fefefe;
    transition: all 0.25s ease-out;
    content: ''; }
  input:checked ~ .switch-paddle {
    background: #F4364C; }
    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: 0; }
  thead,
  tbody,
  tfoot {
    border: 1px solid #f1f1f1;
    background-color: #fefefe; }
  caption {
    padding: 0.5rem 0.625rem 0.625rem;
    font-weight: bold; }
  thead {
    background: #f8f8f8;
    color: #212322; }
  tfoot {
    background: #f1f1f1;
    color: #212322; }
  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: #f1f1f1; }
  table.unstriped tbody {
    background-color: #fefefe; }
    table.unstriped tbody tr {
      border-bottom: 0;
      border-bottom: 1px solid #f1f1f1;
      background-color: #fefefe; }

@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: #f3f3f3; }

table.hover tfoot tr:hover {
  background-color: #ececec; }

table.hover tbody tr:hover {
  background-color: #f9f9f9; }

table.hover:not(.unstriped) tr:nth-of-type(even):hover {
  background-color: #ececec; }

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

.tabs {
  margin: 0;
  border: 1px solid #e6e6e6;
  background: #fefefe;
  list-style-type: none; }
  .tabs::before, .tabs::after {
    display: table;
    content: ' ';
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-order: 1;
    order: 1; }
  .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: #F4364C; }
  .tabs.primary > li > a {
    color: #fefefe; }
    .tabs.primary > li > a:hover, .tabs.primary > li > a:focus {
      background: #f3283f; }

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

.tabs-content {
  border: 1px solid #e6e6e6;
  border-top: 0;
  background: #fefefe;
  color: #212322;
  transition: all 0.5s ease; }

.tabs-content.vertical {
  border: 1px solid #e6e6e6;
  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 #fefefe;
  border-radius: 0;
  box-shadow: 0 0 0 1px rgba(33, 35, 34, 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(244, 54, 76, 0.5); }
  a.thumbnail image {
    box-shadow: none; }

.title-bar {
  padding: 0.5rem;
  background: #212322;
  color: #fefefe;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center; }
  .title-bar .menu-icon {
    margin-left: 0.25rem;
    margin-right: 0.25rem; }

.title-bar-left,
.title-bar-right {
  -ms-flex: 1 1 0px;
  flex: 1 1 0px; }

.title-bar-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 #585858;
  font-weight: bold;
  cursor: help; }

.tooltip {
  position: absolute;
  top: calc(100% + 0.6495rem);
  z-index: 1200;
  max-width: 10rem;
  padding: 0.75rem;
  border-radius: 0;
  background-color: #212322;
  font-size: 90%;
  color: #fefefe; }
  .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 #212322;
    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: #212322 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 #212322;
    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 #212322 transparent transparent;
    top: 50%;
    right: 100%;
    bottom: auto;
    left: auto;
    transform: translateY(-50%); }

.top-bar {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.5rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .top-bar,
  .top-bar ul {
    background-color: transparent; }
  .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 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }
  @media print, screen and (min-width: 40em) {
    .top-bar {
      -ms-flex-wrap: nowrap;
      flex-wrap: nowrap; }
      .top-bar .top-bar-left {
        -ms-flex: 1 1 auto;
        flex: 1 1 auto; }
      .top-bar .top-bar-right {
        -ms-flex: 0 1 auto;
        flex: 0 1 auto; } }
  @media screen and (max-width: 63.9375em) {
    .top-bar.stacked-for-medium {
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
      .top-bar.stacked-for-medium .top-bar-left,
      .top-bar.stacked-for-medium .top-bar-right {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%; } }
  @media screen and (max-width: 74.9375em) {
    .top-bar.stacked-for-large {
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
      .top-bar.stacked-for-large .top-bar-left,
      .top-bar.stacked-for-large .top-bar-right {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%; } }

.top-bar-title {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin: 0.45rem 1rem 0 1rem; }

.top-bar-left,
.top-bar-right {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto; }

.hide {
  display: none !important; }

.invisible {
  visibility: hidden; }

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

@media screen and (max-width: 0em), screen and (min-width: 40em) {
  .show-for-small-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; } }

.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: ' ';
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-order: 1;
  order: 1; }

.clearfix::after {
  clear: both; }

.step-1 {
  color: #F4364C; }

.step-2 {
  color: #F4364C; }

.step-3 {
  color: #F4364C; }

.step-4 {
  color: #F4364C; }

.step-5 {
  color: #F4364C; }

.step-6 {
  color: #F4364C; }

.step-7 {
  color: #F4364C; }

.step-8 {
  color: #F4364C; }

.bg-step-0 {
  background: #63666A; }

.bg-step-1 {
  background: #63666A; }

.bg-step-2 {
  background: #63666A; }

.bg-step-3 {
  background: #63666A; }

.bg-step-4 {
  background: #63666A; }

.bg-step-5 {
  background: #63666A; }

.bg-step-6 {
  background: #63666A; }

.bg-step-7 {
  background: #63666A; }

.bg-step-8 {
  background: #63666A; }

.transparent-bg-step-1 {
  background-color: rgba(244, 54, 76, 0.8);
  background-blend-mode: multiply; }

.transparent-bg-step-2 {
  background-color: rgba(244, 54, 76, 0.8);
  background-blend-mode: multiply; }

.transparent-bg-step-3 {
  background-color: rgba(244, 54, 76, 0.8);
  background-blend-mode: multiply; }

.transparent-bg-step-4 {
  background-color: rgba(244, 54, 76, 0.8);
  background-blend-mode: multiply; }

.transparent-bg-step-5 {
  background-color: rgba(244, 54, 76, 0.8);
  background-blend-mode: multiply; }

.transparent-bg-step-6 {
  background-color: rgba(244, 54, 76, 0.8);
  background-blend-mode: multiply; }

.transparent-bg-step-7 {
  background-color: rgba(244, 54, 76, 0.8);
  background-blend-mode: multiply; }

.transparent-bg-step-8 {
  background-color: rgba(244, 54, 76, 0.8);
  background-blend-mode: multiply; }

.gradient-background, .hero {
  background: #F4364C;
  /* no more gradients */ }

.gradient-overlay {
  background: linear-gradient(to bottom, rgba(30, 30, 30, 0.7) 0%, rgba(90, 70, 70, 0.5) 60%); }

.bg-darken-1 {
  background-color: rgba(0, 0, 0, 0.0625); }

.bg-darken-2 {
  background-color: rgba(0, 0, 0, 0.125); }

.grayscale {
  /* Safari 6.0 - 9.0 */
  filter: grayscale(100%); }

.o-10 {
  opacity: 0.1; }

.o-20 {
  opacity: 0.2; }

.o-30 {
  opacity: 0.3; }

.o-40 {
  opacity: 0.4; }

.o-50 {
  opacity: 0.5; }

.o-60 {
  opacity: 0.6; }

.o-70 {
  opacity: 0.7; }

.o-80 {
  opacity: 0.8; }

.o-90 {
  opacity: 0.9; }

.o-100 {
  opacity: 1; }

.white {
  color: #fff; }

.off-white {
  color: #f5f5f5; }

.bg-off-white {
  background-color: #f5f5f5; }

/* Reveal */
.hvr-reveal {
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  overflow: hidden; }

.hvr-reveal:before {
  content: "";
  position: absolute;
  z-index: 1000;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-color: rgba(0, 0, 0, 0.2);
  border-style: solid;
  border-width: 0;
  transition-property: border-width;
  transition-duration: 0.1s;
  transition-timing-function: ease-out; }

.hvr-reveal:active:before,
.hvr-reveal:focus:before,
.hvr-reveal:hover:before {
  transform: translateY(0);
  border-width: 10px; }

.negative, footer.footer {
  color: #fefefe !important; }

.primary {
  color: #F4364C !important; }

.black {
  color: #212322 !important; }

.section-padding, .entry-content, .sidebar, .page-section {
  padding: 7rem 0; }

.proportional-50 {
  height: 50vw; }

.bg-black {
  background-color: #212322; }

.bg-white {
  background-color: #fefefe; }

.primary-color {
  color: #F4364C; }

.secondary-color {
  color: #63666A; }

.border-foo {
  border: 1px solid #f00; }

.relative {
  position: relative; }

.z1 {
  z-index: 1; }

.z2 {
  z-index: 2; }

.z3 {
  z-index: 3; }

.z4 {
  z-index: 4; }

.z5 {
  z-index: 5; }

.full-height {
  height: 100%;
  position: relative; }

.relative {
  position: relative; }

.absolute {
  position: absolute; }

.caps {
  text-transform: uppercase; }

.border {
  border: 1px solid gray; }

.d-block {
  display: block; }

.d-inline-block {
  display: inline-block; }

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

.d-none {
  display: none; }

.d-inline {
  display: inline; }

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

.flex-0 {
  -ms-flex: 0;
  flex: 0; }

.fg-2 {
  -ms-flex-positive: 2;
  flex-grow: 2; }

.sr-only {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  /* 1 */
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  /* 2 */
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
  /* 3 */ }

.sr-only-focusable:focus,
.sr-only-focusable:active {
  clip: auto !important;
  -webkit-clip-path: none !important;
  clip-path: none !important;
  height: auto !important;
  margin: auto !important;
  overflow: visible !important;
  width: auto !important;
  white-space: normal !important; }

/*
  Adapted from Bootstrap 4
  url: https://github.com/twbs/bootstrap

  The MIT License (MIT)
  Copyright (c) 2011-2016 Twitter, Inc.
  Copyright (c) 2011-2016 The Bootstrap Authors

*/
.w-100 {
  width: 100% !important; }

.h-100 {
  height: 100% !important; }

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important; }

.m-0 {
  margin: 0 0 !important; }

.mt-0 {
  margin-top: 0 !important; }

.mr-0 {
  margin-right: 0 !important; }

.mb-0 {
  margin-bottom: 0 !important; }

.ml-0 {
  margin-left: 0 !important; }

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important; }

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important; }

.m-1 {
  margin: 0.25rem 0.25rem !important; }

.mt-1 {
  margin-top: 0.25rem !important; }

.mr-1 {
  margin-right: 0.25rem !important; }

.mb-1 {
  margin-bottom: 0.25rem !important; }

.ml-1 {
  margin-left: 0.25rem !important; }

.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important; }

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important; }

.m-2 {
  margin: 0.5rem 0.5rem !important; }

.mt-2 {
  margin-top: 0.5rem !important; }

.mr-2 {
  margin-right: 0.5rem !important; }

.mb-2 {
  margin-bottom: 0.5rem !important; }

.ml-2 {
  margin-left: 0.5rem !important; }

.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important; }

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important; }

.m-3 {
  margin: 1rem 1rem !important; }

.mt-3 {
  margin-top: 1rem !important; }

.mr-3 {
  margin-right: 1rem !important; }

.mb-3 {
  margin-bottom: 1rem !important; }

.ml-3 {
  margin-left: 1rem !important; }

.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important; }

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important; }

.m-4 {
  margin: 1.5rem 1.5rem !important; }

.mt-4 {
  margin-top: 1.5rem !important; }

.mr-4 {
  margin-right: 1.5rem !important; }

.mb-4 {
  margin-bottom: 1.5rem !important; }

.ml-4 {
  margin-left: 1.5rem !important; }

.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important; }

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important; }

.m-5 {
  margin: 3rem 3rem !important; }

.mt-5 {
  margin-top: 3rem !important; }

.mr-5 {
  margin-right: 3rem !important; }

.mb-5 {
  margin-bottom: 3rem !important; }

.ml-5 {
  margin-left: 3rem !important; }

.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important; }

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important; }

.p-0 {
  padding: 0 0 !important; }

.pt-0 {
  padding-top: 0 !important; }

.pr-0 {
  padding-right: 0 !important; }

.pb-0 {
  padding-bottom: 0 !important; }

.pl-0 {
  padding-left: 0 !important; }

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important; }

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important; }

.p-1 {
  padding: 0.25rem 0.25rem !important; }

.pt-1 {
  padding-top: 0.25rem !important; }

.pr-1 {
  padding-right: 0.25rem !important; }

.pb-1 {
  padding-bottom: 0.25rem !important; }

.pl-1 {
  padding-left: 0.25rem !important; }

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important; }

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important; }

.p-2 {
  padding: 0.5rem 0.5rem !important; }

.pt-2 {
  padding-top: 0.5rem !important; }

.pr-2 {
  padding-right: 0.5rem !important; }

.pb-2 {
  padding-bottom: 0.5rem !important; }

.pl-2 {
  padding-left: 0.5rem !important; }

.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important; }

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important; }

.p-3 {
  padding: 1rem 1rem !important; }

.pt-3 {
  padding-top: 1rem !important; }

.pr-3 {
  padding-right: 1rem !important; }

.pb-3 {
  padding-bottom: 1rem !important; }

.pl-3 {
  padding-left: 1rem !important; }

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important; }

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important; }

.p-4 {
  padding: 1.5rem 1.5rem !important; }

.pt-4 {
  padding-top: 1.5rem !important; }

.pr-4 {
  padding-right: 1.5rem !important; }

.pb-4 {
  padding-bottom: 1.5rem !important; }

.pl-4 {
  padding-left: 1.5rem !important; }

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important; }

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important; }

.p-5 {
  padding: 3rem 3rem !important; }

.pt-5 {
  padding-top: 3rem !important; }

.pr-5 {
  padding-right: 3rem !important; }

.pb-5 {
  padding-bottom: 3rem !important; }

.pl-5 {
  padding-left: 3rem !important; }

.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important; }

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important; }

@media (min-width: 640px) and (min-width: 640px) {
  .m-medium-0 {
    margin: 0 0 !important; }
  .mt-medium-0 {
    margin-top: 0 !important; }
  .mr-medium-0 {
    margin-right: 0 !important; }
  .mb-medium-0 {
    margin-bottom: 0 !important; }
  .ml-medium-0 {
    margin-left: 0 !important; }
  .mx-medium-0 {
    margin-right: 0 !important;
    margin-left: 0 !important; }
  .my-medium-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important; } }

@media (min-width: 640px) and (min-width: 640px) {
  .m-medium-1 {
    margin: 0.25rem 0.25rem !important; }
  .mt-medium-1 {
    margin-top: 0.25rem !important; }
  .mr-medium-1 {
    margin-right: 0.25rem !important; }
  .mb-medium-1 {
    margin-bottom: 0.25rem !important; }
  .ml-medium-1 {
    margin-left: 0.25rem !important; }
  .mx-medium-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important; }
  .my-medium-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important; } }

@media (min-width: 640px) and (min-width: 640px) {
  .m-medium-2 {
    margin: 0.5rem 0.5rem !important; }
  .mt-medium-2 {
    margin-top: 0.5rem !important; }
  .mr-medium-2 {
    margin-right: 0.5rem !important; }
  .mb-medium-2 {
    margin-bottom: 0.5rem !important; }
  .ml-medium-2 {
    margin-left: 0.5rem !important; }
  .mx-medium-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important; }
  .my-medium-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important; } }

@media (min-width: 640px) and (min-width: 640px) {
  .m-medium-3 {
    margin: 1rem 1rem !important; }
  .mt-medium-3 {
    margin-top: 1rem !important; }
  .mr-medium-3 {
    margin-right: 1rem !important; }
  .mb-medium-3 {
    margin-bottom: 1rem !important; }
  .ml-medium-3 {
    margin-left: 1rem !important; }
  .mx-medium-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important; }
  .my-medium-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important; } }

@media (min-width: 640px) and (min-width: 640px) {
  .m-medium-4 {
    margin: 1.5rem 1.5rem !important; }
  .mt-medium-4 {
    margin-top: 1.5rem !important; }
  .mr-medium-4 {
    margin-right: 1.5rem !important; }
  .mb-medium-4 {
    margin-bottom: 1.5rem !important; }
  .ml-medium-4 {
    margin-left: 1.5rem !important; }
  .mx-medium-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important; }
  .my-medium-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important; } }

@media (min-width: 640px) and (min-width: 640px) {
  .m-medium-5 {
    margin: 3rem 3rem !important; }
  .mt-medium-5 {
    margin-top: 3rem !important; }
  .mr-medium-5 {
    margin-right: 3rem !important; }
  .mb-medium-5 {
    margin-bottom: 3rem !important; }
  .ml-medium-5 {
    margin-left: 3rem !important; }
  .mx-medium-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important; }
  .my-medium-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important; } }

@media (min-width: 640px) and (min-width: 640px) {
  .p-medium-0 {
    padding: 0 0 !important; }
  .pt-medium-0 {
    padding-top: 0 !important; }
  .pr-medium-0 {
    padding-right: 0 !important; }
  .pb-medium-0 {
    padding-bottom: 0 !important; }
  .pl-medium-0 {
    padding-left: 0 !important; }
  .px-medium-0 {
    padding-right: 0 !important;
    padding-left: 0 !important; }
  .py-medium-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important; } }

@media (min-width: 640px) and (min-width: 640px) {
  .p-medium-1 {
    padding: 0.25rem 0.25rem !important; }
  .pt-medium-1 {
    padding-top: 0.25rem !important; }
  .pr-medium-1 {
    padding-right: 0.25rem !important; }
  .pb-medium-1 {
    padding-bottom: 0.25rem !important; }
  .pl-medium-1 {
    padding-left: 0.25rem !important; }
  .px-medium-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important; }
  .py-medium-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important; } }

@media (min-width: 640px) and (min-width: 640px) {
  .p-medium-2 {
    padding: 0.5rem 0.5rem !important; }
  .pt-medium-2 {
    padding-top: 0.5rem !important; }
  .pr-medium-2 {
    padding-right: 0.5rem !important; }
  .pb-medium-2 {
    padding-bottom: 0.5rem !important; }
  .pl-medium-2 {
    padding-left: 0.5rem !important; }
  .px-medium-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important; }
  .py-medium-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important; } }

@media (min-width: 640px) and (min-width: 640px) {
  .p-medium-3 {
    padding: 1rem 1rem !important; }
  .pt-medium-3 {
    padding-top: 1rem !important; }
  .pr-medium-3 {
    padding-right: 1rem !important; }
  .pb-medium-3 {
    padding-bottom: 1rem !important; }
  .pl-medium-3 {
    padding-left: 1rem !important; }
  .px-medium-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important; }
  .py-medium-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important; } }

@media (min-width: 640px) and (min-width: 640px) {
  .p-medium-4 {
    padding: 1.5rem 1.5rem !important; }
  .pt-medium-4 {
    padding-top: 1.5rem !important; }
  .pr-medium-4 {
    padding-right: 1.5rem !important; }
  .pb-medium-4 {
    padding-bottom: 1.5rem !important; }
  .pl-medium-4 {
    padding-left: 1.5rem !important; }
  .px-medium-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important; }
  .py-medium-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important; } }

@media (min-width: 640px) and (min-width: 640px) {
  .p-medium-5 {
    padding: 3rem 3rem !important; }
  .pt-medium-5 {
    padding-top: 3rem !important; }
  .pr-medium-5 {
    padding-right: 3rem !important; }
  .pb-medium-5 {
    padding-bottom: 3rem !important; }
  .pl-medium-5 {
    padding-left: 3rem !important; }
  .px-medium-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important; }
  .py-medium-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important; } }

@media (min-width: 1024px) and (min-width: 1024px) {
  .m-large-0 {
    margin: 0 0 !important; }
  .mt-large-0 {
    margin-top: 0 !important; }
  .mr-large-0 {
    margin-right: 0 !important; }
  .mb-large-0 {
    margin-bottom: 0 !important; }
  .ml-large-0 {
    margin-left: 0 !important; }
  .mx-large-0 {
    margin-right: 0 !important;
    margin-left: 0 !important; }
  .my-large-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important; } }

@media (min-width: 1024px) and (min-width: 1024px) {
  .m-large-1 {
    margin: 0.25rem 0.25rem !important; }
  .mt-large-1 {
    margin-top: 0.25rem !important; }
  .mr-large-1 {
    margin-right: 0.25rem !important; }
  .mb-large-1 {
    margin-bottom: 0.25rem !important; }
  .ml-large-1 {
    margin-left: 0.25rem !important; }
  .mx-large-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important; }
  .my-large-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important; } }

@media (min-width: 1024px) and (min-width: 1024px) {
  .m-large-2 {
    margin: 0.5rem 0.5rem !important; }
  .mt-large-2 {
    margin-top: 0.5rem !important; }
  .mr-large-2 {
    margin-right: 0.5rem !important; }
  .mb-large-2 {
    margin-bottom: 0.5rem !important; }
  .ml-large-2 {
    margin-left: 0.5rem !important; }
  .mx-large-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important; }
  .my-large-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important; } }

@media (min-width: 1024px) and (min-width: 1024px) {
  .m-large-3 {
    margin: 1rem 1rem !important; }
  .mt-large-3 {
    margin-top: 1rem !important; }
  .mr-large-3 {
    margin-right: 1rem !important; }
  .mb-large-3 {
    margin-bottom: 1rem !important; }
  .ml-large-3 {
    margin-left: 1rem !important; }
  .mx-large-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important; }
  .my-large-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important; } }

@media (min-width: 1024px) and (min-width: 1024px) {
  .m-large-4 {
    margin: 1.5rem 1.5rem !important; }
  .mt-large-4 {
    margin-top: 1.5rem !important; }
  .mr-large-4 {
    margin-right: 1.5rem !important; }
  .mb-large-4 {
    margin-bottom: 1.5rem !important; }
  .ml-large-4 {
    margin-left: 1.5rem !important; }
  .mx-large-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important; }
  .my-large-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important; } }

@media (min-width: 1024px) and (min-width: 1024px) {
  .m-large-5 {
    margin: 3rem 3rem !important; }
  .mt-large-5 {
    margin-top: 3rem !important; }
  .mr-large-5 {
    margin-right: 3rem !important; }
  .mb-large-5 {
    margin-bottom: 3rem !important; }
  .ml-large-5 {
    margin-left: 3rem !important; }
  .mx-large-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important; }
  .my-large-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important; } }

@media (min-width: 1024px) and (min-width: 1024px) {
  .p-large-0 {
    padding: 0 0 !important; }
  .pt-large-0 {
    padding-top: 0 !important; }
  .pr-large-0 {
    padding-right: 0 !important; }
  .pb-large-0 {
    padding-bottom: 0 !important; }
  .pl-large-0 {
    padding-left: 0 !important; }
  .px-large-0 {
    padding-right: 0 !important;
    padding-left: 0 !important; }
  .py-large-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important; } }

@media (min-width: 1024px) and (min-width: 1024px) {
  .p-large-1 {
    padding: 0.25rem 0.25rem !important; }
  .pt-large-1 {
    padding-top: 0.25rem !important; }
  .pr-large-1 {
    padding-right: 0.25rem !important; }
  .pb-large-1 {
    padding-bottom: 0.25rem !important; }
  .pl-large-1 {
    padding-left: 0.25rem !important; }
  .px-large-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important; }
  .py-large-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important; } }

@media (min-width: 1024px) and (min-width: 1024px) {
  .p-large-2 {
    padding: 0.5rem 0.5rem !important; }
  .pt-large-2 {
    padding-top: 0.5rem !important; }
  .pr-large-2 {
    padding-right: 0.5rem !important; }
  .pb-large-2 {
    padding-bottom: 0.5rem !important; }
  .pl-large-2 {
    padding-left: 0.5rem !important; }
  .px-large-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important; }
  .py-large-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important; } }

@media (min-width: 1024px) and (min-width: 1024px) {
  .p-large-3 {
    padding: 1rem 1rem !important; }
  .pt-large-3 {
    padding-top: 1rem !important; }
  .pr-large-3 {
    padding-right: 1rem !important; }
  .pb-large-3 {
    padding-bottom: 1rem !important; }
  .pl-large-3 {
    padding-left: 1rem !important; }
  .px-large-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important; }
  .py-large-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important; } }

@media (min-width: 1024px) and (min-width: 1024px) {
  .p-large-4 {
    padding: 1.5rem 1.5rem !important; }
  .pt-large-4 {
    padding-top: 1.5rem !important; }
  .pr-large-4 {
    padding-right: 1.5rem !important; }
  .pb-large-4 {
    padding-bottom: 1.5rem !important; }
  .pl-large-4 {
    padding-left: 1.5rem !important; }
  .px-large-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important; }
  .py-large-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important; } }

@media (min-width: 1024px) and (min-width: 1024px) {
  .p-large-5 {
    padding: 3rem 3rem !important; }
  .pt-large-5 {
    padding-top: 3rem !important; }
  .pr-large-5 {
    padding-right: 3rem !important; }
  .pb-large-5 {
    padding-bottom: 3rem !important; }
  .pl-large-5 {
    padding-left: 3rem !important; }
  .px-large-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important; }
  .py-large-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important; } }

@media (min-width: 1200px) and (min-width: 1200px) {
  .m-xlarge-0 {
    margin: 0 0 !important; }
  .mt-xlarge-0 {
    margin-top: 0 !important; }
  .mr-xlarge-0 {
    margin-right: 0 !important; }
  .mb-xlarge-0 {
    margin-bottom: 0 !important; }
  .ml-xlarge-0 {
    margin-left: 0 !important; }
  .mx-xlarge-0 {
    margin-right: 0 !important;
    margin-left: 0 !important; }
  .my-xlarge-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important; } }

@media (min-width: 1200px) and (min-width: 1200px) {
  .m-xlarge-1 {
    margin: 0.25rem 0.25rem !important; }
  .mt-xlarge-1 {
    margin-top: 0.25rem !important; }
  .mr-xlarge-1 {
    margin-right: 0.25rem !important; }
  .mb-xlarge-1 {
    margin-bottom: 0.25rem !important; }
  .ml-xlarge-1 {
    margin-left: 0.25rem !important; }
  .mx-xlarge-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important; }
  .my-xlarge-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important; } }

@media (min-width: 1200px) and (min-width: 1200px) {
  .m-xlarge-2 {
    margin: 0.5rem 0.5rem !important; }
  .mt-xlarge-2 {
    margin-top: 0.5rem !important; }
  .mr-xlarge-2 {
    margin-right: 0.5rem !important; }
  .mb-xlarge-2 {
    margin-bottom: 0.5rem !important; }
  .ml-xlarge-2 {
    margin-left: 0.5rem !important; }
  .mx-xlarge-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important; }
  .my-xlarge-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important; } }

@media (min-width: 1200px) and (min-width: 1200px) {
  .m-xlarge-3 {
    margin: 1rem 1rem !important; }
  .mt-xlarge-3 {
    margin-top: 1rem !important; }
  .mr-xlarge-3 {
    margin-right: 1rem !important; }
  .mb-xlarge-3 {
    margin-bottom: 1rem !important; }
  .ml-xlarge-3 {
    margin-left: 1rem !important; }
  .mx-xlarge-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important; }
  .my-xlarge-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important; } }

@media (min-width: 1200px) and (min-width: 1200px) {
  .m-xlarge-4 {
    margin: 1.5rem 1.5rem !important; }
  .mt-xlarge-4 {
    margin-top: 1.5rem !important; }
  .mr-xlarge-4 {
    margin-right: 1.5rem !important; }
  .mb-xlarge-4 {
    margin-bottom: 1.5rem !important; }
  .ml-xlarge-4 {
    margin-left: 1.5rem !important; }
  .mx-xlarge-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important; }
  .my-xlarge-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important; } }

@media (min-width: 1200px) and (min-width: 1200px) {
  .m-xlarge-5 {
    margin: 3rem 3rem !important; }
  .mt-xlarge-5 {
    margin-top: 3rem !important; }
  .mr-xlarge-5 {
    margin-right: 3rem !important; }
  .mb-xlarge-5 {
    margin-bottom: 3rem !important; }
  .ml-xlarge-5 {
    margin-left: 3rem !important; }
  .mx-xlarge-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important; }
  .my-xlarge-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important; } }

@media (min-width: 1200px) and (min-width: 1200px) {
  .p-xlarge-0 {
    padding: 0 0 !important; }
  .pt-xlarge-0 {
    padding-top: 0 !important; }
  .pr-xlarge-0 {
    padding-right: 0 !important; }
  .pb-xlarge-0 {
    padding-bottom: 0 !important; }
  .pl-xlarge-0 {
    padding-left: 0 !important; }
  .px-xlarge-0 {
    padding-right: 0 !important;
    padding-left: 0 !important; }
  .py-xlarge-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important; } }

@media (min-width: 1200px) and (min-width: 1200px) {
  .p-xlarge-1 {
    padding: 0.25rem 0.25rem !important; }
  .pt-xlarge-1 {
    padding-top: 0.25rem !important; }
  .pr-xlarge-1 {
    padding-right: 0.25rem !important; }
  .pb-xlarge-1 {
    padding-bottom: 0.25rem !important; }
  .pl-xlarge-1 {
    padding-left: 0.25rem !important; }
  .px-xlarge-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important; }
  .py-xlarge-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important; } }

@media (min-width: 1200px) and (min-width: 1200px) {
  .p-xlarge-2 {
    padding: 0.5rem 0.5rem !important; }
  .pt-xlarge-2 {
    padding-top: 0.5rem !important; }
  .pr-xlarge-2 {
    padding-right: 0.5rem !important; }
  .pb-xlarge-2 {
    padding-bottom: 0.5rem !important; }
  .pl-xlarge-2 {
    padding-left: 0.5rem !important; }
  .px-xlarge-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important; }
  .py-xlarge-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important; } }

@media (min-width: 1200px) and (min-width: 1200px) {
  .p-xlarge-3 {
    padding: 1rem 1rem !important; }
  .pt-xlarge-3 {
    padding-top: 1rem !important; }
  .pr-xlarge-3 {
    padding-right: 1rem !important; }
  .pb-xlarge-3 {
    padding-bottom: 1rem !important; }
  .pl-xlarge-3 {
    padding-left: 1rem !important; }
  .px-xlarge-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important; }
  .py-xlarge-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important; } }

@media (min-width: 1200px) and (min-width: 1200px) {
  .p-xlarge-4 {
    padding: 1.5rem 1.5rem !important; }
  .pt-xlarge-4 {
    padding-top: 1.5rem !important; }
  .pr-xlarge-4 {
    padding-right: 1.5rem !important; }
  .pb-xlarge-4 {
    padding-bottom: 1.5rem !important; }
  .pl-xlarge-4 {
    padding-left: 1.5rem !important; }
  .px-xlarge-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important; }
  .py-xlarge-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important; } }

@media (min-width: 1200px) and (min-width: 1200px) {
  .p-xlarge-5 {
    padding: 3rem 3rem !important; }
  .pt-xlarge-5 {
    padding-top: 3rem !important; }
  .pr-xlarge-5 {
    padding-right: 3rem !important; }
  .pb-xlarge-5 {
    padding-bottom: 3rem !important; }
  .pl-xlarge-5 {
    padding-left: 3rem !important; }
  .px-xlarge-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important; }
  .py-xlarge-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important; } }

@media (min-width: 1440px) and (min-width: 1440px) {
  .m-xxlarge-0 {
    margin: 0 0 !important; }
  .mt-xxlarge-0 {
    margin-top: 0 !important; }
  .mr-xxlarge-0 {
    margin-right: 0 !important; }
  .mb-xxlarge-0 {
    margin-bottom: 0 !important; }
  .ml-xxlarge-0 {
    margin-left: 0 !important; }
  .mx-xxlarge-0 {
    margin-right: 0 !important;
    margin-left: 0 !important; }
  .my-xxlarge-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important; } }

@media (min-width: 1440px) and (min-width: 1440px) {
  .m-xxlarge-1 {
    margin: 0.25rem 0.25rem !important; }
  .mt-xxlarge-1 {
    margin-top: 0.25rem !important; }
  .mr-xxlarge-1 {
    margin-right: 0.25rem !important; }
  .mb-xxlarge-1 {
    margin-bottom: 0.25rem !important; }
  .ml-xxlarge-1 {
    margin-left: 0.25rem !important; }
  .mx-xxlarge-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important; }
  .my-xxlarge-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important; } }

@media (min-width: 1440px) and (min-width: 1440px) {
  .m-xxlarge-2 {
    margin: 0.5rem 0.5rem !important; }
  .mt-xxlarge-2 {
    margin-top: 0.5rem !important; }
  .mr-xxlarge-2 {
    margin-right: 0.5rem !important; }
  .mb-xxlarge-2 {
    margin-bottom: 0.5rem !important; }
  .ml-xxlarge-2 {
    margin-left: 0.5rem !important; }
  .mx-xxlarge-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important; }
  .my-xxlarge-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important; } }

@media (min-width: 1440px) and (min-width: 1440px) {
  .m-xxlarge-3 {
    margin: 1rem 1rem !important; }
  .mt-xxlarge-3 {
    margin-top: 1rem !important; }
  .mr-xxlarge-3 {
    margin-right: 1rem !important; }
  .mb-xxlarge-3 {
    margin-bottom: 1rem !important; }
  .ml-xxlarge-3 {
    margin-left: 1rem !important; }
  .mx-xxlarge-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important; }
  .my-xxlarge-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important; } }

@media (min-width: 1440px) and (min-width: 1440px) {
  .m-xxlarge-4 {
    margin: 1.5rem 1.5rem !important; }
  .mt-xxlarge-4 {
    margin-top: 1.5rem !important; }
  .mr-xxlarge-4 {
    margin-right: 1.5rem !important; }
  .mb-xxlarge-4 {
    margin-bottom: 1.5rem !important; }
  .ml-xxlarge-4 {
    margin-left: 1.5rem !important; }
  .mx-xxlarge-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important; }
  .my-xxlarge-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important; } }

@media (min-width: 1440px) and (min-width: 1440px) {
  .m-xxlarge-5 {
    margin: 3rem 3rem !important; }
  .mt-xxlarge-5 {
    margin-top: 3rem !important; }
  .mr-xxlarge-5 {
    margin-right: 3rem !important; }
  .mb-xxlarge-5 {
    margin-bottom: 3rem !important; }
  .ml-xxlarge-5 {
    margin-left: 3rem !important; }
  .mx-xxlarge-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important; }
  .my-xxlarge-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important; } }

@media (min-width: 1440px) and (min-width: 1440px) {
  .p-xxlarge-0 {
    padding: 0 0 !important; }
  .pt-xxlarge-0 {
    padding-top: 0 !important; }
  .pr-xxlarge-0 {
    padding-right: 0 !important; }
  .pb-xxlarge-0 {
    padding-bottom: 0 !important; }
  .pl-xxlarge-0 {
    padding-left: 0 !important; }
  .px-xxlarge-0 {
    padding-right: 0 !important;
    padding-left: 0 !important; }
  .py-xxlarge-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important; } }

@media (min-width: 1440px) and (min-width: 1440px) {
  .p-xxlarge-1 {
    padding: 0.25rem 0.25rem !important; }
  .pt-xxlarge-1 {
    padding-top: 0.25rem !important; }
  .pr-xxlarge-1 {
    padding-right: 0.25rem !important; }
  .pb-xxlarge-1 {
    padding-bottom: 0.25rem !important; }
  .pl-xxlarge-1 {
    padding-left: 0.25rem !important; }
  .px-xxlarge-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important; }
  .py-xxlarge-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important; } }

@media (min-width: 1440px) and (min-width: 1440px) {
  .p-xxlarge-2 {
    padding: 0.5rem 0.5rem !important; }
  .pt-xxlarge-2 {
    padding-top: 0.5rem !important; }
  .pr-xxlarge-2 {
    padding-right: 0.5rem !important; }
  .pb-xxlarge-2 {
    padding-bottom: 0.5rem !important; }
  .pl-xxlarge-2 {
    padding-left: 0.5rem !important; }
  .px-xxlarge-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important; }
  .py-xxlarge-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important; } }

@media (min-width: 1440px) and (min-width: 1440px) {
  .p-xxlarge-3 {
    padding: 1rem 1rem !important; }
  .pt-xxlarge-3 {
    padding-top: 1rem !important; }
  .pr-xxlarge-3 {
    padding-right: 1rem !important; }
  .pb-xxlarge-3 {
    padding-bottom: 1rem !important; }
  .pl-xxlarge-3 {
    padding-left: 1rem !important; }
  .px-xxlarge-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important; }
  .py-xxlarge-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important; } }

@media (min-width: 1440px) and (min-width: 1440px) {
  .p-xxlarge-4 {
    padding: 1.5rem 1.5rem !important; }
  .pt-xxlarge-4 {
    padding-top: 1.5rem !important; }
  .pr-xxlarge-4 {
    padding-right: 1.5rem !important; }
  .pb-xxlarge-4 {
    padding-bottom: 1.5rem !important; }
  .pl-xxlarge-4 {
    padding-left: 1.5rem !important; }
  .px-xxlarge-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important; }
  .py-xxlarge-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important; } }

@media (min-width: 1440px) and (min-width: 1440px) {
  .p-xxlarge-5 {
    padding: 3rem 3rem !important; }
  .pt-xxlarge-5 {
    padding-top: 3rem !important; }
  .pr-xxlarge-5 {
    padding-right: 3rem !important; }
  .pb-xxlarge-5 {
    padding-bottom: 3rem !important; }
  .pl-xxlarge-5 {
    padding-left: 3rem !important; }
  .px-xxlarge-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important; }
  .py-xxlarge-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important; } }

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

Stylesheet: Main Stylesheet

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

::-moz-selection {
  background: #212322 !important;
  color: #fff !important; }

::selection {
  background: #212322 !important;
  color: #fff !important; }

* {
  transition: color 200ms ease-in-out;
  transition: background-color 200ms ease-in-out; }

/*********************
H1, H2, H3, H4, H5 P STYLES
*********************/
h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a {
  text-decoration: none; }

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

h2, .h2 {
  font-weight: 700; }
  h2:not(:first-child), .h2:not(:first-child) {
    margin-top: 1rem; }

h3, .h3 {
  font-weight: 600; }
  h3:not(:first-child), .h3:not(:first-child) {
    margin-top: 1rem; }

h4, .h4 {
  font-weight: 600; }
  h4.name, .h4.name {
    margin-bottom: 0; }

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

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

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

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

/*********************
POSTS & CONTENT STYLES
*********************/
p {
  font-size: 1.125rem;
  line-height: 1.7; }

ul {
  list-style: disc;
  margin-left: 1.5rem; }
  ul li {
    font-size: 1.125rem;
    margin-left: 1rem;
    line-height: 1.5; }

#content #inner-content {
  padding: 0rem 0rem; }

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

.byline {
  color: #999; }

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

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

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

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

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

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

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

.post-password-form input[type="submit"] {
  display: inline-block;
  vertical-align: middle;
  margin: 1.5rem 0;
  padding: 2.2rem 3.5rem;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  font-size: 1rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  background-color: #ffffff;
  color: #ffffff; }
  [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: #F4364C;
    color: #ffffff; }

/*********************
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; }

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

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

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

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

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

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

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

/*********************
Common element styles
*********************/
.emphasized-blockquote, .hero .hero-inner blockquote, .content-blocks main > article .case-block-container blockquote {
  padding: 0 0 0 40px;
  font-style: normal;
  position: relative;
  margin: 1.5em 0;
  border: 0; }
  @media print, screen and (min-width: 40em) {
    .emphasized-blockquote, .hero .hero-inner blockquote, .content-blocks main > article .case-block-container blockquote {
      padding: 0 50px; } }
  @media print, screen and (min-width: 64em) {
    .emphasized-blockquote, .hero .hero-inner blockquote, .content-blocks main > article .case-block-container blockquote {
      padding: 0 80px; } }
  .emphasized-blockquote p, .hero .hero-inner blockquote p, .content-blocks main > article .case-block-container blockquote p {
    font-size: 22px;
    color: #585858;
    line-height: 1.325;
    text-align: left; }
    @media print, screen and (min-width: 40em) {
      .emphasized-blockquote p, .hero .hero-inner blockquote p, .content-blocks main > article .case-block-container blockquote p {
        text-align: center;
        font-size: 26px; } }
    @media print, screen and (min-width: 64em) {
      .emphasized-blockquote p, .hero .hero-inner blockquote p, .content-blocks main > article .case-block-container blockquote p {
        font-size: 40px; } }
  .emphasized-blockquote:before, .hero .hero-inner blockquote:before, .content-blocks main > article .case-block-container blockquote:before, .emphasized-blockquote:after, .hero .hero-inner blockquote:after, .content-blocks main > article .case-block-container blockquote:after {
    content: "";
    background-image: url("data:image/png;base64,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UmVhZHlxyWU8AAADJmlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDUgNzkuMTYzNDk5LCAyMDE4LzA4LzEzLTE2OjQwOjIyICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdFJlZj0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlUmVmIyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgMjAxOSAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6OEYxMkZDOTAxRjlGMTFFOTg4RjU5N0FCQ0JEM0JCNDUiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6OEYxMkZDOTExRjlGMTFFOTg4RjU5N0FCQ0JEM0JCNDUiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo4RjEyRkM4RTFGOUYxMUU5ODhGNTk3QUJDQkQzQkI0NSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo4RjEyRkM4RjFGOUYxMUU5ODhGNTk3QUJDQkQzQkI0NSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Phz2yPEAAANlSURBVHja7JpbiE1RGMf3nOOMchuN2/CgDpEHEg+acqk545LbiPDAlPJkxiBEyr0p5JCYxBPzMAqTXPJgaiiXQiTRTO5EJGXQxBkmM/6f8+06prPPfHvvtdZ+sL/6NTPnrN23f3vWWvvba+28RCJhuYw8MBHMAmPASGYIf/8DnAZVIGWpjx5gCigFozg3/Szg71tADdjldLA0SG4DKMuQyxa9wErwFuxWKFoCKvhC98vRrhDsBA/BBS/CA/jEV4GoixMsViRK/8EkWOjyuGIvwnPAKdDfw4lGFchuAztATFX+XMJbwB4es6YjH5wAy3VMANkmpZNghRVM9AZXeGJSHpEsn9Uoku3w2A0vKZLtkAivB6sVXcwnHo6pBQmd+TO79AhwQEGiFN+Ht7o8bjEoV5D/KzjMFy+n8F6HLu4UTaAeXAUvwEefQ6va5THXufvfBM9ZVDxpUVGxVJjoE6gE5xTOJcv4HCTxmAub+35maWn3ewemgTeKJ8/NwnZ3wEzQ6qcr0T1vgXBslGiQpTp4nKDdUzDbj6wtPAP0FbRdA15quDUuEbTpBIuk47Q74fmCds2gTlOhIcl/hs9BSeERF7Sr11hZSfKfVVlpDRW0u6FJlsrYwSbzk3CRoN0HTcJFgoeTdvBZpfBAQbsvmoQluVtUPzxIHv8KNAlLKrs+LitA3wnt5ZWggh4XJ5kWplWHwgCl93tc9XC14pEZw/hhIcm1bHuOtr+4TatC4angHjgGnnEh4hTfwSPw04+wPaMedNH+NRcr1d1cIGmMB8ddPPw38/nWeunSXguK7eAuGG54CJDXWCu9VHWRJz7twnZMAI2ZSQ1HGS9IGBO2n4jWBjjpzQXzTApTVFnBRoVpYarZRwcoXGpa2L69BRU9qZYwLRwLuFvHItZ/FqFwKBwKh8KhcCgcCofCoXAorFC4zWC+rrlShn3bSPiVwYRdc9EG+29Dub8RJHzZUELaW36f5T/caCj/NbtLHzV0lY84fH7IkHDSFqa3XjdqTtZgpV94c/quTnP+feA2/RKNx//uR9PaMW2JTtewKnHLSu/y51qMp9ePaAlmsqX+3U5am15n/2ELUzzgKx3hk6PXhvN9JKJNbHo7aJPlsO2REZ08lhtYmHYOBlne38ilIXqeRf8ZMn8EGACDsZI5JeHvfAAAAABJRU5ErkJggg==");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 0;
    width: 30px;
    height: 25px; }
    @media print, screen and (min-width: 40em) {
      .emphasized-blockquote:before, .hero .hero-inner blockquote:before, .content-blocks main > article .case-block-container blockquote:before, .emphasized-blockquote:after, .hero .hero-inner blockquote:after, .content-blocks main > article .case-block-container blockquote:after {
        top: 32%;
        transform: translateY(-50%);
        width: 40px;
        height: 33.333px; } }
    @media print, screen and (min-width: 64em) {
      .emphasized-blockquote:before, .hero .hero-inner blockquote:before, .content-blocks main > article .case-block-container blockquote:before, .emphasized-blockquote:after, .hero .hero-inner blockquote:after, .content-blocks main > article .case-block-container blockquote:after {
        width: 60px;
        height: 50px; } }
  .emphasized-blockquote:before, .hero .hero-inner blockquote:before, .content-blocks main > article .case-block-container blockquote:before {
    left: -10px; }
    @media print, screen and (min-width: 40em) {
      .emphasized-blockquote:before, .hero .hero-inner blockquote:before, .content-blocks main > article .case-block-container blockquote:before {
        left: -30px; } }
    @media print, screen and (min-width: 64em) {
      .emphasized-blockquote:before, .hero .hero-inner blockquote:before, .content-blocks main > article .case-block-container blockquote:before {
        left: -40px; } }
  .emphasized-blockquote:after, .hero .hero-inner blockquote:after, .content-blocks main > article .case-block-container blockquote:after {
    right: 0;
    display: none; }
    @media print, screen and (min-width: 40em) {
      .emphasized-blockquote:after, .hero .hero-inner blockquote:after, .content-blocks main > article .case-block-container blockquote:after {
        display: block;
        right: -30px; } }
    @media print, screen and (min-width: 64em) {
      .emphasized-blockquote:after, .hero .hero-inner blockquote:after, .content-blocks main > article .case-block-container blockquote:after {
        right: -40px; } }

.section-padding, .entry-content, .sidebar, .page-section {
  position: relative;
  padding: 4rem 0.5rem; }
  @media print, screen and (min-width: 40em) {
    .section-padding, .entry-content, .sidebar, .page-section {
      padding: 4rem 0.5rem; } }
  @media print, screen and (min-width: 64em) {
    .section-padding, .entry-content, .sidebar, .page-section {
      padding: 6rem 0.5rem; } }

.off-canvas-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh; }
  .off-canvas-content > #content {
    -ms-flex: 1 0 auto;
    flex: 1 0 auto; }

@-moz-document url-prefix() {
  .off-canvas-content > #content {
    flex: 1; } }

@media screen and (max-width: 39.9375em) {
  .off-canvas-content .header > .row, .off-canvas-content #content > .row, .off-canvas-content .footer > .row {
    padding-left: 1rem !important;
    padding-right: 1rem !important; } }

body.admin-bar .off-canvas-content {
  min-height: calc(100vh - 32px); }

@media print, screen and (min-width: 40em) {
  .sidebar {
    padding-top: 5rem !important; } }

.page-section .sectionheader, .page-section .section-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 2.5rem;
  padding-left: 5rem;
  padding-right: 5rem;
  text-align: center; }
  @media print, screen and (min-width: 64em) {
    .page-section .sectionheader, .page-section .section-header {
      text-align: left; } }
  .page-section .sectionheader h1, .page-section .section-header h1 {
    font-weight: 700;
    line-height: 1.8;
    font-size: 1.2rem; }
    @media print, screen and (min-width: 40em) {
      .page-section .sectionheader h1, .page-section .section-header h1 {
        font-size: 1.4rem; } }
  .page-section .sectionheader .sectionheadericon, .page-section .section-header .sectionheadericon {
    width: 38px;
    height: auto; }

#statistics {
  padding-top: 8rem; }
  @media print, screen and (min-width: 40em) {
    #statistics {
      padding-top: 6rem; } }
  @media print, screen and (min-width: 64em) {
    #statistics {
      padding-top: 4rem; } }
  #statistics .stats-header {
    font-size: 1.2rem;
    font-weight: 400;
    text-align: center; }
    @media print, screen and (min-width: 40em) {
      #statistics .stats-header {
        font-size: 1.4rem; } }
    @media print, screen and (min-width: 64em) {
      #statistics .stats-header {
        font-size: 1.8rem; } }
  #statistics .stats-number {
    text-align: center;
    font-weight: 700;
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 0; }
    @media print, screen and (min-width: 40em) {
      #statistics .stats-number {
        font-size: 4rem; } }
    @media print, screen and (min-width: 64em) {
      #statistics .stats-number {
        font-size: 5.5rem; } }

#clients {
  padding-top: 3rem; }

ul.menu > li.active a {
  background-color: transparent;
  color: #ffffff; }

@media screen and (max-width: 39.9375em) {
  .title-bar {
    position: fixed;
    width: 100%;
    z-index: 20; } }

.top-bar {
  transition: padding 0.2s ease;
  padding: 0.5rem; }
  @media print, screen and (min-width: 40em) {
    .top-bar {
      padding: 0.5rem 1.5rem;
      min-height: 65px; } }
  .top-bar.headroom--not-top {
    padding: 0.5rem; }
    @media print, screen and (min-width: 40em) {
      .top-bar.headroom--not-top {
        padding: 0.5rem 1.5rem; } }
  .top-bar a {
    font-weight: 600;
    font-size: 1.2rem;
    color: #fff; }
  .top-bar .top-bar-right ul.menu {
    display: inline-block;
    width: auto;
    margin: 0;
    padding: 0; }
    .top-bar .top-bar-right ul.menu li {
      border-bottom: 4px solid transparent; }
    .top-bar .top-bar-right ul.menu li.active {
      color: #ffffff;
      border-bottom: 4px solid #ffffff; }
      .top-bar .top-bar-right ul.menu li.active a {
        font-weight: 700;
        color: #ffffff; }
  .top-bar .small-titlebar {
    z-index: 20;
    position: relative;
    width: 100%;
    line-height: 50px; }
    .top-bar .small-titlebar #menu-toggle {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-align: center;
      align-items: center; }
    .top-bar .small-titlebar span.toggle-text {
      display: inline-block;
      position: relative;
      margin-left: 0.8rem; }
  .top-bar .top-bar-left {
    position: relative;
    z-index: 11; }
  .top-bar .top-bar-right {
    z-index: 10; }

@media screen and (min-width: 40em) {
  .off-canvas-content {
    padding-top: 65px; } }

body.admin-bar .headroom {
  top: 32px; }

.headroom {
  position: fixed;
  width: 100%;
  top: 0;
  will-change: transform;
  transition: transform 200ms linear, background 200ms linear 10ms, padding 350ms ease 150ms;
  z-index: 10; }
  .headroom:before {
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 65px;
    z-index: 2;
    background: #F4364C;
    opacity: 0;
    transition: opacity 350ms ease 250ms; }

.page-template-page-blog .headroom:before,
.page-template-page-cases .headroom:before,
.page-template-page-services .headroom:before,
body.search-no-results .headroom:before,
body.search-results .headroom:before {
  opacity: 1; }

.headroom--not-top:before {
  opacity: 1; }

.headroom--top {
  transform: translateY(0); }

.headroom--pinned {
  transform: translateY(0%); }

.headroom--unpinned {
  transform: translateY(-100%); }

.nav-icon {
  display: inline-block;
  width: 40px;
  height: 30px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer; }

.nav-icon span {
  display: block;
  position: absolute;
  height: 6px;
  width: 100%;
  background: #fefefe;
  border-radius: 0;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out; }

.nav-icon span:nth-child(1) {
  top: 0; }

.nav-icon span:nth-child(2),
.nav-icon span:nth-child(3) {
  top: 12px; }

.nav-icon span:nth-child(4) {
  top: 24px; }

.nav-icon.open span:nth-child(1) {
  top: 12px;
  width: 0;
  left: 50%; }

.nav-icon.open span:nth-child(2) {
  transform: rotate(45deg); }

.nav-icon.open span:nth-child(3) {
  transform: rotate(-45deg); }

.nav-icon.open span:nth-child(4) {
  top: 12px;
  width: 0;
  left: 50%; }

.search-area {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  max-width: 280px;
  margin: 0 auto; }
  @media screen and (min-width: 40em) {
    .search-area {
      -ms-flex-direction: row-reverse;
      flex-direction: row-reverse;
      right: 0;
      max-width: 300px;
      top: 1rem; } }
  .search-area .header-search-form {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-out;
    width: 100%;
    position: relative;
    top: -.8rem; }
    @media screen and (min-width: 40em) {
      .search-area .header-search-form {
        max-width: 200px; } }
    .search-area .header-search-form.visible {
      opacity: 1;
      width: 100%;
      max-width: 100%;
      visibility: visible; }
    .search-area .header-search-form form {
      position: relative;
      display: -ms-flexbox;
      display: flex; }
      .search-area .header-search-form form input[type=search] {
        height: 100%;
        margin: 0;
        padding: 1rem;
        border: 0; }
      .search-area .header-search-form form button[type=submit] {
        padding: .5rem;
        margin: 0;
        width: 4rem;
        border: 0; }
        .search-area .header-search-form form button[type=submit] .text {
          border: 0 !important;
          clip: rect(1px, 1px, 1px, 1px) !important;
          -webkit-clip-path: inset(50%) !important;
          clip-path: inset(50%) !important;
          height: 1px !important;
          margin: -1px !important;
          overflow: hidden !important;
          padding: 0 !important;
          position: absolute !important;
          width: 1px !important;
          white-space: nowrap !important; }
  .search-area .search-icon {
    font-size: 1.5rem;
    cursor: pointer;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-out;
    padding: .2rem;
    position: absolute; }
    .search-area .search-icon.visible {
      opacity: 1;
      visibility: visible; }
    .search-area .search-icon .text {
      padding-right: .2rem; }
  .search-area.header-search-area {
    max-width: 100%;
    padding: 1rem; }

header.header .top-bar {
  min-height: 65px;
  height: 65px; }

header.header .top-bar-left,
header.header .top-bar-right {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%; }

header.header .top-bar-right {
  text-align: right; }

header.header.active .overlay-menu {
  height: 100vh;
  visibility: visible;
  opacity: 1;
  background-color: rgba(33, 35, 34, 0.98); }

header.header .left-wrap,
header.header .right-wrap {
  position: relative; }

header.header .overlay-menu {
  visibility: hidden;
  height: 0;
  opacity: 0;
  position: fixed;
  width: 100%;
  z-index: 9;
  padding-top: 65px;
  overflow-y: scroll; }
  @media screen and (min-width: 40em) {
    header.header .overlay-menu {
      padding-top: 0;
      -ms-flex-align: inherit;
      align-items: inherit;
      overflow-y: inherit;
      background-image: url("../images/ambientia-ball-pattern-portrait-1.svg");
      background-repeat: no-repeat;
      background-position: 100% calc(100% - 65px);
      background-size: 200px; } }
  @media screen and (min-width: 64em) {
    header.header .overlay-menu {
      background-size: 250px; } }
  @media screen and (min-width: 75em) {
    header.header .overlay-menu {
      background-size: 300px; } }

header.header .menu-wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 auto;
  -ms-flex-align: center;
  align-items: center;
  height: 100%; }
  @media (max-height: 500px) {
    header.header .menu-wrap {
      font-size: 1.2rem !important;
      padding: .5rem 2rem; }
      header.header .menu-wrap ul li a {
        padding: .5rem; }
      header.header .menu-wrap * {
        font-size: inherit !important; } }
  @media screen and (min-width: 40em) {
    header.header .menu-wrap {
      max-width: 60em;
      padding-top: 2rem;
      -ms-flex-align: inherit;
      align-items: inherit; } }
  @media screen and (min-width: 64em) {
    header.header .menu-wrap {
      max-width: 740px; } }
  @media screen and (min-width: 75em) {
    header.header .menu-wrap {
      max-width: 900px; } }
  @media screen and (min-width: 90em) {
    header.header .menu-wrap {
      max-width: 1200px; } }

header.header .left-wrap {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%; }
  header.header .left-wrap ul {
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: column;
    flex-direction: column; }
    @media screen and (min-width: 40em) {
      header.header .left-wrap ul {
        -ms-flex-align: start;
        align-items: flex-start; } }
    header.header .left-wrap ul li {
      -ms-flex: 1 1 auto;
      flex: 1 1 auto;
      position: relative;
      width: 100%; }
      header.header .left-wrap ul li a {
        color: #fff;
        font-weight: 700;
        padding: 0.8rem 1rem;
        display: block; }
        @media screen and (min-width: 40em) {
          header.header .left-wrap ul li a {
            padding: 1rem; } }
        @media screen and (min-width: 64em) {
          header.header .left-wrap ul li a {
            padding: 1.5rem 1rem; } }
        header.header .left-wrap ul li a:before {
          transition: color 200ms ease-in-out;
          color: rgba(255, 255, 255, 0);
          content: "\25cf";
          position: absolute;
          top: -.8rem;
          left: -1.2rem;
          z-index: 1;
          padding: 1rem;
          font-size: 1.5rem;
          font-weight: normal;
          speak: none; }
          @media screen and (min-width: 40em) {
            header.header .left-wrap ul li a:before {
              top: -.5rem;
              left: -1.5rem;
              padding: 1rem;
              font-size: 2rem; } }
        header.header .left-wrap ul li a:hover:before, header.header .left-wrap ul li a:focus:before, header.header .left-wrap ul li a:active:before {
          color: white !important; }
      @media screen and (min-width: 40em) {
        header.header .left-wrap ul li {
          font-size: 2.2rem; } }
      header.header .left-wrap ul li.active a:before {
        color: rgba(255, 255, 255, 0.8); }

header.header .right-wrap {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  -ms-flex-item-align: baseline;
  align-self: baseline; }
  @media screen and (min-width: 40em) {
    header.header .right-wrap {
      -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
      margin-top: 0;
      -ms-flex-item-align: inherit;
      align-self: inherit; } }
  header.header .right-wrap .search-text {
    display: none; }
    @media screen and (min-width: 40em) {
      header.header .right-wrap .search-text {
        display: inline-block;
        color: #ffffff;
        position: absolute;
        top: 7px;
        font-size: 1.6rem;
        right: 55px; } }
  header.header .right-wrap .language-wrapper {
    margin-top: 1rem;
    margin-top: 2rem;
    text-align: right; }
    header.header .right-wrap .language-wrapper ul li {
      display: block;
      width: 100%; }
      header.header .right-wrap .language-wrapper ul li a {
        display: block;
        color: #ffffff;
        font-size: 1.1rem;
        position: relative; }
        header.header .right-wrap .language-wrapper ul li a:before {
          transition: color 200ms ease-in-out;
          color: rgba(255, 255, 255, 0);
          content: "\25cf";
          position: absolute;
          top: -.8rem;
          right: -1.1rem;
          z-index: 1;
          padding: 1rem;
          font-size: 1.5rem;
          font-weight: normal;
          speak: none; }
        header.header .right-wrap .language-wrapper ul li a:hover:before, header.header .right-wrap .language-wrapper ul li a:focus:before, header.header .right-wrap .language-wrapper ul li a:active:before {
          color: white !important; }
    header.header .right-wrap .language-wrapper ul li a {
      font-size: 1.5rem; }

.hamburger {
  z-index: 9999;
  position: relative;
  background: transparent;
  cursor: pointer;
  color: #ffffff;
  text-transform: none;
  padding: .6rem; }
  .hamburger .menu-open {
    display: inline-block; }
  .hamburger .menu-close {
    display: none; }
  .hamburger .menu-title {
    display: inline-block;
    margin-left: .2rem;
    font-size: 1.125rem;
    font-weight: 600; }
  .hamburger.is-active .menu-open {
    display: none; }
  .hamburger.is-active .menu-close {
    display: inline-block; }

.hero {
  text-shadow: 0 0 1rem rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 0;
  padding-top: 65px;
  margin-top: -65px; }
  .hero .hero-inner {
    position: relative;
    z-index: 10;
    padding: 3rem 0;
    color: #ffffff;
    min-height: 50vh; }
    @media screen and (max-width: 39.9375em) {
      .hero .hero-inner .service-logo-column img {
        max-width: 40%;
        margin-bottom: 1rem; } }
    @media screen and (max-width: 39.9375em) {
      .hero .hero-inner > .row > .column, .hero .hero-inner > .row > .columns {
        padding: 1rem; } }
    .hero .hero-inner.minihero {
      min-height: 80vh; }
      @media screen and (min-width: 40em) {
        .hero .hero-inner.minihero {
          min-height: 42vh; } }
      .hero .hero-inner.minihero > .row {
        width: 100%; }
        @media screen and (max-width: 39.9375em) {
          .hero .hero-inner.minihero > .row > .column, .hero .hero-inner.minihero > .row > .columns {
            padding: 1rem; } }
      .hero .hero-inner.minihero h1 {
        text-align: left;
        text-transform: none;
        font-weight: bold;
        text-shadow: none; }
        @media print, screen and (min-width: 64em) {
          .hero .hero-inner.minihero h1 {
            font-size: 3.8rem; } }
    .hero .hero-inner h1 {
      font-size: 2rem;
      font-weight: 600;
      text-transform: uppercase;
      line-height: 1.25em;
      margin-bottom: 0.37rem; }
      @media print, screen and (min-width: 40em) {
        .hero .hero-inner h1 {
          margin-bottom: 1.25rem; } }
      @media print, screen and (min-width: 64em) {
        .hero .hero-inner h1 {
          font-size: 2.5em; } }
    .hero .hero-inner p {
      font-size: 1.25rem;
      font-weight: 600; }
    @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
      .hero .hero-inner {
        /* IE10+ CSS styles go here */
        height: 50vh; } }
  .hero .hero-figure {
    background-size: cover;
    background-position: center center;
    width: 100%;
    position: absolute;
    display: block;
    top: -65px;
    bottom: 0;
    z-index: 4; }
  .hero .overlay {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 7; }
  .hero .hero-inner {
    display: -ms-flexbox;
    display: flex; }
    .hero .hero-inner > * {
      -ms-flex-item-align: center !important;
      align-self: center !important; }
    @media (min-width: 800px) and (min-height: 800px) {
      .hero .hero-inner {
        background-image: url("../images/ambientia-ball-pattern-landscape-1.svg");
        background-repeat: no-repeat;
        background-position: 100% 100%;
        background-size: 25%; } }
    .hero .hero-inner blockquote {
      margin: 2em 1em; }
      @media print, screen and (min-width: 40em) {
        .hero .hero-inner blockquote {
          margin: 1.5em 0; } }
      .hero .hero-inner blockquote p {
        color: #fff; }
      .hero .hero-inner blockquote:after, .hero .hero-inner blockquote:before {
        background-image: url("data:image/png;base64,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UmVhZHlxyWU8AAADJmlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDUgNzkuMTYzNDk5LCAyMDE4LzA4LzEzLTE2OjQwOjIyICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdFJlZj0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlUmVmIyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgMjAxOSAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QkE5MjcyMDIxRjlCMTFFOUE2QkY5OUFDQkQ1Q0U1QTUiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QkE5MjcyMDMxRjlCMTFFOUE2QkY5OUFDQkQ1Q0U1QTUiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpCQTkyNzIwMDFGOUIxMUU5QTZCRjk5QUNCRDVDRTVBNSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpCQTkyNzIwMTFGOUIxMUU5QTZCRjk5QUNCRDVDRTVBNSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PqBJZiAAAAM0SURBVHja7JpNSFRRGIbv6ExBJkZFWZt+pHAnhYSLNmYR9If0szKoTYvIinYtoqQgIxdRFkHEFFRQGi0kyIUF5qJFi0op+nVhFAalSaZmOaf3qzMwTPfe+e6955y76LzwqIzn3nfeme+e+c6dkxBCOAGVACvBelAJKiTz5f/HwE3QCMYd9UqC1aAOLJPe9LtM/n8ItIIm16MpMJNKcAkMCp6OBTg3h1rQBkaY/vVu5+EYzQHnwS8RTPcUBa0Ad0RwnXI7X7JA+WwAN8CsEKVXrKB8j4CjIKXK3y/wYXBSXrOmNQ2kQYOOCcBtUroCdjnxqAR0yolJuYpcHmtVFDYTsgw7FIXNcAIfAvsUvZgvQxxzFazR6p8zgy0FUyK6xkAalAScjbcLNRoGTSBRaJZu9ihxLz0H7eA+eAsGI15aJwIe0y3Lvwe8AV9ZR+U0FVx9AtsUNxU7A/j3guqwXtk/rjHNBsBixWEdGYKjR6A0ihfVOX3mfQalBYqBSqYavFP8SUF98GvGuFeghl26PtfOOkZY0n4NYUk7OFce2Bo1bDbwZsa4F+C6pkaD439LPgcljccSxrh2jZ0Vx79NZae1gDHuoaaw1MbOM+lPgcsZ4z5qClzOWJz8BF9UBp7LGDesKTDHe0j14oGz/CvTFJjT2c0M2AFGNiTVOvGJlourTAemuw6zYwx9OuRdj39nScG/bUmLgxbQJycSL03KMd8Y56wCT5n+z8BF2ZX5PefvoBf88Fo86FI/OA5SPr1tlSZvWub2gd1uvbTQXI5PQD0YiPgOh1WHvDc26qic/Xy0AnTJ2TYObXH+fjHgmAqcXREdiHHS2wg2mQxManTi1V7TgalnXx5j4DrTgUkLYww8nXoJ04FTMZd1qsj5z2QD28A2sA1sA9vANrANbAPbwAoDTxj0y/caN5x3ggL3GzTM93oPpgx5jxAU+K4hQ/pu+YPLO9xlyP9BtqQvGHqVz3k8fsZQ4JY/P+X92oNCrzq9thEF3GMSVs1uu2n3yD1WqtUDZhTYbFIsd79mNPinc1/sfONF4Kx8kqMRjbpBA0gG2GVTAy6Dx2Aygjdtdb4N1uZ7/BZgAFbl68DEBHV2AAAAAElFTkSuQmCC"); }

.home .hero {
  text-shadow: none; }
  .home .hero .hero-inner {
    min-height: calc(88vh - 60px); }
    @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
      .home .hero .hero-inner {
        /* IE10+ CSS styles go here */
        height: calc(100vh - 60px); } }
  .home .hero .hero-logo {
    width: 80%;
    max-width: 640px; }
  .home .hero .mouse-cta {
    opacity: 0.7;
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 48px; }
    .home .hero .mouse-cta img {
      width: 30px;
      height: 48px; }
    @media (max-width: 40em) {
      .home .hero .mouse-cta {
        display: none; } }

.site-logo {
  background-image: url("../images/ambientia-logo.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 200px;
  margin-left: 0.5rem;
  height: 24px;
  z-index: 10; }
  .site-logo a {
    display: block;
    width: 100%;
    height: 100%;
    text-indent: -9999px;
    overflow: hidden; }
  @media screen and (max-width: 39.9375em) {
    .site-logo {
      width: 100px; } }

footer.footer {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #212322;
  position: relative; }
  footer.footer .site-logo {
    background-image: url("../images/logo/ambientia-fc-logo-white.svg");
    background-size: 250px;
    height: 8rem;
    margin: 0;
    width: 100%; }
    footer.footer .site-logo a {
      display: block;
      width: 100%; }
  footer.footer .menu {
    font-size: 1rem;
    font-weight: 700;
    text-transform: none;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    @media screen and (min-width: 64em) {
      footer.footer .menu {
        -ms-flex-pack: justify;
        justify-content: space-between; } }
    footer.footer .menu li.menu-item {
      -ms-flex-positive: 1;
      flex-grow: 1; }
    footer.footer .menu a {
      color: #ffffff;
      position: relative; }
      @media screen and (max-width: 39.9375em) {
        footer.footer .menu a {
          display: block;
          text-align: left; } }
      footer.footer .menu a:before {
        transition: color 200ms ease-in-out;
        color: rgba(255, 255, 255, 0);
        content: "\25cf";
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        padding: 0;
        margin: 0;
        font-size: 1.5rem;
        font-weight: normal;
        speak: none; }
      footer.footer .menu a:hover:before, footer.footer .menu a:focus:before, footer.footer .menu a:active:before {
        color: white !important; }
    footer.footer .menu .footer-some {
      list-style: none;
      margin: 0;
      padding: 0;
      display: -ms-flexbox;
      display: flex; }
      footer.footer .menu .footer-some li {
        font-size: 1.5rem; }
      @media screen and (max-width: 39.9375em) {
        footer.footer .menu .footer-some {
          -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
          footer.footer .menu .footer-some li {
            display: inline-block;
            font-size: 1.5rem; } }
      footer.footer .menu .footer-some a:before {
        top: -1.4rem;
        left: .3rem;
        padding: 0; }
  footer.footer .copyright {
    font-size: 1rem; }
    footer.footer .copyright a {
      color: #ffffff;
      border-bottom: 1px solid #ffffff; }
  footer.footer .footer-some {
    font-size: 1.5rem; }
    @media screen and (min-width: 64em) {
      footer.footer .footer-some {
        -ms-flex-preferred-size: 33.3333%;
        flex-basis: 33.3333%; } }
  footer.footer .search-area {
    position: relative;
    margin: 1rem 0 2rem;
    right: auto;
    max-width: 100%;
    display: -ms-flexbox;
    display: flex;
    top: 0;
    z-index: 0;
    transform: none;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%; }
    @media screen and (min-width: 40em) {
      footer.footer .search-area {
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse; } }
    @media screen and (min-width: 64em) {
      footer.footer .search-area {
        -ms-flex-preferred-size: 33.3333%;
        flex-basis: 33.3333%; } }
    @media (min-width: 1024px) {
      footer.footer .search-area {
        right: 20px; } }
    footer.footer .search-area .fa-search {
      font-size: 1.5rem; }
    footer.footer .search-area .footer-search-form {
      display: block;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.2s ease-out;
      max-width: 100%;
      width: 100%; }
      footer.footer .search-area .footer-search-form.visible {
        opacity: 1;
        visibility: visible; }
      footer.footer .search-area .footer-search-form label {
        border: 0 !important;
        clip: rect(1px, 1px, 1px, 1px) !important;
        -webkit-clip-path: inset(50%) !important;
        clip-path: inset(50%) !important;
        height: 1px !important;
        margin: -1px !important;
        overflow: hidden !important;
        padding: 0 !important;
        position: absolute !important;
        width: 1px !important;
        white-space: nowrap !important; }
      footer.footer .search-area .footer-search-form form {
        position: relative;
        display: -ms-flexbox;
        display: flex; }
        footer.footer .search-area .footer-search-form form input[type=search] {
          font-size: 1rem;
          height: 100%;
          margin: 0;
          border: 0; }
        footer.footer .search-area .footer-search-form form button[type=submit] {
          padding: 0 .6rem;
          margin: 0;
          width: 4rem;
          border: 0; }
          footer.footer .search-area .footer-search-form form button[type=submit] .text {
            border: 0 !important;
            clip: rect(1px, 1px, 1px, 1px) !important;
            -webkit-clip-path: inset(50%) !important;
            clip-path: inset(50%) !important;
            height: 1px !important;
            margin: -1px !important;
            overflow: hidden !important;
            padding: 0 !important;
            position: absolute !important;
            width: 1px !important;
            white-space: nowrap !important; }

#breadcrumbs {
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem; }
  @media screen and (min-width: 40em) {
    #breadcrumbs {
      margin-top: 6rem;
      margin-bottom: 2rem; } }
  #breadcrumbs a {
    color: #63666A; }
    #breadcrumbs a:hover {
      text-decoration: none;
      color: #F4364C; }
  #breadcrumbs li {
    text-transform: none;
    font-size: 1rem;
    color: #63666A;
    font-weight: 400;
    margin-left: 0; }
    @media print, screen and (min-width: 40em) {
      #breadcrumbs li {
        font-size: 1rem; } }
    @media print, screen and (min-width: 64em) {
      #breadcrumbs li {
        font-size: 1.1rem; } }
  #breadcrumbs strong {
    font-weight: 600; }
  #breadcrumbs .separator {
    display: none; }

.section-header.white .sectionheadericon,
.sectionheader.white .sectionheadericon {
  opacity: 1; }

.opening-paragraph {
  padding: 6rem 0; }

#jobs {
  padding-top: 8rem;
  padding-bottom: 6rem; }
  @media screen and (max-width: 39.9375em) {
    #jobs {
      padding-left: 0;
      padding-right: 0; } }
  @media print, screen and (min-width: 40em) {
    #jobs {
      padding-top: 8rem;
      padding-bottom: 6rem; } }
  #jobs .jobscontainer {
    background-color: #fff;
    padding: 4rem 2rem; }
    #jobs .jobscontainer img {
      padding-bottom: 1rem;
      margin-top: 0; }
    @media print, screen and (min-width: 40em) {
      #jobs .jobscontainer {
        padding: 6rem 5rem;
        max-width: 75%; }
        #jobs .jobscontainer img {
          display: inline-block;
          margin-top: -1rem; } }
    @media print, screen and (min-width: 64em) {
      #jobs .jobscontainer {
        max-width: 60%; } }

#contactform {
  padding: 9rem 0 3rem 0 !important;
  padding: 9rem 0 7rem; }
  @media print, screen and (min-width: 40em) {
    #contactform {
      padding: 9rem 0 6rem 0 !important; } }
  #contactform .section-header h1 {
    padding-top: 1rem; }
    @media print, screen and (min-width: 40em) {
      #contactform .section-header h1 {
        padding-top: 0; } }
  #contactform .contactformcontainer {
    background-color: #fff;
    padding: 5rem 1.5rem 0 2rem;
    max-width: 100%; }
    @media print, screen and (min-width: 40em) {
      #contactform .contactformcontainer {
        max-width: 90%;
        padding: 5rem 5rem 0; } }
    @media print, screen and (min-width: 64em) {
      #contactform .contactformcontainer {
        max-width: 60%;
        padding: 5rem 5rem 0; } }
  #contactform #gform_2 li {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 1rem; }
    @media print, screen and (min-width: 40em) {
      #contactform #gform_2 li {
        padding-left: 1rem;
        padding-right: 1rem; } }
  #contactform #gform_2 label {
    display: none; }
  #contactform #gform_2 input,
  #contactform #gform_2 textarea {
    font-size: 1.1rem;
    border: none;
    border-bottom: 1px solid #c8c8c8;
    box-shadow: none;
    padding: 0 0 0.5rem; }
    @media print, screen and (min-width: 40em) {
      #contactform #gform_2 input,
      #contactform #gform_2 textarea {
        font-size: 1.4rem; } }
    #contactform #gform_2 input::-webkit-input-placeholder,
    #contactform #gform_2 textarea::-webkit-input-placeholder {
      /* Chrome */
      color: #aaa !important; }
    #contactform #gform_2 input:-ms-input-placeholder,
    #contactform #gform_2 textarea:-ms-input-placeholder {
      /* IE 10+ */
      color: #aaa !important; }
    #contactform #gform_2 input::-moz-placeholder,
    #contactform #gform_2 textarea::-moz-placeholder {
      /* Firefox 19+ */
      color: #aaa !important;
      opacity: 1 !important; }
    #contactform #gform_2 input:-moz-placeholder,
    #contactform #gform_2 textarea:-moz-placeholder {
      /* Firefox 4 - 18 */
      color: #aaa !important;
      opacity: 1 !important; }
  #contactform #gform_2 .gform_footer {
    text-align: center; }
  #contactform #gform_2 textarea {
    border-bottom: none; }

#statistics .section-header h1 {
  padding-top: 1rem; }
  @media print, screen and (min-width: 40em) {
    #statistics .section-header h1 {
      padding-top: 0; } }

.statistics {
  padding-top: 4rem; }
  .statistics .stats-header {
    font-size: 1.8rem;
    font-weight: 400;
    text-align: center; }
  .statistics .stats-number {
    text-align: center;
    font-weight: 700;
    font-size: 5.5rem;
    line-height: 1;
    margin-bottom: 0; }

#clients {
  padding-top: 3rem; }

#events .post-type {
  color: #fff;
  padding: 0.5rem 0.9rem;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 2rem;
  display: inline-block; }
  @media print, screen and (min-width: 64em) {
    #events .post-type {
      font-size: 0.85rem; } }

#events .eventcolumn {
  padding: 0.7rem; }

#events .eventthumbnail {
  position: relative;
  border: 1px solid #f5f5f5;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
  transition: all 200ms ease-in-out; }
  #events .eventthumbnail .overlay {
    mix-blend-mode: multipy;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background: linear-gradient(to bottom, rgba(255, 36, 87, 0.6) 0, rgba(247, 107, 28, 0.6) 100%);
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 5;
    transition: all 300ms ease-in-out; }
  #events .eventthumbnail:hover {
    transition: all 300ms ease-in-out; }
    #events .eventthumbnail:hover .overlay {
      opacity: 1; }
  #events .eventthumbnail .eventtime {
    z-index: 100;
    font-weight: bold;
    font-size: 130%;
    color: #fff;
    position: absolute;
    padding: 10%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    opacity: 0;
    transition: all 300ms ease;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.35); }
    #events .eventthumbnail .eventtime .row {
      width: 100%; }
    #events .eventthumbnail .eventtime:hover {
      opacity: 1;
      transition: all 300ms ease; }

#blog .loadmore {
  text-align: center;
  margin-top: 4rem; }

#blog .blogcolumn {
  padding: 0.7rem; }

#blog .blogthumbnail {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
  filter: grayscale(100%);
  transition: all 200ms ease-in-out; }
  #blog .blogthumbnail:hover {
    filter: grayscale(0%);
    transition: all 200ms ease-in-out; }

#blog .post-type {
  color: #fff;
  padding: 0.5rem 0.9rem;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 1rem;
  display: inline-block; }
  @media print, screen and (min-width: 64em) {
    #blog .post-type {
      font-size: 0.85rem; } }

.contact_section {
  padding-top: 1rem;
  padding-bottom: 6rem;
  border-bottom: 1px solid #A7A8A9; }
  .contact_section > h2 {
    display: block;
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 3rem;
    position: relative;
    color: #585858; }
    .contact_section > h2:after {
      content: "";
      position: absolute;
      bottom: -20px;
      height: 7px;
      width: 33px;
      background: #F4364C;
      left: 50%;
      transform: translateX(-50%); }

#contact {
  padding-top: 12rem; }
  #contact .sectionheadericon {
    opacity: 1 !important; }
  @media print, screen and (min-width: 64em) {
    #contact {
      padding-top: 12rem; } }
  #contact h1 {
    font-weight: 700;
    margin-bottom: 4rem; }
  #contact .key-personnel {
    padding-top: 1.6rem; }

#contact_keypersonnel {
  padding-bottom: 3rem;
  border-bottom: 1px solid #212322; }
  @media print, screen and (min-width: 40em) {
    #contact_keypersonnel {
      padding-bottom: 5rem;
      padding-left: 0.3rem;
      padding-right: 0.3rem; } }
  #contact_keypersonnel .key-personnel {
    padding: 0.5rem 1.5rem; }

#headofficeandservicedesk {
  padding: 2.7rem 0.5rem 4rem;
  border-bottom: 1px solid #212322; }
  #headofficeandservicedesk .headoffice_h1 {
    font-size: 1.8rem;
    padding-bottom: 4rem; }
    @media print, screen and (min-width: 40em) {
      #headofficeandservicedesk .headoffice_h1 {
        font-size: 2.05rem; } }
    @media print, screen and (min-width: 64em) {
      #headofficeandservicedesk .headoffice_h1 {
        font-size: 2.4rem; } }
  @media print, screen and (min-width: 64em) {
    #headofficeandservicedesk {
      padding: 2.7rem 0 5rem; } }
  #headofficeandservicedesk ul {
    list-style: none;
    margin-left: 0; }
  #headofficeandservicedesk li {
    font-size: 1.1rem; }
    @media print, screen and (min-width: 40em) {
      #headofficeandservicedesk li {
        font-size: 1.2rem; } }
    @media print, screen and (min-width: 64em) {
      #headofficeandservicedesk li {
        font-size: 1.3rem; } }
  #headofficeandservicedesk .headoffice {
    padding-bottom: 1.5rem; }

.entry-content {
  padding-top: 0; }

.page-template-page-contact #contact_keypersonnel,
.page-template-page-contact #headofficeandservicedesk {
  border-bottom: none; }

.page-template-page-contact #headofficeandservicedesk {
  padding-top: 4rem; }
  @media print, screen and (min-width: 40em) {
    .page-template-page-contact #headofficeandservicedesk {
      padding-top: 7rem; } }
  .page-template-page-contact #headofficeandservicedesk .headoffice_h1 {
    display: none; }

#billing {
  padding-top: 6rem; }
  @media print, screen and (min-width: 64em) {
    #billing .instructions {
      padding-right: 3rem; } }
  #billing .details ul {
    list-style: none;
    margin-bottom: 3rem;
    margin-left: 0; }
    #billing .details ul li {
      margin-left: 0; }
  #billing > h2 {
    display: block;
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 3rem;
    position: relative;
    color: #585858; }
    #billing > h2:after {
      content: "";
      position: absolute;
      bottom: -20px;
      height: 7px;
      width: 33px;
      background: #F4364C;
      left: 50%;
      transform: translateX(-50%); }

#offices {
  border-bottom: none;
  padding: 2.7rem 0; }
  #offices ul {
    list-style: none;
    margin-left: 0;
    margin-bottom: 4rem; }
    #offices ul li {
      font-size: 1.1rem; }
      @media print, screen and (min-width: 40em) {
        #offices ul li {
          font-size: 1.2rem; } }
      @media print, screen and (min-width: 64em) {
        #offices ul li {
          font-size: 1.3rem; } }

.vcard {
  padding: 0.8rem; }

.contact_image {
  padding: 0; }
  .contact_image img {
    height: auto;
    max-width: 100%;
    vertical-align: middle; }

.contact_info {
  list-style: none;
  padding-top: 0.5rem;
  margin-bottom: 0.5rem;
  margin-left: 0;
  font-size: 1.1rem; }
  .contact_info li {
    margin-left: 0; }
  .contact_info .name {
    font-weight: 700; }
  .contact_info .title {
    margin-bottom: 0.5rem; }
  .contact_info .email {
    margin-bottom: 0;
    line-height: 1.3; }

#estonia .contact_image,
#finland .contact_image,
#management .contact_image {
  padding: 0.2rem 0.5rem 0.2rem 0.2rem; }

@media screen and (max-width: 39.9375em) {
  #estonia .vcard .contact_info,
  #finland .vcard .contact_info,
  #management .vcard .contact_info {
    font-size: 0.9rem; } }

.block-grid {
  padding: 0.7rem; }
  .block-grid .service-block {
    height: 100%;
    min-height: 18rem;
    display: block;
    padding: 2.5rem;
    font-size: 1.4rem; }
    .block-grid .service-block:hover {
      color: #fff !important; }
  .block-grid .knowledgearea-block {
    display: block;
    height: 100%;
    padding: 2.5rem 2.5rem 2.5rem 1.5rem; }
    .block-grid .knowledgearea-block .knowledgeareaicon {
      padding: 0; }

blockquote.professional-quote {
  border-left: 0;
  background-color: #efefef;
  padding: 2rem;
  margin: 2rem -1rem;
  font-size: 1.3rem;
  border-bottom: 2px solid #ccc;
  color: #111; }
  @media print, screen and (min-width: 40em) {
    blockquote.professional-quote {
      font-size: 1.4rem; } }
  @media print, screen and (min-width: 64em) {
    blockquote.professional-quote {
      font-size: 1.6rem; } }

blockquote.professional-quote .quote-inner:before {
  color: #F4364C;
  font-size: 3rem;
  line-height: 1rem;
  content: "”";
  position: relative;
  top: 0.8rem;
  margin-right: 0.15rem; }

blockquote.professional-quote .quote-inner:after {
  color: #f16250;
  font-size: 3rem;
  line-height: 1rem;
  content: "”";
  position: relative;
  top: 0.8rem;
  margin-left: 0.2rem; }

blockquote {
  margin-left: 0;
  padding-left: 1rem;
  border-left: 3px solid #F4364C;
  font-style: italic; }

blockquote.professional-quote footer {
  margin-top: 1rem;
  font-size: 1.1rem;
  font-style: italic; }
  @media print, screen and (min-width: 40em) {
    blockquote.professional-quote footer {
      font-size: 1.25rem; } }
  @media print, screen and (min-width: 64em) {
    blockquote.professional-quote footer {
      font-size: 1.35rem; } }

blockquote.professional-quote footer:before {
  content: "– "; }

.more-link-wrapper {
  visibility: hidden; }
  @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .more-link-wrapper {
      visibility: visible; } }

.link-wrapper {
  display: block;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column; }
  .link-wrapper .blogexcerpt {
    -ms-flex: 1 0 auto;
    flex: 1 0 auto; }

@-moz-document url-prefix() {
  .link-wrapper .blogexcerpt {
    flex: 1; } }
  .link-wrapper .eventexcerpt {
    -ms-flex: 1 0 auto;
    flex: 1 0 auto; }

@-moz-document url-prefix() {
  .link-wrapper .eventexcerpt {
    flex: 1; } }

.feature-highlight {
  padding: 3rem;
  background: #efefef;
  margin: 2rem 0;
  font-size: 1.5rem;
  font-style: italic; }
  @media screen and (max-width: 39.9375em) {
    .feature-highlight {
      margin-left: -1.5rem;
      margin-right: -1.5rem; } }
  @media print, screen and (min-width: 40em) {
    .feature-highlight {
      font-size: 1.75rem; } }

.service-desk-contact {
  background-color: #f3f3f3;
  margin-bottom: 1rem; }
  .service-desk-contact img {
    max-width: 5.5rem; }

.share-links {
  margin-top: 2.5rem; }
  .share-links a {
    color: #fff; }
    .share-links a:hover {
      color: #fff; }

.single-event .info,
.single-job .info {
  padding-top: 3rem; }
  .single-event .info .vcard,
  .single-job .info .vcard {
    margin-bottom: 1.5rem; }
  .single-event .info .name,
  .single-job .info .name {
    font-weight: 700; }
  .single-event .info .gptw-badge,
  .single-job .info .gptw-badge {
    max-height: 200px;
    margin-top: 2.5rem; }

.single-event form #captcha,
.single-job form #captcha {
  padding-top: 1rem;
  padding-bottom: 1rem; }

.single-event form label,
.single-job form label {
  font-size: 1rem; }
  @media print, screen and (min-width: 40em) {
    .single-event form label,
    .single-job form label {
      font-size: 1.1rem; } }
  @media print, screen and (min-width: 64em) {
    .single-event form label,
    .single-job form label {
      font-size: 1.2rem; } }
  .single-event form label[for="privacypolicy"],
  .single-job form label[for="privacypolicy"] {
    display: -ms-flexbox;
    display: flex;
    line-height: 1.4 !important;
    margin-bottom: 1rem; }
    .single-event form label[for="privacypolicy"] input,
    .single-job form label[for="privacypolicy"] input {
      position: relative;
      top: 5px; }

.single-event form .upload-control .inline-block,
.single-job form .upload-control .inline-block {
  display: inline-block; }

.single-event form .upload-control .icon,
.single-job form .upload-control .icon {
  max-width: 24px;
  display: inline-block;
  margin-right: 0.5rem;
  vertical-align: top; }

.single-event .form-container #gform_1,
.single-job .form-container #gform_1 {
  font-size: 1.1rem; }
  .single-event .form-container #gform_1 .gfield_label,
  .single-job .form-container #gform_1 .gfield_label {
    font-weight: 400;
    margin-bottom: 0; }
  .single-event .form-container #gform_1 .ginput_container,
  .single-job .form-container #gform_1 .ginput_container {
    margin-top: 0; }
  @media print, screen and (min-width: 40em) {
    .single-event .form-container #gform_1,
    .single-job .form-container #gform_1 {
      font-size: 1.2rem; } }
  @media print, screen and (min-width: 64em) {
    .single-event .form-container #gform_1,
    .single-job .form-container #gform_1 {
      font-size: 1.3rem; } }

.single-event .form-container .gform_wrapper select#input_1_6,
.single-job .form-container .gform_wrapper select#input_1_6 {
  width: 100%; }

.single-event .form-container .gform_wrapper input#input_1_8,
.single-job .form-container .gform_wrapper input#input_1_8 {
  width: 100%; }

.page-template-page-servicedesk .entry-content {
  padding-top: 5rem; }

.page-template-page-events .hero .event_hero_img {
  position: absolute;
  width: 65%;
  bottom: 3rem;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0; }
  @media print, screen and (min-width: 40em) {
    .page-template-page-events .hero .event_hero_img {
      right: 2rem;
      bottom: 2rem;
      position: absolute;
      margin: 0;
      left: auto;
      width: 40%; } }
  @media print, screen and (min-width: 64em) {
    .page-template-page-events .hero .event_hero_img {
      width: 25%; } }

.page-template-page-jobs .vcard .contact_image,
.single-case .vcard .contact_image,
.single-event .vcard .contact_image,
.single-job .vcard .contact_image,
.single-post .vcard .contact_image {
  padding: 0.5rem; }
  @media print, screen and (min-width: 64em) {
    .page-template-page-jobs .vcard .contact_image,
    .single-case .vcard .contact_image,
    .single-event .vcard .contact_image,
    .single-job .vcard .contact_image,
    .single-post .vcard .contact_image {
      padding-bottom: 1rem; } }

.page-template-page-jobs .vcard .contact_info,
.single-case .vcard .contact_info,
.single-event .vcard .contact_info,
.single-job .vcard .contact_info,
.single-post .vcard .contact_info {
  padding-top: 0;
  font-size: 1rem; }

.page-template-page-jobs .vcard .contact_time,
.single-case .vcard .contact_time,
.single-event .vcard .contact_time,
.single-job .vcard .contact_time,
.single-post .vcard .contact_time {
  margin-top: 1rem; }

.page-template-page-jobs .vcard .contact_details,
.single-case .vcard .contact_details,
.single-event .vcard .contact_details,
.single-job .vcard .contact_details,
.single-post .vcard .contact_details {
  padding: 0.5rem; }
  @media print, screen and (min-width: 40em) {
    .page-template-page-jobs .vcard .contact_details,
    .single-case .vcard .contact_details,
    .single-event .vcard .contact_details,
    .single-job .vcard .contact_details,
    .single-post .vcard .contact_details {
      padding-top: 1rem; } }
  @media print, screen and (min-width: 64em) {
    .page-template-page-jobs .vcard .contact_details,
    .single-case .vcard .contact_details,
    .single-event .vcard .contact_details,
    .single-job .vcard .contact_details,
    .single-post .vcard .contact_details {
      padding-top: 0; } }

.page-template-page-about_ambientia .opening-paragraph {
  padding-top: 3rem;
  padding-bottom: 3rem; }
  @media print, screen and (min-width: 40em) {
    .page-template-page-about_ambientia .opening-paragraph {
      padding-top: 6rem;
      padding-bottom: 6rem; } }

.page-template-page-about_ambientia #factfile ul {
  list-style: none;
  margin-left: 0; }

.page-template-page-about_ambientia #factfile .factfileicon {
  padding: 0; }
  .page-template-page-about_ambientia #factfile .factfileicon img {
    position: relative;
    top: 1rem; }

.page-template-page-about_ambientia #factfile ul {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: 3rem; }
  .page-template-page-about_ambientia #factfile ul li p {
    margin-top: 1rem;
    margin-bottom: 1rem; }

@media print, screen and (min-width: 64em) {
  .page-template-page-about_ambientia #factfile ul {
    width: 70%;
    margin: auto;
    padding-bottom: 6rem; }
    .page-template-page-about_ambientia #factfile ul li p {
      margin-top: 1rem;
      margin-bottom: 1rem; } }

.page-template-page-about_ambientia .entry-content {
  padding-bottom: 0; }

#knowledgeareas {
  padding-top: 7rem; }

#gallerylinks .container {
  padding-top: 6rem;
  text-align: center;
  color: #fff; }
  @media print, screen and (min-width: 40em) {
    #gallerylinks .container {
      padding-top: 8rem; } }
  @media print, screen and (min-width: 40em) {
    #gallerylinks .container {
      padding-top: 10rem; } }

.page-template-page-storyofambientia .entry-content {
  padding-top: 5rem; }

.page-template-page-jobs .entry-content {
  padding-top: 5rem; }

.page-template-page-gallery .entry-content {
  padding-top: 5rem;
  padding-bottom: 5rem; }

@media print, screen and (min-width: 40em) {
  .page-template-page-gallery .entry-content {
    padding-top: 7rem; } }

.page-template-page-gallery .gallerygrid {
  padding-bottom: 6rem; }

.page-template-page-gallery .gallerythumb:hover {
  background-color: rgba(0, 0, 0, 0.3); }

.page-template-default .entry-content {
  padding-top: 2rem; }
  @media print, screen and (min-width: 40em) {
    .page-template-default .entry-content {
      padding-top: 3rem; } }
  @media print, screen and (min-width: 64em) {
    .page-template-default .entry-content {
      padding-top: 5rem; } }

.caselist .caselist_section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-bottom: 3px;
  color: #fff; }
  .caselist .caselist_section .caselist_section_container {
    width: 100%; }
  .caselist .caselist_section .overlay {
    padding: 12rem 3rem;
    width: 100%;
    height: 100%;
    z-index: 7;
    background-blend-mode: multiply;
    color: white; }
  .caselist .caselist_section a {
    color: #fff; }

.typed-text {
  padding-top: 1rem;
  height: 5rem;
  font-size: 1.6rem; }
  @media print, screen and (min-width: 40em) {
    .typed-text {
      height: 5rem;
      font-size: 1.9rem; } }
  @media print, screen and (min-width: 64em) {
    .typed-text {
      height: 5rem;
      font-size: 2.3rem; } }

.typed-cursor {
  opacity: 1;
  font-weight: 100;
  animation: flash 1.4s infinite; }

.off-canvas-wrapper {
  overflow: auto !important; }

.single-event .entry-title {
  padding-left: 0.5rem; }

.single-event .eventtime {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  font-weight: 700;
  padding-left: 0.5rem; }

.tagscontainer {
  padding-top: 1rem; }
  .tagscontainer .tags-title {
    color: #F4364C;
    font-weight: 700;
    font-size: 1.1rem; }
  .tagscontainer .tags {
    display: inline;
    opacity: 0.5; }

.partner-section {
  padding: 4rem 0;
  border-bottom: 1px solid black; }
  .partner-section .logo {
    text-align: center; }
    .partner-section .logo img {
      padding-right: 1rem;
      padding-bottom: 3rem;
      width: 70%; }
  @media print, screen and (min-width: 40em) {
    .partner-section {
      padding: 6rem 0; }
      .partner-section .logo {
        text-align: left; }
        .partner-section .logo img {
          width: 100%; } }

div.partner-section:last-child {
  border-bottom: none; }

.gptw-badge {
  max-height: 200px; }

.inpage-navi-section .menu {
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center; }
  .inpage-navi-section .menu li {
    margin: 0 .5rem 1rem .5rem; }
    .inpage-navi-section .menu li a {
      border: 1px solid #F4364C;
      padding: 2rem 3rem; }
      .inpage-navi-section .menu li a:hover {
        color: #ffffff;
        background-color: #F4364C; }

.page-template-page-career .entry-content {
  margin-top: 6rem; }

.image-section {
  position: relative;
  width: 100%;
  height: 50vh;
  background-size: cover; }
  @media screen and (min-width: 40em) {
    .image-section {
      background-attachment: fixed; } }

.benefit-icon {
  max-width: 50%;
  height: auto; }

.careers-gallery .slick-slide {
  width: 100%;
  position: relative;
  padding-bottom: 25%;
  background-position: center center;
  background-size: cover; }
  @media screen and (max-width: 39.9375em) {
    .careers-gallery .slick-slide {
      padding-bottom: 10%; } }

.career-cta-card {
  cursor: pointer; }

.container-3 {
  max-width: 900px;
  margin: 0 auto; }

.menu-open-positions {
  list-style: none;
  margin: 0 0 2rem 0;
  padding: 0;
  -ms-flex-pack: center;
  justify-content: center; }
  .menu-open-positions li {
    color: #585858;
    margin: 0 0 2rem 0; }
    .menu-open-positions li a {
      display: block;
      color: inherit; }
      .menu-open-positions li a h4,
      .menu-open-positions li a .readmore {
        margin-top: 1rem; }
      .menu-open-positions li a:hover .readmore {
        font-weight: bold; }

.hentry .alignleft,
.hentry .alignright {
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
  max-width: 70%; }
  @media screen and (max-width: 39.9375em) {
    .hentry .alignleft,
    .hentry .alignright {
      float: none !important;
      display: block !important;
      max-width: 100%;
      margin-left: 0 !important;
      margin-right: 0 !important; } }

@media print, screen and (min-width: 40em) {
  .hentry .alignright {
    margin-right: -8rem; }
  .hentry .alignleft {
    margin-left: -8rem; } }

@media print, screen and (min-width: 64em) {
  .hentry .alignright {
    margin-right: -12rem; }
  .hentry .alignleft {
    margin-left: -12rem; } }

.facts-list {
  color: #F4364C; }
  .facts-list li {
    padding-bottom: 1rem;
    padding-top: 1rem; }
  .facts-list li + li {
    border-top: 1px solid rgba(244, 54, 76, 0.25); }

.hentry .gptw-badge {
  width: 120px; }

.loadmore .preloader {
  display: none;
  width: 90px;
  margin: 0 auto; }

.no-scroll {
  overflow: hidden; }

.sidebar {
  padding-top: 0;
  padding-left: 1rem;
  padding-right: 1rem; }
  .sidebar .vcard {
    margin-left: 0;
    margin-right: 0; }
    @media screen and (max-width: 39.9375em) {
      .sidebar .vcard {
        font-size: 0.875rem; }
        .sidebar .vcard .contact_info {
          font-size: 0.875rem; } }

#blog .loadmore {
  padding-top: 2rem;
  text-align: center; }

.fadeIn {
  visibility: hidden; }

.error404 .headroom:before {
  opacity: 1 !important; }

.error404 main .search-submit {
  display: block;
  margin-left: auto;
  margin-right: auto; }

.amb-section-excerpt {
  padding: 2.5rem 2.2rem 2rem 2.2rem; }
  .amb-section-excerpt h2 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 .5em 0;
    color: #F4364C; }
  .amb-section-excerpt p {
    color: #585858;
    line-height: 1.7;
    font-size: 18px; }
  .amb-section-excerpt a:hover p, .amb-section-excerpt a:focus p, .amb-section-excerpt a:active p {
    color: #212322; }

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license

Copyright (c) 2013 Daniel Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
.animated {
  animation-duration: 0.5s;
  animation-fill-mode: both; }

.animated.hinge {
  animation-duration: 2s; }

@keyframes bounce {
  0%,
  100%,
  20%,
  50%,
  80% {
    transform: translateY(0); }
  40% {
    transform: translateY(-30px); }
  60% {
    transform: translateY(-15px); } }

.bounce {
  animation-name: bounce; }

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

.flash {
  animation-name: flash; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes pulse {
  0% {
    transform: scale(1); }
  50% {
    transform: scale(1.1); }
  100% {
    transform: scale(1); } }

.pulse {
  animation-name: pulse; }

@keyframes shake {
  0%,
  100% {
    transform: translateX(0); }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-10px); }
  20%,
  40%,
  60%,
  80% {
    transform: translateX(10px); } }

.shake {
  animation-name: shake; }

@keyframes swing {
  20% {
    transform: rotate(15deg); }
  40% {
    transform: rotate(-10deg); }
  60% {
    transform: rotate(5deg); }
  80% {
    transform: rotate(-5deg); }
  100% {
    transform: rotate(0deg); } }

.swing {
  transform-origin: top center;
  animation-name: swing; }

@keyframes tada {
  0% {
    transform: scale(1); }
  10%,
  20% {
    transform: scale(0.9) rotate(-3deg); }
  30%,
  50%,
  70%,
  90% {
    transform: scale(1.1) rotate(3deg); }
  40%,
  60%,
  80% {
    transform: scale(1.1) rotate(-3deg); }
  100% {
    transform: scale(1) rotate(0); } }

.tada {
  animation-name: tada; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes wobble {
  0% {
    transform: translateX(0%); }
  15% {
    transform: translateX(-25%) rotate(-5deg); }
  30% {
    transform: translateX(20%) rotate(3deg); }
  45% {
    transform: translateX(-15%) rotate(-3deg); }
  60% {
    transform: translateX(10%) rotate(2deg); }
  75% {
    transform: translateX(-5%) rotate(-1deg); }
  100% {
    transform: translateX(0%); } }

.wobble {
  animation-name: wobble; }

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3); }
  50% {
    opacity: 1;
    transform: scale(1.05); }
  70% {
    transform: scale(0.9); }
  100% {
    transform: scale(1); } }

.bounceIn {
  animation-name: bounceIn; }

@keyframes bounceInDown {
  0% {
    opacity: 0;
    transform: translateY(-2000px); }
  60% {
    opacity: 1;
    transform: translateY(30px); }
  80% {
    transform: translateY(-10px); }
  100% {
    transform: translateY(0); } }

.bounceInDown {
  animation-name: bounceInDown; }

@keyframes bounceInLeft {
  0% {
    opacity: 0;
    transform: translateX(-2000px); }
  60% {
    opacity: 1;
    transform: translateX(30px); }
  80% {
    transform: translateX(-10px); }
  100% {
    transform: translateX(0); } }

.bounceInLeft {
  animation-name: bounceInLeft; }

@keyframes bounceInRight {
  0% {
    opacity: 0;
    transform: translateX(2000px); }
  60% {
    opacity: 1;
    transform: translateX(-30px); }
  80% {
    transform: translateX(10px); }
  100% {
    transform: translateX(0); } }

.bounceInRight {
  animation-name: bounceInRight; }

@keyframes bounceInUp {
  0% {
    opacity: 0;
    transform: translateY(2000px); }
  60% {
    opacity: 1;
    transform: translateY(-30px); }
  80% {
    transform: translateY(10px); }
  100% {
    transform: translateY(0); } }

.bounceInUp {
  animation-name: bounceInUp; }

@keyframes bounceOut {
  0% {
    transform: scale(1); }
  25% {
    transform: scale(0.95); }
  50% {
    opacity: 1;
    transform: scale(1.1); }
  100% {
    opacity: 0;
    transform: scale(0.3); } }

.bounceOut {
  animation-name: bounceOut; }

@keyframes bounceOutDown {
  0% {
    transform: translateY(0); }
  20% {
    opacity: 1;
    transform: translateY(-20px); }
  100% {
    opacity: 0;
    transform: translateY(2000px); } }

.bounceOutDown {
  animation-name: bounceOutDown; }

@keyframes bounceOutLeft {
  0% {
    transform: translateX(0); }
  20% {
    opacity: 1;
    transform: translateX(20px); }
  100% {
    opacity: 0;
    transform: translateX(-2000px); } }

.bounceOutLeft {
  animation-name: bounceOutLeft; }

@keyframes bounceOutRight {
  0% {
    transform: translateX(0); }
  20% {
    opacity: 1;
    transform: translateX(-20px); }
  100% {
    opacity: 0;
    transform: translateX(2000px); } }

.bounceOutRight {
  animation-name: bounceOutRight; }

@keyframes bounceOutUp {
  0% {
    transform: translateY(0); }
  20% {
    opacity: 1;
    transform: translateY(20px); }
  100% {
    opacity: 0;
    transform: translateY(-2000px); } }

.bounceOutUp {
  animation-name: bounceOutUp; }

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

.fadeIn {
  animation-name: fadeIn; }

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px); }
  100% {
    opacity: 1;
    transform: translateY(0); } }

.fadeInDown {
  animation-name: fadeInDown; }

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translateY(-2000px); }
  100% {
    opacity: 1;
    transform: translateY(0); } }

.fadeInDownBig {
  animation-name: fadeInDownBig; }

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px); }
  100% {
    opacity: 1;
    transform: translateX(0); } }

.fadeInLeft {
  animation-name: fadeInLeft; }

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translateX(-2000px); }
  100% {
    opacity: 1;
    transform: translateX(0); } }

.fadeInLeftBig {
  animation-name: fadeInLeftBig; }

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px); }
  100% {
    opacity: 1;
    transform: translateX(0); } }

.fadeInRight {
  animation-name: fadeInRight; }

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translateX(2000px); }
  100% {
    opacity: 1;
    transform: translateX(0); } }

.fadeInRightBig {
  animation-name: fadeInRightBig; }

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px); }
  100% {
    opacity: 1;
    transform: translateY(0); } }

.fadeInUp {
  animation-name: fadeInUp; }

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translateY(2000px); }
  100% {
    opacity: 1;
    transform: translateY(0); } }

.fadeInUpBig {
  animation-name: fadeInUpBig; }

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

.fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOutDown {
  0% {
    opacity: 1;
    transform: translateY(0); }
  100% {
    opacity: 0;
    transform: translateY(20px); } }

.fadeOutDown {
  animation-name: fadeOutDown; }

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    transform: translateY(0); }
  100% {
    opacity: 0;
    transform: translateY(2000px); } }

.fadeOutDownBig {
  animation-name: fadeOutDownBig; }

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    transform: translateX(0); }
  100% {
    opacity: 0;
    transform: translateX(-20px); } }

.fadeOutLeft {
  animation-name: fadeOutLeft; }

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    transform: translateX(0); }
  100% {
    opacity: 0;
    transform: translateX(-2000px); } }

.fadeOutLeftBig {
  animation-name: fadeOutLeftBig; }

@keyframes fadeOutRight {
  0% {
    opacity: 1;
    transform: translateX(0); }
  100% {
    opacity: 0;
    transform: translateX(20px); } }

.fadeOutRight {
  animation-name: fadeOutRight; }

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    transform: translateX(0); }
  100% {
    opacity: 0;
    transform: translateX(2000px); } }

.fadeOutRightBig {
  animation-name: fadeOutRightBig; }

@keyframes fadeOutUp {
  0% {
    opacity: 1;
    transform: translateY(0); }
  100% {
    opacity: 0;
    transform: translateY(-20px); } }

.fadeOutUp {
  animation-name: fadeOutUp; }

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    transform: translateY(0); }
  100% {
    opacity: 0;
    transform: translateY(-2000px); } }

.fadeOutUpBig {
  animation-name: fadeOutUpBig; }

@keyframes flip {
  0% {
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    animation-timing-function: ease-out; }
  40% {
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    animation-timing-function: ease-out; }
  50% {
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    animation-timing-function: ease-in; }
  80% {
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    animation-timing-function: ease-in; }
  100% {
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    animation-timing-function: ease-in; } }

.animated.flip {
  -ms-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip; }

@keyframes flipInX {
  0% {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0; }
  40% {
    transform: perspective(400px) rotateX(-10deg); }
  70% {
    transform: perspective(400px) rotateX(10deg); }
  100% {
    transform: perspective(400px) rotateX(0deg);
    opacity: 1; } }

.flipInX {
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX; }

@keyframes flipInY {
  0% {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0; }
  40% {
    transform: perspective(400px) rotateY(-10deg); }
  70% {
    transform: perspective(400px) rotateY(10deg); }
  100% {
    transform: perspective(400px) rotateY(0deg);
    opacity: 1; } }

.flipInY {
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInY; }

@keyframes flipOutX {
  0% {
    transform: perspective(400px) rotateX(0deg);
    opacity: 1; }
  100% {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0; } }

.flipOutX {
  animation-name: flipOutX;
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@keyframes flipOutY {
  0% {
    transform: perspective(400px) rotateY(0deg);
    opacity: 1; }
  100% {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0; } }

.flipOutY {
  -ms-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutY; }

@keyframes lightSpeedIn {
  0% {
    transform: translateX(100%) skewX(-30deg);
    opacity: 0; }
  60% {
    transform: translateX(-20%) skewX(30deg);
    opacity: 1; }
  80% {
    transform: translateX(0%) skewX(-15deg);
    opacity: 1; }
  100% {
    transform: translateX(0%) skewX(0deg);
    opacity: 1; } }

.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out; }

@keyframes lightSpeedOut {
  0% {
    transform: translateX(0%) skewX(0deg);
    opacity: 1; }
  100% {
    transform: translateX(100%) skewX(-30deg);
    opacity: 0; } }

.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in; }

@keyframes rotateIn {
  0% {
    transform-origin: center center;
    transform: rotate(-200deg);
    opacity: 0; }
  100% {
    transform-origin: center center;
    transform: rotate(0);
    opacity: 1; } }

.rotateIn {
  animation-name: rotateIn; }

@keyframes rotateInDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(-90deg);
    opacity: 0; }
  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1; } }

.rotateInDownLeft {
  animation-name: rotateInDownLeft; }

@keyframes rotateInDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0; }
  100% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1; } }

.rotateInDownRight {
  animation-name: rotateInDownRight; }

@keyframes rotateInUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(90deg);
    opacity: 0; }
  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1; } }

.rotateInUpLeft {
  animation-name: rotateInUpLeft; }

@keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0; }
  100% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1; } }

.rotateInUpRight {
  animation-name: rotateInUpRight; }

@keyframes rotateOut {
  0% {
    transform-origin: center center;
    transform: rotate(0);
    opacity: 1; }
  100% {
    transform-origin: center center;
    transform: rotate(200deg);
    opacity: 0; } }

.rotateOut {
  animation-name: rotateOut; }

@keyframes rotateOutDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1; }
  100% {
    transform-origin: left bottom;
    transform: rotate(90deg);
    opacity: 0; } }

.rotateOutDownLeft {
  animation-name: rotateOutDownLeft; }

@keyframes rotateOutDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1; }
  100% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0; } }

.rotateOutDownRight {
  animation-name: rotateOutDownRight; }

@keyframes rotateOutUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1; }
  100% {
    transform-origin: left bottom;
    transform: rotate(-90deg);
    opacity: 0; } }

.rotateOutUpLeft {
  animation-name: rotateOutUpLeft; }

@keyframes rotateOutUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1; }
  100% {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0; } }

.rotateOutUpRight {
  animation-name: rotateOutUpRight; }

@keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-2000px); }
  100% {
    transform: translateY(0); } }

.slideInDown {
  animation-name: slideInDown; }

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-2000px); }
  100% {
    transform: translateX(0); } }

.slideInLeft {
  animation-name: slideInLeft; }

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(2000px); }
  100% {
    transform: translateX(0); } }

.slideInRight {
  animation-name: slideInRight; }

@keyframes slideOutLeft {
  0% {
    transform: translateX(0); }
  100% {
    opacity: 0;
    transform: translateX(-2000px); } }

.slideOutLeft {
  animation-name: slideOutLeft; }

@keyframes slideOutRight {
  0% {
    transform: translateX(0); }
  100% {
    opacity: 0;
    transform: translateX(2000px); } }

.slideOutRight {
  animation-name: slideOutRight; }

@keyframes slideOutUp {
  0% {
    transform: translateY(0); }
  100% {
    opacity: 0;
    transform: translateY(-2000px); } }

.slideOutUp {
  animation-name: slideOutUp; }

@keyframes hinge {
  0% {
    transform: rotate(0);
    transform-origin: top left;
    animation-timing-function: ease-in-out; }
  20%,
  60% {
    transform: rotate(80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out; }
  40% {
    transform: rotate(60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out; }
  80% {
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    transform-origin: top left;
    animation-timing-function: ease-in-out; }
  100% {
    transform: translateY(700px);
    opacity: 0; } }

.hinge {
  animation-name: hinge; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes rollIn {
  0% {
    opacity: 0;
    transform: translateX(-100%) rotate(-120deg); }
  100% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg); } }

.rollIn {
  animation-name: rollIn; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes rollOut {
  0% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg); }
  100% {
    opacity: 0;
    transform: translateX(100%) rotate(120deg); } }

.rollOut {
  animation-name: rollOut; }

.content-blocks main > article h1,
.content-blocks main > article h2 {
  margin-top: 0;
  margin-bottom: 1.25rem;
  font-weight: bold;
  line-height: 1.2;
  word-break: break-word; }

.content-blocks main > article p {
  line-height: 1.7; }

.content-blocks main > article .lead {
  font-size: 26px; }

.content-blocks main > article .entry-content {
  padding: 0; }

@media screen and (max-width: 39.9375em) {
  .content-blocks main > article .small-no-padding {
    padding-left: 0;
    padding-right: 0; } }

.content-blocks main > article .case-block-container {
  font-size: 1.125rem;
  color: #585858; }
  .content-blocks main > article .case-block-container .block-content-wrapper {
    max-width: 1250px; }
    @media screen and (max-width: 39.9375em) {
      .content-blocks main > article .case-block-container .block-content-wrapper .columns:not(.small-no-padding) {
        padding: 0 20px; } }
  .content-blocks main > article .case-block-container blockquote {
    margin: 3.5em 0;
    padding: 0 0 0 40px; }
    @media print, screen and (min-width: 40em) {
      .content-blocks main > article .case-block-container blockquote {
        padding: 0 60px; } }
    @media print, screen and (min-width: 64em) {
      .content-blocks main > article .case-block-container blockquote {
        padding: 0 100px; } }
    .content-blocks main > article .case-block-container blockquote p {
      font-size: 22px; }
      @media print, screen and (min-width: 40em) {
        .content-blocks main > article .case-block-container blockquote p {
          text-align: center;
          font-size: 26px; } }
      @media print, screen and (min-width: 64em) {
        .content-blocks main > article .case-block-container blockquote p {
          font-size: 32px; } }
    @media print, screen and (min-width: 40em) {
      .content-blocks main > article .case-block-container blockquote:after, .content-blocks main > article .case-block-container blockquote:before {
        width: 40px;
        height: 33px; } }
    @media print, screen and (min-width: 64em) {
      .content-blocks main > article .case-block-container blockquote:after, .content-blocks main > article .case-block-container blockquote:before {
        width: 50px;
        height: 41px; } }
    .content-blocks main > article .case-block-container blockquote:before {
      left: -10px; }
      @media print, screen and (min-width: 40em) {
        .content-blocks main > article .case-block-container blockquote:before {
          left: -10px; } }
      @media print, screen and (min-width: 64em) {
        .content-blocks main > article .case-block-container blockquote:before {
          left: 40px; } }
    .content-blocks main > article .case-block-container blockquote:after {
      right: 0;
      display: none; }
      @media print, screen and (min-width: 40em) {
        .content-blocks main > article .case-block-container blockquote:after {
          display: block;
          right: -10px; } }
      @media print, screen and (min-width: 64em) {
        .content-blocks main > article .case-block-container blockquote:after {
          right: 40px; } }
  .content-blocks main > article .case-block-container cite {
    margin-top: -3.5em;
    margin-bottom: 3em;
    text-align: center; }
  .content-blocks main > article .case-block-container.block-text {
    margin: 4rem 0; }
    .content-blocks main > article .case-block-container.block-text + .block-text {
      padding-top: 0; }
    @media screen and (max-width: 39.9375em) {
      .content-blocks main > article .case-block-container.block-text.has-supporting-text {
        padding-bottom: 0; } }
    @media print, screen and (min-width: 40em) {
      .content-blocks main > article .case-block-container.block-text .block-content {
        padding-left: 100px; } }
    @media print, screen and (min-width: 64em) {
      .content-blocks main > article .case-block-container.block-text .block-content {
        padding-left: 170px; } }
    @media print, screen and (min-width: 40em) {
      .content-blocks main > article .case-block-container.block-text:not(.has-supporting-text) .block-content {
        padding-right: 100px; } }
    @media print, screen and (min-width: 64em) {
      .content-blocks main > article .case-block-container.block-text:not(.has-supporting-text) .block-content {
        padding-right: 170px; } }
    .content-blocks main > article .case-block-container.block-text h3 {
      font-size: 30px;
      font-weight: 600; }
    .content-blocks main > article .case-block-container.block-text p:last-child {
      margin-bottom: 0; }
    .content-blocks main > article .case-block-container.block-text .title {
      color: #E0DFDF; }
    .content-blocks main > article .case-block-container.block-text .supporting-box-container {
      margin-top: 2rem;
      position: relative;
      background: #F4364C;
      color: #ffffff;
      padding: 35px 25px; }
      @media print, screen and (min-width: 40em) {
        .content-blocks main > article .case-block-container.block-text .supporting-box-container {
          margin-top: -8rem; } }
      @media print, screen and (min-width: 64em) {
        .content-blocks main > article .case-block-container.block-text .supporting-box-container {
          padding: 35px 55px;
          margin-top: -8rem; } }
      .content-blocks main > article .case-block-container.block-text .supporting-box-container .supporting-box-header {
        text-transform: uppercase;
        display: block;
        margin-bottom: 1em;
        font-size: -2.875rem;
        line-height: 1.8; }
        @media print, screen and (min-width: 40em) {
          .content-blocks main > article .case-block-container.block-text .supporting-box-container .supporting-box-header {
            font-size: -0.875rem;
            line-height: 1.4; } }
      .content-blocks main > article .case-block-container.block-text .supporting-box-container .supporting-box-content {
        margin-bottom: 2rem;
        margin-top: 2rem; }
        @media print, screen and (min-width: 40em) {
          .content-blocks main > article .case-block-container.block-text .supporting-box-container .supporting-box-content {
            margin-top: 1rem; } }
        .content-blocks main > article .case-block-container.block-text .supporting-box-container .supporting-box-content p {
          font-size: 7.125rem;
          line-height: 1.35; }
          @media print, screen and (min-width: 40em) {
            .content-blocks main > article .case-block-container.block-text .supporting-box-container .supporting-box-content p {
              font-size: 28px; } }
        .content-blocks main > article .case-block-container.block-text .supporting-box-container .supporting-box-content p:last-child {
          margin-bottom: 0; }
      .content-blocks main > article .case-block-container.block-text .supporting-box-container .supporting-box-link {
        color: #ffffff;
        text-transform: uppercase;
        font-size: -4.875rem;
        padding: 4px 38px 4px 0;
        position: relative; }
        @media print, screen and (min-width: 40em) {
          .content-blocks main > article .case-block-container.block-text .supporting-box-container .supporting-box-link {
            font-size: -2.875rem; } }
        .content-blocks main > article .case-block-container.block-text .supporting-box-container .supporting-box-link:after {
          background-image: url("data:image/png;base64,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UmVhZHlxyWU8AAADJmlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDIgNzkuMTYwOTI0LCAyMDE3LzA3LzEzLTAxOjA2OjM5ICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdFJlZj0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlUmVmIyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgMjAxOCAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MERFMTFGQjZDQzgzMTFFODkyMDlCMTE4ODQ0NUYwNUYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MERFMTFGQjdDQzgzMTFFODkyMDlCMTE4ODQ0NUYwNUYiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDowREUxMUZCNENDODMxMUU4OTIwOUIxMTg4NDQ1RjA1RiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDowREUxMUZCNUNDODMxMUU4OTIwOUIxMTg4NDQ1RjA1RiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PmMMJvcAAAFJSURBVHjazNY9SwNBEMZxL/GtSWOhpFFBsNAPYCFYiiBYWYilWFr7AazFSmxNKaksgpWtIAhWFtpY+wZaSdAk63/wCVyxuIK4zMIPLseEfbhcZqcIIQxkWhUMo/3b4lyriRtMeAt2gRmcoZastp8yo/3wvc5R/ak2dzDTULimt2AVtBTuyFMwM4pLhdvzFMyM4U7hdjwFM9N4VLhNT8HMHJ7RxXL/fqHOX8XgP/SuXqJX2r7v2MCx7i3i2oKtcnFYarhWHDunin7rK12nPofSd0MkcE/72TFVxwheMWVP6QW3pSdWRDaL9uY/1MTCjyvkEz49vGNmGx94wKSXl38FHbxh3su/cgFtBVvy0i5m1SZsrXlpsHXcK9SWlyOphiuF2vVyiA9pFguazdyMPScK1UjV5gx1oFCt1PRqcs78HZxiHd1U8ZcAAwDrCWagf8aEpAAAAABJRU5ErkJggg==");
          background-size: contain;
          background-repeat: no-repeat;
          background-position: center;
          width: 24px;
          height: 23px;
          content: "";
          right: 0;
          top: -1px;
          position: absolute;
          transition: right 0.3s ease; }
        .content-blocks main > article .case-block-container.block-text .supporting-box-container .supporting-box-link:active, .content-blocks main > article .case-block-container.block-text .supporting-box-container .supporting-box-link:hover {
          text-decoration: underline; }
          .content-blocks main > article .case-block-container.block-text .supporting-box-container .supporting-box-link:active:after, .content-blocks main > article .case-block-container.block-text .supporting-box-container .supporting-box-link:hover:after {
            right: -5px; }
  .content-blocks main > article .case-block-container.block-numbers {
    background: #f2f2f2;
    text-align: center;
    padding: 4rem 0; }
    @media print, screen and (min-width: 40em) {
      .content-blocks main > article .case-block-container.block-numbers {
        padding: 4rem 0 8rem; } }
    .content-blocks main > article .case-block-container.block-numbers h2 {
      font-size: 32px;
      margin: 0; }
    .content-blocks main > article .case-block-container.block-numbers .subtitle {
      margin: 16px 0 0; }
    .content-blocks main > article .case-block-container.block-numbers .numbers-list {
      margin: 20px 0 0;
      padding: 0;
      list-style: none;
      -ms-flex-pack: center;
      justify-content: center; }
      @media print, screen and (min-width: 40em) {
        .content-blocks main > article .case-block-container.block-numbers .numbers-list {
          display: -ms-flexbox;
          display: flex;
          -ms-flex-wrap: wrap;
          flex-wrap: wrap; } }
      .content-blocks main > article .case-block-container.block-numbers .numbers-list li {
        -ms-flex-positive: 1;
        flex-grow: 1;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 30px;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%; }
        @media print, screen and (min-width: 40em) {
          .content-blocks main > article .case-block-container.block-numbers .numbers-list li {
            margin-left: 10px;
            margin-right: 10px; } }
        @media print, screen and (min-width: 64em) {
          .content-blocks main > article .case-block-container.block-numbers .numbers-list li {
            -ms-flex-preferred-size: inherit;
            flex-basis: inherit; } }
        .content-blocks main > article .case-block-container.block-numbers .numbers-list li.highlighted .number {
          color: #F4364C; }
        .content-blocks main > article .case-block-container.block-numbers .numbers-list li .number {
          display: block;
          font-size: 64px;
          line-height: 1;
          font-weight: 700;
          color: #9b9b9b; }
          .content-blocks main > article .case-block-container.block-numbers .numbers-list li .number .detail {
            font-size: 0.5em;
            display: inline-block;
            margin-left: 5px; }
            .content-blocks main > article .case-block-container.block-numbers .numbers-list li .number .detail.percent {
              margin-left: 10px; }
          @media print, screen and (min-width: 40em) {
            .content-blocks main > article .case-block-container.block-numbers .numbers-list li .number {
              font-size: 96px; } }
        .content-blocks main > article .case-block-container.block-numbers .numbers-list li .explanation {
          font-size: 18px;
          display: block;
          max-width: 150px;
          margin: 0 auto; }
          @media print, screen and (min-width: 40em) {
            .content-blocks main > article .case-block-container.block-numbers .numbers-list li .explanation {
              max-width: 150px; } }
  .content-blocks main > article .case-block-container.block-gallery .block-content-wrapper {
    position: relative; }
    @media print, screen and (min-width: 40em) {
      .content-blocks main > article .case-block-container.block-gallery .block-content-wrapper {
        height: 500px; } }
    @media print, screen and (min-width: 64em) {
      .content-blocks main > article .case-block-container.block-gallery .block-content-wrapper {
        height: 600px; } }
  .content-blocks main > article .case-block-container.block-gallery .left,
  .content-blocks main > article .case-block-container.block-gallery .right {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .content-blocks main > article .case-block-container.block-gallery .right .image-container {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%; }
  @media print, screen and (min-width: 40em) {
    .content-blocks main > article .case-block-container.block-gallery .right {
      padding-left: 0; } }
  @media print, screen and (min-width: 40em) {
    .content-blocks main > article .case-block-container.block-gallery:not(.image-count-1) .left {
      padding-right: 0; } }
  .content-blocks main > article .case-block-container.block-gallery .image-container {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    min-height: 200px; }
  .content-blocks main > article .case-block-container.block-gallery .feature-text {
    background: #F4364C;
    color: #ffffff;
    padding: 20px 35px;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 5.125rem;
    min-height: 180px; }
    @media print, screen and (min-width: 40em) {
      .content-blocks main > article .case-block-container.block-gallery .feature-text {
        min-height: inherit;
        font-size: 28px; } }
  @media print, screen and (min-width: 40em) {
    .content-blocks main > article .case-block-container.block-gallery.image-count-1 .feature-text {
      position: absolute;
      bottom: 0;
      left: 15px;
      min-height: 200px;
      -ms-flex-preferred-size: calc(58.33% - 15px);
      flex-basis: calc(58.33% - 15px);
      max-width: calc(58.33% - 15px); } }
  .content-blocks main > article .case-block-container.block-gallery.image-count-2 .image-1, .content-blocks main > article .case-block-container.block-gallery.image-count-3 .image-1 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%; }
  .content-blocks main > article .case-block-container.block-gallery.image-count-4 .image-1 {
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%; }
  @media print, screen and (min-width: 40em) {
    .content-blocks main > article .case-block-container.block-buttons {
      background: #f2f2f2;
      padding-top: 4rem;
      padding-bottom: calc(4rem + 40px); } }
  .content-blocks main > article .case-block-container.block-buttons .image-container {
    position: relative; }
    .content-blocks main > article .case-block-container.block-buttons .image-container .image-plane,
    .content-blocks main > article .case-block-container.block-buttons .image-container img {
      background-position: center center;
      background-size: cover;
      width: 100%;
      height: 220px;
      margin-bottom: 2rem; }
      @media print, screen and (min-width: 40em) {
        .content-blocks main > article .case-block-container.block-buttons .image-container .image-plane,
        .content-blocks main > article .case-block-container.block-buttons .image-container img {
          margin-bottom: 0;
          position: absolute;
          max-width: calc(100% - 30px);
          width: calc(100% - 30px);
          height: calc(100% + 4rem + 80px);
          display: block;
          bottom: -40px; } }
  .content-blocks main > article .case-block-container.block-buttons h2 {
    margin-bottom: 1.25rem; }
    @media screen and (max-width: 39.9375em) {
      .content-blocks main > article .case-block-container.block-buttons h2 {
        font-size: 1.25rem; } }
    @media print, screen and (min-width: 64em) {
      .content-blocks main > article .case-block-container.block-buttons h2 {
        margin-bottom: 0; } }
    @media print, screen and (min-width: 64em) {
      .content-blocks main > article .case-block-container.block-buttons h2 {
        font-size: 32px; } }
  @media print, screen and (min-width: 40em) {
    .content-blocks main > article .case-block-container.block-buttons:not(.no-image) {
      margin-top: 4rem; }
      .content-blocks main > article .case-block-container.block-buttons:not(.no-image) .medium-7 {
        padding-left: 40px; } }
  @media print, screen and (min-width: 40em) {
    .content-blocks main > article .case-block-container.block-text-image-feature {
      margin: 2rem 0 10rem; } }
  .content-blocks main > article .case-block-container.block-text-image-feature .block-content {
    color: #ffffff;
    font-size: 5.125rem;
    width: 100%;
    position: relative; }
    @media screen and (max-width: 39.9375em) {
      .content-blocks main > article .case-block-container.block-text-image-feature .block-content {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column; } }
    @media print, screen and (min-width: 40em) {
      .content-blocks main > article .case-block-container.block-text-image-feature .block-content {
        background: #F4364C;
        padding: 25px 35px;
        width: calc(50vw + 200px);
        padding: 40px 55px 40px 20px;
        font-size: 28px; } }
    @media print, screen and (min-width: 64em) {
      .content-blocks main > article .case-block-container.block-text-image-feature .block-content {
        padding: 60px 55px 60px 20px; } }
    .content-blocks main > article .case-block-container.block-text-image-feature .block-content span {
      background: #F4364C;
      padding: 3rem 35px;
      margin-left: auto;
      display: block;
      -ms-flex-order: 2;
      order: 2; }
      @media print, screen and (min-width: 40em) {
        .content-blocks main > article .case-block-container.block-text-image-feature .block-content span {
          padding: 0;
          max-width: 600px; } }
  .content-blocks main > article .case-block-container.block-text-image-feature .image-container {
    position: relative;
    text-align: center;
    margin-bottom: -5rem; }
    @media print, screen and (min-width: 40em) {
      .content-blocks main > article .case-block-container.block-text-image-feature .image-container {
        margin: 0;
        text-align: inherit;
        width: 300px;
        transform: translate(40%, 45%);
        position: absolute;
        right: 0;
        bottom: 0; } }
    @media print, screen and (min-width: 64em) {
      .content-blocks main > article .case-block-container.block-text-image-feature .image-container {
        transform: translate(50%, 45%);
        width: auto;
        max-width: 450px; } }
  .content-blocks main > article .case-block-container.block-50-50-columns {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column; }
    @media print, screen and (min-width: 40em) {
      .content-blocks main > article .case-block-container.block-50-50-columns {
        -ms-flex-direction: row;
        flex-direction: row; } }
    .content-blocks main > article .case-block-container.block-50-50-columns .column-image {
      padding-bottom: 55%;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat; }
      @media print, screen and (min-width: 40em) {
        .content-blocks main > article .case-block-container.block-50-50-columns .column-image {
          padding-bottom: 30%; } }
    .content-blocks main > article .case-block-container.block-50-50-columns .column-text {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-direction: column;
      flex-direction: column;
      -ms-flex-pack: center;
      justify-content: center;
      padding: 35px 25px;
      background: #f2f2f2; }
      @media print, screen and (min-width: 40em) {
        .content-blocks main > article .case-block-container.block-50-50-columns .column-text {
          padding: 45px; } }
      .content-blocks main > article .case-block-container.block-50-50-columns .column-text p {
        font-size: 1.125rem;
        line-height: 1.7778; }
        .content-blocks main > article .case-block-container.block-50-50-columns .column-text p:last-child {
          margin-bottom: 0; }
      .content-blocks main > article .case-block-container.block-50-50-columns .column-text h2 {
        margin-bottom: 1.25rem; }
        @media screen and (max-width: 39.9375em) {
          .content-blocks main > article .case-block-container.block-50-50-columns .column-text h2 {
            font-size: 1.25rem; } }
        @media print, screen and (min-width: 64em) {
          .content-blocks main > article .case-block-container.block-50-50-columns .column-text h2 {
            font-size: 32px; } }
  .content-blocks main > article .case-block-container.block-image-features {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column; }
    @media print, screen and (min-width: 40em) {
      .content-blocks main > article .case-block-container.block-image-features {
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap; } }
    .content-blocks main > article .case-block-container.block-image-features .column, .content-blocks main > article .case-block-container.block-image-features .columns {
      padding-bottom: 50%;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      position: relative; }
      @media print, screen and (min-width: 40em) {
        .content-blocks main > article .case-block-container.block-image-features .column, .content-blocks main > article .case-block-container.block-image-features .columns {
          padding-bottom: 25%; } }
      @media print, screen and (min-width: 40em) {
        .content-blocks main > article .case-block-container.block-image-features .column.medium-12, .content-blocks main > article .case-block-container.block-image-features .medium-12.columns, .content-blocks main > article .case-block-container.block-image-features .column.medium-6, .content-blocks main > article .case-block-container.block-image-features .medium-6.columns {
          padding-bottom: 30%; } }
      @media screen and (min-width: 40em) and (max-width: 63.9375em) {
        .content-blocks main > article .case-block-container.block-image-features .column.large-3, .content-blocks main > article .case-block-container.block-image-features .large-3.columns {
          padding-bottom: 30%; } }
      @media print, screen and (min-width: 64em) {
        .content-blocks main > article .case-block-container.block-image-features .column.large-3, .content-blocks main > article .case-block-container.block-image-features .large-3.columns {
          padding-bottom: 25%; } }
      .content-blocks main > article .case-block-container.block-image-features .column span, .content-blocks main > article .case-block-container.block-image-features .columns span {
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        width: 100%;
        box-sizing: border-box;
        padding: 24px;
        text-align: center;
        font-size: 1.125rem;
        color: white;
        z-index: 2;
        text-transform: uppercase; }
        @media print, screen and (min-width: 40em) {
          .content-blocks main > article .case-block-container.block-image-features .column span, .content-blocks main > article .case-block-container.block-image-features .columns span {
            font-size: 1.5rem;
            padding: 30px; } }
        @media print, screen and (min-width: 64em) {
          .content-blocks main > article .case-block-container.block-image-features .column span, .content-blocks main > article .case-block-container.block-image-features .columns span {
            font-size: 1.8rem;
            padding: 40px; } }
      .content-blocks main > article .case-block-container.block-image-features .column.color-overlay-brown:after, .content-blocks main > article .case-block-container.block-image-features .color-overlay-brown.columns:after, .content-blocks main > article .case-block-container.block-image-features .column.color-overlay-red:after, .content-blocks main > article .case-block-container.block-image-features .color-overlay-red.columns:after {
        content: "";
        position: absolute;
        z-index: 1;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(99, 78, 78, 0.66);
        transition: background 0.3s ease; }
      .content-blocks main > article .case-block-container.block-image-features .column.color-overlay-red:after, .content-blocks main > article .case-block-container.block-image-features .color-overlay-red.columns:after {
        background: rgba(244, 54, 76, 0.66); }
    .content-blocks main > article .case-block-container.block-image-features a.column:hover.color-overlay-brown::after, .content-blocks main > article .case-block-container.block-image-features a.columns:hover.color-overlay-brown::after {
      background: rgba(99, 78, 78, 0.73); }
    .content-blocks main > article .case-block-container.block-image-features a.column:hover.color-overlay-red::after, .content-blocks main > article .case-block-container.block-image-features a.columns:hover.color-overlay-red::after {
      background: rgba(244, 54, 76, 0.73); }
  .content-blocks main > article .case-block-container.block-50-50-carousel {
    margin: 4rem 0; }
    .content-blocks main > article .case-block-container.block-50-50-carousel .element {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      background: #f2f2f2; }
    .content-blocks main > article .case-block-container.block-50-50-carousel .element-image {
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      height: 0;
      padding-bottom: 60vw; }
      @media print, screen and (min-width: 40em) {
        .content-blocks main > article .case-block-container.block-50-50-carousel .element-image {
          height: 100%;
          padding: 0;
          -ms-flex: 1 1 50%;
          flex: 1 1 50%; } }
    .content-blocks main > article .case-block-container.block-50-50-carousel .element-text {
      padding: 60px 30px 60px; }
      @media print, screen and (min-width: 40em) {
        .content-blocks main > article .case-block-container.block-50-50-carousel .element-text {
          padding: 40px 40px 120px;
          -ms-flex: 1 1 50%;
          flex: 1 1 50%; } }
      @media print, screen and (min-width: 64em) {
        .content-blocks main > article .case-block-container.block-50-50-carousel .element-text {
          padding: 80px 80px 120px; } }
      .content-blocks main > article .case-block-container.block-50-50-carousel .element-text h2 {
        color: #F4364C;
        font-weight: bold;
        font-size: 20px;
        text-transform: none; }
      .content-blocks main > article .case-block-container.block-50-50-carousel .element-text p:last-child {
        margin-bottom: 0; }
    .content-blocks main > article .case-block-container.block-50-50-carousel .slick-track {
      display: -ms-flexbox;
      display: flex; }
      @media print, screen and (min-width: 40em) {
        .content-blocks main > article .case-block-container.block-50-50-carousel .slick-track .slick-slide {
          display: -ms-flexbox;
          display: flex;
          -ms-flex-align: start;
          align-items: flex-start;
          -ms-flex-pack: center;
          justify-content: center;
          height: auto; } }
    .content-blocks main > article .case-block-container.block-50-50-carousel .slick-arrow {
      position: absolute;
      left: 50%;
      bottom: inherit;
      top: calc(60vw - 40px);
      right: inherit;
      z-index: 1;
      opacity: 0.68;
      text-indent: -999px;
      background: #F4364C;
      overflow: hidden;
      padding: 20px 24px;
      z-index: 1;
      transition: opacity 0.2s ease; }
      @media print, screen and (min-width: 40em) {
        .content-blocks main > article .case-block-container.block-50-50-carousel .slick-arrow {
          top: inherit;
          bottom: 0; } }
      .content-blocks main > article .case-block-container.block-50-50-carousel .slick-arrow.slick-next {
        transform: none; }
        .content-blocks main > article .case-block-container.block-50-50-carousel .slick-arrow.slick-next:after {
          transition: all 0.2s ease;
          background-image: url("data:image/png;base64,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UmVhZHlxyWU8AAADJmlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDIgNzkuMTYwOTI0LCAyMDE3LzA3LzEzLTAxOjA2OjM5ICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdFJlZj0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlUmVmIyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgMjAxOCAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MERFMTFGQjZDQzgzMTFFODkyMDlCMTE4ODQ0NUYwNUYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MERFMTFGQjdDQzgzMTFFODkyMDlCMTE4ODQ0NUYwNUYiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDowREUxMUZCNENDODMxMUU4OTIwOUIxMTg4NDQ1RjA1RiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDowREUxMUZCNUNDODMxMUU4OTIwOUIxMTg4NDQ1RjA1RiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PmMMJvcAAAFJSURBVHjazNY9SwNBEMZxL/GtSWOhpFFBsNAPYCFYiiBYWYilWFr7AazFSmxNKaksgpWtIAhWFtpY+wZaSdAk63/wCVyxuIK4zMIPLseEfbhcZqcIIQxkWhUMo/3b4lyriRtMeAt2gRmcoZastp8yo/3wvc5R/ak2dzDTULimt2AVtBTuyFMwM4pLhdvzFMyM4U7hdjwFM9N4VLhNT8HMHJ7RxXL/fqHOX8XgP/SuXqJX2r7v2MCx7i3i2oKtcnFYarhWHDunin7rK12nPofSd0MkcE/72TFVxwheMWVP6QW3pSdWRDaL9uY/1MTCjyvkEz49vGNmGx94wKSXl38FHbxh3su/cgFtBVvy0i5m1SZsrXlpsHXcK9SWlyOphiuF2vVyiA9pFguazdyMPScK1UjV5gx1oFCt1PRqcs78HZxiHd1U8ZcAAwDrCWagf8aEpAAAAABJRU5ErkJggg==");
          background-size: contain;
          background-repeat: no-repeat;
          background-position: center;
          width: 24px;
          height: 23px;
          content: "";
          left: 50%;
          top: 50%;
          position: absolute;
          transform: rotate(180deg);
          transform: translate(-50%, -50%); }
        .content-blocks main > article .case-block-container.block-50-50-carousel .slick-arrow.slick-next:active:after, .content-blocks main > article .case-block-container.block-50-50-carousel .slick-arrow.slick-next:hover:after {
          left: calc(50% + 3px); }
      .content-blocks main > article .case-block-container.block-50-50-carousel .slick-arrow.slick-prev {
        transform: translateX(-100%); }
        .content-blocks main > article .case-block-container.block-50-50-carousel .slick-arrow.slick-prev:after {
          transition: left 0.2s ease;
          background-image: url("data:image/png;base64,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UmVhZHlxyWU8AAADJmlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDIgNzkuMTYwOTI0LCAyMDE3LzA3LzEzLTAxOjA2OjM5ICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdFJlZj0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlUmVmIyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgMjAxOCAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MERFMTFGQjZDQzgzMTFFODkyMDlCMTE4ODQ0NUYwNUYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MERFMTFGQjdDQzgzMTFFODkyMDlCMTE4ODQ0NUYwNUYiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDowREUxMUZCNENDODMxMUU4OTIwOUIxMTg4NDQ1RjA1RiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDowREUxMUZCNUNDODMxMUU4OTIwOUIxMTg4NDQ1RjA1RiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PmMMJvcAAAFJSURBVHjazNY9SwNBEMZxL/GtSWOhpFFBsNAPYCFYiiBYWYilWFr7AazFSmxNKaksgpWtIAhWFtpY+wZaSdAk63/wCVyxuIK4zMIPLseEfbhcZqcIIQxkWhUMo/3b4lyriRtMeAt2gRmcoZastp8yo/3wvc5R/ak2dzDTULimt2AVtBTuyFMwM4pLhdvzFMyM4U7hdjwFM9N4VLhNT8HMHJ7RxXL/fqHOX8XgP/SuXqJX2r7v2MCx7i3i2oKtcnFYarhWHDunin7rK12nPofSd0MkcE/72TFVxwheMWVP6QW3pSdWRDaL9uY/1MTCjyvkEz49vGNmGx94wKSXl38FHbxh3su/cgFtBVvy0i5m1SZsrXlpsHXcK9SWlyOphiuF2vVyiA9pFguazdyMPScK1UjV5gx1oFCt1PRqcs78HZxiHd1U8ZcAAwDrCWagf8aEpAAAAABJRU5ErkJggg==");
          background-size: contain;
          background-repeat: no-repeat;
          background-position: center;
          width: 24px;
          height: 23px;
          content: "";
          left: 50%;
          top: 50%;
          position: absolute;
          transform: rotate(180deg) translate(50%, 50%); }
        .content-blocks main > article .case-block-container.block-50-50-carousel .slick-arrow.slick-prev:active:after, .content-blocks main > article .case-block-container.block-50-50-carousel .slick-arrow.slick-prev:hover:after {
          left: calc(50% - 3px); }
      .content-blocks main > article .case-block-container.block-50-50-carousel .slick-arrow:active, .content-blocks main > article .case-block-container.block-50-50-carousel .slick-arrow:hover {
        opacity: 1; }
      .content-blocks main > article .case-block-container.block-50-50-carousel .slick-arrow:before {
        display: none; }
    .content-blocks main > article .case-block-container.block-50-50-carousel .slick-dots {
      bottom: inherit;
      top: 60vw;
      padding: 10px 0; }
      @media print, screen and (min-width: 40em) {
        .content-blocks main > article .case-block-container.block-50-50-carousel .slick-dots {
          width: auto;
          bottom: 30px;
          margin-left: -10px;
          display: -ms-flexbox;
          display: flex;
          top: inherit; } }
      @media print, screen and (min-width: 40em) {
        .content-blocks main > article .case-block-container.block-50-50-carousel .slick-dots {
          left: calc(50% + 40px);
          bottom: 50px; } }
      @media print, screen and (min-width: 64em) {
        .content-blocks main > article .case-block-container.block-50-50-carousel .slick-dots {
          left: calc(50% + 80px);
          bottom: 50px; } }
      .content-blocks main > article .case-block-container.block-50-50-carousel .slick-dots li {
        margin: 0;
        width: auto;
        height: auto; }
        .content-blocks main > article .case-block-container.block-50-50-carousel .slick-dots li button {
          height: 40px;
          width: 40px;
          background: #ffffff;
          border-radius: 50%;
          padding: 0;
          margin: 0; }
        .content-blocks main > article .case-block-container.block-50-50-carousel .slick-dots li button:before {
          display: none; }
        .content-blocks main > article .case-block-container.block-50-50-carousel .slick-dots li.slick-active button {
          background: #F4364C; }
    @media print, screen and (min-width: 40em) {
      .content-blocks main > article .case-block-container.block-50-50-carousel.images-on-right .slick-dots {
        left: calc(40px); } }
    @media print, screen and (min-width: 64em) {
      .content-blocks main > article .case-block-container.block-50-50-carousel.images-on-right .slick-dots {
        left: 90px; } }
    .content-blocks main > article .case-block-container.block-50-50-carousel.images-on-right .element-image {
      -ms-flex-order: 1;
      order: 1; }
    .content-blocks main > article .case-block-container.block-50-50-carousel.images-on-right .element-text {
      -ms-flex-order: 2;
      order: 2; }
    @media print, screen and (min-width: 40em) {
      .content-blocks main > article .case-block-container.block-50-50-carousel.images-on-right .element-image {
        -ms-flex-order: 2;
        order: 2; }
      .content-blocks main > article .case-block-container.block-50-50-carousel.images-on-right .element-text {
        -ms-flex-order: 1;
        order: 1; } }
  .content-blocks main > article .case-block-container.block-contacts-feature {
    margin: 4rem 0; }
    .content-blocks main > article .case-block-container.block-contacts-feature .text-content {
      text-align: center; }
    .content-blocks main > article .case-block-container.block-contacts-feature p {
      max-width: 90vw;
      margin-left: auto;
      margin-right: auto; }
    .content-blocks main > article .case-block-container.block-contacts-feature p:last-child {
      margin-bottom: 0; }
    .content-blocks main > article .case-block-container.block-contacts-feature .contacts-list {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-pack: center;
      justify-content: center;
      margin: 60px auto 0; }
      .content-blocks main > article .case-block-container.block-contacts-feature .contacts-list .vcard {
        width: 50%;
        text-align: center; }
        @media print, screen and (min-width: 40em) {
          .content-blocks main > article .case-block-container.block-contacts-feature .contacts-list .vcard {
            width: 33.33%; } }
        @media print, screen and (min-width: 64em) {
          .content-blocks main > article .case-block-container.block-contacts-feature .contacts-list .vcard {
            width: 25%; } }
        .content-blocks main > article .case-block-container.block-contacts-feature .contacts-list .vcard .contact_info {
          margin: 0;
          padding: 0; }
        .content-blocks main > article .case-block-container.block-contacts-feature .contacts-list .vcard li {
          font-size: 1.125rem; }
        .content-blocks main > article .case-block-container.block-contacts-feature .contacts-list .vcard .contact_image {
          max-width: 100px;
          margin: 0 auto 20px; }
          @media print, screen and (min-width: 40em) {
            .content-blocks main > article .case-block-container.block-contacts-feature .contacts-list .vcard .contact_image {
              margin: 0 auto 35px; } }
          .content-blocks main > article .case-block-container.block-contacts-feature .contacts-list .vcard .contact_image img {
            border-radius: 50%; }
        .content-blocks main > article .case-block-container.block-contacts-feature .contacts-list .vcard h4 {
          color: #F4364C;
          font-size: 1.125rem;
          margin: 0; }
        .content-blocks main > article .case-block-container.block-contacts-feature .contacts-list .vcard a {
          color: #585858; }
  .content-blocks main > article .case-block-container.block-related-features {
    background: #f2f2f2;
    padding: 4rem 0; }
    .content-blocks main > article .case-block-container.block-related-features .block-title {
      margin-top: 0; }
    .content-blocks main > article .case-block-container.block-related-features .element {
      padding: 0 1rem 2rem;
      margin-bottom: 2rem; }
      @media print, screen and (min-width: 64em) {
        .content-blocks main > article .case-block-container.block-related-features .element {
          margin-bottom: 0; } }
    .content-blocks main > article .case-block-container.block-related-features .block-content-wrapper {
      margin-bottom: -2rem; }
    .content-blocks main > article .case-block-container.block-related-features h3 {
      color: #F4364C;
      font-size: 20px;
      font-weight: 600;
      margin: 0 0 1em; }
    .content-blocks main > article .case-block-container.block-related-features p {
      margin-bottom: 0; }
    .content-blocks main > article .case-block-container.block-related-features a {
      color: #585858;
      display: block; }
      .content-blocks main > article .case-block-container.block-related-features a.read-more-link {
        position: relative; }
        .content-blocks main > article .case-block-container.block-related-features a.read-more-link .arrow {
          transition: all 0.2s ease;
          background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAZCAYAAACy0zfoAAAACXBIWXMAAAsSAAALEgHS3X78AAAA8klEQVRIic3WwRGCMBAF0I9jAZbgAe50YErwBkdLsBRL4EgZlMA9F+3ADuKEoKhsEnLZzZ/h4MBM3uyyKzDG8Fxlo1LP2YEvN1Rtl3IaJ04BqCdg1R5Wd4kUtnxscajhg9X9M3Q0Z+UwY9T8a4hVkBeHH+A9BuRt63/cgNS+FvNX7ju6vwAYfRWUxSEMlMfBD8wDBxooOxBU3JCc7ZAUpmzsUjwRj0nnkXXl9qubkln23tHuvXwGgljIeeAIGLLAeWAQxwVgNjID4ZZsN734HhhEcAkfnLxtzfZLeIGNW2BgbquDuT/4TeHEXaH7d0vjAfAC9jPVownkM7sAAAAASUVORK5CYII=");
          background-size: contain;
          background-repeat: no-repeat;
          background-position: center;
          width: 24px;
          height: 23px;
          content: "";
          display: inline-block;
          transform: translate(0, 5px);
          position: absolute; }
        .content-blocks main > article .case-block-container.block-related-features a.read-more-link:active p, .content-blocks main > article .case-block-container.block-related-features a.read-more-link:hover p {
          color: #212322; }
        .content-blocks main > article .case-block-container.block-related-features a.read-more-link:active .arrow, .content-blocks main > article .case-block-container.block-related-features a.read-more-link:hover .arrow {
          transform: translate(4px, 5px);
          zoom: 1.2; }
  .content-blocks main > article .case-block-container.block-newsletter-subscription {
    color: #ffffff;
    background-color: #F4364C;
    padding: 25px 0; }
    @media print, screen and (min-width: 40em) {
      .content-blocks main > article .case-block-container.block-newsletter-subscription .column, .content-blocks main > article .case-block-container.block-newsletter-subscription .columns {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: center;
        justify-content: center; } }
    .content-blocks main > article .case-block-container.block-newsletter-subscription .text-container {
      text-align: center;
      margin-bottom: 20px;
      margin-top: 12px; }
      @media print, screen and (min-width: 40em) {
        .content-blocks main > article .case-block-container.block-newsletter-subscription .text-container {
          text-align: inherit;
          display: -ms-flexbox;
          display: flex;
          -ms-flex-align: center;
          align-items: center;
          margin-bottom: 0;
          margin-right: 15px; } }
    @media print, screen and (min-width: 40em) {
      .content-blocks main > article .case-block-container.block-newsletter-subscription .form-container {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: end;
        justify-content: flex-end;
        display: flex;
        margin-left: 15px; } }
    .content-blocks main > article .case-block-container.block-newsletter-subscription .gfield,
    .content-blocks main > article .case-block-container.block-newsletter-subscription .gfield > div,
    .content-blocks main > article .case-block-container.block-newsletter-subscription .gform_footer,
    .content-blocks main > article .case-block-container.block-newsletter-subscription .gform_wrapper,
    .content-blocks main > article .case-block-container.block-newsletter-subscription .gform_wrapper.gform_validation_error .gform_body ul li.gfield.gfield_error {
      padding: 0;
      margin: 0 !important;
      border: 0 !important;
      background: transparent !important; }
    .content-blocks main > article .case-block-container.block-newsletter-subscription .gform_wrapper {
      width: 100%; }
    .content-blocks main > article .case-block-container.block-newsletter-subscription .gfield_label,
    .content-blocks main > article .case-block-container.block-newsletter-subscription .gform_heading,
    .content-blocks main > article .case-block-container.block-newsletter-subscription .validation_error {
      display: none; }
    .content-blocks main > article .case-block-container.block-newsletter-subscription .gform_footer {
      -ms-flex-positive: 0;
      flex-grow: 0;
      -ms-flex-negative: 1;
      flex-shrink: 1;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-pack: start;
      justify-content: flex-start;
      -ms-flex-align: start;
      align-items: flex-start;
      height: 48px;
      width: auto; }
    .content-blocks main > article .case-block-container.block-newsletter-subscription .gfield .validation_message {
      color: #fcc3c9;
      font-weight: normal;
      margin-top: 4px !important; }
    .content-blocks main > article .case-block-container.block-newsletter-subscription .gform_body {
      -ms-flex: 1 0 auto;
      flex: 1 0 auto;
      width: auto; }
      @media print, screen and (min-width: 40em) {
        .content-blocks main > article .case-block-container.block-newsletter-subscription .gform_body {
          max-width: 375px; } }
    .content-blocks main > article .case-block-container.block-newsletter-subscription .gform_wrapper input[type="email"],
    .content-blocks main > article .case-block-container.block-newsletter-subscription .gform_wrapper input[type="text"],
    .content-blocks main > article .case-block-container.block-newsletter-subscription .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type='file']) {
      background: transparent;
      width: calc(100% - 13px);
      color: #ffffff;
      border: 1px solid #ffffff;
      margin-right: 13px;
      margin-bottom: 0;
      padding: 10px 20px;
      height: 48px;
      transition: background 0.2s ease, color 0.2s ease; }
      .content-blocks main > article .case-block-container.block-newsletter-subscription .gform_wrapper input[type="email"]:-ms-input-placeholder,
      .content-blocks main > article .case-block-container.block-newsletter-subscription .gform_wrapper input[type="text"]:-ms-input-placeholder,
      .content-blocks main > article .case-block-container.block-newsletter-subscription .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type='file']):-ms-input-placeholder {
        color: #fcc3c9; }
      .content-blocks main > article .case-block-container.block-newsletter-subscription .gform_wrapper input[type="email"]::placeholder,
      .content-blocks main > article .case-block-container.block-newsletter-subscription .gform_wrapper input[type="text"]::placeholder,
      .content-blocks main > article .case-block-container.block-newsletter-subscription .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type='file'])::placeholder {
        color: #fcc3c9; }
      .content-blocks main > article .case-block-container.block-newsletter-subscription .gform_wrapper input[type="email"]::-webkit-input-placeholder,
      .content-blocks main > article .case-block-container.block-newsletter-subscription .gform_wrapper input[type="text"]::-webkit-input-placeholder,
      .content-blocks main > article .case-block-container.block-newsletter-subscription .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type='file'])::-webkit-input-placeholder {
        color: #fcc3c9; }
      .content-blocks main > article .case-block-container.block-newsletter-subscription .gform_wrapper input[type="email"]:active, .content-blocks main > article .case-block-container.block-newsletter-subscription .gform_wrapper input[type="email"]:focus,
      .content-blocks main > article .case-block-container.block-newsletter-subscription .gform_wrapper input[type="text"]:active,
      .content-blocks main > article .case-block-container.block-newsletter-subscription .gform_wrapper input[type="text"]:focus,
      .content-blocks main > article .case-block-container.block-newsletter-subscription .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type='file']):active,
      .content-blocks main > article .case-block-container.block-newsletter-subscription .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type='file']):focus {
        background: #ffffff;
        color: #585858; }
    .content-blocks main > article .case-block-container.block-newsletter-subscription form {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-pack: center;
      justify-content: center;
      -ms-flex-item-align: center;
      align-self: center;
      width: 100%; }
      @media print, screen and (min-width: 40em) {
        .content-blocks main > article .case-block-container.block-newsletter-subscription form {
          -ms-flex-pack: end;
          justify-content: flex-end; } }
  .content-blocks main > article .case-block-container.block-blog-posts {
    margin: 4rem auto;
    max-width: 650px;
    padding: 0 25px; }
    .content-blocks main > article .case-block-container.block-blog-posts .block-title.has-prefix .category {
      color: #9b9b9b; }
    .content-blocks main > article .case-block-container.block-blog-posts .posts-list {
      display: -ms-flexbox;
      display: flex;
      margin: 0 -10px -35px;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
      @media print, screen and (min-width: 40em) {
        .content-blocks main > article .case-block-container.block-blog-posts .posts-list {
          margin: 0 -17px -35px; } }
    .content-blocks main > article .case-block-container.block-blog-posts .featured-post-container {
      width: calc(100%);
      margin-bottom: 35px;
      padding: 0 10px;
      box-sizing: border-box; }
      @media print, screen and (min-width: 40em) {
        .content-blocks main > article .case-block-container.block-blog-posts .featured-post-container {
          padding: 0 17px; } }
    @media print, screen and (min-width: 40em) {
      .content-blocks main > article .case-block-container.block-blog-posts .narrow {
        width: calc(50%); } }
    .content-blocks main > article .case-block-container.block-blog-posts .narrow .post-image-container {
      height: 270px; }
    .content-blocks main > article .case-block-container.block-blog-posts .post-image-container {
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      margin-bottom: 25px;
      height: 365px; }
      @media print, screen and (min-width: 40em) {
        .content-blocks main > article .case-block-container.block-blog-posts .post-image-container {
          margin-bottom: 35px; } }
    .content-blocks main > article .case-block-container.block-blog-posts .post-title {
      font-weight: normal;
      font-size: 24px;
      margin: 0; }
    .content-blocks main > article .case-block-container.block-blog-posts .meta {
      color: #9b9b9b;
      margin-bottom: 20px; }
    .content-blocks main > article .case-block-container.block-blog-posts .cta {
      position: relative; }
      .content-blocks main > article .case-block-container.block-blog-posts .cta::after {
        transition: all 0.2s ease;
        background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAZCAYAAACy0zfoAAAACXBIWXMAAAsSAAALEgHS3X78AAAA8klEQVRIic3WwRGCMBAF0I9jAZbgAe50YErwBkdLsBRL4EgZlMA9F+3ADuKEoKhsEnLZzZ/h4MBM3uyyKzDG8Fxlo1LP2YEvN1Rtl3IaJ04BqCdg1R5Wd4kUtnxscajhg9X9M3Q0Z+UwY9T8a4hVkBeHH+A9BuRt63/cgNS+FvNX7ju6vwAYfRWUxSEMlMfBD8wDBxooOxBU3JCc7ZAUpmzsUjwRj0nnkXXl9qubkln23tHuvXwGgljIeeAIGLLAeWAQxwVgNjID4ZZsN734HhhEcAkfnLxtzfZLeIGNW2BgbquDuT/4TeHEXaH7d0vjAfAC9jPVownkM7sAAAAASUVORK5CYII=");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        width: 24px;
        height: 23px;
        content: "";
        display: inline-block;
        transform: translate(0, 5px);
        margin-left: 7px; }
      .content-blocks main > article .case-block-container.block-blog-posts .cta:active::after, .content-blocks main > article .case-block-container.block-blog-posts .cta:hover::after {
        transform: translate(4px, 5px); }
    .content-blocks main > article .case-block-container.block-blog-posts .load-more-container {
      margin: 3rem 0 0;
      text-align: center; }
  .content-blocks main > article .case-block-container.block-recruitment-videos {
    margin: 4rem 0; }
    @media print, screen and (min-width: 64em) {
      .content-blocks main > article .case-block-container.block-recruitment-videos .recruitment-filter-mobile {
        display: none; } }
    .content-blocks main > article .case-block-container.block-recruitment-videos .recruitment-filter-desktop {
      display: none;
      margin: 0 auto 2rem; }
      @media print, screen and (min-width: 64em) {
        .content-blocks main > article .case-block-container.block-recruitment-videos .recruitment-filter-desktop {
          display: -ms-flexbox;
          display: flex;
          -ms-flex-wrap: wrap;
          flex-wrap: wrap;
          -ms-flex-pack: center;
          justify-content: center; } }
      .content-blocks main > article .case-block-container.block-recruitment-videos .recruitment-filter-desktop a {
        padding: 16px 25px;
        min-width: 190px;
        margin: 0 25px;
        box-sizing: border-box;
        display: block;
        border: 1px solid #F4364C;
        background: #ffffff;
        color: #828183;
        font-size: 18px;
        text-align: center;
        transition: all 0.2s ease; }
        .content-blocks main > article .case-block-container.block-recruitment-videos .recruitment-filter-desktop a.current-item, .content-blocks main > article .case-block-container.block-recruitment-videos .recruitment-filter-desktop a:hover {
          background: #F4364C;
          color: #ffffff; }
    .content-blocks main > article .case-block-container.block-recruitment-videos select {
      width: auto;
      min-width: 300px;
      max-width: 100%;
      display: block;
      margin: 0 auto 2rem;
      padding: 10px 75px 10px 20px;
      border: 1px solid #F4364C;
      position: relative;
      height: 68px;
      cursor: pointer;
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      background: url("../images/select-arrow.png") no-repeat right center; }
      .content-blocks main > article .case-block-container.block-recruitment-videos select::-ms-expand {
        display: none;
        /* hide the default arrow in ie10 and ie11 */ }
    .content-blocks main > article .case-block-container.block-recruitment-videos .filter-container {
      width: 100%;
      display: -ms-flexbox;
      display: flex;
      position: relative;
      min-height: 440px;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
      @media print, screen and (min-width: 40em) {
        .content-blocks main > article .case-block-container.block-recruitment-videos .filter-container {
          -ms-flex-wrap: nowrap;
          flex-wrap: nowrap; } }
      .content-blocks main > article .case-block-container.block-recruitment-videos .filter-container .left {
        -ms-flex-order: 2;
        order: 2;
        width: 100%;
        background: #f2f2f2;
        -ms-flex-positive: 1;
        flex-grow: 1; }
        @media print, screen and (min-width: 40em) {
          .content-blocks main > article .case-block-container.block-recruitment-videos .filter-container .left {
            -ms-flex-order: 1;
            order: 1;
            width: 60%; } }
        .content-blocks main > article .case-block-container.block-recruitment-videos .filter-container .left .page {
          padding: 25px 40px; }
          @media print, screen and (min-width: 40em) {
            .content-blocks main > article .case-block-container.block-recruitment-videos .filter-container .left .page {
              padding: 45px 80px; } }
          @media print, screen and (min-width: 64em) {
            .content-blocks main > article .case-block-container.block-recruitment-videos .filter-container .left .page:nth-child(odd) {
              padding-right: 40px; }
            .content-blocks main > article .case-block-container.block-recruitment-videos .filter-container .left .page:nth-child(even) {
              padding-left: 40px; } }
          .content-blocks main > article .case-block-container.block-recruitment-videos .filter-container .left .page a {
            display: block;
            margin: 0 0 30px; }
            .content-blocks main > article .case-block-container.block-recruitment-videos .filter-container .left .page a span {
              display: block;
              margin: 3px 0; }
              .content-blocks main > article .case-block-container.block-recruitment-videos .filter-container .left .page a span.name {
                font-weight: 600; }
              .content-blocks main > article .case-block-container.block-recruitment-videos .filter-container .left .page a span.question {
                color: #585858; }
              .content-blocks main > article .case-block-container.block-recruitment-videos .filter-container .left .page a span.answer-cta {
                position: relative;
                display: inline-block;
                padding-right: 30px; }
                .content-blocks main > article .case-block-container.block-recruitment-videos .filter-container .left .page a span.answer-cta:after {
                  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAZCAYAAACy0zfoAAAACXBIWXMAAAsSAAALEgHS3X78AAAA8klEQVRIic3WwRGCMBAF0I9jAZbgAe50YErwBkdLsBRL4EgZlMA9F+3ADuKEoKhsEnLZzZ/h4MBM3uyyKzDG8Fxlo1LP2YEvN1Rtl3IaJ04BqCdg1R5Wd4kUtnxscajhg9X9M3Q0Z+UwY9T8a4hVkBeHH+A9BuRt63/cgNS+FvNX7ju6vwAYfRWUxSEMlMfBD8wDBxooOxBU3JCc7ZAUpmzsUjwRj0nnkXXl9qubkln23tHuvXwGgljIeeAIGLLAeWAQxwVgNjID4ZZsN734HhhEcAkfnLxtzfZLeIGNW2BgbquDuT/4TeHEXaH7d0vjAfAC9jPVownkM7sAAAAASUVORK5CYII=");
                  background-size: contain;
                  background-repeat: no-repeat;
                  background-position: center;
                  width: 24px;
                  height: 23px;
                  content: "";
                  right: 0;
                  top: 2px;
                  position: absolute;
                  transition: right 0.3s ease; }
            .content-blocks main > article .case-block-container.block-recruitment-videos .filter-container .left .page a:active span.answer-cta:after, .content-blocks main > article .case-block-container.block-recruitment-videos .filter-container .left .page a:hover span.answer-cta:after {
              right: -5px; }
            .content-blocks main > article .case-block-container.block-recruitment-videos .filter-container .left .page a.current-item span {
              font-weight: bold; }
        .content-blocks main > article .case-block-container.block-recruitment-videos .filter-container .left .slick-next,
        .content-blocks main > article .case-block-container.block-recruitment-videos .filter-container .left .slick-prev {
          display: none !important; }
        .content-blocks main > article .case-block-container.block-recruitment-videos .filter-container .left .slick-slide {
          outline: none; }
        .content-blocks main > article .case-block-container.block-recruitment-videos .filter-container .left .slick-dots {
          bottom: 0; }
          .content-blocks main > article .case-block-container.block-recruitment-videos .filter-container .left .slick-dots li button {
            padding: 0; }
            .content-blocks main > article .case-block-container.block-recruitment-videos .filter-container .left .slick-dots li button:before {
              opacity: 1;
              content: "";
              width: 10px;
              height: 10px;
              border-radius: 50%;
              background: #585858; }
          .content-blocks main > article .case-block-container.block-recruitment-videos .filter-container .left .slick-dots li.slick-active button:before {
            background: #F4364C; }
      .content-blocks main > article .case-block-container.block-recruitment-videos .filter-container .right {
        width: 100%;
        -ms-flex-order: 1;
        order: 1;
        -ms-flex-negative: 1;
        flex-shrink: 1;
        position: relative;
        overflow: hidden; }
        @media print, screen and (min-width: 40em) {
          .content-blocks main > article .case-block-container.block-recruitment-videos .filter-container .right {
            -ms-flex-order: 2;
            order: 2;
            width: 40%; } }
        .content-blocks main > article .case-block-container.block-recruitment-videos .filter-container .right .video-title {
          position: absolute;
          text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
          left: 0;
          top: 50%;
          width: 100%;
          text-align: center;
          color: #ffffff;
          z-index: 1; }
          .content-blocks main > article .case-block-container.block-recruitment-videos .filter-container .right .video-title .name {
            font-size: 32px;
            display: block;
            font-weight: bold; }
          .content-blocks main > article .case-block-container.block-recruitment-videos .filter-container .right .video-title .title {
            font-size: 28px;
            display: block;
            font-style: italic; }
        .content-blocks main > article .case-block-container.block-recruitment-videos .filter-container .right iframe,
        .content-blocks main > article .case-block-container.block-recruitment-videos .filter-container .right video {
          background: #000;
          min-width: 100%;
          min-height: 100%;
          width: auto;
          height: auto;
          object-fit: cover; }
          @media print, screen and (min-width: 40em) {
            .content-blocks main > article .case-block-container.block-recruitment-videos .filter-container .right iframe,
            .content-blocks main > article .case-block-container.block-recruitment-videos .filter-container .right video {
              position: absolute;
              z-index: 0;
              top: 50%;
              left: 50%;
              transform: translate(-50%, -50%); } }
        .content-blocks main > article .case-block-container.block-recruitment-videos .filter-container .right iframe {
          display: none; }
    .content-blocks main > article .case-block-container.block-recruitment-videos .loading-icon {
      display: none;
      margin: 45px 80px; }
    .content-blocks main > article .case-block-container.block-recruitment-videos.loading .loading-icon {
      display: block; }
  .content-blocks main > article .case-block-container.block-small-image-features {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 60px auto 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .content-blocks main > article .case-block-container.block-small-image-features .element {
      text-align: center;
      -ms-flex: 1 1 100%;
      flex: 1 1 100%;
      margin: 0 16px 60px;
      max-width: 187px; }
      @media print, screen and (min-width: 40em) {
        .content-blocks main > article .case-block-container.block-small-image-features .element {
          max-width: 160px;
          margin: 0 21px 60px; } }
      @media print, screen and (min-width: 64em) {
        .content-blocks main > article .case-block-container.block-small-image-features .element {
          max-width: 187px;
          margin: 0 16px 60px; } }
      .content-blocks main > article .case-block-container.block-small-image-features .element .image {
        padding-bottom: 100%;
        position: relative;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-color: rgba(244, 54, 76, 0);
        background-blend-mode: multiply;
        margin: 0 auto 20px;
        border-radius: 50%;
        overflow: hidden;
        transition: background-color 0.2s ease; }
      .content-blocks main > article .case-block-container.block-small-image-features .element .text {
        font-size: 18px;
        font-weight: normal;
        margin: 0;
        text-transform: uppercase; }
        @media print, screen and (min-width: 40em) {
          .content-blocks main > article .case-block-container.block-small-image-features .element .text {
            font-size: 18px; } }
      .content-blocks main > article .case-block-container.block-small-image-features .element a {
        color: #585858;
        transition: color 0.2s ease; }
    .content-blocks main > article .case-block-container.block-small-image-features a.element {
      color: #585858;
      cursor: pointer; }
      .content-blocks main > article .case-block-container.block-small-image-features a.element:hover {
        color: #F4364C; }
        .content-blocks main > article .case-block-container.block-small-image-features a.element:hover .image {
          background-color: rgba(50, 30, 30, 0.3); }
  .content-blocks main > article .case-block-container.block-large-image-features {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 60px auto;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    @media print, screen and (min-width: 40em) {
      .content-blocks main > article .case-block-container.block-large-image-features {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap; } }
    .content-blocks main > article .case-block-container.block-large-image-features .element {
      text-align: center;
      -ms-flex: 1 1 100%;
      flex: 1 1 100%;
      margin: 0 16px 60px;
      border-bottom: 7px solid #D8D8D8;
      transition: border-color 0.2s ease; }
      @media print, screen and (min-width: 40em) {
        .content-blocks main > article .case-block-container.block-large-image-features .element {
          margin: 0 10px 40px;
          -ms-flex: 1 1 33.333%;
          flex: 1 1 33.333%; } }
      @media print, screen and (min-width: 64em) {
        .content-blocks main > article .case-block-container.block-large-image-features .element {
          max-width: 300px;
          margin: 0 16px 100px; } }
      .content-blocks main > article .case-block-container.block-large-image-features .element .image {
        padding-bottom: 127.2%;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        margin: 0 auto 30px; }
      .content-blocks main > article .case-block-container.block-large-image-features .element h3 {
        font-size: 18px;
        font-weight: 600;
        text-transform: uppercase;
        margin-bottom: 4px; }
        @media print, screen and (min-width: 64em) {
          .content-blocks main > article .case-block-container.block-large-image-features .element h3 {
            font-size: 20px; } }
      .content-blocks main > article .case-block-container.block-large-image-features .element .text-container {
        font-size: 18px;
        font-weight: normal;
        margin: 0 0 30px; }
        @media print, screen and (min-width: 64em) {
          .content-blocks main > article .case-block-container.block-large-image-features .element .text-container {
            font-size: 18px; } }
      .content-blocks main > article .case-block-container.block-large-image-features .element .text {
        padding-bottom: 1.5em; }
      .content-blocks main > article .case-block-container.block-large-image-features .element p {
        margin: 0;
        line-height: 1.4; }
      .content-blocks main > article .case-block-container.block-large-image-features .element a {
        color: #585858;
        transition: color 0.2s ease; }
    .content-blocks main > article .case-block-container.block-large-image-features a.element {
      color: #585858;
      cursor: pointer; }
      .content-blocks main > article .case-block-container.block-large-image-features a.element:hover {
        border-color: #F4364C; }
  .content-blocks main > article .case-block-container.block-numbered-features {
    background: #f2f2f2;
    padding: 60px 0; }
    .content-blocks main > article .case-block-container.block-numbered-features .block-title {
      margin-top: 0; }
      .content-blocks main > article .case-block-container.block-numbered-features .block-title:after {
        bottom: -21px; }
      .content-blocks main > article .case-block-container.block-numbered-features .block-title span {
        font-size: 18px;
        font-weight: 400;
        display: block;
        max-width: 600px;
        margin: 14px auto 21px;
        text-transform: none;
        line-height: 1.778; }
    .content-blocks main > article .case-block-container.block-numbered-features .block-content-wrapper {
      margin-bottom: -60px;
      padding: 0 15px; }
    .content-blocks main > article .case-block-container.block-numbered-features .element {
      -ms-flex: 1 1 100%;
      flex: 1 1 100%;
      margin: 0 0 60px;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-direction: column;
      flex-direction: column;
      position: relative; }
      @media print, screen and (min-width: 40em) {
        .content-blocks main > article .case-block-container.block-numbered-features .element:nth-child(2n) {
          margin-left: 20px; } }
      @media print, screen and (min-width: 64em) {
        .content-blocks main > article .case-block-container.block-numbered-features .element:nth-child(2n) {
          margin-left: 30px; } }
      @media print, screen and (min-width: 40em) {
        .content-blocks main > article .case-block-container.block-numbered-features .element:nth-child(2n + 1) {
          margin-right: 20px; } }
      @media print, screen and (min-width: 64em) {
        .content-blocks main > article .case-block-container.block-numbered-features .element:nth-child(2n + 1) {
          margin-right: 30px; } }
      @media print, screen and (min-width: 40em) {
        .content-blocks main > article .case-block-container.block-numbered-features .element {
          -ms-flex-direction: row;
          flex-direction: row; } }
      @media print, screen and (min-width: 64em) {
        .content-blocks main > article .case-block-container.block-numbered-features .element {
          -ms-flex: 1 1 calc(50.0% - 60px);
          flex: 1 1 calc(50.0% - 60px); } }
      .content-blocks main > article .case-block-container.block-numbered-features .element .image {
        border-radius: 50%;
        height: 180px;
        width: 180px;
        -ms-flex-positive: 1;
        flex-grow: 1;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-color: rgba(244, 54, 76, 0);
        background-blend-mode: multiply;
        margin: 0 auto 25px;
        overflow: hidden;
        transition: background-color 0.2s ease; }
        @media print, screen and (min-width: 40em) {
          .content-blocks main > article .case-block-container.block-numbered-features .element .image {
            height: 140px;
            width: 140px;
            margin: 0 60px 0 0; } }
        @media print, screen and (min-width: 64em) {
          .content-blocks main > article .case-block-container.block-numbered-features .element .image {
            margin: 0 60px 0 0;
            height: 184px;
            width: 184px; } }
      .content-blocks main > article .case-block-container.block-numbered-features .element .text {
        font-size: 18px;
        font-weight: normal;
        margin: 0 0 30px;
        -ms-flex-positive: 0;
        flex-grow: 0;
        -ms-flex-negative: 1;
        flex-shrink: 1;
        position: relative;
        z-index: 2; }
        .content-blocks main > article .case-block-container.block-numbered-features .element .text h2 {
          text-transform: none;
          font-weight: 700;
          font-size: 18px;
          margin-bottom: 30px;
          position: relative;
          z-index: 2; }
        .content-blocks main > article .case-block-container.block-numbered-features .element .text p {
          margin: 0;
          /*line-height: 1.4;*/
          font-size: 18px;
          position: relative;
          z-index: 2; }
          @media print, screen and (min-width: 40em) {
            .content-blocks main > article .case-block-container.block-numbered-features .element .text p {
              font-size: 14px; } }
          @media print, screen and (min-width: 64em) {
            .content-blocks main > article .case-block-container.block-numbered-features .element .text p {
              font-size: 18px; } }
      .content-blocks main > article .case-block-container.block-numbered-features .element a {
        color: #585858;
        transition: color 0.2s ease; }
      .content-blocks main > article .case-block-container.block-numbered-features .element .list-number {
        position: absolute;
        z-index: 1;
        font-size: 150px;
        left: -30px;
        top: -70px;
        color: #ffffff;
        font-weight: 700; }
        @media print, screen and (min-width: 40em) {
          .content-blocks main > article .case-block-container.block-numbered-features .element .list-number {
            left: -20px;
            top: -80px; } }
    .content-blocks main > article .case-block-container.block-numbered-features a.element {
      color: #585858;
      cursor: pointer; }
      .content-blocks main > article .case-block-container.block-numbered-features a.element:hover .image {
        background-color: rgba(244, 54, 76, 0.66); }
  .content-blocks main > article .case-block-container.block-adresses-on-map {
    margin: 0 auto 50px; }
    .content-blocks main > article .case-block-container.block-adresses-on-map:last-child {
      margin-bottom: 0; }
    .content-blocks main > article .case-block-container.block-adresses-on-map .block-content-wrapper {
      display: -ms-flexbox;
      display: flex;
      margin-bottom: 25px;
      padding: 0 15px;
      max-width: 800px;
      margin: 0 auto 25px; }
      .content-blocks main > article .case-block-container.block-adresses-on-map .block-content-wrapper .element {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        margin-bottom: 25px; }
        @media print, screen and (min-width: 40em) {
          .content-blocks main > article .case-block-container.block-adresses-on-map .block-content-wrapper .element {
            -ms-flex: 0 0 33.3334%;
            flex: 0 0 33.3334%; } }
        @media print, screen and (min-width: 64em) {
          .content-blocks main > article .case-block-container.block-adresses-on-map .block-content-wrapper .element {
            -ms-flex: 0 0 25%;
            flex: 0 0 25%; } }
    .content-blocks main > article .case-block-container.block-adresses-on-map h3 {
      transition: all 0.2s ease;
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 0;
      line-height: 1.778; }
      @media print, screen and (min-width: 40em) {
        .content-blocks main > article .case-block-container.block-adresses-on-map h3 {
          font-size: 18px; } }
    .content-blocks main > article .case-block-container.block-adresses-on-map .address {
      font-size: 14px;
      line-height: 1.778; }
      @media print, screen and (min-width: 40em) {
        .content-blocks main > article .case-block-container.block-adresses-on-map .address {
          font-size: 18px; } }
    .content-blocks main > article .case-block-container.block-adresses-on-map a.element {
      color: #585858; }
      .content-blocks main > article .case-block-container.block-adresses-on-map a.element.active h3, .content-blocks main > article .case-block-container.block-adresses-on-map a.element:active h3, .content-blocks main > article .case-block-container.block-adresses-on-map a.element:focus h3, .content-blocks main > article .case-block-container.block-adresses-on-map a.element:hover h3 {
        color: #F4364C; }
    .content-blocks main > article .case-block-container.block-adresses-on-map .block-map-container {
      width: 100%;
      height: 345px; }

.content-blocks main > article .contact-info {
  background: #f2f2f2;
  padding: 2rem 0;
  font-size: 18px;
  color: #585858; }
  .content-blocks main > article .contact-info .row {
    max-width: 1250px; }
  .content-blocks main > article .contact-info .columns {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  @media print, screen and (min-width: 40em) {
    .content-blocks main > article .contact-info {
      padding: 4rem 0; } }
  .content-blocks main > article .contact-info h2 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%; }
    @media screen and (max-width: 39.9375em) {
      .content-blocks main > article .contact-info h2 {
        font-size: 1.25rem; } }
    @media print, screen and (min-width: 40em) {
      .content-blocks main > article .contact-info h2 {
        margin: 0 0 2rem;
        text-align: center;
        font-size: 32px; } }
  .content-blocks main > article .contact-info .name {
    font-weight: normal;
    font-size: 18px; }
  .content-blocks main > article .contact-info .title {
    margin: 0; }
  .content-blocks main > article .contact-info .vcard {
    width: 100%;
    -ms-flex-positive: 1;
    flex-grow: 1;
    text-align: center;
    -ms-flex-direction: column;
    flex-direction: column;
    background: transparent;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center; }
    @media print, screen and (min-width: 40em) {
      .content-blocks main > article .contact-info .vcard {
        -ms-flex-direction: row;
        flex-direction: row;
        text-align: left; } }
    @media print, screen and (min-width: 64em) {
      .content-blocks main > article .contact-info .vcard {
        width: 33.33%; } }
    .content-blocks main > article .contact-info .vcard .contact_details {
      -ms-flex-preferred-size: inherit;
      flex-basis: inherit;
      -ms-flex-positive: 1;
      flex-grow: 1;
      padding: 0; }
      .content-blocks main > article .contact-info .vcard .contact_details .contact_info li {
        margin: 3px 0; }
    .content-blocks main > article .contact-info .vcard .contact_image {
      -ms-flex-preferred-size: 160px;
      flex-basis: 160px;
      padding: 0;
      -ms-flex-positive: 0;
      flex-grow: 0;
      max-width: 160px;
      margin-right: 25px;
      margin-bottom: 16px; }
      @media print, screen and (min-width: 40em) {
        .content-blocks main > article .contact-info .vcard .contact_image {
          margin-bottom: 0; } }
      .content-blocks main > article .contact-info .vcard .contact_image img {
        border-radius: 50%;
        display: block;
        max-width: 100%; }

.content-blocks .block-title {
  position: relative;
  margin: 8rem 0 4rem;
  text-align: center;
  color: #585858; }
  .content-blocks .block-title:after {
    content: "";
    position: absolute;
    bottom: -20px;
    height: 7px;
    width: 33px;
    background: #F4364C;
    left: 50%;
    transform: translateX(-50%); }

section#cases.page-section .casecolumn {
  padding: 0.7rem; }
  section#cases.page-section .casecolumn h2,
  section#cases.page-section .casecolumn p,
  section#cases.page-section .casecolumn span {
    transition: all 0.2s ease-in-out; }
  section#cases.page-section .casecolumn .caseexcerpt {
    -ms-flex: 1 0 auto;
    flex: 1 0 auto; }

section#cases.page-section .loadmore {
  margin-top: 3rem;
  text-align: center; }

.archive-posts-field article {
  -ms-flex: 50%;
  flex: 50%;
  padding: 0.7rem; }
  .archive-posts-field article h2,
  .archive-posts-field article p,
  .archive-posts-field article span {
    transition: all 0.2s ease-in-out; }
  .archive-posts-field article .archiveexcerpt {
    -ms-flex: 1 0 auto;
    flex: 1 0 auto; }
  .archive-posts-field article a:hover h2,
  .archive-posts-field article a:hover p,
  .archive-posts-field article a:hover span {
    color: #F4364C; }

.job-application-form .skill-level-stars {
  min-width: 260px; }

.job-application-form .star {
  color: #f5f5f5;
  text-shadow: -1px -1px 0 #555, 1px -1px 0 #555, -1px 1px 0 #555, 1px 1px 0 #555;
  transition: all 200ms ease-in-out; }
  .job-application-form .star.selected {
    color: #F4364C;
    text-shadow: -1px -1px 0 #F4364C, 1px -1px 0 #F4364C, -1px 1px 0 #F4364C, 1px 1px 0 #F4364C; }

.job-application-form .skill-title {
  font-weight: bold;
  color: #F4364C; }

.linkedin-custom-field {
  display: none;
  speak: none; }

.droparea__zone {
  border: 2px dashed #cacaca;
  margin-bottom: 0.5rem; }
  .droparea__zone--droppable {
    border-color: #F4364C; }
  .droparea__zone--disabled {
    border: none; }
    .droparea__zone--disabled .droparea__input {
      width: auto;
      height: auto;
      opacity: 1;
      position: static;
      z-index: 1; }
    .droparea__zone--disabled .droparea__label {
      display: none; }

.droparea__input {
  width: .1px;
  height: .1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1; }

.droparea__label {
  padding: 1rem 0.5rem;
  text-align: center; }
  .droparea__label:active {
    color: #F4364C; }

.droparea__attachments {
  margin: 1rem 0 1.75rem 0; }

.droparea__attachmentlist {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
  color: #111; }
  .droparea__attachmentlist li {
    position: relative;
    background: #f5f5f5;
    padding: 0.3rem 0.5rem; }
    .droparea__attachmentlist li:nth-child(even) {
      background: #FEFEFE; }
    .droparea__attachmentlist li .attachment-name {
      margin-right: 70px;
      display: block;
      overflow: hidden;
      word-break: break-all; }
    .droparea__attachmentlist li .attachment-size {
      text-align: right;
      position: absolute;
      right: 0.3rem;
      top: 0.3rem;
      width: 70px;
      display: block; }

.droparea__removebtn {
  padding: 0.5rem;
  color: #f16250;
  display: none;
  text-align: right; }
  .droparea__removebtn:hover, .droparea__removebtn:active, .droparea__removebtn:focus {
    color: #f16250; }
  .droparea__removebtn--visible {
    display: block; }

@keyframes spinner {
  to {
    transform: rotate(360deg); } }

.spinner:before {
  content: '';
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-left: 0;
  border-radius: 50%;
  border: 2px solid #ccc;
  border-top-color: #333;
  animation: spinner .6s linear infinite; }

.btn.spinner {
  position: relative; }
  .btn.spinner:before {
    left: 85%; }

body.page-template-page-recent-news main .container.events {
  background-color: #f3f3f3; }

body.page-template-page-recent-news main .container h2 {
  margin: 6rem 0 4rem; }
  body.page-template-page-recent-news main .container h2::after {
    display: block;
    content: '';
    margin: 20px auto 50px;
    width: 40px;
    height: 7px;
    background: #F4364C; }

body.page-template-page-recent-news main .row .column, body.page-template-page-recent-news main .row .columns {
  margin-bottom: 2rem; }
  body.page-template-page-recent-news main .row .column h4, body.page-template-page-recent-news main .row .columns h4 {
    margin-top: 1rem;
    margin-bottom: 0; }
  body.page-template-page-recent-news main .row .column a:not(.amb-button), body.page-template-page-recent-news main .row .columns a:not(.amb-button) {
    text-align: left;
    color: inherit; }
    body.page-template-page-recent-news main .row .column a:not(.amb-button):hover .readmore, body.page-template-page-recent-news main .row .columns a:not(.amb-button):hover .readmore {
      font-weight: bold; }
  body.page-template-page-recent-news main .row .column .excerpt time, body.page-template-page-recent-news main .row .columns .excerpt time {
    font-size: 1.125rem;
    display: block;
    margin-bottom: 1rem; }

body.page-template-page-recent-news main .row.news #news {
  max-width: 600px;
  margin: 0 auto; }
  body.page-template-page-recent-news main .row.news #news .column:first-child, body.page-template-page-recent-news main .row.news #news .columns:first-child {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }
  body.page-template-page-recent-news main .row.news #news .column .excerpt time, body.page-template-page-recent-news main .row.news #news .columns .excerpt time {
    font-size: 1.125rem;
    color: #9b9b9b; }

body.page-template-page-recent-news main .row.events #events {
  max-width: 900px;
  margin: 0 auto; }
  body.page-template-page-recent-news main .row.events #events .eventcontainer {
    -ms-flex-pack: center;
    justify-content: center; }
  body.page-template-page-recent-news main .row.events #events .column time, body.page-template-page-recent-news main .row.events #events .columns time {
    font-size: 1.125rem;
    margin-bottom: 0; }
  body.page-template-page-recent-news main .row.events #events .column .location, body.page-template-page-recent-news main .row.events #events .columns .location {
    font-size: 1.125rem;
    display: block;
    margin-bottom: 2rem; }

body.page-template-page-recent-news main .row.blogs #blogs {
  max-width: 900px;
  margin: 0 auto; }
  body.page-template-page-recent-news main .row.blogs #blogs .column .excerpt time, body.page-template-page-recent-news main .row.blogs #blogs .columns .excerpt time {
    font-size: 1.125rem;
    color: #9b9b9b;
    margin-bottom: 1rem; }
  body.page-template-page-recent-news main .row.blogs #blogs .column .excerpt .tag, body.page-template-page-recent-news main .row.blogs #blogs .columns .excerpt .tag {
    font-size: 1rem;
    font-style: italic;
    display: block;
    line-height: 1.4;
    margin-bottom: 1rem; }
    body.page-template-page-recent-news main .row.blogs #blogs .column .excerpt .tag .name, body.page-template-page-recent-news main .row.blogs #blogs .columns .excerpt .tag .name {
      white-space: nowrap;
      display: inline-block; }
      body.page-template-page-recent-news main .row.blogs #blogs .column .excerpt .tag .name:after, body.page-template-page-recent-news main .row.blogs #blogs .columns .excerpt .tag .name:after {
        content: ",";
        padding-right: .2rem;
        display: inline-block;
        speak: none; }
      body.page-template-page-recent-news main .row.blogs #blogs .column .excerpt .tag .name:last-child:after, body.page-template-page-recent-news main .row.blogs #blogs .columns .excerpt .tag .name:last-child:after {
        content: ""; }

.amb-button,
.cta-button,
.button {
  background-color: #ffffff;
  color: #F4364C;
  border: 1px solid #F4364C;
  padding: 2.2rem 3.5rem;
  margin: 1.5rem 0rem;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
  display: inline-block;
  word-break: keep-all; }
  .amb-button + .amb-button,
  .amb-button + .cta-button,
  .amb-button + .button,
  .cta-button + .amb-button,
  .cta-button + .cta-button,
  .cta-button + .button,
  .button + .amb-button,
  .button + .cta-button,
  .button + .button {
    margin-left: 1.1rem; }
  .amb-button:hover, .amb-button:focus, .amb-button:active,
  .cta-button:hover,
  .cta-button:focus,
  .cta-button:active,
  .button:hover,
  .button:focus,
  .button:active {
    border: 1px solid #F4364C;
    background-color: #F4364C;
    color: #ffffff; }
  .hero .amb-button, .hero
  .cta-button, .hero
  .button {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff; }
    .hero .amb-button:hover, .hero .amb-button:focus, .hero .amb-button:active, .hero
    .cta-button:hover, .hero
    .cta-button:focus, .hero
    .cta-button:active, .hero
    .button:hover, .hero
    .button:focus, .hero
    .button:active {
      border: 1px solid #F4364C;
      background-color: rgba(255, 255, 255, 0.8);
      color: #F4364C; }
  @media screen and (max-width: 39.9375em) {
    .amb-button,
    .cta-button,
    .button {
      display: block;
      width: 100%; } }

/* TEMPORARY HUBSPOT STYLE FORCED */
.cta_border_button,
a.cta_border_button,
.hs-button.primary.large,
.hs-button,
.hs-cta-wrapper a.cta_border_button {
  background-color: #ffffff !important;
  color: #F4364C !important;
  border: 1px solid #F4364C !important;
  padding: 2.2rem 3.5rem !important;
  margin: 1.5rem 0rem !important;
  font-size: 1.25rem !important;
  font-weight: 600 !important;
  display: inline-block !important;
  word-break: keep-all !important;
  border-radius: 0 !important; }
  .cta_border_button > *,
  a.cta_border_button > *,
  .hs-button.primary.large > *,
  .hs-button > *,
  .hs-cta-wrapper a.cta_border_button > * {
    font-size: inherit !important; }
  .hero .cta_border_button, .hero
  a.cta_border_button, .hero
  .hs-button.primary.large, .hero
  .hs-button, .hero
  .hs-cta-wrapper a.cta_border_button {
    background-color: transparent !important;
    color: #ffffff !important;
    border-color: #ffffff !important; }
  .cta_border_button:hover, .cta_border_button:focus, .cta_border_button:active,
  a.cta_border_button:hover,
  a.cta_border_button:focus,
  a.cta_border_button:active,
  .hs-button.primary.large:hover,
  .hs-button.primary.large:focus,
  .hs-button.primary.large:active,
  .hs-button:hover,
  .hs-button:focus,
  .hs-button:active,
  .hs-cta-wrapper a.cta_border_button:hover,
  .hs-cta-wrapper a.cta_border_button:focus,
  .hs-cta-wrapper a.cta_border_button:active {
    border: 1px solid #F4364C !important;
    background-color: #F4364C !important;
    color: #ffffff !important; }

/*
.button {
  &:hover {
    background-color: $step-6;
  }
}

#clients {
  .button {
    font-weight: 700;
    font-size: 1rem;
    padding: 1.3rem 2rem;
    background-color: $step-6;
    color: #fff;
    text-transform: uppercase;
    font-size: 0.8rem !important;
    padding: 1.3rem 1.5rem;
    letter-spacing: 0.15rem;
    @include breakpoint(medium) {
      font-size: 1rem !important;
      padding: 1.3rem 2rem;
    }
  }
}

.cta-button {
  border: $amb-brand-red 1px solid;
  background: #fff;
  color: $color_text_default;
  padding: 12px 20px;
  transition: all 0.2s ease;
  text-shadow: none;
  font-size: 18px;
  display: inline-block;
  @include breakpoint(medium) {
    padding: 14px 24px;
  }
  @include breakpoint(large) {
    //padding: 18px 28px;
  }

  &:focus {
    color: $amb-brand-red;
  }

  &:active,
  &:hover {
    color: #fff;
    background: $amb-brand-red;
  }
}

.arrow-link {
  padding-right: 38px;
  position: relative;

  &:after {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAZCAYAAACy0zfoAAAACXBIWXMAAAsSAAALEgHS3X78AAAA8klEQVRIic3WwRGCMBAF0I9jAZbgAe50YErwBkdLsBRL4EgZlMA9F+3ADuKEoKhsEnLZzZ/h4MBM3uyyKzDG8Fxlo1LP2YEvN1Rtl3IaJ04BqCdg1R5Wd4kUtnxscajhg9X9M3Q0Z+UwY9T8a4hVkBeHH+A9BuRt63/cgNS+FvNX7ju6vwAYfRWUxSEMlMfBD8wDBxooOxBU3JCc7ZAUpmzsUjwRj0nnkXXl9qubkln23tHuvXwGgljIeeAIGLLAeWAQxwVgNjID4ZZsN734HhhEcAkfnLxtzfZLeIGNW2BgbquDuT/4TeHEXaH7d0vjAfAC9jPVownkM7sAAAAASUVORK5CYII=");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 24px;
    height: 23px;
    content: "";
    right: 0;
    top: -1px;
    position: absolute;
    transition: right 0.3s ease;
  }

  &:active,
  &:hover {
    text-decoration: underline;

    &:after {
      right: -5px;
    }
  }

  &.cta-button {
    padding-right: 50px;

    &:after {
      right: 15px;
      top: 50%;
      margin-top: -11px;
    }

    &:active,
    &:hover {
      &:after {
        background-image: url("data:image/png;base64,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UmVhZHlxyWU8AAADJmlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDIgNzkuMTYwOTI0LCAyMDE3LzA3LzEzLTAxOjA2OjM5ICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdFJlZj0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlUmVmIyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgMjAxOCAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6MERFMTFGQjZDQzgzMTFFODkyMDlCMTE4ODQ0NUYwNUYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6MERFMTFGQjdDQzgzMTFFODkyMDlCMTE4ODQ0NUYwNUYiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDowREUxMUZCNENDODMxMUU4OTIwOUIxMTg4NDQ1RjA1RiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDowREUxMUZCNUNDODMxMUU4OTIwOUIxMTg4NDQ1RjA1RiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PmMMJvcAAAFJSURBVHjazNY9SwNBEMZxL/GtSWOhpFFBsNAPYCFYiiBYWYilWFr7AazFSmxNKaksgpWtIAhWFtpY+wZaSdAk63/wCVyxuIK4zMIPLseEfbhcZqcIIQxkWhUMo/3b4lyriRtMeAt2gRmcoZastp8yo/3wvc5R/ak2dzDTULimt2AVtBTuyFMwM4pLhdvzFMyM4U7hdjwFM9N4VLhNT8HMHJ7RxXL/fqHOX8XgP/SuXqJX2r7v2MCx7i3i2oKtcnFYarhWHDunin7rK12nPofSd0MkcE/72TFVxwheMWVP6QW3pSdWRDaL9uY/1MTCjyvkEz49vGNmGx94wKSXl38FHbxh3su/cgFtBVvy0i5m1SZsrXlpsHXcK9SWlyOphiuF2vVyiA9pFguazdyMPScK1UjV5gx1oFCt1PRqcs78HZxiHd1U8ZcAAwDrCWagf8aEpAAAAABJRU5ErkJggg==");
        right: 10px;
      }
    }
  }
}

.hero {
  .button,
  .cta-button {
    &:active,
    &:hover {
      text-shadow: none;
      background-color: $amb-brand-white;
      color: $color_text_default;
    }
    color: $amb-brand-white;
    background: transparent;
    border-color: $amb-brand-white;
  }

  .button.outline {
    border: 1px solid $amb-brand-white;
    background-color: transparent;
    color: $amb-brand-white;
    transition: all 0.3s;

    &:hover {
      color: $step-3;
      background-color: $amb-brand-white;
    }
  }
}

.button {
  border: 1px solid $amb-brand-red;
  background-color: transparent;
  color: $amb-brand-red;
  text-transform: none;
  font-size: 1.1rem;
  padding: 1.5rem 2rem;
  font-weight: 700;
  @include breakpoint(medium) {
    font-size: 1.2rem;
    padding: 1.5rem 2rem;
  }
  @include breakpoint(large) {
    font-size: 1.3rem;
    padding: 2rem 3rem;
  }
  margin-top: 1rem;
  margin-bottom: 1rem;

  &:hover {
    background-color: $amb-brand-red;
    color: #fff;
  }
}

.caselist {
  .caselist_section {
    .button {
      color: #fff;
      border: 1px solid #fff;

      &:hover {
        background-color: #fff;
        color: $step-1;
      }
    }
  }
}

#gallerylinks {
  .container {
    .button {
      color: #fff;
      border: none;
      border-radius: 3px;
      font-size: 1rem;
      font-weight: 700;
      letter-spacing: 0;
      padding: 1.5rem;
      margin-left: 1rem;
      margin-right: 1rem;
    }

    .button-1 {
      background-color: $step-3;

      &:hover {
        background-color: darken($step-3, 10%);
      }
      @include breakpoint(small only) {
        width: 80%;
      }
    }

    .button-2 {
      background-color: $step-1;

      &:hover {
        background-color: darken($step-1, 10%);
      }
      @include breakpoint(small only) {
        width: 80%;
      }
    }
  }
}

#headofficeandservicedesk {
  .button {
    width: 100%;
    margin: 0;
    text-align: left;
    padding: 1.5rem;
    color: #ff6e00;
    border-color: #ff6e00;

    &:hover {
      color: #fff;
      background-color: #F4364C;
      border-color: #F4364C;

      ul {
        li {
          color: #fff;
          transition: color 250ms ease-in-out;
        }
      }
    }

    ul {
      font-weight: 400;
      letter-spacing: 0;
      margin-bottom: 0;

      li {
        margin-bottom: 0;
        color: #111;
        transition: color 250ms ease-in-out;
        line-height: 1.4;
      }
    }
  }
}

.page-template-page-contact {
  #headofficeandservicedesk {
    .button {
      color: $step-3;
      border-color: $step-3;

      &:hover {
        color: #fff;
        background-color: $step-3;
        border-color: $step-3;

        h3 {
          color: #fff;
          transition: color 200ms ease-in-out;
        }
      }
    }
  }
}

#billing {
  .button {
    width: 100%;
    margin-top: 2rem;
    margin-bottom: 3rem;
    font-weight: 400;
    text-align: left;
    color: $step-3;
    border-color: $step-3;
    line-height: 1.4;
    padding: 1.5rem;
    letter-spacing: 0;

    &:hover {
      color: #fff;
      background-color: $step-3;
      border-color: $step-3;
    }
    font-size: 1rem;
    @include breakpoint(medium) {
      font-size: 1.1rem;
    }
    @include breakpoint(large) {
      font-size: 1.2rem;
    }
  }
}

.single-event,
.single-job {
  .button {
    color: #fff !important;
    text-transform: none;
    padding: 1.5rem 1rem;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    width: 100%;
    background-color: #ff6e00;
    transition: background-color 250ms ease-in-out;
    border: none;

    &:hover {
      background-color: #cf4e00;
      transition: background-color 250ms ease-in-out;
    }
  }

  .form-container {
    #gform_1 {
      #gform_submit_button_1 {
        font-size: 1rem;
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
        width: 100%;
        color: #fff;
        background-color: #ff6e00;
        transition: background-color 250ms ease-in-out;
        border: none;

        &:hover {
          background-color: #cf4e00;
          transition: background-color 250ms ease-in-out;
        }
      }
    }
  }
}

.close-form-button {
	position: absolute;
	overflow: hidden;
	text-indent: -1234rem;
	width: 48px;
	height: 48px;
	top: -2.5rem;
	right: 1.5rem;
	cursor: pointer;
	@include breakpoint(small only) {
		top: -2rem;
		right: 1.2rem;
	}

	&:before {
		position: absolute;
		top: 24px;
		left: 0;
		content: '';
		transform: rotate(45deg);
		display: block;
		width: 48px;
		border-top: 2px solid rgba(0,0,0,.7);
	}

	&:after {
		position: absolute;
		top: 24px;
		left: 0;
		content: '';
		transform: rotate(-45deg);
		display: block;
		width: 48px;
		border-top: 2px solid rgba(0,0,0,.7);
	}
}

#jobs {
  .button {
    border: 1px solid $step-6;
    background-color: #fff;
    color: $step-6;
    text-transform: none;
    font-size: 1.1rem;
    padding: 2.5rem 1.5rem;
    font-weight: 700;
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 1rem;
    @include breakpoint (medium) {
      padding: 2.5em 2rem;
      font-size: 1.3rem;
    }

    &:hover {
      background-color: $step-6;
      color: #fff;
    }
  }
}

.recruiting-button-small {
  padding-top: 4rem;
  border: 1px solid white;
  color: white;
  font-weight: 800;
  transition: all 0.25s;
  margin-bottom: 1rem;
  width: 30%;
  margin: 0.5%;
  min-height: 4rem;
  display: inline-block;
  position: relative;

  &:hover {
    p {
      color: #f16250;
      text-shadow: none;
    }
  }
  @media (max-width: 800px) {
    width: 30%;

    p {
      font-size: 0.8rem !important;
    }
  }
  @media (max-width: 640px) {
    p {
      font-size: 1rem !important;
    }
    width: 100%;
  }

  p {
    font-size: 1.25rem !important;
    line-height: 1.2;
    color: white;
    font-weight: 800;
    text-align: center;
    text-shadow: 0 0 1rem rgba(0,0,0,0.3);
    margin-top: 0;
    margin-bottom: 1rem;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
  }

  &.dashed {
    border: 1px dashed white;
  }

  &:hover {
    background-color: white;
  }
}

.gform_wrapper {
  .button {
    border: 1px solid $amb-brand-red;
    background-color: #fff;
    color: $amb-brand-red;
    text-transform: none;
    font-size: 1.1rem;
    padding: 1.5rem 2rem;
    font-weight: 700;
    margin-top: 1rem;
    margin-bottom: 1rem;
    max-width: 50%;
    @include breakpoint (medium) {
      font-size: 1.3rem;
      padding: 2rem 3rem;
      //width: 50%;
    }

    &:hover {
      background-color: $amb-brand-red;
      color: #fff;
    }

    &:focus {
      color: $amb-brand-red;
      border-bottom: 2px solid $amb-brand-red;
      font-weight: 700;
    }
  }
}

#gform_2 {
  .button {
    border: 1px solid $amb-brand-red;
    background-color: #fff;
    color: $amb-brand-red;
    text-transform: none;
    font-size: 1.1rem;
    padding: 1.5rem 2rem;
    font-weight: 700;
    margin-top: 1rem;
    margin-bottom: 1rem;
    max-width: 50%;
    @include breakpoint (medium) {
      font-size: 1.3rem;
      padding: 2rem 3rem;
      //width: 50%;
    }

    &:hover {
      background-color: $amb-brand-red;
      color: #fff;
    }

    &:focus {
      color: $amb-brand-red;
      border-bottom: 2px solid $amb-brand-red;
      font-weight: 700;
    }
  }
}

.job-application-form {
  .button {
    &.large-cta {
      color: #fff !important;
      text-transform: none;
      padding: 1.5rem 1rem;
      margin-top: 2rem;
      margin-bottom: 1.5rem;
      width: 100%;
      background-color: $amb-brand-red;
      transition: background-color 250ms ease-in-out;
      border: none;

      &:hover {
        background-color: $amb-brand-red;
        transition: background-color 250ms ease-in-out;
      }
    }
  }
}

.content-blocks {
  main > article {
    .case-block-container {
      &.block-buttons {
        .buttons-list {
          margin: 10px 0 0;
          padding: 0;
          list-style: none;
          @include breakpoint(medium) {
            display: flex;
            flex-wrap: wrap;
          }

          li {
            margin-top: 10px;
            margin-right: 10px;
            @include breakpoint(medium) {
              //flex-basis: calc(50% - 20px);
            }
            @include breakpoint(large) {}
          }

          a {
            padding: 16px 24px;
            display: block;
            border: 1px solid $amb-brand-red;
            background: $amb-brand-white;
            color: #828183;
            font-size: 16px;
            text-align: center;
            transition: all 0.2s ease;

            &:hover {
              background: $amb-brand-red;
              color: $color_text_on_red;
            }
          }
        }

        &.no-image {
          .buttons-list {
            li {
              flex-basis: auto;
            }
          }
        }
      }

      &.block-newsletter-subscription {
        input[type="submit"] {
          max-width: inherit !important;
          padding: 10px 20px !important;
          text-transform: none !important;
          line-height: 1 !important;
          margin-top: 12px !important;
        }

        form {
          input[type="submit"],
          button {
            background: #fff !important;
            border: 0;
            color: $amb-brand-red !important;
            text-transform: uppercase;
            padding: 0 10px;
            font-weight: normal;
            height: 100%;
          }
        }
      }
    }
  }
}
*/
.jssocials-shares {
  margin: 0.2em 0; }

.jssocials-shares * {
  box-sizing: border-box; }

.jssocials-share {
  display: inline-block;
  vertical-align: top;
  margin: 0.3em 0.6em 0.3em 0; }

.jssocials-share:last-child {
  margin-right: 0; }

.jssocials-share-logo {
  width: 1em;
  vertical-align: middle;
  font-size: 1.5em; }

img.jssocials-share-logo {
  width: auto;
  height: 1em; }

.jssocials-share-link {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  line-height: 1; }
  .jssocials-share-link.jssocials-share-link-count {
    padding-top: .2em; }
    .jssocials-share-link.jssocials-share-link-count .jssocials-share-count {
      display: block;
      font-size: .6em;
      margin: 0 -.5em -.8em -.5em; }
  .jssocials-share-link.jssocials-share-no-count {
    padding-top: .5em; }
    .jssocials-share-link.jssocials-share-no-count .jssocials-share-count {
      height: 1em; }

.jssocials-share-label {
  padding-left: 0.3em;
  vertical-align: middle; }

.jssocials-share-count-box {
  display: inline-block;
  height: 1.5em;
  padding: 0 0.3em;
  line-height: 1;
  vertical-align: middle;
  cursor: default; }
  .jssocials-share-count-box.jssocials-share-no-count {
    display: none; }

.jssocials-share-count {
  line-height: 1.5em;
  vertical-align: middle; }

.jssocials-share-twitter .jssocials-share-link {
  background: #00aced; }
  .jssocials-share-twitter .jssocials-share-link:hover {
    background: #0087ba; }

.jssocials-share-facebook .jssocials-share-link {
  background: #3b5998; }
  .jssocials-share-facebook .jssocials-share-link:hover {
    background: #2d4373; }

.jssocials-share-googleplus .jssocials-share-link {
  background: #dd4b39; }
  .jssocials-share-googleplus .jssocials-share-link:hover {
    background: #c23321; }

.jssocials-share-linkedin .jssocials-share-link {
  background: #007bb6; }
  .jssocials-share-linkedin .jssocials-share-link:hover {
    background: #005983; }

.jssocials-share-pinterest .jssocials-share-link {
  background: #cb2027; }
  .jssocials-share-pinterest .jssocials-share-link:hover {
    background: #9f191f; }

.jssocials-share-email .jssocials-share-link {
  background: #3490F3; }
  .jssocials-share-email .jssocials-share-link:hover {
    background: #0e76e6; }

.jssocials-share-stumbleupon .jssocials-share-link {
  background: #eb4823; }
  .jssocials-share-stumbleupon .jssocials-share-link:hover {
    background: #c93412; }

.jssocials-share-whatsapp .jssocials-share-link {
  background: #29a628; }
  .jssocials-share-whatsapp .jssocials-share-link:hover {
    background: #1f7d1e; }

.jssocials-share-telegram .jssocials-share-link {
  background: #2ca5e0; }
  .jssocials-share-telegram .jssocials-share-link:hover {
    background: #1c88bd; }

.jssocials-share-line .jssocials-share-link {
  background: #25af00; }
  .jssocials-share-line .jssocials-share-link:hover {
    background: #1a7c00; }

.jssocials-share-viber .jssocials-share-link {
  background: #7b519d; }
  .jssocials-share-viber .jssocials-share-link:hover {
    background: #61407b; }

.jssocials-share-pocket .jssocials-share-link {
  background: #ef4056; }
  .jssocials-share-pocket .jssocials-share-link:hover {
    background: #e9132e; }

.jssocials-share-messenger .jssocials-share-link {
  background: #0084ff; }
  .jssocials-share-messenger .jssocials-share-link:hover {
    background: #006acc; }

.jssocials-share-vkontakte .jssocials-share-link {
  background: #45668e; }
  .jssocials-share-vkontakte .jssocials-share-link:hover {
    background: #344d6c; }

.jssocials-share-link {
  padding: .5em .6em;
  color: #fff;
  transition: background 200ms ease-in-out, border-color 200ms ease-in-out; }
  .jssocials-share-link:hover, .jssocials-share-link:focus, .jssocials-share-link:active {
    color: #fff; }

.jssocials-share-count-box {
  position: relative;
  height: 2.5em;
  padding: 0 .3em;
  margin-left: 0.3em;
  background: #f5f5f5;
  transition: background 200ms ease-in-out, border-color 200ms ease-in-out; }
  .jssocials-share-count-box:hover {
    background: gainsboro; }
    .jssocials-share-count-box:hover:after {
      border-color: transparent gainsboro transparent transparent; }
  .jssocials-share-count-box:after {
    content: "";
    display: block;
    position: absolute;
    top: 0.85em;
    left: -0.3em;
    width: 0;
    height: 0;
    border-width: 0.4em 0.4em 0.4em 0;
    border-style: solid;
    border-color: transparent #f5f5f5 transparent transparent;
    transform: rotate(360deg);
    transition: background 200ms ease-in-out, border-color 200ms ease-in-out; }
  .jssocials-share-count-box .jssocials-share-count {
    line-height: 2.5em;
    color: #444; }

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat; }

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal; }

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none; }
  .slick-prev:hover, .slick-prev:focus,
  .slick-next:hover,
  .slick-next:focus {
    outline: none;
    background: transparent;
    color: transparent; }
    .slick-prev:hover:before, .slick-prev:focus:before,
    .slick-next:hover:before,
    .slick-next:focus:before {
      opacity: 1; }
  .slick-prev.slick-disabled:before,
  .slick-next.slick-disabled:before {
    opacity: 0.25; }
  .slick-prev:before,
  .slick-next:before {
    font-family: "slick";
    font-size: 20px;
    line-height: 1;
    color: white;
    opacity: 0.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }

.slick-prev {
  left: -25px; }
  [dir="rtl"] .slick-prev {
    left: auto;
    right: -25px; }
  .slick-prev:before {
    content: "←"; }
    [dir="rtl"] .slick-prev:before {
      content: "→"; }

.slick-next {
  right: -25px; }
  [dir="rtl"] .slick-next {
    left: -25px;
    right: auto; }
  .slick-next:before {
    content: "→"; }
    [dir="rtl"] .slick-next:before {
      content: "←"; }

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px; }

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%; }
  .slick-dots li {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer; }
    .slick-dots li button {
      border: 0;
      background: transparent;
      display: block;
      height: 20px;
      width: 20px;
      outline: none;
      line-height: 0px;
      font-size: 0px;
      color: transparent;
      padding: 5px;
      cursor: pointer; }
      .slick-dots li button:hover, .slick-dots li button:focus {
        outline: none; }
        .slick-dots li button:hover:before, .slick-dots li button:focus:before {
          opacity: 1; }
      .slick-dots li button:before {
        position: absolute;
        top: 0;
        left: 0;
        content: "•";
        width: 20px;
        height: 20px;
        font-family: "slick";
        font-size: 6px;
        line-height: 20px;
        text-align: center;
        color: black;
        opacity: 0.25;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale; }
    .slick-dots li.slick-active button:before {
      color: black;
      opacity: 0.75; }

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

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