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

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

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

Stylesheet: Mixins & Constants Stylesheet

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

******************************************************************/
/*********************
TOOLS
*********************/
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,700");
.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
 */
/* 
@import "../../vendor/motion-ui/src/motion-ui";
@include motion-ui-transitions; 
@include motion-ui-animations; 
*/
/*! normalize-scss | MIT/GPLv2 License | bit.ly/normalize-scss */
/* Document
   ========================================================================== */
/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Correct the line height in all browsers.
 * 3. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
html {
  font-family: sans-serif; /* 1 */
  line-height: 1.15; /* 2 */
  -ms-text-size-adjust: 100%; /* 3 */
  -webkit-text-size-adjust: 100%; /* 3 */
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

button,
[type=button],
[type=reset],
[type=submit] {
  /**
   * Remove the inner border and padding in Firefox.
   */
  /**
   * Restore the focus styles unset by the previous rule.
   */
}
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

body {
  margin: 0;
  padding: 0;
  background: #F2F4F6;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: normal;
  line-height: 1.5;
  color: #0a0a0a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

select {
  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: 75rem;
  margin-right: auto;
  margin-left: auto;
}
.row::before, .row::after {
  display: table;
  content: " ";
}
.row::after {
  clear: both;
}
.row.collapse > .column, .row.collapse > .columns {
  padding-right: 0;
  padding-left: 0;
}
.row .row {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}
@media print, screen and (min-width: 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 .row.collapse {
  margin-right: 0;
  margin-left: 0;
}
.row.expanded {
  max-width: none;
}
.row.expanded .row {
  margin-right: auto;
  margin-left: auto;
}
.row.gutter-small > .column, .row.gutter-small > .columns {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
.row.gutter-medium > .column, .row.gutter-medium > .columns {
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
}

.column, .columns {
  width: 100%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
@media print, screen and (min-width: 40em) {
  .column, .columns {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
.column:last-child:not(:first-child), .columns:last-child:not(:first-child) {
  float: right;
}
.column.end:last-child:last-child, .end.columns:last-child:last-child {
  float: left;
}

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

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

.small-1 {
  width: 8.3333333333%;
}

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

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

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

.small-2 {
  width: 16.6666666667%;
}

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

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

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

.small-3 {
  width: 25%;
}

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

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

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

.small-4 {
  width: 33.3333333333%;
}

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

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

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

.small-5 {
  width: 41.6666666667%;
}

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

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

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

.small-6 {
  width: 50%;
}

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

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

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

.small-7 {
  width: 58.3333333333%;
}

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

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

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

.small-8 {
  width: 66.6666666667%;
}

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

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

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

.small-9 {
  width: 75%;
}

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

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

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

.small-10 {
  width: 83.3333333333%;
}

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

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

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

.small-11 {
  width: 91.6666666667%;
}

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

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

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

.small-12 {
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media print, screen and (min-width: 40em) {
  .medium-1 {
    width: 8.3333333333%;
  }
  .medium-push-1 {
    position: relative;
    left: 8.3333333333%;
  }
  .medium-pull-1 {
    position: relative;
    left: -8.3333333333%;
  }
  .medium-offset-0 {
    margin-left: 0%;
  }
  .medium-2 {
    width: 16.6666666667%;
  }
  .medium-push-2 {
    position: relative;
    left: 16.6666666667%;
  }
  .medium-pull-2 {
    position: relative;
    left: -16.6666666667%;
  }
  .medium-offset-1 {
    margin-left: 8.3333333333%;
  }
  .medium-3 {
    width: 25%;
  }
  .medium-push-3 {
    position: relative;
    left: 25%;
  }
  .medium-pull-3 {
    position: relative;
    left: -25%;
  }
  .medium-offset-2 {
    margin-left: 16.6666666667%;
  }
  .medium-4 {
    width: 33.3333333333%;
  }
  .medium-push-4 {
    position: relative;
    left: 33.3333333333%;
  }
  .medium-pull-4 {
    position: relative;
    left: -33.3333333333%;
  }
  .medium-offset-3 {
    margin-left: 25%;
  }
  .medium-5 {
    width: 41.6666666667%;
  }
  .medium-push-5 {
    position: relative;
    left: 41.6666666667%;
  }
  .medium-pull-5 {
    position: relative;
    left: -41.6666666667%;
  }
  .medium-offset-4 {
    margin-left: 33.3333333333%;
  }
  .medium-6 {
    width: 50%;
  }
  .medium-push-6 {
    position: relative;
    left: 50%;
  }
  .medium-pull-6 {
    position: relative;
    left: -50%;
  }
  .medium-offset-5 {
    margin-left: 41.6666666667%;
  }
  .medium-7 {
    width: 58.3333333333%;
  }
  .medium-push-7 {
    position: relative;
    left: 58.3333333333%;
  }
  .medium-pull-7 {
    position: relative;
    left: -58.3333333333%;
  }
  .medium-offset-6 {
    margin-left: 50%;
  }
  .medium-8 {
    width: 66.6666666667%;
  }
  .medium-push-8 {
    position: relative;
    left: 66.6666666667%;
  }
  .medium-pull-8 {
    position: relative;
    left: -66.6666666667%;
  }
  .medium-offset-7 {
    margin-left: 58.3333333333%;
  }
  .medium-9 {
    width: 75%;
  }
  .medium-push-9 {
    position: relative;
    left: 75%;
  }
  .medium-pull-9 {
    position: relative;
    left: -75%;
  }
  .medium-offset-8 {
    margin-left: 66.6666666667%;
  }
  .medium-10 {
    width: 83.3333333333%;
  }
  .medium-push-10 {
    position: relative;
    left: 83.3333333333%;
  }
  .medium-pull-10 {
    position: relative;
    left: -83.3333333333%;
  }
  .medium-offset-9 {
    margin-left: 75%;
  }
  .medium-11 {
    width: 91.6666666667%;
  }
  .medium-push-11 {
    position: relative;
    left: 91.6666666667%;
  }
  .medium-pull-11 {
    position: relative;
    left: -91.6666666667%;
  }
  .medium-offset-10 {
    margin-left: 83.3333333333%;
  }
  .medium-12 {
    width: 100%;
  }
  .medium-offset-11 {
    margin-left: 91.6666666667%;
  }
  .medium-up-1 > .column, .medium-up-1 > .columns {
    float: left;
    width: 100%;
  }
  .medium-up-1 > .column:nth-of-type(1n), .medium-up-1 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-1 > .column:nth-of-type(1n+1), .medium-up-1 > .columns:nth-of-type(1n+1) {
    clear: both;
  }
  .medium-up-1 > .column:last-child, .medium-up-1 > .columns:last-child {
    float: left;
  }
  .medium-up-2 > .column, .medium-up-2 > .columns {
    float: left;
    width: 50%;
  }
  .medium-up-2 > .column:nth-of-type(1n), .medium-up-2 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-2 > .column:nth-of-type(2n+1), .medium-up-2 > .columns:nth-of-type(2n+1) {
    clear: both;
  }
  .medium-up-2 > .column:last-child, .medium-up-2 > .columns:last-child {
    float: left;
  }
  .medium-up-3 > .column, .medium-up-3 > .columns {
    float: left;
    width: 33.3333333333%;
  }
  .medium-up-3 > .column:nth-of-type(1n), .medium-up-3 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-3 > .column:nth-of-type(3n+1), .medium-up-3 > .columns:nth-of-type(3n+1) {
    clear: both;
  }
  .medium-up-3 > .column:last-child, .medium-up-3 > .columns:last-child {
    float: left;
  }
  .medium-up-4 > .column, .medium-up-4 > .columns {
    float: left;
    width: 25%;
  }
  .medium-up-4 > .column:nth-of-type(1n), .medium-up-4 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-4 > .column:nth-of-type(4n+1), .medium-up-4 > .columns:nth-of-type(4n+1) {
    clear: both;
  }
  .medium-up-4 > .column:last-child, .medium-up-4 > .columns:last-child {
    float: left;
  }
  .medium-up-5 > .column, .medium-up-5 > .columns {
    float: left;
    width: 20%;
  }
  .medium-up-5 > .column:nth-of-type(1n), .medium-up-5 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-5 > .column:nth-of-type(5n+1), .medium-up-5 > .columns:nth-of-type(5n+1) {
    clear: both;
  }
  .medium-up-5 > .column:last-child, .medium-up-5 > .columns:last-child {
    float: left;
  }
  .medium-up-6 > .column, .medium-up-6 > .columns {
    float: left;
    width: 16.6666666667%;
  }
  .medium-up-6 > .column:nth-of-type(1n), .medium-up-6 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-6 > .column:nth-of-type(6n+1), .medium-up-6 > .columns:nth-of-type(6n+1) {
    clear: both;
  }
  .medium-up-6 > .column:last-child, .medium-up-6 > .columns:last-child {
    float: left;
  }
  .medium-up-7 > .column, .medium-up-7 > .columns {
    float: left;
    width: 14.2857142857%;
  }
  .medium-up-7 > .column:nth-of-type(1n), .medium-up-7 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-7 > .column:nth-of-type(7n+1), .medium-up-7 > .columns:nth-of-type(7n+1) {
    clear: both;
  }
  .medium-up-7 > .column:last-child, .medium-up-7 > .columns:last-child {
    float: left;
  }
  .medium-up-8 > .column, .medium-up-8 > .columns {
    float: left;
    width: 12.5%;
  }
  .medium-up-8 > .column:nth-of-type(1n), .medium-up-8 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-8 > .column:nth-of-type(8n+1), .medium-up-8 > .columns:nth-of-type(8n+1) {
    clear: both;
  }
  .medium-up-8 > .column:last-child, .medium-up-8 > .columns:last-child {
    float: left;
  }
  .medium-collapse > .column, .medium-collapse > .columns {
    padding-right: 0;
    padding-left: 0;
  }
  .medium-collapse .row {
    margin-right: 0;
    margin-left: 0;
  }
  .expanded.row .medium-collapse.row {
    margin-right: 0;
    margin-left: 0;
  }
  .medium-uncollapse > .column, .medium-uncollapse > .columns {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
  .medium-centered {
    margin-right: auto;
    margin-left: auto;
  }
  .medium-centered, .medium-centered:last-child:not(:first-child) {
    float: none;
    clear: both;
  }
  .medium-uncentered,
.medium-push-0,
.medium-pull-0 {
    position: static;
    float: left;
    margin-right: 0;
    margin-left: 0;
  }
}
@media print, screen and (min-width: 64em) {
  .large-1 {
    width: 8.3333333333%;
  }
  .large-push-1 {
    position: relative;
    left: 8.3333333333%;
  }
  .large-pull-1 {
    position: relative;
    left: -8.3333333333%;
  }
  .large-offset-0 {
    margin-left: 0%;
  }
  .large-2 {
    width: 16.6666666667%;
  }
  .large-push-2 {
    position: relative;
    left: 16.6666666667%;
  }
  .large-pull-2 {
    position: relative;
    left: -16.6666666667%;
  }
  .large-offset-1 {
    margin-left: 8.3333333333%;
  }
  .large-3 {
    width: 25%;
  }
  .large-push-3 {
    position: relative;
    left: 25%;
  }
  .large-pull-3 {
    position: relative;
    left: -25%;
  }
  .large-offset-2 {
    margin-left: 16.6666666667%;
  }
  .large-4 {
    width: 33.3333333333%;
  }
  .large-push-4 {
    position: relative;
    left: 33.3333333333%;
  }
  .large-pull-4 {
    position: relative;
    left: -33.3333333333%;
  }
  .large-offset-3 {
    margin-left: 25%;
  }
  .large-5 {
    width: 41.6666666667%;
  }
  .large-push-5 {
    position: relative;
    left: 41.6666666667%;
  }
  .large-pull-5 {
    position: relative;
    left: -41.6666666667%;
  }
  .large-offset-4 {
    margin-left: 33.3333333333%;
  }
  .large-6 {
    width: 50%;
  }
  .large-push-6 {
    position: relative;
    left: 50%;
  }
  .large-pull-6 {
    position: relative;
    left: -50%;
  }
  .large-offset-5 {
    margin-left: 41.6666666667%;
  }
  .large-7 {
    width: 58.3333333333%;
  }
  .large-push-7 {
    position: relative;
    left: 58.3333333333%;
  }
  .large-pull-7 {
    position: relative;
    left: -58.3333333333%;
  }
  .large-offset-6 {
    margin-left: 50%;
  }
  .large-8 {
    width: 66.6666666667%;
  }
  .large-push-8 {
    position: relative;
    left: 66.6666666667%;
  }
  .large-pull-8 {
    position: relative;
    left: -66.6666666667%;
  }
  .large-offset-7 {
    margin-left: 58.3333333333%;
  }
  .large-9 {
    width: 75%;
  }
  .large-push-9 {
    position: relative;
    left: 75%;
  }
  .large-pull-9 {
    position: relative;
    left: -75%;
  }
  .large-offset-8 {
    margin-left: 66.6666666667%;
  }
  .large-10 {
    width: 83.3333333333%;
  }
  .large-push-10 {
    position: relative;
    left: 83.3333333333%;
  }
  .large-pull-10 {
    position: relative;
    left: -83.3333333333%;
  }
  .large-offset-9 {
    margin-left: 75%;
  }
  .large-11 {
    width: 91.6666666667%;
  }
  .large-push-11 {
    position: relative;
    left: 91.6666666667%;
  }
  .large-pull-11 {
    position: relative;
    left: -91.6666666667%;
  }
  .large-offset-10 {
    margin-left: 83.3333333333%;
  }
  .large-12 {
    width: 100%;
  }
  .large-offset-11 {
    margin-left: 91.6666666667%;
  }
  .large-up-1 > .column, .large-up-1 > .columns {
    float: left;
    width: 100%;
  }
  .large-up-1 > .column:nth-of-type(1n), .large-up-1 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-1 > .column:nth-of-type(1n+1), .large-up-1 > .columns:nth-of-type(1n+1) {
    clear: both;
  }
  .large-up-1 > .column:last-child, .large-up-1 > .columns:last-child {
    float: left;
  }
  .large-up-2 > .column, .large-up-2 > .columns {
    float: left;
    width: 50%;
  }
  .large-up-2 > .column:nth-of-type(1n), .large-up-2 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-2 > .column:nth-of-type(2n+1), .large-up-2 > .columns:nth-of-type(2n+1) {
    clear: both;
  }
  .large-up-2 > .column:last-child, .large-up-2 > .columns:last-child {
    float: left;
  }
  .large-up-3 > .column, .large-up-3 > .columns {
    float: left;
    width: 33.3333333333%;
  }
  .large-up-3 > .column:nth-of-type(1n), .large-up-3 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-3 > .column:nth-of-type(3n+1), .large-up-3 > .columns:nth-of-type(3n+1) {
    clear: both;
  }
  .large-up-3 > .column:last-child, .large-up-3 > .columns:last-child {
    float: left;
  }
  .large-up-4 > .column, .large-up-4 > .columns {
    float: left;
    width: 25%;
  }
  .large-up-4 > .column:nth-of-type(1n), .large-up-4 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-4 > .column:nth-of-type(4n+1), .large-up-4 > .columns:nth-of-type(4n+1) {
    clear: both;
  }
  .large-up-4 > .column:last-child, .large-up-4 > .columns:last-child {
    float: left;
  }
  .large-up-5 > .column, .large-up-5 > .columns {
    float: left;
    width: 20%;
  }
  .large-up-5 > .column:nth-of-type(1n), .large-up-5 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-5 > .column:nth-of-type(5n+1), .large-up-5 > .columns:nth-of-type(5n+1) {
    clear: both;
  }
  .large-up-5 > .column:last-child, .large-up-5 > .columns:last-child {
    float: left;
  }
  .large-up-6 > .column, .large-up-6 > .columns {
    float: left;
    width: 16.6666666667%;
  }
  .large-up-6 > .column:nth-of-type(1n), .large-up-6 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-6 > .column:nth-of-type(6n+1), .large-up-6 > .columns:nth-of-type(6n+1) {
    clear: both;
  }
  .large-up-6 > .column:last-child, .large-up-6 > .columns:last-child {
    float: left;
  }
  .large-up-7 > .column, .large-up-7 > .columns {
    float: left;
    width: 14.2857142857%;
  }
  .large-up-7 > .column:nth-of-type(1n), .large-up-7 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-7 > .column:nth-of-type(7n+1), .large-up-7 > .columns:nth-of-type(7n+1) {
    clear: both;
  }
  .large-up-7 > .column:last-child, .large-up-7 > .columns:last-child {
    float: left;
  }
  .large-up-8 > .column, .large-up-8 > .columns {
    float: left;
    width: 12.5%;
  }
  .large-up-8 > .column:nth-of-type(1n), .large-up-8 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-8 > .column:nth-of-type(8n+1), .large-up-8 > .columns:nth-of-type(8n+1) {
    clear: both;
  }
  .large-up-8 > .column:last-child, .large-up-8 > .columns:last-child {
    float: left;
  }
  .large-collapse > .column, .large-collapse > .columns {
    padding-right: 0;
    padding-left: 0;
  }
  .large-collapse .row {
    margin-right: 0;
    margin-left: 0;
  }
  .expanded.row .large-collapse.row {
    margin-right: 0;
    margin-left: 0;
  }
  .large-uncollapse > .column, .large-uncollapse > .columns {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
  .large-centered {
    margin-right: auto;
    margin-left: auto;
  }
  .large-centered, .large-centered:last-child:not(:first-child) {
    float: none;
    clear: both;
  }
  .large-uncentered,
.large-push-0,
.large-pull-0 {
    position: static;
    float: left;
    margin-right: 0;
    margin-left: 0;
  }
}
.column-block {
  margin-bottom: 1.25rem;
}
.column-block > :last-child {
  margin-bottom: 0;
}
@media print, screen and (min-width: 40em) {
  .column-block {
    margin-bottom: 1.875rem;
  }
  .column-block > :last-child {
    margin-bottom: 0;
  }
}

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: 80%;
  line-height: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Source Sans Pro", 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: #C4BFBE;
}

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

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

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

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

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

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

@media print, screen and (min-width: 40em) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 1.875rem;
  }
  h3 {
    font-size: 1.25rem;
  }
  h4 {
    font-size: 1.125rem;
  }
  h5 {
    font-size: 1rem;
  }
  h6 {
    font-size: 0.875rem;
  }
}
a {
  line-height: inherit;
  color: #E5004B;
  text-decoration: none;
  cursor: pointer;
}
a:hover, a:focus {
  color: #c50041;
}
a img {
  border: 0;
}

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

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

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

figure {
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

@media print, screen and (min-width: 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;
    -webkit-box-shadow: none !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 #757272;
    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;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 2.4375rem;
  margin: 0 0 1rem;
  padding: 0.5rem;
  border: 1px solid #C4BFBE;
  border-radius: 0;
  background-color: #fefefe;
  -webkit-box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);
          box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);
  font-family: inherit;
  font-size: 1rem;
  font-weight: normal;
  color: #0a0a0a;
  -webkit-transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
  transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
  -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 #757272;
  background-color: #fefefe;
  -webkit-box-shadow: 0 0 5px #C4BFBE;
          box-shadow: 0 0 5px #C4BFBE;
  -webkit-transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
  transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
}

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

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

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #C4BFBE;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

select {
  height: 2.4375rem;
  margin: 0 0 1rem;
  padding: 0.5rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #C4BFBE;
  border-radius: 0;
  background-color: #fefefe;
  font-family: inherit;
  font-size: 1rem;
  line-height: normal;
  color: #0a0a0a;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' width='32' height='24' viewBox='0 0 32 24'><polygon points='0,0 32,0 16,24' style='fill: rgb%28117, 114, 114%29'></polygon></svg>");
  background-origin: content-box;
  background-position: right -1rem center;
  background-repeat: no-repeat;
  background-size: 9px 6px;
  padding-right: 1.5rem;
  -webkit-transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
  transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
}
@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 #757272;
  background-color: #fefefe;
  -webkit-box-shadow: 0 0 5px #C4BFBE;
          box-shadow: 0 0 5px #C4BFBE;
  -webkit-transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
  transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
}
select:disabled {
  background-color: #EAE9E8;
  cursor: not-allowed;
}
select::-ms-expand {
  display: none;
}
select[multiple] {
  height: auto;
  background-image: none;
}

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

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

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

.button {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 1rem 0;
  padding: 0.85em 1em;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 0;
  -webkit-transition: background-color 0.25s ease-out, color 0.25s ease-out;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  background-color: #E5004B;
  color: #fefefe;
}
[data-whatinput=mouse] .button {
  outline: 0;
}
.button:hover, .button:focus {
  background-color: #c30040;
  color: #fefefe;
}
.button.tiny {
  font-size: 0.6rem;
}
.button.small {
  font-size: 0.75rem;
}
.button.large {
  font-size: 1.25rem;
}
.button.expanded {
  display: block;
  width: 100%;
  margin-right: 0;
  margin-left: 0;
}
.button.primary {
  background-color: #E5004B;
  color: #fefefe;
}
.button.primary:hover, .button.primary:focus {
  background-color: #b7003c;
  color: #fefefe;
}
.button.secondary {
  background-color: #FFFFFF;
  color: #0a0a0a;
}
.button.secondary:hover, .button.secondary:focus {
  background-color: #cccccc;
  color: #0a0a0a;
}
.button.success {
  background-color: #3adb76;
  color: #0a0a0a;
}
.button.success:hover, .button.success:focus {
  background-color: #22bb5b;
  color: #0a0a0a;
}
.button.warning {
  background-color: #ffae00;
  color: #0a0a0a;
}
.button.warning:hover, .button.warning:focus {
  background-color: #cc8b00;
  color: #0a0a0a;
}
.button.alert {
  background-color: #cc4b37;
  color: #fefefe;
}
.button.alert:hover, .button.alert:focus {
  background-color: #a53b2a;
  color: #fefefe;
}
.button.hollow {
  border: 1px solid #E5004B;
  color: #E5004B;
}
.button.hollow, .button.hollow:hover, .button.hollow:focus {
  background-color: transparent;
}
.button.hollow:hover, .button.hollow:focus {
  border-color: #730026;
  color: #730026;
}
.button.hollow.primary {
  border: 1px solid #E5004B;
  color: #E5004B;
}
.button.hollow.primary:hover, .button.hollow.primary:focus {
  border-color: #730026;
  color: #730026;
}
.button.hollow.secondary {
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
}
.button.hollow.secondary:hover, .button.hollow.secondary:focus {
  border-color: gray;
  color: gray;
}
.button.hollow.success {
  border: 1px solid #3adb76;
  color: #3adb76;
}
.button.hollow.success:hover, .button.hollow.success:focus {
  border-color: #157539;
  color: #157539;
}
.button.hollow.warning {
  border: 1px solid #ffae00;
  color: #ffae00;
}
.button.hollow.warning:hover, .button.hollow.warning:focus {
  border-color: #805700;
  color: #805700;
}
.button.hollow.alert {
  border: 1px solid #cc4b37;
  color: #cc4b37;
}
.button.hollow.alert:hover, .button.hollow.alert:focus {
  border-color: #67251a;
  color: #67251a;
}
.button.disabled, .button[disabled] {
  opacity: 0.25;
  cursor: not-allowed;
}
.button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
  background-color: #E5004B;
  color: #fefefe;
}
.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: #E5004B;
  color: #fefefe;
}
.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: #FFFFFF;
  color: #fefefe;
}
.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: #3adb76;
  color: #fefefe;
}
.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: #ffae00;
  color: #fefefe;
}
.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: #cc4b37;
  color: #fefefe;
}
.button.dropdown::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 0.4em;
  content: "";
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: #fefefe transparent transparent;
  position: relative;
  top: 0.4em;
  display: inline-block;
  float: right;
  margin-left: 1em;
}
.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 #EAE9E8;
  border-bottom: 0;
  font-size: 0.75rem;
  line-height: 1;
  color: #E5004B;
}
:last-child:not(.is-active) > .accordion-title {
  border-bottom: 1px solid #EAE9E8;
  border-radius: 0 0 0 0;
}
.accordion-title:hover, .accordion-title:focus {
  background-color: #EAE9E8;
}
.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 #EAE9E8;
  border-bottom: 0;
  background-color: #fefefe;
  color: #0a0a0a;
}
:last-child > .accordion-content:last-child {
  border-bottom: 1px solid #EAE9E8;
}

.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: #E5004B transparent transparent;
  position: absolute;
  top: 50%;
  margin-top: -3px;
  right: 1rem;
}

.is-accordion-submenu-parent[aria-expanded=true] > a::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transform-origin: 50% 50%;
          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: #E5004B;
  color: #fefefe;
}
.badge.primary {
  background: #E5004B;
  color: #fefefe;
}
.badge.secondary {
  background: #FFFFFF;
  color: #0a0a0a;
}
.badge.success {
  background: #3adb76;
  color: #0a0a0a;
}
.badge.warning {
  background: #ffae00;
  color: #0a0a0a;
}
.badge.alert {
  background: #cc4b37;
  color: #fefefe;
}

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

.button-group {
  margin-bottom: 1rem;
  font-size: 0;
}
.button-group::before, .button-group::after {
  display: table;
  content: " ";
}
.button-group::after {
  clear: both;
}
.button-group .button {
  margin: 0;
  margin-right: 1px;
  margin-bottom: 1px;
  font-size: 0.9rem;
}
.button-group .button:last-child {
  margin-right: 0;
}
.button-group.tiny .button {
  font-size: 0.6rem;
}
.button-group.small .button {
  font-size: 0.75rem;
}
.button-group.large .button {
  font-size: 1.25rem;
}
.button-group.expanded {
  margin-right: -1px;
}
.button-group.expanded::before, .button-group.expanded::after {
  display: none;
}
.button-group.expanded .button:first-child:nth-last-child(2), .button-group.expanded .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button {
  display: inline-block;
  width: calc(50% - 1px);
  margin-right: 1px;
}
.button-group.expanded .button:first-child:nth-last-child(2):last-child, .button-group.expanded .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button:last-child {
  margin-right: -6px;
}
.button-group.expanded .button:first-child:nth-last-child(3), .button-group.expanded .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button {
  display: inline-block;
  width: calc(33.3333333333% - 1px);
  margin-right: 1px;
}
.button-group.expanded .button:first-child:nth-last-child(3):last-child, .button-group.expanded .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button:last-child {
  margin-right: -6px;
}
.button-group.expanded .button:first-child:nth-last-child(4), .button-group.expanded .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button {
  display: inline-block;
  width: calc(25% - 1px);
  margin-right: 1px;
}
.button-group.expanded .button:first-child:nth-last-child(4):last-child, .button-group.expanded .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button:last-child {
  margin-right: -6px;
}
.button-group.expanded .button:first-child:nth-last-child(5), .button-group.expanded .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button {
  display: inline-block;
  width: calc(20% - 1px);
  margin-right: 1px;
}
.button-group.expanded .button:first-child:nth-last-child(5):last-child, .button-group.expanded .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button:last-child {
  margin-right: -6px;
}
.button-group.expanded .button:first-child:nth-last-child(6), .button-group.expanded .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button {
  display: inline-block;
  width: calc(16.6666666667% - 1px);
  margin-right: 1px;
}
.button-group.expanded .button:first-child:nth-last-child(6):last-child, .button-group.expanded .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button:last-child {
  margin-right: -6px;
}
.button-group.primary .button {
  background-color: #E5004B;
  color: #fefefe;
}
.button-group.primary .button:hover, .button-group.primary .button:focus {
  background-color: #b7003c;
  color: #fefefe;
}
.button-group.secondary .button {
  background-color: #FFFFFF;
  color: #0a0a0a;
}
.button-group.secondary .button:hover, .button-group.secondary .button:focus {
  background-color: #cccccc;
  color: #0a0a0a;
}
.button-group.success .button {
  background-color: #3adb76;
  color: #0a0a0a;
}
.button-group.success .button:hover, .button-group.success .button:focus {
  background-color: #22bb5b;
  color: #0a0a0a;
}
.button-group.warning .button {
  background-color: #ffae00;
  color: #0a0a0a;
}
.button-group.warning .button:hover, .button-group.warning .button:focus {
  background-color: #cc8b00;
  color: #0a0a0a;
}
.button-group.alert .button {
  background-color: #cc4b37;
  color: #fefefe;
}
.button-group.alert .button:hover, .button-group.alert .button:focus {
  background-color: #a53b2a;
  color: #fefefe;
}
.button-group.stacked .button, .button-group.stacked-for-small .button, .button-group.stacked-for-medium .button {
  width: 100%;
}
.button-group.stacked .button:last-child, .button-group.stacked-for-small .button:last-child, .button-group.stacked-for-medium .button:last-child {
  margin-bottom: 0;
}
@media print, screen and (min-width: 40em) {
  .button-group.stacked-for-small .button {
    width: auto;
    margin-bottom: 0;
  }
}
@media print, screen and (min-width: 64em) {
  .button-group.stacked-for-medium .button {
    width: auto;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 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(10, 10, 10, 0.25);
  border-radius: 0;
  background-color: white;
  color: #0a0a0a;
}
.callout > :first-child {
  margin-top: 0;
}
.callout > :last-child {
  margin-bottom: 0;
}
.callout.primary {
  background-color: #ffd5e3;
  color: #0a0a0a;
}
.callout.secondary {
  background-color: white;
  color: #0a0a0a;
}
.callout.success {
  background-color: #e1faea;
  color: #0a0a0a;
}
.callout.warning {
  background-color: #fff3d9;
  color: #0a0a0a;
}
.callout.alert {
  background-color: #f7e4e1;
  color: #0a0a0a;
}
.callout.small {
  padding-top: 0.5rem;
  padding-right: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 0.5rem;
}
.callout.large {
  padding-top: 3rem;
  padding-right: 3rem;
  padding-bottom: 3rem;
  padding-left: 3rem;
}

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

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

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

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

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

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

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

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

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

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

.is-drilldown-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: -1;
  width: 100%;
  background: #fefefe;
  -webkit-transition: -webkit-transform 0.15s linear;
  transition: -webkit-transform 0.15s linear;
  transition: transform 0.15s linear;
  transition: transform 0.15s linear, -webkit-transform 0.15s linear;
}
.is-drilldown-submenu.is-active {
  z-index: 1;
  display: block;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
.is-drilldown-submenu.is-closing {
  -webkit-transform: translateX(100%);
          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 #E5004B;
  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 #E5004B 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 #C4BFBE;
  border-radius: 0;
  background-color: #F2F4F6;
  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: #E5004B 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 #E5004B 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 #E5004B;
}
@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: #E5004B 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 #E5004B 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 #E5004B;
  }
}
@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: #E5004B 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 #E5004B 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 #E5004B;
  }
}
.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 #C4BFBE;
  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 #E5004B 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 #E5004B;
}
.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: #E5004B;
  color: #fefefe;
}
.label.primary {
  background: #E5004B;
  color: #fefefe;
}
.label.secondary {
  background: #FFFFFF;
  color: #0a0a0a;
}
.label.success {
  background: #3adb76;
  color: #0a0a0a;
}
.label.warning {
  background: #ffae00;
  color: #0a0a0a;
}
.label.alert {
  background: #cc4b37;
  color: #fefefe;
}

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

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

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

.js-off-canvas-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 0.5s ease, visibility 0.5s ease;
  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;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  background: #EAE9E8;
}
[data-whatinput=mouse] .off-canvas {
  outline: 0;
}
.off-canvas.is-transition-overlap {
  z-index: 10;
}
.off-canvas.is-transition-overlap.is-open {
  -webkit-box-shadow: 0 0 10px rgba(10, 10, 10, 0.7);
          box-shadow: 0 0 10px rgba(10, 10, 10, 0.7);
}
.off-canvas.is-open {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.off-canvas-absolute {
  position: absolute;
  z-index: 1;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  background: #EAE9E8;
}
[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 {
  -webkit-box-shadow: 0 0 10px rgba(10, 10, 10, 0.7);
          box-shadow: 0 0 10px rgba(10, 10, 10, 0.7);
}
.off-canvas-absolute.is-open {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

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

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

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

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

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

@media print, screen and (min-width: 40em) {
  .position-left.reveal-for-medium {
    -webkit-transform: none;
            transform: none;
    z-index: 1;
  }
  .position-left.reveal-for-medium ~ .off-canvas-content {
    margin-left: 250px;
  }
  .position-right.reveal-for-medium {
    -webkit-transform: none;
            transform: none;
    z-index: 1;
  }
  .position-right.reveal-for-medium ~ .off-canvas-content {
    margin-right: 250px;
  }
  .position-top.reveal-for-medium {
    -webkit-transform: none;
            transform: none;
    z-index: 1;
  }
  .position-top.reveal-for-medium ~ .off-canvas-content {
    margin-top: 250px;
  }
  .position-bottom.reveal-for-medium {
    -webkit-transform: none;
            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 {
    -webkit-transform: none;
            transform: none;
    z-index: 1;
  }
  .position-left.reveal-for-large ~ .off-canvas-content {
    margin-left: 250px;
  }
  .position-right.reveal-for-large {
    -webkit-transform: none;
            transform: none;
    z-index: 1;
  }
  .position-right.reveal-for-large ~ .off-canvas-content {
    margin-right: 250px;
  }
  .position-top.reveal-for-large {
    -webkit-transform: none;
            transform: none;
    z-index: 1;
  }
  .position-top.reveal-for-large ~ .off-canvas-content {
    margin-top: 250px;
  }
  .position-bottom.reveal-for-large {
    -webkit-transform: none;
            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(10, 10, 10, 0.5);
  color: #fefefe;
}

.orbit-next, .orbit-previous {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
  padding: 1rem;
  color: #fefefe;
}
[data-whatinput=mouse] .orbit-next, [data-whatinput=mouse] .orbit-previous {
  outline: 0;
}
.orbit-next:hover, .orbit-previous:hover, .orbit-next:active, .orbit-previous:active, .orbit-next:focus, .orbit-previous:focus {
  background-color: rgba(10, 10, 10, 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: #C4BFBE;
}
.orbit-bullets button:hover {
  background-color: #757272;
}
.orbit-bullets button.is-active {
  background-color: #757272;
}

.pagination {
  margin-left: 0;
  margin-bottom: 1rem;
}
.pagination::before, .pagination::after {
  display: table;
  content: " ";
}
.pagination::after {
  clear: both;
}
.pagination li {
  margin-right: 0.0625rem;
  border-radius: 0;
  font-size: 0.875rem;
  display: none;
}
.pagination li:last-child, .pagination li:first-child {
  display: inline-block;
}
@media print, screen and (min-width: 40em) {
  .pagination li {
    display: inline-block;
  }
}
.pagination a,
.pagination button {
  display: block;
  padding: 0.1875rem 0.625rem;
  border-radius: 0;
  color: #0a0a0a;
}
.pagination a:hover,
.pagination button:hover {
  background: #EAE9E8;
}
.pagination .current {
  padding: 0.1875rem 0.625rem;
  background: #E5004B;
  color: #fefefe;
  cursor: default;
}
.pagination .disabled {
  padding: 0.1875rem 0.625rem;
  color: #C4BFBE;
  cursor: not-allowed;
}
.pagination .disabled:hover {
  background: transparent;
}
.pagination .ellipsis::after {
  padding: 0.1875rem 0.625rem;
  content: "…";
  color: #0a0a0a;
}

.pagination-previous a::before,
.pagination-previous.disabled::before {
  display: inline-block;
  margin-right: 0.5rem;
  content: "«";
}

.pagination-next a::after,
.pagination-next.disabled::after {
  display: inline-block;
  margin-left: 0.5rem;
  content: "»";
}

.progress {
  height: 1rem;
  margin-bottom: 1rem;
  border-radius: 0;
  background-color: #C4BFBE;
}
.progress.primary .progress-meter {
  background-color: #E5004B;
}
.progress.secondary .progress-meter {
  background-color: #FFFFFF;
}
.progress.success .progress-meter {
  background-color: #3adb76;
}
.progress.warning .progress-meter {
  background-color: #ffae00;
}
.progress.alert .progress-meter {
  background-color: #cc4b37;
}

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

.progress-meter-text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -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: #EAE9E8;
  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: #C4BFBE;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.slider-fill.is-dragging {
  -webkit-transition: all 0s linear;
  transition: all 0s linear;
}

.slider-handle {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-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: #E5004B;
  -webkit-transition: all 0.2s ease-in-out;
  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: #c30040;
}
.slider-handle.is-dragging {
  -webkit-transition: all 0s linear;
  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;
  -webkit-transform: scale(1, -1);
          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;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.sticky-container {
  position: relative;
}

.sticky {
  position: relative;
  z-index: 0;
  -webkit-transform: translate3d(0, 0, 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(10, 10, 10, 0.45);
  overflow-y: scroll;
}

.reveal {
  z-index: 1006;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  display: none;
  padding: 0;
  border: 1px solid #C4BFBE;
  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 {
  min-width: 0;
}
.reveal > :last-child {
  margin-bottom: 0;
}
@media print, screen and (min-width: 40em) {
  .reveal {
    width: 600px;
    max-width: 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: 75rem;
  }
}
@media print, screen and (min-width: 40em) {
  .reveal.small {
    width: 50%;
    max-width: 75rem;
  }
}
@media print, screen and (min-width: 40em) {
  .reveal.large {
    width: 90%;
    max-width: 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: #C4BFBE;
  -webkit-transition: all 0.25s ease-out;
  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;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  border-radius: 0;
  background: #fefefe;
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  content: "";
}
input:checked ~ .switch-paddle {
  background: #E5004B;
}
input:checked ~ .switch-paddle::after {
  left: 2.25rem;
}
[data-whatinput=mouse] input:focus ~ .switch-paddle {
  outline: 0;
}

.switch-inactive, .switch-active {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-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: #0a0a0a;
}

tfoot {
  background: #f1f1f1;
  color: #0a0a0a;
}

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 #EAE9E8;
  background: #fefefe;
  list-style-type: none;
}
.tabs::before, .tabs::after {
  display: table;
  content: " ";
}
.tabs::after {
  clear: both;
}

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

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

.tabs.primary {
  background: #E5004B;
}
.tabs.primary > li > a {
  color: #fefefe;
}
.tabs.primary > li > a:hover, .tabs.primary > li > a:focus {
  background: #da0047;
}

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

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

.tabs-content.vertical {
  border: 1px solid #EAE9E8;
  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;
  -webkit-box-shadow: 0 0 0 1px rgba(10, 10, 10, 0.2);
          box-shadow: 0 0 0 1px rgba(10, 10, 10, 0.2);
  line-height: 0;
}

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

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

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

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

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

.has-tip {
  position: relative;
  display: inline-block;
  border-bottom: dotted 1px #757272;
  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: #0a0a0a;
  font-size: 80%;
  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 #0a0a0a;
  position: absolute;
  bottom: 100%;
  left: 50%;
  -webkit-transform: translateX(-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: #0a0a0a 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 #0a0a0a;
  top: 50%;
  bottom: auto;
  left: 100%;
  -webkit-transform: translateY(-50%);
          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 #0a0a0a transparent transparent;
  top: 50%;
  right: 100%;
  bottom: auto;
  left: auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.top-bar {
  padding: 0.5rem;
}
.top-bar::before, .top-bar::after {
  display: table;
  content: " ";
}
.top-bar::after {
  clear: both;
}
.top-bar,
.top-bar ul {
  background-color: #EAE9E8;
}
.top-bar input {
  max-width: 200px;
  margin-right: 1rem;
}
.top-bar .input-group-field {
  width: 100%;
  margin-right: 0;
}
.top-bar input.button {
  width: auto;
}
.top-bar .top-bar-left,
.top-bar .top-bar-right {
  width: 100%;
}
@media print, screen and (min-width: 40em) {
  .top-bar .top-bar-left,
.top-bar .top-bar-right {
    width: auto;
  }
}
@media screen and (max-width: 63.9375em) {
  .top-bar.stacked-for-medium .top-bar-left,
.top-bar.stacked-for-medium .top-bar-right {
    width: 100%;
  }
}
@media screen and (max-width: 74.9375em) {
  .top-bar.stacked-for-large .top-bar-left,
.top-bar.stacked-for-large .top-bar-right {
    width: 100%;
  }
}

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

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

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

.hide {
  display: none !important;
}

.invisible {
  visibility: hidden;
}

@media screen and (max-width: 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: " ";
}
.clearfix::after {
  clear: both;
}

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

Stylesheet: Main Stylesheet  

*************************************************/
/*********************
CUSTOM SELECT
*********************/
::-moz-selection {
  background: black;
  color: white;
}

::selection {
  background: black;
  color: white;
}

/*********************
GENERAL STYLES
*********************/
p.italic {
  margin-bottom: 0;
  font-style: italic;
}

#main .clearfix {
  clear: both;
}
#main ul li {
  color: #000;
}

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

/*********************
Homepage specific titles
*********************/
h1.home-title a::after {
  content: " +";
  color: #E5004B;
}

.quantis-is {
  /*
      margin-top: 90px;
      margin-bottom: 90px;
  */
}

.quantis-is-slider .testimonial .quote, .vc_col-sm-12 .testimonial .quote {
  height: auto;
  width: 100%;
}
.quantis-is-slider .quote, .vc_col-sm-12 .quote {
  width: 30.5%;
  margin-right: 30px;
}
.quantis-is-slider .quote p::before, .vc_col-sm-12 .quote p::before {
  content: "“ ";
}
.quantis-is-slider .quote p::after, .vc_col-sm-12 .quote p::after {
  content: " ”";
}
.quantis-is-slider .quote p, .vc_col-sm-12 .quote p {
  padding: 10px;
  color: white;
  font-style: italic;
  line-height: 18px;
}
.quantis-is-slider .quote h3, .vc_col-sm-12 .quote h3 {
  border-top: 1px solid white;
  padding-right: 10px;
  padding-top: 5px;
  text-align: right;
  font-family: "Source Sans Pro";
  font-size: 0.95rem;
  color: #FFFFFF;
  line-height: 20px;
}
.quantis-is-slider .quote, .quantis-is-slider .employee, .vc_col-sm-12 .quote, .vc_col-sm-12 .employee {
  height: 312px;
}
.quantis-is-slider .quote header, .quantis-is-slider .quote .bg, .quantis-is-slider .employee header, .quantis-is-slider .employee .bg, .vc_col-sm-12 .quote header, .vc_col-sm-12 .quote .bg, .vc_col-sm-12 .employee header, .vc_col-sm-12 .employee .bg {
  height: 150px;
}
.quantis-is-slider .quote article, .quantis-is-slider .employee article, .vc_col-sm-12 .quote article, .vc_col-sm-12 .employee article {
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.quantis-is-slider .quote header, .quantis-is-slider .employee header, .vc_col-sm-12 .quote header, .vc_col-sm-12 .employee header {
  position: absolute;
  bottom: 0;
  width: 100%;
  border-top: 2px solid #E5004B;
}
.quantis-is-slider .quote .bg, .quantis-is-slider .employee .bg, .vc_col-sm-12 .quote .bg, .vc_col-sm-12 .employee .bg {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: #E5004B;
  mix-blend-mode: multiply;
}
.quantis-is-slider .quote .v_align, .quantis-is-slider .employee .v_align, .vc_col-sm-12 .quote .v_align, .vc_col-sm-12 .employee .v_align {
  height: 92px !important;
}
.quantis-is-slider .employee, .vc_col-sm-12 .employee {
  color: #fefefe;
  height: 363px;
  padding: 7px 7px 14px 7px;
  overflow: hidden;
}
.quantis-is-slider .employee article, .vc_col-sm-12 .employee article {
  background-size: cover;
  background-repeat: no-repeat;
  height: 363px;
}
.quantis-is-slider .employee header, .quantis-is-slider .employee .bg, .vc_col-sm-12 .employee header, .vc_col-sm-12 .employee .bg {
  left: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.quantis-is-slider .employee .bg, .vc_col-sm-12 .employee .bg {
  display: none;
}
.quantis-is-slider .employee:hover .bg, .vc_col-sm-12 .employee:hover .bg {
  bottom: 0;
  height: 60%;
}
.quantis-is-slider .employee header, .vc_col-sm-12 .employee header {
  height: unset;
  padding: 17px;
}
.quantis-is-slider .employee header:before, .vc_col-sm-12 .employee header:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #E5004B;
  mix-blend-mode: multiply;
}
.quantis-is-slider .employee .taxonomy, .quantis-is-slider .employee p, .quantis-is-slider .employee h3, .vc_col-sm-12 .employee .taxonomy, .vc_col-sm-12 .employee p, .vc_col-sm-12 .employee h3 {
  color: #fefefe;
  margin: 0;
  position: relative;
  z-index: 1;
}
.quantis-is-slider .employee .taxonomy:first-child, .quantis-is-slider .employee p:first-child, .quantis-is-slider .employee h3:first-child, .vc_col-sm-12 .employee .taxonomy:first-child, .vc_col-sm-12 .employee p:first-child, .vc_col-sm-12 .employee h3:first-child {
  text-transform: none;
}
.quantis-is-slider .employee .description, .vc_col-sm-12 .employee .description {
  margin-top: 20px;
  line-height: 1rem;
}
.quantis-is-slider .employee h3, .vc_col-sm-12 .employee h3 {
  font-size: 21px;
  margin: 14px 0 8px 0;
}

.flickity-prev-next-button.previous,
.flickity-prev-next-button.previous:hover,
.flickity-prev-next-button.next,
.flickity-prev-next-button.next:hover {
  background-color: transparent;
}

.flickity-prev-next-button.previous {
  margin-left: -339px;
}

.flickity-prev-next-button.next {
  right: -31px !important;
}

.flickity-prev-next-button .arrow {
  fill: #919191 !important;
}

#webinar .button {
  margin-top: 262px;
  background-color: white;
  color: #E5004B;
  text-transform: uppercase;
}
#webinar .button::after {
  content: " +";
}
#webinar h5 {
  color: white !important;
}
#webinar p::after {
  content: " +";
  color: #E5004B;
}

@media screen and (max-width: 40em) {
  #webinar header {
    min-width: auto !important;
  }
}
.item p::after {
  content: " +";
  color: #E5004B;
}

.item p.taxonomy::after {
  content: "";
}

.item p.event-date::after {
  content: "";
}

.item p.description::after {
  content: "";
}

.related .post-display.casestudy {
  padding-left: 40px;
}

.related .post-display .label {
  left: -145px;
  top: 43%;
}

.post-display h3 {
  color: #E5004B;
  padding-bottom: 0px;
}

.event-date {
  margin-bottom: 10px;
  color: #373750;
  font-size: 14px !important;
}

.vc_gitem-post-data-source-post_excerpt p:nth-child(2),
.upcoming-events p:last-child, .post-display p:last-child {
  line-height: 1.1rem !important;
}

.post-display hr {
  border-color: #EAE9E8;
  margin: 18px auto 14px auto;
}

.post-date {
  display: block;
  background: #fefefe;
  padding: 5px;
  color: #0a0a0a;
  font-size: 13px;
  margin: -29px 20px 0 0;
  float: right;
  position: relative;
  z-index: 1;
}
.post-date span {
  color: #E5004B;
}
.post-date.no-bg {
  background: rgba(254, 254, 254, 0);
}

.fnone {
  float: none !important;
}

.taxonomy {
  text-transform: uppercase;
  color: #9F9FA7;
  margin: 20px 0 5px 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  display: block;
}

.home article.event .event-date {
  color: #373750;
}
.home #webinar h2 {
  margin-bottom: 10px;
}

/* Case Study */
.post-display {
  position: relative;
  margin-top: 25px;
}
.post-display.casestudy {
  min-height: 360px;
}
.post-display.casestudy .thumbnail {
  height: 210px;
  padding: 10% 20% 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #efeff0;
  border-right: none;
  border-bottom: none;
  width: 100%;
}
.post-display.casestudy .thumbnail img {
  -ms-flex-item-align: center;
      align-self: center;
  max-height: 180px;
}
.post-display.casestudy .label p {
  color: white;
  font-size: 14px;
  color: #fefefe;
  text-transform: uppercase;
  letter-spacing: 0;
  margin: -3px 0 0 0;
}
.post-display.client_logo {
  min-height: auto;
}
.post-display.client_logo .thumbnail {
  height: 70px;
  margin: 0;
}
.post-display.report .label-taxonomy {
  display: inline-block;
  text-transform: uppercase;
  color: #9F9FA7;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.post-display.report .taxonomy {
  display: inline-block;
}
.post-display .thumbnail {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  width: 60%;
  height: 140px;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: contain !important;
}
.post-display .label {
  position: absolute;
  top: 40%;
  left: -130px;
  width: 330px;
  height: 20px;
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
  background: #E5004B;
  text-align: center;
  color: #fefefe;
}

.casestudy article {
  padding-left: 60px;
}

.casestudy article {
  padding-left: 60px;
}

iframe {
  border: none;
}

.getlink .close-button {
  right: 2rem !important;
  color: #fefefe;
  top: 0.4rem;
}

/* Sitelinks */
.sitelinks h3 {
  font-size: 18px;
  color: #E5004B;
  text-transform: uppercase;
}

/*********************
H1, H2, H3, H4, H5 P STYLES
*********************/
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5 {
  color: #000;
}
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: 400 !important;
  line-height: 1.2em;
  font-size: 1.875rem;
  margin-bottom: 25px;
}

h2, .h2 {
  margin-bottom: 15px;
}

p, ul, ol {
  color: #000;
}

.citation {
  font-style: italic;
  font-weight: 100;
  margin-bottom: 40px;
}

.vc_section h2 {
  margin-bottom: 40px;
}

.fill {
  background: #fefefe;
}
.fill .inner-fill {
  padding: 50px;
}
.fill .inner-fill hr {
  margin: 0;
}

.vc_custom_heading {
  font-weight: 300 !important;
}

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

.page .article-header, .archive .article-header, .search .article-header, .single-article-header {
  min-height: 250px;
  background-size: cover;
  position: relative;
  margin-bottom: 54px;
}

body {
  background: #ffffff;
}

#breadcrumb {
  position: absolute;
  bottom: -54px;
  width: 100%;
}
#breadcrumb .row {
  background: #fefefe;
}
#breadcrumb .row .medium-12 {
  padding: 20px 50px 10px 50px;
}
#breadcrumb .breadcrumb_last {
  color: #E5004B;
}
#breadcrumb a {
  cursor: pointer;
  color: #383852;
}
#breadcrumb span.angle {
  color: #C4BFBE;
  margin: 0 10px;
}

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

.mega-sub-menu .textwidget {
  opacity: 1;
  font-family: "Source Sans Pro";
  font-size: 22px;
  color: #FFFFFF;
  letter-spacing: 0;
  line-height: 24px;
}

.mega-menu-item .textwidget p {
  opacity: 0.8;
  color: #FFFFFF;
  line-height: 1.4;
}

#content {
  position: relative;
}

/*********************
POSTS & CONTENT STYLES
*********************/
/*
#content {
	#inner-content {
		padding: 0rem 0rem 1rem 0rem;
	}
}
*/
.page-title .vcard {
  border: 0px;
  padding: 0px;
}

.single #inner-content {
  background: #fefefe;
  padding: 35px 50px 50px 50px;
}

.single-article-header {
  background: url("../../../../uploads/2017/01/quantis_home-e1486464771978.jpg");
  background-size: cover;
  background-position: center center;
}

.byline {
  color: #999;
}
.entry-content .quantis-is img {
  width: 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;
}

.article-footer .tags {
  display: none;
}

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

.social-media a {
  margin-left: 15px;
}

/*********************
SEARCH STYLES
*********************/
.search #results {
  padding: 0 37px 50px 37px;
  background: #fefefe;
}
.search #results article.post-display {
  margin-top: 0 !important;
  min-height: auto !important;
  border-bottom: none !important;
}
.search #results article.post-display:last-child {
  margin-bottom: 50px;
}
.search #results article header {
  min-height: auto;
  border-bottom: 1px solid #EAE9E8;
}

/*********************
FILTERS STYLES
*********************/
div.filters {
  border-bottom: 1px solid #E5004B;
  position: relative;
  z-index: 10;
}

@media screen and (max-width: 678px) {
  div.filters {
    float: none;
  }
}
.filters {
  margin-bottom: 40px;
}
.filters hr {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #E5004B;
}
.filters.client_logo #display, .filters.client_logo #location, .filters.post #post_tag, .filters.post #post_tag, .filters.post #post_format, .filters.post #translation_priority, .filters.post #post-author, .filters.casestudy #services {
  display: none;
}
.filters.employee ul {
  width: 49%;
}
.filters ul {
  display: inline-block;
  list-style: none;
  margin: 0;
}
.filters ul#sector {
  width: 100%;
}
.filters ul li {
  display: inline-block;
  padding-bottom: 20px;
  margin-right: 20px;
  margin-bottom: -8px;
  cursor: pointer;
  font-size: 14px;
  color: #373750;
  letter-spacing: 0;
}
.filters ul li.is-checked {
  color: #E5004B !important;
  background-image: url("../images/filter_arrow.svg");
  background-repeat: no-repeat;
  background-position: center bottom;
}
.filters #location {
  text-align: right;
}
.filters #location li {
  margin-right: 0;
  margin-left: 20px;
}

/* Hide unwanted filter on team page */
ul#position {
  display: none;
}

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

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

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

.commentlist li {
  position: relative;
  clear: both;
  overflow: hidden;
  list-style-type: none;
  margin-bottom: 1.5em;
  padding: 0.7335em 10px;
}
.commentlist li:last-child {
  margin-bottom: 0;
}
.commentlist li ul.children {
  margin: 0;
}
.commentlist li[class*=depth-] {
  margin-top: 1.1em;
}
.commentlist li.depth-1 {
  margin-left: 0;
  margin-top: 0;
}
.commentlist li:not(.depth-1) {
  margin-left: 10px;
  margin-top: 0;
  padding-bottom: 0;
}
.commentlist .vcard {
  margin-left: 50px;
}
.commentlist .vcard cite.fn {
  font-weight: 700;
  font-style: normal;
}
.commentlist .vcard time {
  float: right;
}
.commentlist .vcard time a {
  color: #999;
  text-decoration: none;
}
.commentlist .vcard time a:hover {
  text-decoration: underline;
}
.commentlist .vcard img.avatar {
  position: absolute;
  left: 10px;
  padding: 2px;
  border: 1px solid #cecece;
  background: #fff;
}
.commentlist .comment_content p {
  margin: 0.7335em 0 1.5em;
  font-size: 1em;
  line-height: 1.5em;
}
.commentlist .comment-reply-link {
  float: right;
}
/*********************
COMMENT FORM STYLES
*********************/
.respond-form {
  margin: 1.5em 10px;
  padding-bottom: 2.2em;
}
.respond-form form {
  margin: 0.75em 0;
}
.respond-form form li {
  list-style-type: none;
  clear: both;
  margin-bottom: 0.7335em;
}
.respond-form form li label,
.respond-form form li small {
  display: none;
}
.respond-form form input[type=text],
.respond-form form input[type=email],
.respond-form form input[type=url],
.respond-form form textarea {
  padding: 3px 6px;
  background: #efefef;
  border: 2px solid #cecece;
  line-height: 1.5em;
}
.respond-form form input[type=text]:focus,
.respond-form form input[type=email]:focus,
.respond-form form input[type=url]:focus,
.respond-form form textarea:focus {
  background: #fff;
}
.respond-form form input[type=text]:invalid,
.respond-form form input[type=email]:invalid,
.respond-form form input[type=url]:invalid,
.respond-form form textarea:invalid {
  outline: none;
  border-color: #fbc2c4;
  background-color: #f6e7eb;
  -webkit-box-shadow: none;
  -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;
  margin-top: 1em;
}
.footer .offices-title {
  color: #E5004B;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5rem;
}
.footer .offices {
  color: #5D514C !important;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2rem;
}
.footer .offices span {
  color: #AFADAC;
  font-size: 0.9rem;
}
.footer .logo {
  width: 100px;
  margin-bottom: 10px;
  margin-top: 30px;
}
.footer .cpy {
  text-transform: uppercase;
  color: #AFADAC;
  font-size: 0.9rem;
  line-height: 0.8rem;
}
.footer .cpy a {
  color: #AFADAC;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.footer .cpy a:hover {
  color: #E5004B;
}

@media screen and (max-width: 39.9375em) {
  .footer-menu {
    display: none;
  }
}
@media screen and (max-width: 63.9375em) {
  #newsletter .newsletter-signup {
    width: 100% !important;
  }
}
/*********************
FOUNDATION STYLES 
*********************/
/*********************
PLUGIN STYLES
*********************/
.gform_body ul {
  list-style: none outside none;
  margin: 0;
}

.search-everything-highlight-color {
  background-color: transparent !important;
  border-bottom: 1px solid #E5004B;
}

.testimonial {
  width: 100%;
}
.testimonial .quote {
  color: white !important;
  font-size: 30px;
  letter-spacing: 0;
  font-weight: 200;
  font-style: italic;
  line-height: 1.9rem;
}
.testimonial p {
  margin-top: 20px;
  font-weight: bold !important;
  color: white;
}

.flickity-page-dots {
  text-align: right !important;
}

.flickity-page-dots .dot {
  background: white !important;
}

.flickity-viewport {
  -webkit-transition: height 0.2s;
  transition: height 0.2s;
}

.quote h2 {
  font-weight: 200;
}

/* Small and medium only */
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .quantis-is-slider .quote, .vc_col-sm-12 .quote {
    width: 48%;
    margin-right: 10px;
    height: 380px;
  }
  .quote-is {
    height: 380px;
  }
}
/* Small only */
@media screen and (max-width: 39.9375em) {
  .quantis-is-slider .quote, .vc_col-sm-12 .quote {
    width: 98%;
    height: 500px;
  }
  .quote-is {
    height: 380px;
    margin-bottom: 20px;
  }
  .quote-is img {
    max-width: 220px;
  }
}
.vc_images_carousel {
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .sortable {
    float: left;
  }
}
#content-not-found {
  padding-top: 160px;
}

div.vc_btn3-container.vc_btn3-inline {
  margin-right: 4px;
}

.disable-link {
  cursor: default !important;
}

.slider.slick-slider {
  width: 100%;
  height: 100%;
  background: none;
  margin-top: 30px;
}

/*
* Boutons arrondis partout sur le site
*/
.vc_general.vc_btn3,
#gform_submit_button_42 {
  display: inline-block !important;
  color: white !important;
  padding: 0 20px !important;
  font-size: 16px !important;
  border-radius: 20px !important;
  line-height: 40px !important;
  font-weight: 600 !important;
  background-color: #e1004c !important;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
.vc_general.vc_btn3:hover,
#gform_submit_button_42:hover {
  background-color: #b2003a !important;
}

/**
 * Note: I have omitted any vendor-prefixes for clarity.
 * Adding them is left as an exercise for the reader.
 */
.headroom {
  will-change: transform;
  -webkit-transition: -webkit-transform 200ms linear;
  transition: -webkit-transform 200ms linear;
  transition: transform 200ms linear;
  transition: transform 200ms linear, -webkit-transform 200ms linear;
}

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

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

.submenurow {
  position: relative;
}

header.navbar-fixed-top {
  position: fixed;
  width: 100%;
  z-index: 100;
}
header .srch-txt {
  padding-left: 25px;
}
header .utils {
  height: 40px;
  background-color: #F2F4F6;
  /* SEARCH BOX*/
}
header .utils .search-button {
  display: none;
}
header .utils .large-12.columns {
  padding-top: 5px;
}
header .utils form {
  display: inline-block;
}
header .utils a {
  text-transform: uppercase;
  color: #A19B98;
  margin-right: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}
header .utils #s {
  background-color: transparent;
  border: 0;
  outline: none;
  border-radius: 4px;
  width: 30px;
  height: 30px;
  margin-bottom: 0;
  background-color: transparent;
  background-image: url("../images/search.svg");
  background-repeat: no-repeat;
  background-position: right 10px center;
  color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
  font-size: 0.9rem;
  font-weight: 600;
}
header .utils #s:hover, header .utils #s:active, header .utils #s:focus {
  background-color: #E2E5E8;
  color: #A19B98;
  width: 200px;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding-left: 10px;
}
header .top-bar {
  height: 80px;
  width: 100%;
  display: table;
  background-color: white;
  /* border-bottom:3px solid $primary-color; */
  padding: 0;
}
header .top-bar-left {
  margin-top: -18px;
}
header .top-menu {
  display: table-cell;
  vertical-align: bottom;
}
header .logo {
  width: 170px;
  height: auto;
}
@media (max-width: 1240px) {
  header .logo {
    height: 34px;
    width: auto;
    margin-top: 0 !important;
    padding-left: 0 !important;
  }
}
header #language-switch {
  /* opacity:0; */
}
header .customSelect {
  display: block;
  background-color: #E2E5E8;
  border-radius: 4px;
  text-transform: uppercase;
  color: #A19B98;
  margin-top: 5px;
  padding: 5px 10px;
  width: 50px;
  height: 30px;
  background-image: url("../images/triangle.svg");
  background-repeat: no-repeat;
  background-position: right 10px center;
  font-weight: 600;
  margin-right: 20px;
  font-size: 0.9rem;
}
header .customSelect.customSelectHover {
  /* Styles for when the select box is hovered */
}

.mixbg {
  position: fixed;
  width: 100%;
  height: 300px !important;
  top: 120px;
  left: 0;
  background: #E5004B;
  opacity: 0.8;
  mix-blend-mode: normal;
  z-index: 2;
  -webkit-transition: opacity 30ms ease;
  transition: opacity 30ms ease;
  display: block;
  visibility: hidden;
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
  -webkit-transition: -webkit-transform 200ms linear;
  transition: -webkit-transform 200ms linear;
  transition: transform 200ms linear;
  transition: transform 200ms linear, -webkit-transform 200ms linear;
}
.mixbg.unset {
  opacity: 0.8;
  mix-blend-mode: normal;
}
.mixbg.hidden {
  -webkit-transform: translateY(-250%);
          transform: translateY(-250%);
}

@media screen and (max-width: 63.9375em) {
  #webinar .button {
    margin-top: 0 !important;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  /*
  .widget_text{
  	display:none!important;
  }
  */
  .mega-toggle-on .mega-sub-menu > .row {
    text-align: center;
  }
  .logo {
    padding-left: 30px;
  }
  .mixbg {
    display: block;
  }
}
@media screen and (min-width: 40em) and (max-width: 50em) {
  .logo {
    margin-top: 50px;
  }
}
/* Small only */
@media screen and (max-width: 39.9375em) {
  .top-bar ul {
    position: absolute;
    right: 0;
    margin-top: -50px;
    background-color: white;
  }
  .mixbg {
    display: none;
  }
  /*
  .widget_text{
  	display:none!important;
  }
  */
  .top-bar-left.float-left {
    padding: 1rem;
  }
}
#off-canvas {
  background: #E5004B;
  color: white;
}

.position-right.is-transition-push::after {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.js-off-canvas-overlay {
  background: rgba(0, 0, 0, 0.5);
}

/*
 *
 *
 *	Mega Menu
 *
 *
 */
@media screen and (min-width: 1241px) {
  li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator::after {
    content: "" !important;
  }
}
.top-bar-right {
  display: block !important;
}

#mega-menu-main-nav > li > ul.mega-sub-menu {
  position: fixed !important;
  margin: auto !important;
  max-width: 1200px !important;
  left: 0 !important;
  right: 0 !important;
}
#mega-menu-main-nav > li > ul.mega-sub-menu::before {
  content: "";
  display: block !important;
  height: 100%;
  width: 100vw;
  background: white;
  left: calc(-1 * 0.5 * (100vw - 100%));
  position: absolute;
  top: 0;
  z-index: -1;
}

#top-bar-menu .top-menu__inner {
  --q--menu--line--x: 0% ;
  position: relative;
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
@media (max-width: 1240px) {
  #top-bar-menu .top-menu__inner {
    max-width: none;
    width: 100%;
    height: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-left: 20px;
    padding-right: 20px;
  }
}
#top-bar-menu .top-menu__inner:before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  opacity: 0;
  width: 100vw;
  height: 3px;
  bottom: 0;
  background-color: #E5004B;
  right: calc(100% - var(--q--menu--line--x));
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
#top-bar-menu .top-menu__inner.has--underline:before {
  opacity: 1;
}
#top-bar-menu .top-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1240px) {
  #top-bar-menu .top-menu {
    height: 80px;
  }
}
#top-bar-menu .top-menu__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
@media (max-width: 1240px) {
  #top-bar-menu .top-menu__row {
    max-width: none;
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
#top-bar-menu .top-menu__row:before, #top-bar-menu .top-menu__row:after {
  content: none;
}
@media (max-width: 1240px) {
  #top-bar-menu .top-menu__row-center {
    display: none;
    position: absolute;
    top: 100%;
    width: 100vw;
    margin-left: -20px;
    height: 100vh;
    background-color: white;
  }
}
@media (min-width: 1241px) {
  #top-bar-menu .top-menu__row-center {
    height: auto !important;
  }
}
#top-bar-menu .top-menu__row-left, #top-bar-menu .top-menu__row-right {
  width: 320px;
}
@media (max-width: 1240px) {
  #top-bar-menu .top-menu__row-left, #top-bar-menu .top-menu__row-right {
    width: auto;
  }
}
#top-bar-menu .top-menu__row-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
}
#top-bar-menu .top-menu__languages {
  margin-left: 24px;
  margin-right: 24px;
}
@media (max-width: 1240px) {
  #top-bar-menu .top-menu__languages {
    display: none;
  }
}
#top-bar-menu .top-menu select#language-switch {
  width: 48px;
}
#top-bar-menu .top-menu select#language-switch, #top-bar-menu .top-menu select#language-switch-mobile, #top-bar-menu .top-menu .customSelect {
  color: #373750;
  font-size: 16px !important;
  margin: 0 !important;
  -webkit-appearance: none !important;
     -moz-appearance: none !important;
          appearance: none !important;
  background-color: transparent !important;
  height: 40px !important;
  padding: 0 4px !important;
  line-height: 40px !important;
  padding-right: 20px !important;
  border: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  text-transform: uppercase;
  color: #373750;
  font-size: 16px;
  font-weight: 600;
}
#top-bar-menu .top-menu select#language-switch-mobile {
  font-weight: 400;
}
#top-bar-menu .top-menu__mobile-toggle {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: none;
  /* width: 74px; */
  width: 90px;
  text-align: left;
  margin-left: 20px;
  cursor: pointer;
  font-family: "Source Sans Pro";
  font-weight: 600;
  font-size: 16px;
  color: #373750;
  /* display: flex; */
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1240px) {
  #top-bar-menu .top-menu__mobile-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
#top-bar-menu .top-menu__mobile-toggle-label {
  padding-right: 8px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: inline-block;
  vertical-align: middle;
  text-align: right;
}
#top-bar-menu .top-menu__mobile-toggle-icon {
  display: inline-block;
  vertical-align: middle;
  width: 18px;
  height: 18px;
  background-image: url(../images/top-menu/q-toggle-menu-mobile--open.svg);
}
.has--mobile-menu-open #top-bar-menu .top-menu__mobile-toggle-icon {
  background-image: url(../images/top-menu/q-toggle-menu-mobile--close.svg);
}
@media (max-width: 1240px) {
  #top-bar-menu .top-menu__cta-nav {
    display: none;
  }
}
#top-bar-menu .top-menu__cta-nav .menu, #top-bar-menu .top-menu__cta-nav * {
  background: transparent !important;
}
#top-bar-menu .top-menu__cta-nav a {
  display: inline-block !important;
  color: white !important;
  padding: 0 20px !important;
  font-size: 16px !important;
  border-radius: 20px !important;
  line-height: 40px !important;
  font-weight: 600 !important;
  background-color: #e1004c !important;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
#top-bar-menu .top-menu__cta-nav a:hover, #top-bar-menu .top-menu__cta-nav a:focus, #top-bar-menu .top-menu__cta-nav a:active {
  background-color: #b2003a !important;
}
#top-bar-menu .top-menu__mobile-menu-after {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15vh 20px 7.5vh 20px;
}
@media (min-width: 1241px) {
  #top-bar-menu .top-menu__mobile-menu-after {
    display: none;
  }
}
#top-bar-menu .top-menu__mobile-menu-after .menu, #top-bar-menu .top-menu__mobile-menu-after * {
  background-color: transparent !important;
}
#top-bar-menu .top-menu__mobile-menu-after .menu {
  position: static !important;
  margin: 0 !important;
}
#top-bar-menu .top-menu__mobile-menu-after .menu a {
  display: inline-block !important;
  color: white !important;
  padding: 0 20px !important;
  font-size: 16px !important;
  border-radius: 20px !important;
  line-height: 40px !important;
  font-weight: 600 !important;
  background-color: #e1004c !important;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
#top-bar-menu .top-menu__mobile-menu-after .menu a:hover, #top-bar-menu .top-menu__mobile-menu-after .menu a:focus, #top-bar-menu .top-menu__mobile-menu-after .menu a:active {
  background-color: #b2003a !important;
}

/* Main menu x mega menu */
ul#mega-menu-main-nav .mega-sub-menu > li {
  padding: 0 !important;
}
ul#mega-menu-main-nav > li > a {
  font-weight: 600 !important;
  font-size: 18px !important;
}
@media (max-width: 1240px) {
  ul#mega-menu-main-nav > li > a {
    padding-left: 20px !important;
    padding-right: 20px !important;
    font-weight: 300 !important;
    font-size: 30px !important;
    /* black */
    color: #000000 !important;
  }
}
ul#mega-menu-main-nav > li > .mega-sub-menu {
  padding-left: 34px !important;
  padding-right: 34px !important;
}
@media (max-width: 1240px) {
  ul#mega-menu-main-nav > li > .mega-sub-menu {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}
ul#mega-menu-main-nav > li > .mega-sub-menu > .mega-menu-row > .mega-sub-menu > li {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}
ul#mega-menu-main-nav > li > .mega-sub-menu > .mega-menu-row > .mega-sub-menu > li a {
  font-weight: 600 !important;
  font-size: 18px !important;
  color: #373750 !important;
  text-decoration: none !important;
}
ul#mega-menu-main-nav > li > .mega-sub-menu > .mega-menu-row > .mega-sub-menu > li a:hover, ul#mega-menu-main-nav > li > .mega-sub-menu > .mega-menu-row > .mega-sub-menu > li a:focus, ul#mega-menu-main-nav > li > .mega-sub-menu > .mega-menu-row > .mega-sub-menu > li a:active {
  color: #e1004c !important;
}
ul#mega-menu-main-nav > li > .mega-sub-menu > .mega-menu-row > .mega-sub-menu > li > .mega-sub-menu > li:first-child > a {
  text-transform: uppercase !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  color: #666666;
  pointer-events: none !important;
  -ms-touch-action: none !important;
      touch-action: none !important;
  cursor: pointer !important;
}
ul#mega-menu-main-nav > li > .mega-sub-menu > .mega-menu-row > .mega-sub-menu > li > .mega-sub-menu > li:first-child > a:hover, ul#mega-menu-main-nav > li > .mega-sub-menu > .mega-menu-row > .mega-sub-menu > li > .mega-sub-menu > li:first-child > a:focus, ul#mega-menu-main-nav > li > .mega-sub-menu > .mega-menu-row > .mega-sub-menu > li > .mega-sub-menu > li:first-child > a:active {
  color: #666666 !important;
}
ul#mega-menu-main-nav > li > .mega-sub-menu > .mega-menu-row .mega-menu-item > .mega-block-title {
  color: #373750 !important;
  font-weight: 300 !important;
  font-size: 35px !important;
  line-height: 50px !important;
  text-transform: none !important;
}
@media (max-width: 1240px) {
  ul#mega-menu-main-nav > li > .mega-sub-menu > .mega-menu-row .mega-menu-item > .mega-block-title {
    display: none !important;
  }
}
@media (min-width: 1241px) {
  ul#mega-menu-main-nav > li > .mega-sub-menu > .mega-menu-row .mega-menu-item > .mega-block-title {
    position: absolute;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    -webkit-transform: translateY(calc(-100% - 10px));
            transform: translateY(calc(-100% - 10px));
  }
}
@media (max-width: 1240px) {
  ul#mega-menu-main-nav > li > .mega-sub-menu > .mega-menu-row .mega-menu-item > .mega-block-title + .textwidget {
    margin-top: -40px;
  }
}
@media (min-width: 1241px) {
  ul#mega-menu-main-nav > li > .mega-sub-menu > .mega-menu-row .mega-menu-item > .mega-block-title + .textwidget > *:first-child {
    margin-top: 0 !important;
  }
}
ul#mega-menu-main-nav > li > .mega-sub-menu > .mega-menu-row .mega-menu-item .mega-sub-menu {
  margin-top: 10px !important;
}
ul#mega-menu-main-nav > li > .mega-sub-menu > .mega-menu-row .mega-menu-item > .textwidget p {
  opacity: 1;
}
@media (max-width: 1240px) {
  ul#mega-menu-main-nav > li > .mega-sub-menu > .mega-menu-row .mega-menu-item > .textwidget {
    margin-bottom: 20px;
  }
}
ul#mega-menu-main-nav > li > .mega-sub-menu > .mega-menu-row .mega-menu-item > .textwidget > p {
  color: #373750 !important;
  font-weight: 400 !important;
  font-size: 20px;
  line-height: 30px !important;
  margin-top: 15px;
}
ul#mega-menu-main-nav > li > .mega-sub-menu > .mega-menu-row .mega-menu-item > .textwidget > a, ul#mega-menu-main-nav > li > .mega-sub-menu > .mega-menu-row .mega-menu-item > .textwidget > p > a {
  margin-top: 15px;
  display: inline-block !important;
  color: white !important;
  padding: 0 20px !important;
  font-size: 16px !important;
  border-radius: 20px !important;
  line-height: 40px !important;
  font-weight: 600 !important;
  background-color: #e1004c !important;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
ul#mega-menu-main-nav > li > .mega-sub-menu > .mega-menu-row .mega-menu-item > .textwidget > a:hover, ul#mega-menu-main-nav > li > .mega-sub-menu > .mega-menu-row .mega-menu-item > .textwidget > a:focus, ul#mega-menu-main-nav > li > .mega-sub-menu > .mega-menu-row .mega-menu-item > .textwidget > a:active, ul#mega-menu-main-nav > li > .mega-sub-menu > .mega-menu-row .mega-menu-item > .textwidget > p > a:hover, ul#mega-menu-main-nav > li > .mega-sub-menu > .mega-menu-row .mega-menu-item > .textwidget > p > a:focus, ul#mega-menu-main-nav > li > .mega-sub-menu > .mega-menu-row .mega-menu-item > .textwidget > p > a:active {
  background-color: #b2003a !important;
}

@media (max-width: 1240px) {
  .has--top-bar-search-open header .logo {
    display: none;
  }
}

.top-menu-search {
  /* @media ( max-width:1240px ) { display: none; } */
}
@media (max-width: 600px) {
  .top-menu-search {
    display: none;
  }
}
.top-menu-search__inner-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 54px;
  width: 130px;
}
.top-menu-search__inner-container, .top-menu-search__inner-container input {
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
.has--top-bar-search-open .top-menu-search__inner-container {
  width: 750px;
}
@media (max-width: 1240px) {
  .has--top-bar-search-open .top-menu-search__inner-container {
    width: calc(100vw - 150px);
  }
}
.has--top-bar-search-open .top-menu-search__inner-container input[type=text] {
  text-align: left;
  padding-right: 62px !important;
  margin-right: -54px !important;
  background-color: #F2F4F6;
}
.has--top-bar-search-open .top-menu-search__inner-container input[type=submit] {
  width: 54px;
}
.top-menu-search__input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  height: 100%;
  padding: 10px 15px !important;
  padding-right: 28px !important;
  margin-right: -20px !important;
  background-color: transparent;
  max-width: 100%;
  color: #373750 !important;
  font-size: 16px;
  font-weight: 600;
  text-align: right;
  position: absolute;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100% !important;
  max-width: 100% !important;
}
.top-menu-search__input::-webkit-input-placeholder {
  color: #373750;
  opacity: 1;
  font-weight: 600;
}
.top-menu-search__input::-moz-placeholder {
  color: #373750;
  opacity: 1;
  font-weight: 600;
}
.top-menu-search__input:-ms-input-placeholder {
  color: #373750;
  opacity: 1;
  font-weight: 600;
}
.top-menu-search__input::-ms-input-placeholder {
  color: #373750;
  opacity: 1;
  font-weight: 600;
}
.top-menu-search__input::placeholder {
  color: #373750;
  opacity: 1;
  font-weight: 600;
}
.top-menu-search__input:-ms-input-placeholder {
  color: #373750;
  font-weight: 600;
}
.top-menu-search__input::-ms-input-placeholder {
  color: #373750;
  font-weight: 600;
}
.top-menu-search__input:focus {
  margin: 0;
  padding: 0;
  border: none;
}
.top-menu-search__button {
  position: absolute;
  right: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  cursor: pointer;
  width: 20px;
  height: 54px;
  text-indent: -9999px;
  background-color: transparent;
  background-image: url(../images/top-menu/q-search-icon--default.svg), url(../images/top-menu/q-search-icon--red.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 17px auto;
}
.top-menu-search__button:hover, .top-menu-search__button:focus, .top-menu-search__button:active {
  background-image: url(../images/top-menu/q-search-icon--red.svg);
}

/*  menu mobile */
/*
.has--mobile-menu-open header .logo,
.has--mobile-menu-open .top-menu__search{
	visibility: hidden;
}
*/
.has--mobile-menu-open #top-bar-menu .top-menu__row-center {
  display: block;
}
@media (max-width: 1240px) {
  .has--mobile-menu-open #top-bar-menu .top-menu__row-center {
    overflow-y: scroll;
  }
}

@media (max-width: 1240px) {
  #mega-menu-wrap-main-nav #mega-menu-main-nav li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator::after {
    content: "";
    /* color: $q_red !important; */
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(../images/top-menu/q-menu-item--reduce.svg), url(../images/top-menu/q-menu-item--expand.svg);
  }
  #mega-menu-wrap-main-nav #mega-menu-main-nav li.mega-menu-item-has-children.mega-toggle-on > a.mega-menu-link > span.mega-indicator::after {
    content: "";
    background-image: url(../images/top-menu/q-menu-item--reduce.svg);
  }
}
.has--mobile-menu-open .header::before {
  content: "";
  display: block;
  position: fixed;
  width: 100vw;
  height: 100vw;
  background-color: white;
  z-index: 10;
}
@media (min-width: 1241px) {
  .has--mobile-menu-open .header::before {
    content: none;
  }
}

@media (max-width: 1240px) {
  #mega-menu-wrap-main-nav #mega-menu-main-nav li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu,
#mega-menu-wrap-main-nav #mega-menu-main-nav li.mega-menu-megamenu.mega-menu-item.mega-toggle-on ul.mega-sub-menu {
    position: static !important;
  }
}
/*! Flickity v2.0.5
http://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus {
  outline: none;
}

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */
.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* ---- previous/next buttons ---- */
.flickity-prev-next-button {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: white;
  background: hsla(0deg, 0%, 100%, 0.75);
  cursor: pointer;
  /* vertically center */
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.flickity-prev-next-button:hover {
  background: white;
}

.flickity-prev-next-button:focus {
  outline: none;
  -webkit-box-shadow: 0 0 0 5px #09F;
          box-shadow: 0 0 0 5px #09F;
}

.flickity-prev-next-button:active {
  opacity: 0.6;
}

.flickity-prev-next-button.previous {
  left: 10px;
}

.flickity-prev-next-button.next {
  right: 10px;
}

/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button:disabled {
  opacity: 0.3;
  cursor: auto;
}

.flickity-prev-next-button svg {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

.flickity-prev-next-button .arrow {
  fill: #333;
}

/* ---- page dots ---- */
.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots {
  direction: rtl;
}

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}

#home-slider {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0px;
  padding: 0 !important;
  margin: 0 !important;
  height: 617px;
}

#home-slider .flickity-slider div {
  height: 100%;
  width: 100%;
  overflow-y: hidden;
}

#home-slider .flickity-slider div .vc_column-inner {
  background-size: cover;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 0;
  padding-right: 0;
}

#home-slider .flickity-slider div .vc_column-inner .wpb_wrapper {
  width: 100% !important;
}

#home-slider .vc_column-inner {
  height: 100%;
}

#home-slider h1 {
  color: white;
  padding: 270px 10px 0 50px !important;
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.8);
  font-weight: normal !important;
}

@media screen and (max-width: 39.9375em) {
  #home-slider h1 {
    padding: 220px 10px 0 50px !important;
    font-size: 32px !important;
  }
}
.header-slider {
  height: 617px;
}
.header-slider .flickity-page-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  bottom: 120px;
}
.header-slider .wpb_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: none !important;
}
.header-slider .wpb_column h1 {
  max-width: 1200px;
  width: 100%;
  -webkit-transition: all 4s ease;
  transition: all 4s ease;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  opacity: 0;
}
.header-slider .wpb_column h1 a::after {
  padding: 0 0.5rem;
  display: inline-block;
  -webkit-transition: all 5s ease-out;
  transition: all 5s ease-out;
  -webkit-transform: rotate(-270deg);
          transform: rotate(-270deg);
  opacity: 0;
}
.header-slider .wpb_column.is-selected h1 {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}
.header-slider .wpb_column.is-selected h1 a::after {
  -webkit-transform: rotate(0);
          transform: rotate(0);
  opacity: 1;
}

/*********************
Sections
*********************/
/* Fix for section layer background beeing under the banner */
.index-front {
  position: relative;
  z-index: 1;
  padding-bottom: 80px !important;
}

.vc_section {
  padding: 50px;
}

.vc_section[data-vc-full-width=true] {
  padding-top: 0 !important;
}
.vc_section[data-vc-full-width=true] .vc_row {
  padding: 50px 50px 0px 50px;
}

.wpb_single_image.wpb_content_element {
  margin-bottom: 0 !important;
}

.vc_gitem_row .vc_gitem-col {
  padding: 0;
}

.vc_section .vc_grid {
  padding: 0 !important;
}
.vc_section .vc_grid .vc_row {
  padding: 0 !important;
}

/* HOME - Posts */
.vc_grid .vc_grid-filter.vc_grid-filter-center.category, .vc_grid .category {
  text-align: left;
  color: #9F9FA7;
  text-transform: uppercase;
  margin-bottom: 5px !important;
  font-weight: 600;
  font-size: 13px;
}
.vc_grid h3 {
  color: #E5004B;
}

/* HOME - Quotes */
.quote-is {
  background: #E5004B;
  text-align: center;
  padding: 35px 15px;
}
.quote-is h4 {
  color: #fefefe;
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 300;
  margin: 0;
}
.quote-is img {
  margin: 20px 0;
}

/* HOME - Webinar */
#webinar {
  display: block;
  margin: -50px;
  /*.button {
      position: absolute;
      bottom: 50px;
  }*/
}
#webinar header {
  min-width: 500px;
  height: 700px;
  position: relative;
}
#webinar .row {
  margin: 0 auto !important;
  padding-top: 50px;
  padding-bottom: 50px;
}
#webinar .intro {
  color: #fefefe !important;
  text-transform: uppercase;
  font-size: 20px;
}
#webinar .intro span {
  color: #E5004B;
  font-weight: 700;
}
#webinar h2, #webinar h3, #webinar p {
  text-transform: none;
  color: #fefefe !important;
}
#webinar h2 {
  font-size: 60px;
  font-weight: 300;
}
#webinar h3 {
  font-size: 24px;
}
#webinar p {
  margin-top: 15px;
  padding-top: 20px;
  border-top: 2px solid #fefefe;
}

#webinar.dark h1, #webinar.dark h2, #webinar.dark h3, #webinar.dark h4, #webinar.dark h5, #webinar.dark p {
  color: #373750 !important;
}

#webinar.dark p {
  border-top: 2px solid #373750;
}

/* BUTTONS - Red buttons */
.vc_btn3-container .vc_btn3-color-danger {
  background: #E5004B !important;
  padding: 10px 17px;
}
.vc_btn3-container .vc_btn3-color-danger:hover {
  background: #b2003a !important;
}

.vc_custom_heading.home-title a {
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.8);
}

.vc_btn3.vc_btn3-size-lg {
  font-size: 18px;
  padding-top: 18px !important;
  padding-bottom: 18px !important;
  padding-left: 25px !important;
  padding-right: 25px !important;
}

.center-btn .wpb_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#newsletter {
  background: #ffffff;
  color: #757272;
  padding-bottom: 60px;
}
#newsletter #scroll-top {
  text-align: center;
  height: 60px;
}
#newsletter #scroll-top .label-container {
  margin-top: -8px;
}
#newsletter #scroll-top a {
  margin: 0 auto;
  width: 90px;
  height: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  background: #EAE9E8;
  position: relative;
  top: -45px;
  text-align: center;
  color: #757272;
  z-index: 1;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px 0px;
          box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px 0px;
}
#newsletter #scroll-top a img {
  -webkit-filter: invert(0) brightness(100%);
          filter: invert(0) brightness(100%);
}
#newsletter #scroll-top a:hover {
  background: #E5004B;
  color: #EAE9E8;
  -webkit-box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 6px 0px;
          box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 6px 0px;
}
#newsletter #scroll-top a:hover img {
  -webkit-filter: invert(1) brightness(200%);
          filter: invert(1) brightness(200%);
}
#newsletter .newsletter {
  display: grid;
  grid-template-columns: 1fr 120px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: auto;
  margin-left: auto;
  margin: 0 auto;
  max-width: 80vw;
}
@media (max-width: 768px) {
  #newsletter .newsletter {
    max-width: 90vw;
  }
}
#newsletter h4 {
  color: #373750;
  font-size: 25px;
  font-weight: 300;
  margin-bottom: 15px;
}
#newsletter .newsletter-signup {
  width: 60%;
  background-color: #EAE9E8;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#newsletter .newsletter-signup:hover, #newsletter .newsletter-signup:focus {
  background-color: white;
}
#newsletter .newsletter-signup input,
#newsletter .newsletter-signup input:active,
#newsletter .newsletter-signup input:focus {
  background-color: transparent;
  border: 0;
  font-size: 0.8rem;
  padding: 10px;
  display: inline-block;
  width: 80%;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  margin: 0;
}
#newsletter .newsletter-signup input::-webkit-input-placeholder {
  color: #757272;
}
#newsletter .newsletter-signup input::-moz-placeholder {
  color: #757272;
}
#newsletter .newsletter-signup input:-ms-input-placeholder {
  color: #757272;
}
#newsletter .newsletter-signup input::-ms-input-placeholder {
  color: #757272;
}
#newsletter .newsletter-signup input::placeholder {
  color: #757272;
}
#newsletter .newsletter-signup .newsletter-submit {
  background-color: #C4BFBE;
  color: #757272;
  font-size: 0.8rem;
  padding: 10px;
  margin: 10px;
}
#newsletter .button {
  background: #EAE9E8;
  color: #757272;
  padding: 17px 15px;
  font-size: 0.8rem;
}
#newsletter .button img {
  margin-right: 5px;
}
#newsletter .button:hover {
  background: white;
}
#newsletter .button:hover img {
  color: #EAE9E8;
}
#newsletter a.button__simple {
  color: #ffffff;
  display: inline-block;
  font-size: 16px !important;
  font-weight: 600;
  margin: 0;
  padding: 0.7em 1em 0.7em 1em;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 20px;
  -webkit-transition: background-color 0.25s ease-out, color 0.25s ease-out;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  background: #e1004c;
}
#newsletter a.button__simple:hover {
  background-color: #c30040;
}

footer.footer {
  background: #EAE9E8;
  margin-top: 0 !important;
  color: #757272;
  padding-top: 65px;
  padding-bottom: 65px;
}
footer.footer h3 {
  color: #E5004B;
  text-transform: uppercase;
  font-size: 20px;
}
footer.footer ul.footer-menu {
  margin: 0;
  list-style: none;
}
footer.footer ul.footer-menu li {
  float: left;
  width: 15%;
}
footer.footer ul.footer-menu li a {
  color: #E5004B;
  font-size: 22px;
  margin-bottom: 15px;
  display: block;
}
footer.footer ul.footer-menu li ul.sub-menu {
  list-style: none;
  margin: 0;
}
footer.footer ul.footer-menu li ul.sub-menu li {
  float: none;
  width: 100%;
}
footer.footer ul.footer-menu li ul.sub-menu li a {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  color: #C4BFBE;
  margin: 10px 0 9px 0;
}
footer.footer ul.footer-menu li ul.sub-menu li ul.sub-menu li a {
  font-size: 13px;
  text-transform: none;
  font-weight: 500;
  color: #757272;
  margin: 0;
}

.q-author-box {
  overflow: hidden;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e5004c;
}
.q-author-box__title {
  font-size: 20px;
  color: #9F9FA7;
  text-transform: uppercase;
}
.q-author-box__authors {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -20px;
  margin-right: -20px;
}
.q-author-box__author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  min-width: 330px;
  padding: 20px;
  margin: -10px;
}
.q-author-box__author-picture {
  padding: 10px;
  max-width: 80px;
  min-height: 100%;
}
.q-author-box__author-author-image-tag {
  max-width: 100%;
}
.q-author-box__author-infos {
  padding: 10px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.q-author-box__author-firstname, .q-author-box__author-lastname {
  color: #e5004c;
  font-weight: 600;
  font-size: 20px;
}
.q-author-box__author-jobtitle {
  display: block;
  font-size: 18px;
  color: #585858;
}

.job-card {
  /* Force card height ... */
}
.job-card .wpb_single_image img {
  height: 190px;
  -o-object-fit: cover;
     object-fit: cover;
}
.job-card .vc_gitem_row {
  top: 0 !important;
}
.job-card .vc_figure,
.job-card .vc_single_image-wrapper,
.job-card img, .job-card .vc_single_image-img {
  width: 100%;
}
.job-card .vc_gitem-zone-mini {
  min-height: 360px;
}
.job-card img, .job-card .vc_single_image-img {
  display: block;
}
.job-card__locations {
  display: block;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #9F9FA7;
  margin: 20px 0 5px 0;
  font-size: 13px;
  font-weight: 600;
}
.job-card__button {
  color: #fff;
  background-color: #E5004B;
  display: inline-block;
  padding: 4px 8px;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
.job-card__button:hover, .job-card__button:focus, .job-card__button:active {
  color: #fff;
  background-color: #BF0341;
}
.job-card .desc {
  max-height: 5em;
  display: inline-block;
  text-overflow: ellipsis;
  overflow: hidden;
  line-height: 1em;
}
.job-card .desc p {
  margin-bottom: 0;
  line-height: 1em !important;
}

.q-share-buttons__introduction {
  display: block;
  margin: auto;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-size: 20px;
  color: #9f9fa7;
}
.q-share-buttons__list {
  padding: 0;
  margin: 8px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.q-share-buttons__list-iem {
  list-style: none;
  padding-right: 24px;
}
.q-share-buttons__list-iem a, .q-share-buttons__list-iem button {
  display: inline-block;
  text-align: center;
  -webkit-transition: all 300ms;
  transition: all 300ms;
  color: #ffffff;
  width: 25px;
  height: 25px;
  line-height: 25px;
  border-radius: 25px;
  background-color: #585858;
  border: none;
}
.q-share-buttons__list-iem a:hover, .q-share-buttons__list-iem a:focus, .q-share-buttons__list-iem a:active, .q-share-buttons__list-iem button:hover, .q-share-buttons__list-iem button:focus, .q-share-buttons__list-iem button:active {
  color: #ffffff;
  background-color: #e5004c;
  border: none;
}

.q-cta-social {
  position: relative;
  display: inline-block;
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background-color: transparent;
}
.q-cta-social > * {
  display: inline-block;
  vertical-align: middle;
}
.q-cta-social svg {
  width: 20px;
  height: 2px;
}
.q-cta-social--twitter svg {
  width: 16px;
  height: 16px;
  margin-top: -0.1em;
}
.q-cta-social--linkedin svg {
  width: 14px;
  height: 14px;
  margin-top: -0.2em;
}
.q-cta-social--email svg {
  width: 18px;
  height: 16px;
  margin-top: -0.15em;
  margin-left: -0.05em;
}

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

Stylesheet: Retina Screens & Devices Stylesheet

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

******************************************************************/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  /* 

  EXAMPLE 
  Let's say you have an image and you need to make sure it looks ok
  on retina screens. Let's say we have an icon which dimension are
  24px x 24px. In your regular stylesheets, it would look something
  like this:

  .icon {
  	width: 24px;
  	height: 24px;
  	background: url(img/test.png) no-repeat;
  }

  For retina screens, we have to make some adjustments, so that image
  doesn't look blurry. So, taking into account the image above and the
  dimensions, this is what we would put in our retina stylesheet:

  .icon {
  	background: url(img/test@2x.png) no-repeat;
  	background-size: 24px 24px;
  }

  So, you would create the same icon, but at double the resolution, meaning 
  it would be 48px x 48px. You'd name it the same, but with a @2x at the end
  (this is pretty standard practice). Set the background image so it matches
  the original dimensions and you are good to go. 

  */
}
/******************************************************************

Stylesheet: Print Stylesheet

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

Remember to add things that won't make sense to print at 
the bottom. Things like nav, ads, and forms shouldbe set 
to display none.
******************************************************************/
@media print {
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    -webkit-filter: 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;
  }
}
/*
*   Correction bug All news en 2 colonnes au lieu de 3
*/
.item.columns.medium-4.post-display.post {
  width: 33%;
}