@charset "UTF-8";
/*
  Foundation for Sites components:
  Import the building blocks you need for your project.
  Reducing the number of imported components will optimize page speed.
  ---------------------------------------------------------------------
  The Foundation framework is built by Zurb
  Licensed under MIT Open Source
*/
@import url("ubuntu-font.css");
@import url("mecavenir-font.css");
@import url("font-awesome.min.css");
@import url("plyr.css");
/* foundation taken from 5.5.3 */
/* custom mixins */
/* Mouse effect animation */
@-webkit-keyframes ani-mouse {
  0% {
    opacity: 1;
    top: 29%;
  }
  15% {
    opacity: 1;
    top: 50%;
  }
  50% {
    opacity: 0;
    top: 50%;
  }
  100% {
    opacity: 0;
    top: 29%;
  }
}
@-moz-keyframes ani-mouse {
  0% {
    opacity: 1;
    top: 29%;
  }
  15% {
    opacity: 1;
    top: 50%;
  }
  50% {
    opacity: 0;
    top: 50%;
  }
  100% {
    opacity: 0;
    top: 29%;
  }
}
@keyframes ani-mouse {
  0% {
    opacity: 1;
    top: 29%;
  }
  15% {
    opacity: 1;
    top: 50%;
  }
  50% {
    opacity: 0;
    top: 50%;
  }
  100% {
    opacity: 0;
    top: 29%;
  }
}
.scroll-btn {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
}

.scroll-btn > * {
  line-height: 18px;
  font-size: 13px;
  font-weight: normal;
  color: #ffffff;
  letter-spacing: 2px;
}

.scroll-btn > *:hover,
.scroll-btn > *:focus,
.scroll-btn > *.active {
  color: #ffffff;
}

.scroll-btn > *:hover,
.scroll-btn > *:focus,
.scroll-btn > *:active,
.scroll-btn > *.active {
  opacity: 0.8;
  filter: alpha(opacity=80);
}

.scroll-btn .mouse {
  position: relative;
  display: block;
  width: 35px;
  height: 55px;
  margin: 0 auto 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: 2px solid white;
  border-radius: 23px;
}

.scroll-btn .mouse > * {
  position: absolute;
  display: block;
  top: 29%;
  left: 50%;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  background: white;
  border-radius: 50%;
  -webkit-animation: ani-mouse 2.5s linear infinite;
  -moz-animation: ani-mouse 2.5s linear infinite;
  animation: ani-mouse 2.5s linear infinite;
}

/**
 * Foundation for Sites by ZURB
 * Version 6.3.1
 * foundation.zurb.com
 * Licensed under MIT Open Source
 */
#wpadminbar {
  position: fixed !important;
}

body.admin-bar.f-topbar-fixed .sticky.fixed {
  margin-top: 1.7777777778rem;
}

.wp-caption > figcaption {
  max-width: 100%;
  font-size: 0.8rem;
  color: #999;
  padding: 0.25rem 0;
}

p.wp-caption-text {
  font-size: 90%;
  color: #666;
  padding: 0.5555555556rem 0;
}

.alignleft {
  float: left;
  padding-right: 1rem;
  margin: 0;
}

.alignright {
  float: right;
  padding-left: 1rem;
  margin: 0;
}

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

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

body {
  margin: 0;
  padding: 0;
  background: #ffffff;
  font-family: "Ubuntu", sans-serif;
  font-weight: 300;
  line-height: 1.55;
  color: #303030;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

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

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

pre {
  overflow: auto;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
}

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

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

.row {
  max-width: 79.7777777778rem;
  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: -1.1111111111rem;
  margin-left: -1.1111111111rem;
}
@media print, screen and (min-width: 40em) {
  .row .row {
    margin-right: -1.1111111111rem;
    margin-left: -1.1111111111rem;
  }
}
@media print, screen and (min-width: 64em) {
  .row .row {
    margin-right: -0.5555555556rem;
    margin-left: -0.5555555556rem;
  }
}
@media screen and (min-width: 80em) {
  .row .row {
    margin-right: -0.5555555556rem;
    margin-left: -0.5555555556rem;
  }
}
@media screen and (min-width: 90em) {
  .row .row {
    margin-right: -0.5555555556rem;
    margin-left: -0.5555555556rem;
  }
}
.row .row.collapse {
  margin-right: 0;
  margin-left: 0;
}
.row.expanded {
  max-width: none;
}
.row.expanded .row {
  margin-right: auto;
  margin-left: auto;
}
.row:not(.expanded) .row {
  max-width: none;
}
.row.gutter-small > .column, .row.gutter-small > .columns {
  padding-right: 1.1111111111rem;
  padding-left: 1.1111111111rem;
}
.row.gutter-medium > .column, .row.gutter-medium > .columns {
  padding-right: 1.1111111111rem;
  padding-left: 1.1111111111rem;
}
.row.gutter-large > .column, .row.gutter-large > .columns {
  padding-right: 0.5555555556rem;
  padding-left: 0.5555555556rem;
}
.row.gutter-xlarge > .column, .row.gutter-xlarge > .columns {
  padding-right: 0.5555555556rem;
  padding-left: 0.5555555556rem;
}
.row.gutter-xxlarge > .column, .row.gutter-xxlarge > .columns {
  padding-right: 0.5555555556rem;
  padding-left: 0.5555555556rem;
}

.column, .columns {
  width: 100%;
  float: left;
  padding-right: 1.1111111111rem;
  padding-left: 1.1111111111rem;
}
@media print, screen and (min-width: 40em) {
  .column, .columns {
    padding-right: 1.1111111111rem;
    padding-left: 1.1111111111rem;
  }
}
@media print, screen and (min-width: 64em) {
  .column, .columns {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
@media screen and (min-width: 80em) {
  .column, .columns {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
@media screen and (min-width: 90em) {
  .column, .columns {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
.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: 1.1111111111rem;
  padding-left: 1.1111111111rem;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Ubuntu", sans-serif;
  font-style: normal;
  font-weight: 300;
  color: #3498db;
  text-rendering: optimizeLegibility;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small {
  line-height: 0;
  color: #95a5a6;
}

h1 {
  font-size: 1.6666666667rem;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 0;
}

h2 {
  font-size: 1.3333333333rem;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 1.1111111111rem;
}

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

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

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

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

@media print, screen and (min-width: 40em) {
  h1 {
    font-size: 2.2222222222rem;
    margin-top: 0;
    margin-bottom: 0;
  }
  h2 {
    font-size: 1.7777777778rem;
    margin-top: 0;
    margin-bottom: 1.6666666667rem;
  }
  h3 {
    font-size: 1.7222222222rem;
  }
  h4 {
    font-size: 1.3888888889rem;
  }
  h5 {
    font-size: 1.1111111111rem;
  }
  h6 {
    font-size: 0.8888888889rem;
  }
}
@media print, screen and (min-width: 64em) {
  h1 {
    font-size: 2.7777777778rem;
    margin-top: 0;
    margin-bottom: 0;
  }
  h2 {
    font-size: 2.1111111111rem;
    margin-top: 0;
    margin-bottom: 2.2222222222rem;
  }
  h3 {
    font-size: 1.7222222222rem;
  }
  h4 {
    font-size: 1.3888888889rem;
  }
  h5 {
    font-size: 1.1111111111rem;
  }
  h6 {
    font-size: 0.8888888889rem;
  }
}
a {
  line-height: inherit;
  color: #3498db;
  text-decoration: none;
  cursor: pointer;
}
a:hover, a:focus {
  color: #2385c6;
}
a img {
  border: 0;
}

hr {
  clear: both;
  max-width: 79.7777777778rem;
  height: 0;
  margin: 1.1111111111rem auto;
  border-top: 0;
  border-right: 0;
  border-bottom: 1px solid #95a5a6;
  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: 700;
}

blockquote {
  margin: 0 0 1rem;
  padding: 0.5rem 1.1111111111rem 0 1.0555555556rem;
  border-left: 1px solid #95a5a6;
}
blockquote, blockquote p {
  line-height: 1.6;
  color: #7f8c8d;
}

cite {
  display: block;
  font-size: 0.7222222222rem;
  color: #7f8c8d;
}
cite:before {
  content: "— ";
}

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

figure {
  margin: 0;
}

code {
  padding: 0.1111111111rem 0.2777777778rem 0.0555555556rem;
  border: 1px solid #95a5a6;
  background-color: #f4f4f4;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  font-weight: 300;
  color: #303030;
}

kbd {
  margin: 0;
  padding: 0.1111111111rem 0.2222222222rem 0;
  background-color: #f4f4f4;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  color: #303030;
}

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

.lead {
  font-size: 146.25%;
  line-height: 1.3;
}

.stat {
  font-size: 2.7777777778rem;
  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;
  }
}
@media screen and (min-width: 80em) {
  .xlarge-text-left {
    text-align: left;
  }
  .xlarge-text-right {
    text-align: right;
  }
  .xlarge-text-center {
    text-align: center;
  }
  .xlarge-text-justify {
    text-align: justify;
  }
}
@media screen and (min-width: 90em) {
  .xxlarge-text-left {
    text-align: left;
  }
  .xxlarge-text-right {
    text-align: right;
  }
  .xxlarge-text-center {
    text-align: center;
  }
  .xxlarge-text-justify {
    text-align: justify;
  }
}
.show-for-print {
  display: none !important;
}

@media print {
  * {
    background: transparent !important;
    box-shadow: none !important;
    color: black !important;
    text-shadow: none !important;
  }
  .show-for-print {
    display: block !important;
  }
  .hide-for-print {
    display: none !important;
  }
  table.show-for-print {
    display: table !important;
  }
  thead.show-for-print {
    display: table-header-group !important;
  }
  tbody.show-for-print {
    display: table-row-group !important;
  }
  tr.show-for-print {
    display: table-row !important;
  }
  td.show-for-print {
    display: table-cell !important;
  }
  th.show-for-print {
    display: table-cell !important;
  }
  a,
a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  .ir a:after,
a[href^="javascript:"]:after,
a[href^="#"]:after {
    content: "";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  pre,
blockquote {
    border: 1px solid #7f8c8d;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p,
h2,
h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
h3 {
    page-break-after: avoid;
  }
  .print-break-inside {
    page-break-inside: auto;
  }
}
[type=text], [type=password], [type=date], [type=datetime], [type=datetime-local], [type=month], [type=week], [type=email], [type=number], [type=search], [type=tel], [type=time], [type=url], [type=color],
textarea {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 2.2777777778rem;
  margin: 0 0 0.8888888889rem;
  padding: 0.4444444444rem;
  border: 1px solid #95a5a6;
  border-radius: 0;
  background-color: #ffffff;
  box-shadow: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 400;
  color: #303030;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  appearance: none;
}
[type=text]:focus, [type=password]:focus, [type=date]:focus, [type=datetime]:focus, [type=datetime-local]:focus, [type=month]:focus, [type=week]:focus, [type=email]:focus, [type=number]:focus, [type=search]:focus, [type=tel]:focus, [type=time]:focus, [type=url]:focus, [type=color]:focus,
textarea:focus {
  outline: none;
  border: 1px solid #7f8c8d;
  background-color: #ffffff;
  box-shadow: 0 0 5px #95a5a6;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}

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

input::placeholder,
textarea::placeholder {
  color: #95a5a6;
}
input:disabled, input[readonly],
textarea:disabled,
textarea[readonly] {
  background-color: #f4f4f4;
  cursor: not-allowed;
}

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

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

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

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

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

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

label {
  display: block;
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  color: #3498db;
}
label.middle {
  margin: 0 0 0.8888888889rem;
  padding: 0.5rem 0;
}

.help-text {
  margin-top: -0.4444444444rem;
  font-size: 0.6666666667rem;
  font-style: italic;
  color: #303030;
}

.input-group {
  display: table;
  width: 100%;
  margin-bottom: 0.8888888889rem;
}
.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 #95a5a6;
  background: #f4f4f4;
  color: #303030;
  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.3333333333rem;
}

.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.3333333333rem;
  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.4444444444rem;
}

.fieldset {
  margin: 1rem 0;
  padding: 1.1111111111rem;
  border: 1px solid #95a5a6;
}
.fieldset legend {
  margin: 0;
  margin-left: -0.1666666667rem;
  padding: 0 0.1666666667rem;
  background: #ffffff;
}

select {
  height: 2.2777777778rem;
  margin: 0 0 0.8888888889rem;
  padding: 0.4444444444rem;
  appearance: none;
  border: 1px solid #95a5a6;
  border-radius: 0;
  background-color: #ffffff;
  font-family: inherit;
  font-size: 1rem;
  line-height: normal;
  color: #303030;
  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%28127, 140, 141%29'></polygon></svg>");
  background-origin: content-box;
  background-position: right -0.8888888889rem center;
  background-repeat: no-repeat;
  background-size: 9px 6px;
  padding-right: 1.3333333333rem;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}
@media screen and (min-width: 0\0 ) {
  select {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg==");
  }
}
select:focus {
  outline: none;
  border: 1px solid #7f8c8d;
  background-color: #ffffff;
  box-shadow: 0 0 5px #95a5a6;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}
select:disabled {
  background-color: #f4f4f4;
  cursor: not-allowed;
}
select::-ms-expand {
  display: none;
}
select[multiple] {
  height: auto;
  background-image: none;
}

.is-invalid-input:not(:focus) {
  border-color: #3498db;
  background-color: #ebf5fb;
}
.is-invalid-input:not(:focus)::placeholder {
  color: #3498db;
}

.is-invalid-label {
  color: #3498db;
}

.form-error {
  display: none;
  margin-top: -0.4444444444rem;
  margin-bottom: 0.8888888889rem;
  font-size: 0.6666666667rem;
  font-weight: 700;
  color: #3498db;
}
.form-error.is-visible {
  display: block;
}

.button {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 1rem 0;
  font-family: inherit;
  padding: 0.7777777778rem 1.3888888889rem;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  font-size: 0.7777777778rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  border: 1px solid #3498db;
  color: #3498db;
}
[data-whatinput=mouse] .button {
  outline: 0;
}
.button, .button:hover, .button:focus {
  background-color: transparent;
}
.button.disabled, .button.disabled:hover, .button.disabled:focus, .button[disabled], .button[disabled]:hover, .button[disabled]:focus {
  background-color: transparent;
}
.button:hover, .button:focus {
  border-color: #144d73;
  color: #144d73;
}
.button:hover.disabled, .button:hover[disabled], .button:focus.disabled, .button:focus[disabled] {
  border: 1px solid #3498db;
  color: #3498db;
}
.button.tiny {
  font-size: 0.6rem;
}
.button.small {
  font-size: 0.75rem;
}
.button.large {
  font-size: 1rem;
}
.button.expanded {
  display: block;
  width: 100%;
  margin-right: 0;
  margin-left: 0;
}
.button.primary {
  border: 1px solid #3498db;
  color: #3498db;
}
.button.primary:hover, .button.primary:focus {
  border-color: #144d73;
  color: #144d73;
}
.button.primary:hover.disabled, .button.primary:hover[disabled], .button.primary:focus.disabled, .button.primary:focus[disabled] {
  border: 1px solid #3498db;
  color: #3498db;
}
.button.primary.dropdown::after {
  border-top-color: #3498db;
}
.button.secondary {
  border: 1px solid #767676;
  color: #767676;
}
.button.secondary:hover, .button.secondary:focus {
  border-color: #3b3b3b;
  color: #3b3b3b;
}
.button.secondary:hover.disabled, .button.secondary:hover[disabled], .button.secondary:focus.disabled, .button.secondary:focus[disabled] {
  border: 1px solid #767676;
  color: #767676;
}
.button.secondary.dropdown::after {
  border-top-color: #767676;
}
.button.success {
  border: 1px solid #00c5ad;
  color: #00c5ad;
}
.button.success:hover, .button.success:focus {
  border-color: #006357;
  color: #006357;
}
.button.success:hover.disabled, .button.success:hover[disabled], .button.success:focus.disabled, .button.success:focus[disabled] {
  border: 1px solid #00c5ad;
  color: #00c5ad;
}
.button.success.dropdown::after {
  border-top-color: #00c5ad;
}
.button.warning {
  border: 1px solid #ff8f2c;
  color: #ff8f2c;
}
.button.warning:hover, .button.warning:focus {
  border-color: #964600;
  color: #964600;
}
.button.warning:hover.disabled, .button.warning:hover[disabled], .button.warning:focus.disabled, .button.warning:focus[disabled] {
  border: 1px solid #ff8f2c;
  color: #ff8f2c;
}
.button.warning.dropdown::after {
  border-top-color: #ff8f2c;
}
.button.alert {
  border: 1px solid #3498db;
  color: #3498db;
}
.button.alert:hover, .button.alert:focus {
  border-color: #144d73;
  color: #144d73;
}
.button.alert:hover.disabled, .button.alert:hover[disabled], .button.alert:focus.disabled, .button.alert:focus[disabled] {
  border: 1px solid #3498db;
  color: #3498db;
}
.button.alert.dropdown::after {
  border-top-color: #3498db;
}
.button.disabled, .button[disabled] {
  opacity: 0.25;
  cursor: not-allowed;
}
.button.disabled, .button.disabled:hover, .button.disabled:focus, .button[disabled], .button[disabled]:hover, .button[disabled]:focus {
  background-color: #3498db;
  color: #ffffff;
}
.button.disabled.primary, .button[disabled].primary {
  opacity: 0.25;
  cursor: not-allowed;
}
.button.disabled.primary, .button.disabled.primary:hover, .button.disabled.primary:focus, .button[disabled].primary, .button[disabled].primary:hover, .button[disabled].primary:focus {
  background-color: #3498db;
  color: #303030;
}
.button.disabled.secondary, .button[disabled].secondary {
  opacity: 0.25;
  cursor: not-allowed;
}
.button.disabled.secondary, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
  background-color: #767676;
  color: #ffffff;
}
.button.disabled.success, .button[disabled].success {
  opacity: 0.25;
  cursor: not-allowed;
}
.button.disabled.success, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success, .button[disabled].success:hover, .button[disabled].success:focus {
  background-color: #00c5ad;
  color: #303030;
}
.button.disabled.warning, .button[disabled].warning {
  opacity: 0.25;
  cursor: not-allowed;
}
.button.disabled.warning, .button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning, .button[disabled].warning:hover, .button[disabled].warning:focus {
  background-color: #ff8f2c;
  color: #303030;
}
.button.disabled.alert, .button[disabled].alert {
  opacity: 0.25;
  cursor: not-allowed;
}
.button.disabled.alert, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert, .button[disabled].alert:hover, .button[disabled].alert:focus {
  background-color: #3498db;
  color: #303030;
}
.button.clear {
  border: 1px solid #3498db;
  color: #3498db;
}
.button.clear, .button.clear:hover, .button.clear:focus {
  background-color: transparent;
}
.button.clear.disabled, .button.clear.disabled:hover, .button.clear.disabled:focus, .button.clear[disabled], .button.clear[disabled]:hover, .button.clear[disabled]:focus {
  background-color: transparent;
}
.button.clear:hover, .button.clear:focus {
  border-color: #144d73;
  color: #144d73;
}
.button.clear:hover.disabled, .button.clear:hover[disabled], .button.clear:focus.disabled, .button.clear:focus[disabled] {
  border: 1px solid #3498db;
  color: #3498db;
}
.button.clear, .button.clear.disabled, .button.clear[disabled], .button.clear:hover, .button.clear:hover.disabled, .button.clear:hover[disabled], .button.clear:focus, .button.clear:focus.disabled, .button.clear:focus[disabled] {
  border-color: transparent;
}
.button.clear.primary {
  border: 1px solid #3498db;
  color: #3498db;
}
.button.clear.primary:hover, .button.clear.primary:focus {
  border-color: #144d73;
  color: #144d73;
}
.button.clear.primary:hover.disabled, .button.clear.primary:hover[disabled], .button.clear.primary:focus.disabled, .button.clear.primary:focus[disabled] {
  border: 1px solid #3498db;
  color: #3498db;
}
.button.clear.primary, .button.clear.primary.disabled, .button.clear.primary[disabled], .button.clear.primary:hover, .button.clear.primary:hover.disabled, .button.clear.primary:hover[disabled], .button.clear.primary:focus, .button.clear.primary:focus.disabled, .button.clear.primary:focus[disabled] {
  border-color: transparent;
}
.button.clear.secondary {
  border: 1px solid #767676;
  color: #767676;
}
.button.clear.secondary:hover, .button.clear.secondary:focus {
  border-color: #3b3b3b;
  color: #3b3b3b;
}
.button.clear.secondary:hover.disabled, .button.clear.secondary:hover[disabled], .button.clear.secondary:focus.disabled, .button.clear.secondary:focus[disabled] {
  border: 1px solid #767676;
  color: #767676;
}
.button.clear.secondary, .button.clear.secondary.disabled, .button.clear.secondary[disabled], .button.clear.secondary:hover, .button.clear.secondary:hover.disabled, .button.clear.secondary:hover[disabled], .button.clear.secondary:focus, .button.clear.secondary:focus.disabled, .button.clear.secondary:focus[disabled] {
  border-color: transparent;
}
.button.clear.success {
  border: 1px solid #00c5ad;
  color: #00c5ad;
}
.button.clear.success:hover, .button.clear.success:focus {
  border-color: #006357;
  color: #006357;
}
.button.clear.success:hover.disabled, .button.clear.success:hover[disabled], .button.clear.success:focus.disabled, .button.clear.success:focus[disabled] {
  border: 1px solid #00c5ad;
  color: #00c5ad;
}
.button.clear.success, .button.clear.success.disabled, .button.clear.success[disabled], .button.clear.success:hover, .button.clear.success:hover.disabled, .button.clear.success:hover[disabled], .button.clear.success:focus, .button.clear.success:focus.disabled, .button.clear.success:focus[disabled] {
  border-color: transparent;
}
.button.clear.warning {
  border: 1px solid #ff8f2c;
  color: #ff8f2c;
}
.button.clear.warning:hover, .button.clear.warning:focus {
  border-color: #964600;
  color: #964600;
}
.button.clear.warning:hover.disabled, .button.clear.warning:hover[disabled], .button.clear.warning:focus.disabled, .button.clear.warning:focus[disabled] {
  border: 1px solid #ff8f2c;
  color: #ff8f2c;
}
.button.clear.warning, .button.clear.warning.disabled, .button.clear.warning[disabled], .button.clear.warning:hover, .button.clear.warning:hover.disabled, .button.clear.warning:hover[disabled], .button.clear.warning:focus, .button.clear.warning:focus.disabled, .button.clear.warning:focus[disabled] {
  border-color: transparent;
}
.button.clear.alert {
  border: 1px solid #3498db;
  color: #3498db;
}
.button.clear.alert:hover, .button.clear.alert:focus {
  border-color: #144d73;
  color: #144d73;
}
.button.clear.alert:hover.disabled, .button.clear.alert:hover[disabled], .button.clear.alert:focus.disabled, .button.clear.alert:focus[disabled] {
  border: 1px solid #3498db;
  color: #3498db;
}
.button.clear.alert, .button.clear.alert.disabled, .button.clear.alert[disabled], .button.clear.alert:hover, .button.clear.alert:hover.disabled, .button.clear.alert:hover[disabled], .button.clear.alert:focus, .button.clear.alert:focus.disabled, .button.clear.alert:focus[disabled] {
  border-color: transparent;
}
.button.dropdown::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 0.4em;
  content: "";
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: #ffffff transparent transparent;
  position: relative;
  top: 0.4em;
  display: inline-block;
  float: right;
  margin-left: 1.3888888889rem;
}
.button.dropdown::after {
  border-top-color: #3498db;
}
.button.dropdown.hollow::after {
  border-top-color: #3498db;
}
.button.dropdown.hollow.primary::after {
  border-top-color: #3498db;
}
.button.dropdown.hollow.secondary::after {
  border-top-color: #767676;
}
.button.dropdown.hollow.success::after {
  border-top-color: #00c5ad;
}
.button.dropdown.hollow.warning::after {
  border-top-color: #ff8f2c;
}
.button.dropdown.hollow.alert::after {
  border-top-color: #3498db;
}
.button.arrow-only::after {
  top: -0.1em;
  float: none;
  margin-left: 0;
}

.accordion {
  margin-left: 0;
  background: #ffffff;
  list-style-type: none;
}
.accordion[disabled] .accordion-title {
  cursor: not-allowed;
}

.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: none;
  border-bottom: 0;
  font-size: 1.2222222222rem;
  line-height: 1;
  color: #ffffff;
}
:last-child:not(.is-active) > .accordion-title {
  border-bottom: none;
  border-radius: 0 0 0 0;
}
.accordion-title:hover, .accordion-title:focus {
  background-color: #95a5a6;
}
.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: none;
  border-bottom: 0;
  background-color: #ffffff;
  color: #303030;
}
:last-child > .accordion-content:last-child {
  border-bottom: none;
}

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

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

.badge {
  display: inline-block;
  min-width: 2.1em;
  padding: 0.3em;
  border-radius: 50%;
  font-size: 0.6rem;
  text-align: center;
  background: #3498db;
  color: #ffffff;
}
.badge.primary {
  background: #3498db;
  color: #303030;
}
.badge.secondary {
  background: #767676;
  color: #ffffff;
}
.badge.success {
  background: #00c5ad;
  color: #303030;
}
.badge.warning {
  background: #ff8f2c;
  color: #303030;
}
.badge.alert {
  background: #3498db;
  color: #303030;
}

.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.6111111111rem;
  color: #303030;
  cursor: default;
  text-transform: uppercase;
}
.breadcrumbs li:not(:last-child)::after {
  position: relative;
  top: 1px;
  margin: 0 0.75rem;
  opacity: 1;
  content: "/";
  color: #95a5a6;
}
.breadcrumbs a {
  color: #3498db;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.breadcrumbs .disabled {
  color: #95a5a6;
  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.7777777778rem;
}
.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: 1rem;
}
.button-group.expanded {
  margin-right: -1px;
}
.button-group.expanded::before, .button-group.expanded::after {
  display: none;
}
.button-group.expanded .button:first-child:last-child {
  width: 100%;
}
.button-group.expanded .button:first-child:nth-last-child(2), .button-group.expanded .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button {
  display: inline-block;
  width: calc(50% - 1px);
  margin-right: 1px;
}
.button-group.expanded .button:first-child:nth-last-child(2):last-child, .button-group.expanded .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button:last-child {
  margin-right: -6px;
}
.button-group.expanded .button:first-child:nth-last-child(3), .button-group.expanded .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button {
  display: inline-block;
  width: calc(33.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 {
  border: 1px solid #3498db;
  color: #3498db;
}
.button-group.primary .button, .button-group.primary .button:hover, .button-group.primary .button:focus {
  background-color: transparent;
}
.button-group.primary .button.disabled, .button-group.primary .button.disabled:hover, .button-group.primary .button.disabled:focus, .button-group.primary .button[disabled], .button-group.primary .button[disabled]:hover, .button-group.primary .button[disabled]:focus {
  background-color: transparent;
}
.button-group.primary .button:hover, .button-group.primary .button:focus {
  border-color: #144d73;
  color: #144d73;
}
.button-group.primary .button:hover.disabled, .button-group.primary .button:hover[disabled], .button-group.primary .button:focus.disabled, .button-group.primary .button:focus[disabled] {
  border: 1px solid #3498db;
  color: #3498db;
}
.button-group.secondary .button {
  border: 1px solid #767676;
  color: #767676;
}
.button-group.secondary .button, .button-group.secondary .button:hover, .button-group.secondary .button:focus {
  background-color: transparent;
}
.button-group.secondary .button.disabled, .button-group.secondary .button.disabled:hover, .button-group.secondary .button.disabled:focus, .button-group.secondary .button[disabled], .button-group.secondary .button[disabled]:hover, .button-group.secondary .button[disabled]:focus {
  background-color: transparent;
}
.button-group.secondary .button:hover, .button-group.secondary .button:focus {
  border-color: #3b3b3b;
  color: #3b3b3b;
}
.button-group.secondary .button:hover.disabled, .button-group.secondary .button:hover[disabled], .button-group.secondary .button:focus.disabled, .button-group.secondary .button:focus[disabled] {
  border: 1px solid #767676;
  color: #767676;
}
.button-group.success .button {
  border: 1px solid #00c5ad;
  color: #00c5ad;
}
.button-group.success .button, .button-group.success .button:hover, .button-group.success .button:focus {
  background-color: transparent;
}
.button-group.success .button.disabled, .button-group.success .button.disabled:hover, .button-group.success .button.disabled:focus, .button-group.success .button[disabled], .button-group.success .button[disabled]:hover, .button-group.success .button[disabled]:focus {
  background-color: transparent;
}
.button-group.success .button:hover, .button-group.success .button:focus {
  border-color: #006357;
  color: #006357;
}
.button-group.success .button:hover.disabled, .button-group.success .button:hover[disabled], .button-group.success .button:focus.disabled, .button-group.success .button:focus[disabled] {
  border: 1px solid #00c5ad;
  color: #00c5ad;
}
.button-group.warning .button {
  border: 1px solid #ff8f2c;
  color: #ff8f2c;
}
.button-group.warning .button, .button-group.warning .button:hover, .button-group.warning .button:focus {
  background-color: transparent;
}
.button-group.warning .button.disabled, .button-group.warning .button.disabled:hover, .button-group.warning .button.disabled:focus, .button-group.warning .button[disabled], .button-group.warning .button[disabled]:hover, .button-group.warning .button[disabled]:focus {
  background-color: transparent;
}
.button-group.warning .button:hover, .button-group.warning .button:focus {
  border-color: #964600;
  color: #964600;
}
.button-group.warning .button:hover.disabled, .button-group.warning .button:hover[disabled], .button-group.warning .button:focus.disabled, .button-group.warning .button:focus[disabled] {
  border: 1px solid #ff8f2c;
  color: #ff8f2c;
}
.button-group.alert .button {
  border: 1px solid #3498db;
  color: #3498db;
}
.button-group.alert .button, .button-group.alert .button:hover, .button-group.alert .button:focus {
  background-color: transparent;
}
.button-group.alert .button.disabled, .button-group.alert .button.disabled:hover, .button-group.alert .button.disabled:focus, .button-group.alert .button[disabled], .button-group.alert .button[disabled]:hover, .button-group.alert .button[disabled]:focus {
  background-color: transparent;
}
.button-group.alert .button:hover, .button-group.alert .button:focus {
  border-color: #144d73;
  color: #144d73;
}
.button-group.alert .button:hover.disabled, .button-group.alert .button:hover[disabled], .button-group.alert .button:focus.disabled, .button-group.alert .button:focus[disabled] {
  border: 1px solid #3498db;
  color: #3498db;
}
.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(48, 48, 48, 0.25);
  border-radius: 0;
  background-color: white;
  color: #303030;
}
.callout > :first-child {
  margin-top: 0;
}
.callout > :last-child {
  margin-bottom: 0;
}
.callout.primary {
  background-color: #e1f0fa;
  color: #303030;
}
.callout.secondary {
  background-color: #eaeaea;
  color: #303030;
}
.callout.success {
  background-color: #d0fff9;
  color: #303030;
}
.callout.warning {
  background-color: #ffeedf;
  color: #303030;
}
.callout.alert {
  background-color: #e1f0fa;
  color: #303030;
}
.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 #f4f4f4;
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
  overflow: hidden;
  color: #303030;
}
.card > :last-child {
  margin-bottom: 0;
}

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

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

.close-button {
  position: absolute;
  color: #7f8c8d;
  cursor: pointer;
}
[data-whatinput=mouse] .close-button {
  outline: 0;
}
.close-button:hover, .close-button:focus {
  color: #303030;
}
.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;
  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;
  }
}
@media screen and (min-width: 80em) {
  .menu.xlarge-horizontal > li {
    display: table-cell;
  }
  .menu.xlarge-expanded {
    display: table;
    width: 100%;
    table-layout: fixed;
  }
  .menu.xlarge-expanded > li:first-child:last-child {
    width: 100%;
  }
  .menu.xlarge-vertical > li {
    display: block;
  }
}
@media screen and (min-width: 90em) {
  .menu.xxlarge-horizontal > li {
    display: table-cell;
  }
  .menu.xxlarge-expanded {
    display: table;
    width: 100%;
    table-layout: fixed;
  }
  .menu.xxlarge-expanded > li:first-child:last-child {
    width: 100%;
  }
  .menu.xxlarge-vertical > li {
    display: block;
  }
}
.menu.simple li {
  display: inline-block;
  vertical-align: top;
  line-height: 1;
}
.menu.simple a {
  padding: 0;
}
.menu.simple li {
  margin-left: 0;
  margin-right: 0;
}
.menu.simple.align-right li {
  margin-right: 0;
  margin-left: 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: transparent;
  color: #ffffff;
}
.menu.menu-bordered li {
  border: 1px solid transparent;
}
.menu.menu-bordered li:not(:first-child) {
  border-top: 0;
}
.menu.menu-hover li:hover {
  background-color: #f4f4f4;
}

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

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

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

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

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

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

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

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

.is-drilldown-submenu-parent > a {
  position: relative;
}
.is-drilldown-submenu-parent > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent #3498db;
  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 #3498db 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 #95a5a6;
  border-radius: 0;
  background-color: #ffffff;
  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: #3498db 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 #3498db 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 #3498db;
}
@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: #3498db 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 #3498db 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 #3498db;
  }
}
@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: #3498db 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 #3498db 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 #3498db;
  }
}
@media screen and (min-width: 80em) {
  .dropdown.menu.xlarge-horizontal > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto;
  }
  .dropdown.menu.xlarge-horizontal > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0;
  }
  .dropdown.menu.xlarge-horizontal > li.is-dropdown-submenu-parent > a {
    position: relative;
    padding-right: 1.5rem;
  }
  .dropdown.menu.xlarge-horizontal > li.is-dropdown-submenu-parent > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #3498db transparent transparent;
    right: 5px;
    margin-top: -3px;
  }
  .dropdown.menu.xlarge-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.xlarge-vertical > li.opens-left > .is-dropdown-submenu {
    right: 100%;
    left: auto;
  }
  .dropdown.menu.xlarge-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
  .dropdown.menu.xlarge-vertical > li > a::after {
    right: 14px;
  }
  .dropdown.menu.xlarge-vertical > li.opens-left > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-left-width: 0;
    border-right-style: solid;
    border-color: transparent #3498db transparent transparent;
  }
  .dropdown.menu.xlarge-vertical > li.opens-right > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-right-width: 0;
    border-left-style: solid;
    border-color: transparent transparent transparent #3498db;
  }
}
@media screen and (min-width: 90em) {
  .dropdown.menu.xxlarge-horizontal > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto;
  }
  .dropdown.menu.xxlarge-horizontal > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0;
  }
  .dropdown.menu.xxlarge-horizontal > li.is-dropdown-submenu-parent > a {
    position: relative;
    padding-right: 1.5rem;
  }
  .dropdown.menu.xxlarge-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: #3498db transparent transparent;
    right: 5px;
    margin-top: -3px;
  }
  .dropdown.menu.xxlarge-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.xxlarge-vertical > li.opens-left > .is-dropdown-submenu {
    right: 100%;
    left: auto;
  }
  .dropdown.menu.xxlarge-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
  .dropdown.menu.xxlarge-vertical > li > a::after {
    right: 14px;
  }
  .dropdown.menu.xxlarge-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 #3498db transparent transparent;
  }
  .dropdown.menu.xxlarge-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 #3498db;
  }
}
.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 #95a5a6;
  background: #ffffff;
}
.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 #3498db 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 #3498db;
}
.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: 0.8888888889rem;
  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: #3498db;
  color: #ffffff;
}
.label.primary {
  background: #3498db;
  color: #303030;
}
.label.secondary {
  background: #767676;
  color: #ffffff;
}
.label.success {
  background: #00c5ad;
  color: #303030;
}
.label.warning {
  background: #ff8f2c;
  color: #303030;
}
.label.alert {
  background: #3498db;
  color: #303030;
}

.media-object {
  display: block;
  margin-bottom: 0;
}
.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%;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  background: rgba(255, 255, 255, 0.25);
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}
.js-off-canvas-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}
.js-off-canvas-overlay.is-closable {
  cursor: pointer;
}
.js-off-canvas-overlay.is-overlay-absolute {
  position: absolute;
}
.js-off-canvas-overlay.is-overlay-fixed {
  position: fixed;
}

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

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

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

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

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

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

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

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

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

.orbit-next, .orbit-previous {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  padding: 1rem;
  color: #ffffff;
}
[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: transparent;
}

.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: 12px;
  height: 12px;
  margin: 0.2rem;
  border-radius: 50%;
  background-color: #d7d7d7;
}
.orbit-bullets button:hover {
  background-color: #303030;
}
.orbit-bullets button.is-active {
  background-color: #303030;
}

.pagination {
  margin-left: 0;
  margin-bottom: 1rem;
}
.pagination::before, .pagination::after {
  display: table;
  content: " ";
}
.pagination::after {
  clear: both;
}
.pagination li {
  margin-right: 0.0555555556rem;
  border-radius: 0;
  font-size: 0.8888888889rem;
  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.1666666667rem 0.5555555556rem;
  border-radius: 0;
  color: #3498db;
}
.pagination a:hover,
.pagination button:hover {
  background: #f4f4f4;
}
.pagination .current {
  padding: 0.1666666667rem 0.5555555556rem;
  background: none;
  color: #303030;
  cursor: default;
}
.pagination .disabled {
  padding: 0.1666666667rem 0.5555555556rem;
  color: #95a5a6;
  cursor: not-allowed;
}
.pagination .disabled:hover {
  background: transparent;
}
.pagination .ellipsis::after {
  padding: 0.1666666667rem 0.5555555556rem;
  content: "…";
  color: #303030;
}

.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: #95a5a6;
}
.progress.primary .progress-meter {
  background-color: #3498db;
}
.progress.secondary .progress-meter {
  background-color: #767676;
}
.progress.success .progress-meter {
  background-color: #00c5ad;
}
.progress.warning .progress-meter {
  background-color: #ff8f2c;
}
.progress.alert .progress-meter {
  background-color: #3498db;
}

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

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

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

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

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

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

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

.sticky-container {
  position: relative;
}

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

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

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

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

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

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

.reveal {
  z-index: 1006;
  backface-visibility: hidden;
  display: none;
  padding: 1rem;
  border: 1px solid #95a5a6;
  border-radius: 0;
  background-color: #ffffff;
  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: 79.7777777778rem;
  }
}
@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: 79.7777777778rem;
  }
}
@media print, screen and (min-width: 40em) {
  .reveal.small {
    width: 50%;
    max-width: 79.7777777778rem;
  }
}
@media print, screen and (min-width: 40em) {
  .reveal.large {
    width: 90%;
    max-width: 79.7777777778rem;
  }
}
.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.7777777778rem;
  font-weight: bold;
  color: #ffffff;
  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: #95a5a6;
  transition: all 0.25s ease-out;
  font-weight: inherit;
  color: inherit;
  cursor: pointer;
}
input + .switch-paddle {
  margin: 0;
}
.switch-paddle::after {
  position: absolute;
  top: 0.25rem;
  left: 0.25rem;
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  transform: translate3d(0, 0, 0);
  border-radius: 0;
  background: #ffffff;
  transition: all 0.25s ease-out;
  content: "";
}
input:checked ~ .switch-paddle {
  background: #3498db;
}
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%;
  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.5555555556rem;
}
.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.6666666667rem;
}
.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: 0.8888888889rem;
}
.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 #f2f2f2;
  background-color: #ffffff;
}

caption {
  padding: 0.4444444444rem 0.5555555556rem 0.5555555556rem;
  font-weight: 700;
}

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

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

thead tr,
tfoot tr {
  background: transparent;
}
thead th,
thead td,
tfoot th,
tfoot td {
  padding: 0.4444444444rem 0.5555555556rem 0.5555555556rem;
  font-weight: 700;
  text-align: left;
}

tbody th,
tbody td {
  padding: 0.4444444444rem 0.5555555556rem 0.5555555556rem;
}

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

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

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

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

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

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

.tabs {
  margin: 0;
  border: 1px solid transparent;
  background: #f4f4f4;
  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: #3498db;
}
.tabs.primary > li > a {
  color: #303030;
}
.tabs.primary > li > a:hover, .tabs.primary > li > a:focus {
  background: #2892d9;
}

.tabs-title {
  float: left;
}
.tabs-title > a {
  display: block;
  padding: 0;
  font-size: 1.2222222222rem;
  line-height: 1;
  color: #565656;
}
.tabs-title > a:hover {
  background: #3498db;
  color: #4a4a4a;
}
.tabs-title > a:focus, .tabs-title > a[aria-selected=true] {
  background: #3498db;
  color: #ffffff;
}

.tabs-content {
  border: 1px solid transparent;
  border-top: 0;
  background: #ffffff;
  color: #303030;
  transition: all 0.5s ease;
}

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

.tabs-panel {
  display: none;
  padding: 0;
}
.tabs-panel.is-active {
  display: block;
}

.thumbnail {
  display: inline-block;
  max-width: 100%;
  margin-bottom: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  line-height: 0;
}

a.thumbnail {
  transition: box-shadow 200ms ease-out;
}
a.thumbnail:hover, a.thumbnail:focus {
  box-shadow: none;
}
a.thumbnail image {
  box-shadow: none;
}

.title-bar {
  padding: 0.5rem;
  background: #2c3840;
  color: #ffffff;
}
.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 #7f8c8d;
  font-weight: 700;
  cursor: help;
}

.tooltip {
  position: absolute;
  top: calc(100% + 0.6495rem);
  z-index: 1200;
  max-width: 10rem;
  padding: 0.75rem;
  border-radius: 0;
  background-color: #303030;
  font-size: 80%;
  color: #ffffff;
}
.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 #303030;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
}
.tooltip.top::before {
  display: block;
  width: 0;
  height: 0;
  border: inset 0.75rem;
  content: "";
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: #303030 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 #303030;
  top: 50%;
  bottom: auto;
  left: 100%;
  transform: translateY(-50%);
}
.tooltip.right::before {
  display: block;
  width: 0;
  height: 0;
  border: inset 0.75rem;
  content: "";
  border-left-width: 0;
  border-right-style: solid;
  border-color: transparent #303030 transparent transparent;
  top: 50%;
  right: 100%;
  bottom: auto;
  left: auto;
  transform: translateY(-50%);
}

.top-bar {
  padding: 0;
}
.top-bar::before, .top-bar::after {
  display: table;
  content: " ";
}
.top-bar::after {
  clear: both;
}
.top-bar,
.top-bar ul {
  background-color: transparent;
}
.top-bar input {
  max-width: 200px;
  margin-right: 1rem;
}
.top-bar .input-group-field {
  width: 100%;
  margin-right: 0;
}
.top-bar input.button {
  width: auto;
}
.top-bar .top-bar-left,
.top-bar .top-bar-right {
  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: 79.9375em) {
  .top-bar.stacked-for-large .top-bar-left,
.top-bar.stacked-for-large .top-bar-right {
    width: 100%;
  }
}
@media screen and (max-width: 89.9375em) {
  .top-bar.stacked-for-xlarge .top-bar-left,
.top-bar.stacked-for-xlarge .top-bar-right {
    width: 100%;
  }
}
.top-bar.stacked-for-xxlarge .top-bar-left,
.top-bar.stacked-for-xxlarge .top-bar-right {
  width: 100%;
}

.top-bar-title {
  display: inline-block;
  float: left;
  padding: 0.5rem 1rem 0.5rem 0;
}
.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: 79.9375em) {
  .hide-for-large-only {
    display: none !important;
  }
}

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

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

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

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

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

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

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

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

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

.show-for-sr,
.show-on-focus {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
  border: 0;
}

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

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

/*
  My custom styles:
  Add your scss files below to structure your project styles
*/
@media screen and (max-width: 63.9375em) {
  .desktop-menu, .top-bar-left {
    display: none !important;
  }
}

@media screen and (min-width: 80em) {
  #mobile-menu, .title-bar {
    display: none !important;
  }
}

.off-canvas > ul.menu {
  height: 100vh;
  padding: 1rem;
}
.off-canvas > ul.menu a {
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  opacity: 0.75;
}
.off-canvas > ul.menu .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: #ffffff transparent transparent;
  position: absolute;
  top: 50%;
  margin-top: -3px;
  right: 1rem;
}
.off-canvas .menu .active > a {
  background-color: #41525e;
}

.title-bar-title a {
  font-size: 1rem;
  color: #B9B9B9;
}

.top-bar {
  /*
  .menu li:not(:last-child) { border-right: 1px solid #4e4e4e; }
  */
}
.top-bar .menu li {
  vertical-align: middle;
}
.top-bar .menu li a {
  color: #ffffff;
  padding-top: 0;
  padding-bottom: 0;
  font-weight: 400;
  font-size: 0.7777777778rem;
  margin-left: 15px;
  margin-right: 15px;
  padding-left: 0;
  padding-right: 0;
  display: inline-block;
  line-height: 60px;
  position: relative;
  background-color: transparent !important;
}
.top-bar .menu li a:hover:not(.button) {
  background-color: #42525D;
}
.top-bar .menu li a:before {
  content: "";
  left: 0;
  right: 0;
  position: absolute;
  bottom: 10px;
  height: 3px;
  background-color: transparent;
  transition: all 150ms ease-out;
}
.top-bar .menu li a span {
  line-height: 1.3;
  display: inline-block;
}
.top-bar .menu li.is-active > a, .top-bar .menu li.is-active.active > a {
  background-color: transparent !important;
}
.top-bar .menu li.is-active > a:before, .top-bar .menu li.is-active.active > a:before {
  bottom: 0;
  background-color: #3498db;
}
.top-bar .menu li.is-active > .dropdown {
  padding-top: 10px;
  visibility: visible;
  opacity: 1;
  transition: all 150ms ease-out;
}
.top-bar .menu li:first-child a {
  margin-left: 0;
}
.top-bar .menu li:first-child .dropdown {
  margin-left: 0;
}
.top-bar .menu > li.is-active > a:hover:before, .top-bar .menu > li.is-active > a:focus:before, .top-bar .menu > li.is-active > a:active:before,
.top-bar .menu > li > a:hover:before,
.top-bar .menu > li > a:focus:before,
.top-bar .menu > li > a:active:before {
  bottom: 0;
  background-color: #3498db;
}
.top-bar .menu > li.current_page_parent > a:before {
  bottom: 0;
  background-color: #3498db;
}
.top-bar .menu .dropdown {
  top: auto;
  display: block;
  visibility: hidden;
  opacity: 0;
  padding-top: 20px;
  margin-left: 15px;
  transition: all 150ms ease-out;
}
.top-bar .menu .dropdown li.is-active > .dropdown {
  padding-top: 0px;
  padding-left: 5px;
  visibility: visible;
  opacity: 1;
  transition: all 150ms ease-out;
}
.top-bar .menu .dropdown .dropdown {
  margin-left: 0;
  padding-top: 0;
  top: 1px !important;
  padding-top: 0;
  padding-left: 10px;
  padding-right: 10px;
  visibility: hidden;
  transition: all 150ms ease-out;
}
.top-bar .menu .dropdown a {
  margin: 0;
}
.top-bar .menu .dropdown li {
  width: 310px;
  background: #ffffff;
}
.top-bar .menu .dropdown li:first-child {
  padding-top: 15px;
}
.top-bar .menu .dropdown li:last-child {
  padding-bottom: 15px;
}
.top-bar .menu .dropdown li a {
  padding: 10px 30px;
  color: #7f8c8d;
  text-transform: none;
  font-size: 0.8888888889rem;
  display: block;
  line-height: 24px;
}
.top-bar .menu .dropdown li a:hover, .top-bar .menu .dropdown li a:focus {
  color: #3498db;
}
.top-bar .menu .dropdown li a:before {
  display: none;
}
.top-bar .dropdown.menu.vertical > li.opens-right > a:after {
  border: none;
  font-family: FontAwesome;
  content: "\f105";
  top: 10px;
}
.top-bar .dropdown.menu > li.opens-right > .is-dropdown-submenu {
  top: 0;
}
.top-bar .dropdown.menu .submenu {
  border: 0;
}
.top-bar .dropdown.menu .has-submenu.is-down-arrow a {
  padding-right: 0;
}
.top-bar .dropdown.menu .has-submenu.is-down-arrow > a::after {
  border: 0;
}
.top-bar .dropdown.menu:first-child > li.is-dropdown-submenu-parent > a::after {
  display: none;
}
.top-bar .dropdown.menu > li.is-dropdown-submenu-parent > a {
  padding-right: 15px;
}
.top-bar .dropdown.menu > li.is-dropdown-submenu-parent > a {
  padding-right: 0;
}
.top-bar .top-bar-right a:before {
  display: none !important;
}
.top-bar .top-bar-right .menu li {
  padding-left: 1px;
}
.top-bar .top-bar-right .menu li span,
.top-bar .top-bar-right .menu li a {
  min-width: 46px;
  background: #3498db !important;
  display: inline-block;
  padding-left: 10px;
  padding-right: 10px;
  line-height: 60px;
  position: relative;
  text-align: center;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: 0;
  margin-right: 0;
  transition: all 250ms ease-out;
}
.top-bar .top-bar-right .menu li span:hover, .top-bar .top-bar-right .menu li span:focus, .top-bar .top-bar-right .menu li span:active,
.top-bar .top-bar-right .menu li a:hover,
.top-bar .top-bar-right .menu li a:focus,
.top-bar .top-bar-right .menu li a:active {
  background: #ffffff !important;
  color: #303030;
}
.top-bar .top-bar-right .menu li span i,
.top-bar .top-bar-right .menu li a i {
  font-size: 1rem;
  margin: 0;
}
.top-bar .top-bar-right .menu li.mecavenir-language-switch {
  font-weight: 700;
}
.top-bar .top-bar-right .menu li.mecavenir-language-switch a {
  background: #ffffff !important;
  color: #95a5a6;
}
.top-bar .top-bar-right .menu li.mecavenir-language-switch a:hover, .top-bar .top-bar-right .menu li.mecavenir-language-switch a:focus, .top-bar .top-bar-right .menu li.mecavenir-language-switch a:active {
  background: #303030 !important;
  color: #ffffff;
}
.top-bar .top-bar-right .menu li.mecavenir-language-switch span {
  font-size: 0.7777777778rem;
  background: #ffffff !important;
  color: #303030;
}

@media screen and (max-width: 79.9375em) {
  .top-bar .dropdown.menu.vertical li {
    width: 275px;
  }
  .top-bar .dropdown.menu.vertical li a {
    font-size: 0.7777777778rem;
  }
}
@media screen and (max-width: 79.9375em) {
  .top-bar .top-bar-left > ul > li > a {
    font-size: 0.7222222222rem;
    margin-left: 10px;
    margin-right: 10px;
  }
  .top-bar .top-bar-left .menu > li > .dropdown {
    margin-top: 60px;
    position: absolute;
  }
  .top-bar .top-bar-left .menu > li > .dropdown .dropdown {
    margin-top: 0;
  }
}
@media screen and (min-width: 80em) {
  .top-bar .top-bar-left {
    padding-left: 2%;
  }
}
@media screen and (min-width: 80em) {
  .top-bar .dropdown.menu > li.opens-right > .is-dropdown-submenu {
    top: auto;
  }
}
/* Prevent mobile menu FOUC */
.no-js {
  /*
  @include breakpoint(medium) {
    #mobile-menu{
      display: none;
    }
  }
  */
}
@media screen and (max-width: 79.9375em) {
  .no-js #mobile-menu {
    display: none;
  }
}
@media screen and (min-width: 80em) {
  .no-js #mobile-menu-trigger {
    display: none;
  }
}

#mobile-menu {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  min-height: 100vh;
  z-index: 100;
  text-align: center;
  padding: 10% 0;
}
#mobile-menu .menu > li.is-active > a:hover:before, #mobile-menu .menu > li.is-active > a:focus:before, #mobile-menu .menu > li.is-active > a:active:before,
#mobile-menu .menu > li > a:hover:before,
#mobile-menu .menu > li > a:focus:before,
#mobile-menu .menu > li > a:active:before {
  background-color: transparent;
}
#mobile-menu .menu > li.current_page_parent > a:before {
  background-color: transparent;
}
#mobile-menu .secondary-menu a {
  font-weight: 300;
}
#mobile-menu a {
  color: black;
  text-transform: none;
  display: block;
  color: #303030;
  font-weight: 700;
  line-height: 45px;
  border-bottom: solid 1px #7f8c8d;
  font-size: 0.7777777778rem;
  margin: 0 15%;
}
#mobile-menu .nested {
  margin: 0;
}
#mobile-menu .submenu {
  background: #e9f4fb;
  position: relative;
  top: -1px;
}
#mobile-menu .submenu:before, #mobile-menu .submenu:after {
  content: "";
  height: 1px;
  background: #e9f4fb;
  position: absolute;
  left: 0;
  right: 0;
}
#mobile-menu .submenu:after {
  bottom: 0;
}
#mobile-menu .submenu .current-menu-item a {
  color: #3498db !important;
  font-weight: 700 !important;
}
#mobile-menu .submenu .submenu a {
  border: none;
  line-height: 40px;
  font-weight: 300;
}
#mobile-menu .is-accordion-submenu-parent > a:after {
  border: none;
  font-family: FontAwesome;
  content: "\f107";
  margin: 0;
  right: 10px;
  top: 0;
}
#mobile-menu .is-accordion-submenu-parent[aria-expanded=true] > a:after {
  content: "\f106";
  transform: none;
}

.post-navigation:before,
.post-navigation:after {
  content: "";
  display: table;
}

.post-navigation:after {
  clear: both;
}

.nav-previous {
  float: left;
}

.nav-next {
  float: right;
}

#footer-container {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  border-top: 1px solid #ccc;
  margin-top: 3.3333333333rem;
}
#footer-container #footer {
  max-width: 79.7777777778rem;
  margin-right: auto;
  margin-left: auto;
  padding: 1.6666666667rem 0;
}
#footer-container #footer::before, #footer-container #footer::after {
  display: table;
  content: " ";
}
#footer-container #footer::after {
  clear: both;
}
#footer-container #footer ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.sidebar {
  width: 100%;
  float: left;
  padding-right: 1.1111111111rem;
  padding-left: 1.1111111111rem;
}
@media print, screen and (min-width: 40em) {
  .sidebar {
    padding-right: 1.1111111111rem;
    padding-left: 1.1111111111rem;
  }
}
@media print, screen and (min-width: 64em) {
  .sidebar {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
@media screen and (min-width: 80em) {
  .sidebar {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
@media screen and (min-width: 90em) {
  .sidebar {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
.sidebar:last-child:not(:first-child) {
  float: right;
}
@media print, screen and (min-width: 40em) {
  .sidebar {
    width: 33.3333333333%;
    float: left;
    padding-right: 1.1111111111rem;
    padding-left: 1.1111111111rem;
    margin-top: 1rem;
  }
}
@media print, screen and (min-width: 40em) and (min-width: 40em) {
  .sidebar {
    padding-right: 1.1111111111rem;
    padding-left: 1.1111111111rem;
  }
}
@media print, screen and (min-width: 40em) and (min-width: 64em) {
  .sidebar {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
@media screen and (min-width: 40em) and (min-width: 80em) {
  .sidebar {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
@media screen and (min-width: 40em) and (min-width: 90em) {
  .sidebar {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
@media print, screen and (min-width: 40em) {
  .sidebar:last-child:not(:first-child) {
    float: right;
  }
}

body#tinymce {
  height: auto;
  max-width: 79.7777777778rem;
  padding: 1.1111111111rem !important;
}

.sites-button {
  background: #FF6908;
  font-size: 1.25rem;
  font-weight: bold;
  box-shadow: 0 -2px 0 rgba(0, 0, 0, 0.2) inset;
  border-radius: 3px;
  border: none;
}

.flex-card-example {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media print, screen and (min-width: 40em) {
  .flex-card-example {
    flex-direction: row;
  }
}
.flex-card-example .card {
  width: 100%;
}
.flex-card-example .card img {
  width: 100%;
}
@media print, screen and (min-width: 40em) {
  .flex-card-example .card {
    width: 32%;
  }
}
.flex-card-example .card .card-content {
  padding: 1rem;
}

#featured-hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 5.5555555556rem;
}
@media print, screen and (min-width: 40em) {
  #featured-hero {
    height: 11.1111111111rem;
  }
}
@media screen and (min-width: 80em) {
  #featured-hero {
    height: 22.2222222222rem;
  }
}

.dotted, .section-divider hr {
  border-style: dashed;
  margin: 2rem 0;
}

[data-whatinput=mouse] a:focus, button:focus [data-whatinput=touch] a:focus,
button:focus {
  outline: none;
}

#front-hero {
  background: url("../images/demo/hero-bg-foundation-6-small.svg") bottom center;
  background-size: cover;
  background-position: bottom;
  padding: 3.6111111111rem 0;
  margin: 0 0 1.7777777778rem;
  height: auto;
  position: relative;
  text-align: left;
}
#front-hero .marketing {
  max-width: 79.7777777778rem;
  margin-right: auto;
  margin-left: auto;
  max-width: 55rem;
}
#front-hero .marketing::before, #front-hero .marketing::after {
  display: table;
  content: " ";
}
#front-hero .marketing::after {
  clear: both;
}
@media print, screen and (min-width: 40em) {
  #front-hero {
    background: url("../images/demo/hero-bg-foundation-6-large.svg") bottom center;
    background-size: cover;
    background-position: center;
    height: 38.0555555556rem;
    margin: 0 0 4rem;
  }
}
#front-hero #watch {
  width: 58.3333333333%;
  float: left;
  padding-right: 1.1111111111rem;
  padding-left: 1.1111111111rem;
  position: relative;
  left: -41.6666666667%;
}
@media print, screen and (min-width: 40em) {
  #front-hero #watch {
    padding-right: 1.1111111111rem;
    padding-left: 1.1111111111rem;
  }
}
@media print, screen and (min-width: 64em) {
  #front-hero #watch {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
@media screen and (min-width: 80em) {
  #front-hero #watch {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
@media screen and (min-width: 90em) {
  #front-hero #watch {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
#front-hero #watch:last-child:not(:first-child) {
  float: right;
}
@media print, screen and (min-width: 40em) {
  #front-hero #watch {
    width: 100%;
    float: left;
    padding-right: 1.1111111111rem;
    padding-left: 1.1111111111rem;
    position: relative;
    left: 0%;
  }
}
@media print, screen and (min-width: 40em) and (min-width: 40em) {
  #front-hero #watch {
    padding-right: 1.1111111111rem;
    padding-left: 1.1111111111rem;
  }
}
@media print, screen and (min-width: 40em) and (min-width: 64em) {
  #front-hero #watch {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
@media screen and (min-width: 40em) and (min-width: 80em) {
  #front-hero #watch {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
@media screen and (min-width: 40em) and (min-width: 90em) {
  #front-hero #watch {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
@media print, screen and (min-width: 40em) {
  #front-hero #watch:last-child:not(:first-child) {
    float: right;
  }
}
#front-hero #watch section {
  display: inline;
}
#front-hero #watch a {
  color: #B4C9D1;
  cursor: pointer;
  font-weight: 400;
  margin-right: 1.1111111111rem;
}
#front-hero #watch a:hover {
  color: #fff;
}
#front-hero #watch #stargazers :before {
  content: "\f09b";
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  color: #B4C9D1;
  margin-right: 0.4444444444rem;
}
#front-hero #watch #twitter :before {
  content: "\f099";
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  color: #B4C9D1;
  margin-right: 0.4444444444rem;
}
#front-hero .tagline {
  width: 66.6666666667%;
  float: left;
  padding-right: 1.1111111111rem;
  padding-left: 1.1111111111rem;
}
@media print, screen and (min-width: 40em) {
  #front-hero .tagline {
    padding-right: 1.1111111111rem;
    padding-left: 1.1111111111rem;
  }
}
@media print, screen and (min-width: 64em) {
  #front-hero .tagline {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
@media screen and (min-width: 80em) {
  #front-hero .tagline {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
@media screen and (min-width: 90em) {
  #front-hero .tagline {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
#front-hero .tagline:last-child:not(:first-child) {
  float: right;
}
@media print, screen and (min-width: 40em) {
  #front-hero .tagline {
    width: 41.6666666667%;
    float: left;
    padding-right: 1.1111111111rem;
    padding-left: 1.1111111111rem;
    padding-top: 6rem;
  }
}
@media print, screen and (min-width: 40em) and (min-width: 40em) {
  #front-hero .tagline {
    padding-right: 1.1111111111rem;
    padding-left: 1.1111111111rem;
  }
}
@media print, screen and (min-width: 40em) and (min-width: 64em) {
  #front-hero .tagline {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
@media screen and (min-width: 40em) and (min-width: 80em) {
  #front-hero .tagline {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
@media screen and (min-width: 40em) and (min-width: 90em) {
  #front-hero .tagline {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
@media print, screen and (min-width: 40em) {
  #front-hero .tagline:last-child:not(:first-child) {
    float: right;
  }
}
#front-hero h1 {
  color: #fff;
  font-weight: 500;
  font-size: 2.2rem;
}
@media print, screen and (min-width: 40em) {
  #front-hero h1 {
    font-size: 2.875rem;
  }
}
#front-hero h4 {
  color: #fefefe;
  font-weight: 300;
  font-size: 1.3125rem;
}
#front-hero .download {
  margin-top: 1.1111111111rem;
}

.intro {
  max-width: 79.7777777778rem;
  margin-right: auto;
  margin-left: auto;
}
.intro::before, .intro::after {
  display: table;
  content: " ";
}
.intro::after {
  clear: both;
}
.intro .fp-intro {
  width: 100%;
  float: left;
  padding-right: 1.1111111111rem;
  padding-left: 1.1111111111rem;
}
@media print, screen and (min-width: 40em) {
  .intro .fp-intro {
    padding-right: 1.1111111111rem;
    padding-left: 1.1111111111rem;
  }
}
@media print, screen and (min-width: 64em) {
  .intro .fp-intro {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
@media screen and (min-width: 80em) {
  .intro .fp-intro {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
@media screen and (min-width: 90em) {
  .intro .fp-intro {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
.intro .fp-intro:last-child:not(:first-child) {
  float: right;
}
@media print, screen and (min-width: 40em) {
  .intro .fp-intro {
    width: 83.3333333333%;
    float: left;
    padding-right: 1.1111111111rem;
    padding-left: 1.1111111111rem;
    margin-left: 8.3333333333%;
  }
}
@media print, screen and (min-width: 40em) and (min-width: 40em) {
  .intro .fp-intro {
    padding-right: 1.1111111111rem;
    padding-left: 1.1111111111rem;
  }
}
@media print, screen and (min-width: 40em) and (min-width: 64em) {
  .intro .fp-intro {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
@media screen and (min-width: 40em) and (min-width: 80em) {
  .intro .fp-intro {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
@media screen and (min-width: 40em) and (min-width: 90em) {
  .intro .fp-intro {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
@media print, screen and (min-width: 40em) {
  .intro .fp-intro:last-child:not(:first-child) {
    float: right;
  }
}
@media print, screen and (min-width: 40em) {
  .intro .fp-intro h2 {
    font-weight: 300;
    margin-bottom: 1.5rem;
  }
}
@media print, screen and (min-width: 40em) {
  .intro .fp-intro h4 {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #777;
    margin-bottom: 2rem;
  }
}

.section-divider {
  max-width: 79.7777777778rem;
  margin-right: auto;
  margin-left: auto;
}
.section-divider::before, .section-divider::after {
  display: table;
  content: " ";
}
.section-divider::after {
  clear: both;
}
.section-divider hr {
  width: 100%;
  float: left;
  padding-right: 1.1111111111rem;
  padding-left: 1.1111111111rem;
  box-sizing: border-box;
}
@media print, screen and (min-width: 40em) {
  .section-divider hr {
    padding-right: 1.1111111111rem;
    padding-left: 1.1111111111rem;
  }
}
@media print, screen and (min-width: 64em) {
  .section-divider hr {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
@media screen and (min-width: 80em) {
  .section-divider hr {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
@media screen and (min-width: 90em) {
  .section-divider hr {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
.section-divider hr:last-child:not(:first-child) {
  float: right;
}

.benefits {
  max-width: 79.7777777778rem;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.benefits::before, .benefits::after {
  display: table;
  content: " ";
}
.benefits::after {
  clear: both;
}
.benefits header {
  width: 100%;
  float: left;
  padding-right: 1.1111111111rem;
  padding-left: 1.1111111111rem;
}
@media print, screen and (min-width: 40em) {
  .benefits header {
    padding-right: 1.1111111111rem;
    padding-left: 1.1111111111rem;
  }
}
@media print, screen and (min-width: 64em) {
  .benefits header {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
@media screen and (min-width: 80em) {
  .benefits header {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
@media screen and (min-width: 90em) {
  .benefits header {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
.benefits header:last-child:not(:first-child) {
  float: right;
}
.benefits header h2 {
  font-weight: 300;
}
.benefits header h4 {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #777;
}
.benefits .semantic,
.benefits .responsive,
.benefits .customizable,
.benefits .professional {
  width: 100%;
  float: left;
  padding-right: 1.1111111111rem;
  padding-left: 1.1111111111rem;
}
@media print, screen and (min-width: 40em) {
  .benefits .semantic,
.benefits .responsive,
.benefits .customizable,
.benefits .professional {
    padding-right: 1.1111111111rem;
    padding-left: 1.1111111111rem;
  }
}
@media print, screen and (min-width: 64em) {
  .benefits .semantic,
.benefits .responsive,
.benefits .customizable,
.benefits .professional {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
@media screen and (min-width: 80em) {
  .benefits .semantic,
.benefits .responsive,
.benefits .customizable,
.benefits .professional {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
@media screen and (min-width: 90em) {
  .benefits .semantic,
.benefits .responsive,
.benefits .customizable,
.benefits .professional {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
.benefits .semantic:last-child:not(:first-child),
.benefits .responsive:last-child:not(:first-child),
.benefits .customizable:last-child:not(:first-child),
.benefits .professional:last-child:not(:first-child) {
  float: right;
}
@media print, screen and (min-width: 40em) {
  .benefits .semantic,
.benefits .responsive,
.benefits .customizable,
.benefits .professional {
    width: 25%;
    float: left;
    padding-right: 1.1111111111rem;
    padding-left: 1.1111111111rem;
  }
}
@media print, screen and (min-width: 40em) and (min-width: 40em) {
  .benefits .semantic,
.benefits .responsive,
.benefits .customizable,
.benefits .professional {
    padding-right: 1.1111111111rem;
    padding-left: 1.1111111111rem;
  }
}
@media print, screen and (min-width: 40em) and (min-width: 64em) {
  .benefits .semantic,
.benefits .responsive,
.benefits .customizable,
.benefits .professional {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
@media screen and (min-width: 40em) and (min-width: 80em) {
  .benefits .semantic,
.benefits .responsive,
.benefits .customizable,
.benefits .professional {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
@media screen and (min-width: 40em) and (min-width: 90em) {
  .benefits .semantic,
.benefits .responsive,
.benefits .customizable,
.benefits .professional {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
@media print, screen and (min-width: 40em) {
  .benefits .semantic:last-child:not(:first-child),
.benefits .responsive:last-child:not(:first-child),
.benefits .customizable:last-child:not(:first-child),
.benefits .professional:last-child:not(:first-child) {
    float: right;
  }
}
.benefits .semantic img,
.benefits .responsive img,
.benefits .customizable img,
.benefits .professional img {
  padding: 1.25rem;
  margin: 1rem auto 0 auto;
}
.benefits .semantic h3,
.benefits .responsive h3,
.benefits .customizable h3,
.benefits .professional h3 {
  color: #0a0a0a;
  font-weight: 300;
  font-size: 1.75rem;
}
.benefits .semantic p,
.benefits .responsive p,
.benefits .customizable p,
.benefits .professional p {
  font-size: 0.9375rem;
}
.benefits .why-foundation {
  max-width: 79.7777777778rem;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  float: left;
  padding-right: 1.1111111111rem;
  padding-left: 1.1111111111rem;
  margin-top: 4rem;
}
.benefits .why-foundation::before, .benefits .why-foundation::after {
  display: table;
  content: " ";
}
.benefits .why-foundation::after {
  clear: both;
}
@media print, screen and (min-width: 40em) {
  .benefits .why-foundation {
    padding-right: 1.1111111111rem;
    padding-left: 1.1111111111rem;
  }
}
@media print, screen and (min-width: 64em) {
  .benefits .why-foundation {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
@media screen and (min-width: 80em) {
  .benefits .why-foundation {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
@media screen and (min-width: 90em) {
  .benefits .why-foundation {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
.benefits .why-foundation:last-child:not(:first-child) {
  float: right;
}

#kitchen-sink {
  max-width: 79.7777777778rem;
  margin-right: auto;
  margin-left: auto;
  margin-top: 3rem;
}
#kitchen-sink::before, #kitchen-sink::after {
  display: table;
  content: " ";
}
#kitchen-sink::after {
  clear: both;
}
#kitchen-sink header {
  width: 100%;
  float: left;
  padding-right: 1.1111111111rem;
  padding-left: 1.1111111111rem;
}
@media print, screen and (min-width: 40em) {
  #kitchen-sink header {
    padding-right: 1.1111111111rem;
    padding-left: 1.1111111111rem;
  }
}
@media print, screen and (min-width: 64em) {
  #kitchen-sink header {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
@media screen and (min-width: 80em) {
  #kitchen-sink header {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
@media screen and (min-width: 90em) {
  #kitchen-sink header {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
#kitchen-sink header:last-child:not(:first-child) {
  float: right;
}
#kitchen-sink header .lead {
  font-size: 125%;
  line-height: 1.6;
}
#kitchen-sink #components {
  width: 100%;
  float: left;
  padding-right: 1.1111111111rem;
  padding-left: 1.1111111111rem;
}
#kitchen-sink #components hr {
  margin: 3rem 0;
}
@media print, screen and (min-width: 40em) {
  #kitchen-sink #components {
    padding-right: 1.1111111111rem;
    padding-left: 1.1111111111rem;
  }
}
@media print, screen and (min-width: 64em) {
  #kitchen-sink #components {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
@media screen and (min-width: 80em) {
  #kitchen-sink #components {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
@media screen and (min-width: 90em) {
  #kitchen-sink #components {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
#kitchen-sink #components:last-child:not(:first-child) {
  float: right;
}
@media print, screen and (min-width: 64em) {
  #kitchen-sink #components {
    width: 75%;
    float: left;
    padding-right: 1.1111111111rem;
    padding-left: 1.1111111111rem;
  }
}
@media print, screen and (min-width: 64em) and (min-width: 40em) {
  #kitchen-sink #components {
    padding-right: 1.1111111111rem;
    padding-left: 1.1111111111rem;
  }
}
@media print, screen and (min-width: 64em) and (min-width: 64em) {
  #kitchen-sink #components {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
@media screen and (min-width: 64em) and (min-width: 80em) {
  #kitchen-sink #components {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
@media screen and (min-width: 64em) and (min-width: 90em) {
  #kitchen-sink #components {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
@media print, screen and (min-width: 64em) {
  #kitchen-sink #components:last-child:not(:first-child) {
    float: right;
  }
}
#kitchen-sink #kitchen-sink-nav {
  display: none;
}
@media print, screen and (min-width: 64em) {
  #kitchen-sink #kitchen-sink-nav {
    width: 25%;
    float: left;
    padding-right: 1.1111111111rem;
    padding-left: 1.1111111111rem;
    display: block;
    float: right;
  }
}
@media print, screen and (min-width: 64em) and (min-width: 40em) {
  #kitchen-sink #kitchen-sink-nav {
    padding-right: 1.1111111111rem;
    padding-left: 1.1111111111rem;
  }
}
@media print, screen and (min-width: 64em) and (min-width: 64em) {
  #kitchen-sink #kitchen-sink-nav {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
@media screen and (min-width: 64em) and (min-width: 80em) {
  #kitchen-sink #kitchen-sink-nav {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
@media screen and (min-width: 64em) and (min-width: 90em) {
  #kitchen-sink #kitchen-sink-nav {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
@media print, screen and (min-width: 64em) {
  #kitchen-sink #kitchen-sink-nav:last-child:not(:first-child) {
    float: right;
  }
}
@media print, screen and (min-width: 64em) {
  #kitchen-sink #kitchen-sink-nav .docs-sub-menu {
    font-size: 0.85rem;
    margin-top: 1rem;
  }
}
@media print, screen and (min-width: 64em) {
  #kitchen-sink #kitchen-sink-nav .docs-menu-title {
    text-transform: uppercase;
    font-size: 0.75rem;
    color: #999;
    font-weight: bold;
    line-height: 1;
    padding-left: 0.9rem;
    margin-bottom: 0.5rem;
    border-top: 1px solid #e9e9e9;
    margin-top: 1rem;
    padding-top: 1.5rem;
  }
}
@media print, screen and (min-width: 64em) {
  #kitchen-sink #kitchen-sink-nav .docs-toc {
    width: 100%;
    padding-left: 4rem;
    padding-right: 1rem;
  }
}
@media print, screen and (min-width: 64em) {
  #kitchen-sink #kitchen-sink-nav .docs-toc .active {
    background: #2199e8;
    color: white;
  }
}
@media print, screen and (min-width: 64em) {
  #kitchen-sink #kitchen-sink-nav .docs-toc .docs-sub-menu:first-child .docs-menu-title {
    margin-top: 0;
    border-top: 0;
    padding-top: 0;
  }
}
#kitchen-sink .row.display {
  background: #eee;
  font-size: 11px;
  margin-bottom: 10px;
  line-height: 2rem;
  border: solid 1px #c6c6c6;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
#kitchen-sink .row.display .columns:nth-child(2), #kitchen-sink .row.display .columns.small-centered, #kitchen-sink .row.display .columns.large-centered {
  background: #e1e1e1;
}

#page {
  max-width: 79.7777777778rem;
  margin-right: auto;
  margin-left: auto;
  margin-top: 3rem;
}
#page::before, #page::after {
  display: table;
  content: " ";
}
#page::after {
  clear: both;
}
#page .main-content {
  width: 100%;
  float: left;
  padding-right: 1.1111111111rem;
  padding-left: 1.1111111111rem;
}
@media print, screen and (min-width: 40em) {
  #page .main-content {
    padding-right: 1.1111111111rem;
    padding-left: 1.1111111111rem;
  }
}
@media print, screen and (min-width: 64em) {
  #page .main-content {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
@media screen and (min-width: 80em) {
  #page .main-content {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
@media screen and (min-width: 90em) {
  #page .main-content {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
#page .main-content:last-child:not(:first-child) {
  float: right;
}
@media print, screen and (min-width: 40em) {
  #page .main-content {
    width: 66.6666666667%;
    float: left;
    padding-right: 1.1111111111rem;
    padding-left: 1.1111111111rem;
  }
}
@media print, screen and (min-width: 40em) and (min-width: 40em) {
  #page .main-content {
    padding-right: 1.1111111111rem;
    padding-left: 1.1111111111rem;
  }
}
@media print, screen and (min-width: 40em) and (min-width: 64em) {
  #page .main-content {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
@media screen and (min-width: 40em) and (min-width: 80em) {
  #page .main-content {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
@media screen and (min-width: 40em) and (min-width: 90em) {
  #page .main-content {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
@media print, screen and (min-width: 40em) {
  #page .main-content:last-child:not(:first-child) {
    float: right;
  }
}

#page-sidebar-left {
  max-width: 79.7777777778rem;
  margin-right: auto;
  margin-left: auto;
  margin-top: 3rem;
}
#page-sidebar-left::before, #page-sidebar-left::after {
  display: table;
  content: " ";
}
#page-sidebar-left::after {
  clear: both;
}
#page-sidebar-left .main-content {
  width: 100%;
  float: left;
  padding-right: 1.1111111111rem;
  padding-left: 1.1111111111rem;
}
@media print, screen and (min-width: 40em) {
  #page-sidebar-left .main-content {
    padding-right: 1.1111111111rem;
    padding-left: 1.1111111111rem;
  }
}
@media print, screen and (min-width: 64em) {
  #page-sidebar-left .main-content {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
@media screen and (min-width: 80em) {
  #page-sidebar-left .main-content {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
@media screen and (min-width: 90em) {
  #page-sidebar-left .main-content {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
#page-sidebar-left .main-content:last-child:not(:first-child) {
  float: right;
}
@media print, screen and (min-width: 40em) {
  #page-sidebar-left .main-content {
    width: 66.6666666667%;
    float: left;
    padding-right: 1.1111111111rem;
    padding-left: 1.1111111111rem;
    position: relative;
    left: 33.3333333333%;
  }
}
@media print, screen and (min-width: 40em) and (min-width: 40em) {
  #page-sidebar-left .main-content {
    padding-right: 1.1111111111rem;
    padding-left: 1.1111111111rem;
  }
}
@media print, screen and (min-width: 40em) and (min-width: 64em) {
  #page-sidebar-left .main-content {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
@media screen and (min-width: 40em) and (min-width: 80em) {
  #page-sidebar-left .main-content {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
@media screen and (min-width: 40em) and (min-width: 90em) {
  #page-sidebar-left .main-content {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
@media print, screen and (min-width: 40em) {
  #page-sidebar-left .main-content:last-child:not(:first-child) {
    float: right;
  }
}
#page-sidebar-left .sidebar {
  width: 100%;
  float: left;
  padding-right: 1.1111111111rem;
  padding-left: 1.1111111111rem;
}
@media print, screen and (min-width: 40em) {
  #page-sidebar-left .sidebar {
    padding-right: 1.1111111111rem;
    padding-left: 1.1111111111rem;
  }
}
@media print, screen and (min-width: 64em) {
  #page-sidebar-left .sidebar {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
@media screen and (min-width: 80em) {
  #page-sidebar-left .sidebar {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
@media screen and (min-width: 90em) {
  #page-sidebar-left .sidebar {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
#page-sidebar-left .sidebar:last-child:not(:first-child) {
  float: right;
}
@media print, screen and (min-width: 40em) {
  #page-sidebar-left .sidebar {
    width: 33.3333333333%;
    float: left;
    padding-right: 1.1111111111rem;
    padding-left: 1.1111111111rem;
    position: relative;
    left: -66.6666666667%;
    margin-top: 1rem;
  }
}
@media print, screen and (min-width: 40em) and (min-width: 40em) {
  #page-sidebar-left .sidebar {
    padding-right: 1.1111111111rem;
    padding-left: 1.1111111111rem;
  }
}
@media print, screen and (min-width: 40em) and (min-width: 64em) {
  #page-sidebar-left .sidebar {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
@media screen and (min-width: 40em) and (min-width: 80em) {
  #page-sidebar-left .sidebar {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
@media screen and (min-width: 40em) and (min-width: 90em) {
  #page-sidebar-left .sidebar {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
@media print, screen and (min-width: 40em) {
  #page-sidebar-left .sidebar:last-child:not(:first-child) {
    float: right;
  }
}

#page-full-width {
  max-width: 79.7777777778rem;
  margin-right: auto;
  margin-left: auto;
  margin-top: 3rem;
}
#page-full-width::before, #page-full-width::after {
  display: table;
  content: " ";
}
#page-full-width::after {
  clear: both;
}
#page-full-width .main-content {
  width: 100%;
  float: left;
  padding-right: 1.1111111111rem;
  padding-left: 1.1111111111rem;
}
@media print, screen and (min-width: 40em) {
  #page-full-width .main-content {
    padding-right: 1.1111111111rem;
    padding-left: 1.1111111111rem;
  }
}
@media print, screen and (min-width: 64em) {
  #page-full-width .main-content {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
@media screen and (min-width: 80em) {
  #page-full-width .main-content {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
@media screen and (min-width: 90em) {
  #page-full-width .main-content {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
#page-full-width .main-content:last-child:not(:first-child) {
  float: right;
}

#single-post {
  max-width: 79.7777777778rem;
  margin-right: auto;
  margin-left: auto;
  margin-top: 3rem;
}
#single-post::before, #single-post::after {
  display: table;
  content: " ";
}
#single-post::after {
  clear: both;
}
#single-post .main-content {
  width: 100%;
  float: left;
  padding-right: 1.1111111111rem;
  padding-left: 1.1111111111rem;
}
@media print, screen and (min-width: 40em) {
  #single-post .main-content {
    padding-right: 1.1111111111rem;
    padding-left: 1.1111111111rem;
  }
}
@media print, screen and (min-width: 64em) {
  #single-post .main-content {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
@media screen and (min-width: 80em) {
  #single-post .main-content {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
@media screen and (min-width: 90em) {
  #single-post .main-content {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
#single-post .main-content:last-child:not(:first-child) {
  float: right;
}
@media print, screen and (min-width: 40em) {
  #single-post .main-content {
    width: 66.6666666667%;
    float: left;
    padding-right: 1.1111111111rem;
    padding-left: 1.1111111111rem;
  }
}
@media print, screen and (min-width: 40em) and (min-width: 40em) {
  #single-post .main-content {
    padding-right: 1.1111111111rem;
    padding-left: 1.1111111111rem;
  }
}
@media print, screen and (min-width: 40em) and (min-width: 64em) {
  #single-post .main-content {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
@media screen and (min-width: 40em) and (min-width: 80em) {
  #single-post .main-content {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
@media screen and (min-width: 40em) and (min-width: 90em) {
  #single-post .main-content {
    padding-right: 0.5555555556rem;
    padding-left: 0.5555555556rem;
  }
}
@media print, screen and (min-width: 40em) {
  #single-post .main-content:last-child:not(:first-child) {
    float: right;
  }
}

/* responsive typography size */
@media screen and (max-width: 39.9375em) {
  p,
li {
    font-size: 0.7777777778rem;
  }
  .lead {
    font-size: 0.8888888889rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .lead {
    font-size: 1.1111111111rem;
  }
  p,
li {
    font-size: 0.8888888889rem;
  }
}
/* Helpers*/
.bg-image-cover {
  background-size: cover;
  background-position: center center;
  /*
  background-size: cover;
  background-position: center center;
  */
}

.bg-video-cover {
  padding-left: 0;
  padding-right: 0;
}

.pr0 {
  padding-right: 0;
}

.vertical-center {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

/* headings */
h1 span {
  display: block;
}

/* typography */
.main-content ul {
  margin-left: 1rem;
  margin-bottom: 1rem;
}

/* forms */
/* remove select browser default dropdown arrow */
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: "";
}

#mecavenir-contact .mecavenir-formulaire {
  padding-top: 3.3333333333rem;
}
@media screen and (max-width: 39.9375em) {
  #mecavenir-contact .mecavenir-formulaire {
    padding-top: 2.2222222222rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  #mecavenir-contact .mecavenir-formulaire {
    padding-top: 2.7777777778rem;
  }
}
#mecavenir-contact #campus-location.columns-no-padding > .columns {
  padding-left: 0;
  padding-right: 0;
}
#mecavenir-contact #campus-location .campus-location-detail {
  padding: 0;
}
#mecavenir-contact #campus-location .accordion li .accordion-title {
  background: #3498db;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.8888888889rem;
  padding-right: 50px;
}
#mecavenir-contact #campus-location .accordion .accordion-title::before {
  font-family: FontAwesome;
  content: "\f107";
  margin-top: 0;
  transform: translateY(-50%);
  font-size: 1.3888888889rem;
}
#mecavenir-contact #campus-location .accordion .is-active > .accordion-title::before {
  font-family: FontAwesome;
  content: "\f106";
}

.nf-form-content .nf-error-msg {
  font-size: 0.6666666667rem;
}
.nf-form-content .nf-field-label label {
  font-weight: 400;
}
.nf-form-content .listradio-wrap .nf-field-element label {
  color: #303030;
}
.nf-form-content .listradio-wrap .nf-field-element ul li {
  float: left;
  margin-right: 20px !important;
}
.nf-form-content .listradio-wrap .nf-field-element ul li:last-child {
  margin-right: 0;
}
.nf-form-content .submit-container {
  padding-top: 3.8888888889rem;
  padding-bottom: 3.8888888889rem;
  margin: 0;
  margin-top: 3.3333333333rem;
  background: #f4c55f;
}
@media screen and (max-width: 39.9375em) {
  .nf-form-content .submit-container {
    padding-top: 2.5925925926rem;
    padding-bottom: 2.5925925926rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .nf-form-content .submit-container {
    padding-top: 3.2407407407rem;
    padding-bottom: 3.2407407407rem;
  }
}
@media screen and (max-width: 39.9375em) {
  .nf-form-content .submit-container {
    margin-top: 2.2222222222rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .nf-form-content .submit-container {
    margin-top: 2.7777777778rem;
  }
}
.nf-form-content .submit-container .button {
  text-transform: none;
  width: 100%;
  padding-top: 2.2222222222rem;
  padding-bottom: 2.2222222222rem;
  font-size: 1rem;
}
@media screen and (max-width: 39.9375em) {
  .nf-form-content .submit-container .button {
    padding-top: 1.4814814815rem;
    padding-bottom: 1.4814814815rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .nf-form-content .submit-container .button {
    padding-top: 1.8518518519rem;
    padding-bottom: 1.8518518519rem;
  }
}
.nf-form-content .submit-container .button:hover, .nf-form-content .submit-container .button:focus {
  color: #f4c55f;
}

.nf-form-fields-required {
  font-size: 87%;
  margin-bottom: 20px;
}

@media screen and (max-width: 39.9375em) {
  [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],
select,
textarea {
    font-size: 0.8888888889rem;
  }
  label {
    font-size: 0.8888888889rem;
  }
}
/* blockquote */
blockquote {
  margin: 0;
  padding: 0;
  border: none;
  color: inherit;
  font-style: italic;
}
blockquote:before {
  font-family: FontAwesome;
  content: "\f10d";
  padding-right: 12px;
  display: table-cell;
  vertical-align: top;
}
blockquote:after {
  font-family: FontAwesome;
  content: "\f10e";
  padding-left: 12px;
  display: table-cell;
  vertical-align: bottom;
}
blockquote p {
  color: inherit;
  display: table-cell;
  text-align: justify;
}

/* button */
.button {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.51px;
}
.button:hover, .button:focus, .button:active {
  background-color: #3498db;
  border-color: #3498db;
  color: #ffffff;
}
.button.large {
  padding-top: 40px;
  padding-bottom: 40px;
}
.button.large i {
  font-size: 40px;
  vertical-align: middle;
  top: -4px;
  position: relative;
  margin-right: 20px;
}

.telechargement-wrapper .button.large {
  padding-top: 28px;
  padding-bottom: 28px;
}

@media screen and (max-width: 39.9375em) {
  .button {
    font-size: 0.7222222222rem;
  }
  .button.large {
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 0.7222222222rem;
  }
  .button.large i {
    font-size: 24px;
  }
  .telechargement-wrapper .button.large {
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 0.8333333333rem;
  }
  .telechargement-wrapper .button.large i {
    font-size: 1.3888888889rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .button {
    font-size: 0.8888888889rem;
  }
  .button.large {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .telechargement-wrapper .button.large {
    padding-top: 22px;
    padding-bottom: 22px;
    font-size: 0.8888888889rem;
  }
  .telechargement-wrapper .button.large i {
    font-size: 1.6666666667rem;
  }
}
/* list with arrow */
.main-content ul.list-arrow,
ul.list-arrow {
  list-style: none;
}
.main-content ul.list-arrow a,
ul.list-arrow a {
  display: table;
  width: 100%;
  color: #303030;
}
.main-content ul.list-arrow a span,
ul.list-arrow a span {
  display: table-cell !important;
  vertical-align: middle !important;
}
.main-content ul.list-arrow a .mecavenir-icon,
ul.list-arrow a .mecavenir-icon {
  width: 20px;
  color: #3498db;
  font-size: 125%;
  padding-left: 20px;
}
.main-content ul.list-arrow a:hover, .main-content ul.list-arrow a:focus, .main-content ul.list-arrow a:active,
ul.list-arrow a:hover,
ul.list-arrow a:focus,
ul.list-arrow a:active {
  color: #3498db;
}

/* labels */
.section-label {
  color: #303030;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0;
}

.section-label-secondary {
  color: #7f8c8d;
  font-size: 1.6666666667rem;
  margin-bottom: 2.2222222222rem;
  margin-top: 0.5555555556rem;
}
@media screen and (max-width: 39.9375em) {
  .section-label-secondary {
    margin-bottom: 1.4814814815rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .section-label-secondary {
    margin-bottom: 1.8518518519rem;
  }
}
@media screen and (max-width: 39.9375em) {
  .section-label-secondary {
    margin-top: 0.3703703704rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .section-label-secondary {
    margin-top: 0.462962963rem;
  }
}

@media screen and (max-width: 39.9375em) {
  .section-label {
    font-size: 0.8888888889rem;
  }
  .section-label-secondary {
    margin-top: -30px;
    font-size: 0.8888888889rem;
  }
  .carousel-temoignage .section-label-secondary {
    margin-top: 0;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .section-label {
    font-size: 0.8888888889rem;
  }
  .section-label-secondary {
    margin-top: -20px;
    font-size: 1rem;
  }
  .carousel-temoignage .section-label-secondary {
    margin-top: 0;
  }
}
/* masthead */
#masthead {
  font-size: 0.8888888889rem;
  z-index: 10;
  position: relative;
}
#masthead .logos {
  background: linear-gradient(0deg, #e7e7e7, #ffffff);
  padding-top: 34px;
  padding-bottom: 26px;
}
#masthead .logos .main-logo {
  margin-top: -20px;
}
#masthead .logos .secondary-logo {
  margin-top: 8px;
}
#masthead .main-menu {
  background: rgba(0, 0, 0, 0.5);
}
#masthead .top-bar-left,
#masthead .top-bar-right {
  height: 60px;
}
@media screen and (max-width: 79.9375em) {
  #masthead .top-bar-left {
    float: none;
    text-align: center;
  }
  #masthead .top-bar-left .menu {
    display: inline-block;
    text-align: left;
  }
  #masthead .top-bar-right {
    display: none;
  }
  #masthead .logos {
    padding-top: 15px;
    padding-bottom: 10px;
  }
  #masthead .top-bar-block1 {
    width: 70px;
    display: table-cell;
    vertical-align: top;
    padding-top: 10px;
  }
  #masthead .top-bar-block2 {
    width: calc(100vw - 70px);
    float: none !important;
    display: table-cell;
  }
  #masthead .top-bar-block2 a {
    display: block;
    text-align: right;
  }
  #masthead .top-bar-block2 a span {
    display: inline-block;
    max-width: 38%;
  }
  #masthead .top-bar-block3 {
    width: 100%;
    display: table;
    margin-top: 10px;
  }
  #masthead .top-bar-block3 span {
    display: table-cell;
    width: calc(100vw - 70px);
    text-align: left;
    font-size: 0.6666666667rem;
    vertical-align: middle;
  }
  #masthead .top-bar-block3 img {
    display: table-cell;
    width: 60px;
    max-width: 60px;
    padding-left: 20px;
    right: 0;
    text-align: right;
    vertical-align: middle;
  }
}
@media print, screen and (min-width: 40em) {
  #masthead .top-bar-block2 a {
    display: block;
    text-align: center;
  }
  #masthead .top-bar-block2 a span {
    display: inline-block;
    max-width: 38%;
  }
  #masthead .top-bar-block3 {
    text-align: center;
  }
  #masthead .top-bar-block3 span {
    font-size: 0.7777777778rem;
    display: inline;
  }
  #masthead .top-bar-block3 img {
    display: inline;
  }
}
#masthead .menu-icon {
  width: 25px;
  z-index: 200;
}
#masthead .menu-icon:after {
  /*
  height: 3px;
  background: $dark-gray;
  box-shadow: 0 7px 0 $dark-gray, 0 14px 0 $dark-gray;
  */
  height: 0;
  background: none;
  box-shadow: none;
}

/* mobile menu trigger animation */
#mobile-menu-trigger {
  width: 60px;
  height: 45px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

#mobile-menu-trigger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #7f8c8d;
  border-radius: 2px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

#mobile-menu-trigger span:nth-child(1) {
  top: 0px;
}

#mobile-menu-trigger span:nth-child(2), #mobile-menu-trigger span:nth-child(3) {
  top: 8px;
}

#mobile-menu-trigger span:nth-child(4) {
  top: 17px;
}

#mobile-menu-trigger.expanded span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}

#mobile-menu-trigger.expanded span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#mobile-menu-trigger.expanded span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#mobile-menu-trigger.expanded span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

/* main content header */
.main-content-section {
  margin-top: -60px;
  position: relative;
}

.main-content-header {
  min-height: 16.6666666667rem;
  height: auto;
  position: relative;
  padding-top: 5.8333333333rem;
  padding-bottom: 2.5rem;
  background: #3498db; /* Old browsers */
  background: -moz-linear-gradient(top, #0097af, #3498db 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #0097af 0%, #3498db 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #0097af 0%, #3498db 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.main-content-header .lead {
  margin-top: 1.2777777778rem;
}
.main-content-header.main-content-header-default .main-content-header-bg:before, .main-content-header.main-content-header-default .main-content-header-bg:after {
  display: none !important;
}
.main-content-header .main-content-header-bg {
  z-index: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-size: cover;
  background-position: center center;
}
.main-content-header .main-content-header-bg:before {
  z-index: 1;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  /*
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  */
  background-color: #000000;
  content: "";
  opacity: 0.5;
}
.main-content-header .main-content-header-bg:after {
  z-index: 2;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  /*
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  */
  content: "";
  background: #3498db; /* Old browsers */
  background: -moz-linear-gradient(top, #0097af, #3498db 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #0097af 0%, #3498db 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #0097af 0%, #3498db 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  -webkit-transition: opacity 0.8s ease-in-out;
  -moz-transition: opacity 0.8s ease-in-out;
  -ms-transition: opacity 0.8s ease-in-out;
  -o-transition: opacity 0.8s ease-in-out;
  opacity: 1;
}
.main-content-header,
.main-content-header p,
.main-content-header h1,
.main-content-header li,
.main-content-header a {
  color: #ffffff;
}
.main-content-header.media-loaded,
.main-content-header.media-loaded p,
.main-content-header.media-loaded h1,
.main-content-header.media-loaded li,
.main-content-header.media-loaded a {
  color: #ffffff;
}
.main-content-header.media-loaded .main-content-header-bg:after {
  opacity: 0;
}
.main-content-header .row {
  position: relative;
}

.single-post .main-content-header {
  min-height: 0;
}

/* Temoignage carousel */
.carousel-temoignage {
  padding-top: 3.3333333333rem;
}
@media screen and (max-width: 39.9375em) {
  .carousel-temoignage {
    padding-top: 2.2222222222rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .carousel-temoignage {
    padding-top: 2.7777777778rem;
  }
}
.carousel-temoignage .orbit-slide {
  background-size: cover;
  background-position: center center;
}
.carousel-temoignage .section-label-secondary {
  margin-bottom: 0;
}

/* Page */
.acces-directs .acces-direct {
  list-style: none;
}
.acces-directs .acces-direct a {
  display: table;
  width: 100%;
}
.acces-directs .acces-direct a > span,
.acces-directs .acces-direct a i {
  display: table-cell;
  vertical-align: middle;
}
.acces-directs .acces-direct a i {
  width: 20px;
}

/* breadcrumb */
.main-content .mecavenir-breadcrumb {
  margin-left: 0;
  margin-bottom: 0;
  font-weight: 700;
  margin-top: 2.6666666667rem;
}
.main-content .mecavenir-breadcrumb.menu > li {
  vertical-align: top;
}
.main-content .mecavenir-breadcrumb.menu > li > a,
.main-content .mecavenir-breadcrumb.menu > li > i {
  display: inline-block;
}
.main-content .mecavenir-breadcrumb.menu > li > i {
  padding-left: 10px;
  padding-right: 10px;
}
.main-content .mecavenir-breadcrumb.menu > li > a {
  font-weight: 400;
  padding: 0;
}
.main-content .mecavenir-breadcrumb.menu > li > a:after {
  font-family: FontAwesome;
  content: "\f105";
  padding: 0 10px;
}

/* formation tabs */
#formation-tabs {
  border: none;
  display: table;
  width: 100%;
  margin: 0;
  /* one item */
  /* two items */
  /* three items */
  /* four items */
}
#formation-tabs .tabs-title {
  float: none;
  display: table-cell;
  font-weight: 400;
}
#formation-tabs .tabs-title a {
  height: 60px;
  line-height: 60px;
  transition: all 250ms ease-out;
}
#formation-tabs .tabs-title a:hover, #formation-tabs .tabs-title a:focus {
  color: #ffffff;
  background: #3498db;
}
#formation-tabs li:first-child:nth-last-child(1) {
  width: 100%;
}
#formation-tabs li:first-child:nth-last-child(2),
#formation-tabs li:first-child:nth-last-child(2) ~ li {
  width: 50%;
}
#formation-tabs li:first-child:nth-last-child(3),
#formation-tabs li:first-child:nth-last-child(3) ~ li {
  width: 33.3333%;
}
#formation-tabs li:first-child:nth-last-child(4),
#formation-tabs li:first-child:nth-last-child(4) ~ li {
  width: 25%;
}

#formation-tabs-content {
  margin-top: 3.3333333333rem;
}
#formation-tabs-content.tabs-content {
  border: none;
}
@media screen and (max-width: 39.9375em) {
  #formation-tabs-content {
    margin-top: 2.2222222222rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  #formation-tabs-content {
    margin-top: 2.7777777778rem;
  }
}
#formation-tabs-content .text-wrapper {
  margin-top: 3.3333333333rem;
  margin-bottom: 3.3333333333rem;
}
@media screen and (max-width: 39.9375em) {
  #formation-tabs-content .text-wrapper {
    margin-top: 2.2222222222rem;
    margin-bottom: 2.2222222222rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  #formation-tabs-content .text-wrapper {
    margin-top: 2.7777777778rem;
    margin-bottom: 2.7777777778rem;
  }
}

.formation-metadata {
  font-size: 0.8888888889rem;
}
.formation-metadata .formation-metadata-title,
.formation-metadata .formation-metadata-title a {
  font-weight: 700;
  color: #303030;
}
.formation-metadata a:hover,
.formation-metadata a:focus,
.formation-metadata a:active {
  color: #3498db;
}
.formation-metadata .thumbnail {
  box-shadow: none;
}
.formation-metadata .formation-location {
  margin-bottom: 16px;
}
.formation-metadata .formation-location:last-child {
  margin-bottom: 0;
}
.formation-metadata .formation-location p {
  margin-bottom: 0;
}
.formation-metadata .campus-lien {
  font-weight: 700;
  display: block;
}
.formation-metadata .campus-lien:before {
  font-family: FontAwesome;
  content: "\f105";
  padding: 0 10px 0 0;
  float: left;
}
.formation-metadata .formation-metadata-block:first-child {
  border-right: solid 1px #565656;
}

@media print, screen and (min-width: 40em) {
  #formation-tabs {
    background: #f4f4f4 !important;
  }
  #formation-tabs li.tabs-title a {
    font-size: 1rem;
  }
}
@media screen and (max-width: 63.9375em) {
  .formation-metadata .media-object-section,
.formation-metadata .thumbnail {
    display: block;
    text-align: center;
  }
}
@media screen and (max-width: 39.9375em) {
  #formation-tabs {
    display: block;
  }
  #formation-tabs li.tabs-title {
    width: 100% !important;
    display: block;
    position: relative;
    background: none;
  }
  #formation-tabs li.tabs-title a {
    background: none !important;
    color: #ffffff !important;
    position: relative;
    border-bottom: solid 1px #ffffff;
    font-size: 0.8888888889rem;
  }
  #formation-tabs li.tabs-title.is-active:before {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    content: "";
    background: rgba(0, 0, 0, 0.2);
  }
  #formation-tabs li.tabs-title.is-active a {
    font-weight: 700;
  }
  .formation-metadata {
    font-size: 0.7777777778rem;
  }
  .formation-metadata.formation-metadata-stacked {
    padding-top: 0;
    padding-bottom: 0;
  }
  .formation-metadata .formation-metadata-block {
    padding-top: 3.3333333333rem;
    padding-bottom: 3.3333333333rem;
  }
}
@media screen and (max-width: 39.9375em) and (max-width: 39.9375em) {
  .formation-metadata .formation-metadata-block {
    padding-top: 2.2222222222rem;
    padding-bottom: 2.2222222222rem;
  }
}
@media screen and (max-width: 39.9375em) and (min-width: 40em) and (max-width: 63.9375em) {
  .formation-metadata .formation-metadata-block {
    padding-top: 2.7777777778rem;
    padding-bottom: 2.7777777778rem;
  }
}
@media screen and (max-width: 39.9375em) {
  .formation-metadata .formation-metadata-block.formation-metadata-block-partenaire {
    background: #f4f4f4;
  }
  .formation-metadata .formation-metadata-block.formation-metadata-block-partenaire img {
    padding-bottom: 20px;
    max-width: 110px;
  }
}
.metadata-label {
  font-weight: 400;
  font-size: 0.8888888889rem;
  color: #3498db;
  margin-bottom: 16px;
}

@media screen and (max-width: 39.9375em) {
  .metadata-label {
    font-size: 0.7777777778rem;
  }
}
/* in case of colored background */
.has-bg-color h2,
.has-bg-color p,
.has-bg-color .button, .has-bg-color.bloc-contenu-wrapper .bloc-contenu-texte h2,
.has-bg-color.bloc-contenu-wrapper .bloc-contenu-texte p,
.has-bg-color.bloc-contenu-wrapper .bloc-contenu-texte .button {
  color: #ffffff;
}
.has-bg-color .button, .has-bg-color.bloc-contenu-wrapper .bloc-contenu-texte .button {
  border-color: #ffffff;
  color: #ffffff;
}
.has-bg-color .button:hover, .has-bg-color .button:focus, .has-bg-color .button:active, .has-bg-color.bloc-contenu-wrapper .bloc-contenu-texte .button:hover, .has-bg-color.bloc-contenu-wrapper .bloc-contenu-texte .button:focus, .has-bg-color.bloc-contenu-wrapper .bloc-contenu-texte .button:active {
  background-color: #ffffff;
  color: #3498db;
}

/* bloc contenu */
.bloc-contenu-wrapper {
  position: relative;
  /*
  &.has-bg-color{
    h2,
    p,
    .button{
      color: $real-white;
    }
    .button{
      border-color: $real-white;
      &:hover,
      &:focus,
      &:active{
        background-color: $real-white;
      }

    }
  }
  */
  /*
  .bg-image-cover{
    background-size: cover;
    background-position: center center;
  }
  .bg-video-cover{
    padding-left: 0;
    padding-right: 0;
  }
  */
}
.bloc-contenu-wrapper.row.expanded .row.expanded-children {
  max-width: 37.5rem;
}
.bloc-contenu-wrapper.row.expanded .row.expanded-children.left {
  margin-right: 0;
}
.bloc-contenu-wrapper.row.expanded .row.expanded-children.right {
  margin-left: 0;
}
.bloc-contenu-wrapper .bloc-contenu-texte {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 39.9375em) {
  .bloc-contenu-wrapper .bloc-contenu-texte {
    padding-top: 3.3333333333rem;
    padding-bottom: 3.3333333333rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .bloc-contenu-wrapper .bloc-contenu-texte {
    padding-top: 4.1666666667rem;
    padding-bottom: 4.1666666667rem;
  }
}
.bloc-contenu-wrapper .bloc-contenu-texte h2 {
  margin-bottom: rem-cacl(32);
}
.bloc-contenu-wrapper .lien-wrapper > div {
  padding-top: 30px;
}
.bloc-contenu-wrapper .lien-wrapper > div .button {
  margin: 0;
}

@media screen and (max-width: 39.9375em) {
  .bloc-contenu-wrapper .bg-image-cover {
    padding-top: 45%;
  }
  .bloc-contenu-wrapper .bloc-contenu-texte {
    padding: 40px 0;
  }
  .bloc-contenu-wrapper .lien-wrapper > div {
    text-align: center;
    padding-top: 15px;
  }
  .bloc-contenu-wrapper .lien-wrapper > div a {
    width: 100%;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .bloc-contenu-wrapper .bloc-contenu-texte {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .bloc-contenu-wrapper .lien-wrapper > div {
    padding-top: 20px;
  }
}
/* links-downloads */
.links-downloads {
  padding-top: 3.3333333333rem;
  padding-bottom: 3.3333333333rem;
  background: #3498db;
}
@media screen and (max-width: 39.9375em) {
  .links-downloads {
    padding-top: 2.2222222222rem;
    padding-bottom: 2.2222222222rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .links-downloads {
    padding-top: 2.7777777778rem;
    padding-bottom: 2.7777777778rem;
  }
}

/* autres-formations */
.acces-directs .acces-directs-title,
.acces-directs .autres-formations-title,
.autres-formations .acces-directs-title,
.autres-formations .autres-formations-title {
  padding-top: 2.7777777778rem;
  padding-bottom: 2.7777777778rem;
}
@media screen and (max-width: 39.9375em) {
  .acces-directs .acces-directs-title,
.acces-directs .autres-formations-title,
.autres-formations .acces-directs-title,
.autres-formations .autres-formations-title {
    padding-top: 1.8518518519rem;
    padding-bottom: 1.8518518519rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .acces-directs .acces-directs-title,
.acces-directs .autres-formations-title,
.autres-formations .acces-directs-title,
.autres-formations .autres-formations-title {
    padding-top: 2.3148148148rem;
    padding-bottom: 2.3148148148rem;
  }
}
.acces-directs .section-label:after,
.autres-formations .section-label:after {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border: inset 17px;
  content: "";
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: #ffffff transparent transparent;
  margin-top: 2.7777777778rem;
}
@media screen and (max-width: 39.9375em) {
  .acces-directs .section-label:after,
.autres-formations .section-label:after {
    margin-top: 1.8518518519rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .acces-directs .section-label:after,
.autres-formations .section-label:after {
    margin-top: 2.3148148148rem;
  }
}
.acces-directs .acces-directs-items,
.acces-directs .autres-formations-items,
.autres-formations .acces-directs-items,
.autres-formations .autres-formations-items {
  padding-top: 3.3333333333rem;
  padding-bottom: 3.3333333333rem;
  background: #f5f5f5;
}
@media screen and (max-width: 39.9375em) {
  .acces-directs .acces-directs-items,
.acces-directs .autres-formations-items,
.autres-formations .acces-directs-items,
.autres-formations .autres-formations-items {
    padding-top: 2.2222222222rem;
    padding-bottom: 2.2222222222rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .acces-directs .acces-directs-items,
.acces-directs .autres-formations-items,
.autres-formations .acces-directs-items,
.autres-formations .autres-formations-items {
    padding-top: 2.7777777778rem;
    padding-bottom: 2.7777777778rem;
  }
}
.acces-directs .acces-directs-items ul,
.acces-directs .autres-formations-items ul,
.autres-formations .acces-directs-items ul,
.autres-formations .autres-formations-items ul {
  list-style: none;
  margin: 0;
}
.acces-directs .acces-directs-items ul li,
.acces-directs .autres-formations-items ul li,
.autres-formations .acces-directs-items ul li,
.autres-formations .autres-formations-items ul li {
  border-bottom: solid 1px gainsboro;
  padding-top: 1.7777777778rem;
  padding-bottom: 1.7777777778rem;
}
@media screen and (max-width: 39.9375em) {
  .acces-directs .acces-directs-items ul li,
.acces-directs .autres-formations-items ul li,
.autres-formations .acces-directs-items ul li,
.autres-formations .autres-formations-items ul li {
    padding-top: 1.1851851852rem;
    padding-bottom: 1.1851851852rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .acces-directs .acces-directs-items ul li,
.acces-directs .autres-formations-items ul li,
.autres-formations .acces-directs-items ul li,
.autres-formations .autres-formations-items ul li {
    padding-top: 1.4814814815rem;
    padding-bottom: 1.4814814815rem;
  }
}
.acces-directs .acces-directs-items ul li:first-child,
.acces-directs .autres-formations-items ul li:first-child,
.autres-formations .acces-directs-items ul li:first-child,
.autres-formations .autres-formations-items ul li:first-child {
  padding-top: 0;
}
.acces-directs .acces-directs-items ul li:last-child,
.acces-directs .autres-formations-items ul li:last-child,
.autres-formations .acces-directs-items ul li:last-child,
.autres-formations .autres-formations-items ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.acces-directs .acces-directs-items ul li a,
.acces-directs .autres-formations-items ul li a,
.autres-formations .acces-directs-items ul li a,
.autres-formations .autres-formations-items ul li a {
  font-size: 1.3333333333rem;
  font-weight: 700;
}
.acces-directs .acces-directs-items ul li a span span,
.acces-directs .autres-formations-items ul li a span span,
.autres-formations .acces-directs-items ul li a span span,
.autres-formations .autres-formations-items ul li a span span {
  font-weight: 300;
}

@media screen and (max-width: 39.9375em) {
  .acces-directs .acces-directs-title,
.acces-directs .autres-formations-title,
.autres-formations .acces-directs-title,
.autres-formations .autres-formations-title {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .acces-directs .section-label,
.autres-formations .section-label {
    padding-bottom: 0;
  }
  .acces-directs .section-label:after,
.autres-formations .section-label:after {
    margin-top: 1.6666666667rem;
  }
}
@media screen and (max-width: 39.9375em) and (max-width: 39.9375em) {
  .acces-directs .section-label:after,
.autres-formations .section-label:after {
    margin-top: 1.1111111111rem;
  }
}
@media screen and (max-width: 39.9375em) and (min-width: 40em) and (max-width: 63.9375em) {
  .acces-directs .section-label:after,
.autres-formations .section-label:after {
    margin-top: 1.3888888889rem;
  }
}
@media screen and (max-width: 39.9375em) {
  .acces-directs .acces-directs-items ul li,
.acces-directs .autres-formations-items ul li,
.autres-formations .acces-directs-items ul li,
.autres-formations .autres-formations-items ul li {
    padding-top: 1.3888888889rem;
    padding-bottom: 1.3888888889rem;
  }
}
@media screen and (max-width: 39.9375em) and (max-width: 39.9375em) {
  .acces-directs .acces-directs-items ul li,
.acces-directs .autres-formations-items ul li,
.autres-formations .acces-directs-items ul li,
.autres-formations .autres-formations-items ul li {
    padding-top: 0.9259259259rem;
    padding-bottom: 0.9259259259rem;
  }
}
@media screen and (max-width: 39.9375em) and (min-width: 40em) and (max-width: 63.9375em) {
  .acces-directs .acces-directs-items ul li,
.acces-directs .autres-formations-items ul li,
.autres-formations .acces-directs-items ul li,
.autres-formations .autres-formations-items ul li {
    padding-top: 1.1574074074rem;
    padding-bottom: 1.1574074074rem;
  }
}
@media screen and (max-width: 39.9375em) {
  .acces-directs .acces-directs-items ul li a,
.acces-directs .autres-formations-items ul li a,
.autres-formations .acces-directs-items ul li a,
.autres-formations .autres-formations-items ul li a {
    font-size: 0.8888888889rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .acces-directs .acces-directs-title,
.acces-directs .autres-formations-title,
.autres-formations .acces-directs-title,
.autres-formations .autres-formations-title {
    padding-top: 2.2222222222rem;
    padding-bottom: 2.2222222222rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) and (max-width: 39.9375em) {
  .acces-directs .acces-directs-title,
.acces-directs .autres-formations-title,
.autres-formations .acces-directs-title,
.autres-formations .autres-formations-title {
    padding-top: 1.4814814815rem;
    padding-bottom: 1.4814814815rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) and (min-width: 40em) and (max-width: 63.9375em) {
  .acces-directs .acces-directs-title,
.acces-directs .autres-formations-title,
.autres-formations .acces-directs-title,
.autres-formations .autres-formations-title {
    padding-top: 1.8518518519rem;
    padding-bottom: 1.8518518519rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .acces-directs .section-label,
.autres-formations .section-label {
    padding-bottom: 0;
  }
  .acces-directs .section-label:after,
.autres-formations .section-label:after {
    margin-top: 2.2222222222rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) and (max-width: 39.9375em) {
  .acces-directs .section-label:after,
.autres-formations .section-label:after {
    margin-top: 1.4814814815rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) and (min-width: 40em) and (max-width: 63.9375em) {
  .acces-directs .section-label:after,
.autres-formations .section-label:after {
    margin-top: 1.8518518519rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .acces-directs .acces-directs-items ul li,
.acces-directs .autres-formations-items ul li,
.autres-formations .acces-directs-items ul li,
.autres-formations .autres-formations-items ul li {
    padding-top: 1.6666666667rem;
    padding-bottom: 1.6666666667rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) and (max-width: 39.9375em) {
  .acces-directs .acces-directs-items ul li,
.acces-directs .autres-formations-items ul li,
.autres-formations .acces-directs-items ul li,
.autres-formations .autres-formations-items ul li {
    padding-top: 1.1111111111rem;
    padding-bottom: 1.1111111111rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) and (min-width: 40em) and (max-width: 63.9375em) {
  .acces-directs .acces-directs-items ul li,
.acces-directs .autres-formations-items ul li,
.autres-formations .acces-directs-items ul li,
.autres-formations .autres-formations-items ul li {
    padding-top: 1.3888888889rem;
    padding-bottom: 1.3888888889rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .acces-directs .acces-directs-items ul li a,
.acces-directs .autres-formations-items ul li a,
.autres-formations .acces-directs-items ul li a,
.autres-formations .autres-formations-items ul li a {
    font-size: 1rem;
  }
}
/* carousel-partenaire */
.carousel-partenaire {
  padding-top: 4.4444444444rem;
  padding-bottom: 4.4444444444rem;
}
@media screen and (max-width: 39.9375em) {
  .carousel-partenaire {
    padding-top: 2.962962963rem;
    padding-bottom: 2.962962963rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .carousel-partenaire {
    padding-top: 3.7037037037rem;
    padding-bottom: 3.7037037037rem;
  }
}
.carousel-partenaire .carousel-partenaire-wrapper {
  padding-top: 3.3333333333rem;
}
@media screen and (max-width: 39.9375em) {
  .carousel-partenaire .carousel-partenaire-wrapper {
    padding-top: 2.2222222222rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .carousel-partenaire .carousel-partenaire-wrapper {
    padding-top: 2.7777777778rem;
  }
}
.carousel-partenaire .carousel-partenaire-wrapper .orbit-slide .carousel-partenaire-item {
  width: 130px;
  height: 130px;
  margin-left: 10px;
  margin-right: 10px;
  display: inline-block;
  background: wheat;
  vertical-align: middle;
  line-height: 130px;
  background: #ffffff;
}
.carousel-partenaire .carousel-partenaire-wrapper .orbit-previous,
.carousel-partenaire .carousel-partenaire-wrapper .orbit-next {
  color: #303030;
  outline: none;
}
.carousel-partenaire .carousel-partenaire-wrapper .orbit-previous:hover,
.carousel-partenaire .carousel-partenaire-wrapper .orbit-next:hover {
  cursor: pointer;
}
.carousel-partenaire .carousel-partenaire-wrapper .orbit-previous:hover i,
.carousel-partenaire .carousel-partenaire-wrapper .orbit-next:hover i {
  opacity: 1;
}
.carousel-partenaire .carousel-partenaire-wrapper .orbit-previous i,
.carousel-partenaire .carousel-partenaire-wrapper .orbit-next i {
  font-size: 3.0555555556rem;
  opacity: 0.8;
  transition: all 250ms ease-out;
}
.carousel-partenaire .carousel-partenaire-wrapper .orbit-next {
  right: -70px;
}
.carousel-partenaire .carousel-partenaire-wrapper .orbit-previous {
  left: -70px;
}
.carousel-partenaire .carousel-partenaire-wrapper .orbit-bullets button:hover {
  cursor: pointer;
}
.carousel-partenaire .carousel-partenaire-wrapper .orbit-bullets {
  display: none;
}

@media screen and (max-width: 63.9375em) {
  .carousel-partenaire {
    padding-top: 3.3333333333rem;
    padding-bottom: 3.3333333333rem;
  }
}
@media screen and (max-width: 63.9375em) and (max-width: 39.9375em) {
  .carousel-partenaire {
    padding-top: 2.2222222222rem;
    padding-bottom: 2.2222222222rem;
  }
}
@media screen and (max-width: 63.9375em) and (min-width: 40em) and (max-width: 63.9375em) {
  .carousel-partenaire {
    padding-top: 2.7777777778rem;
    padding-bottom: 2.7777777778rem;
  }
}
@media screen and (max-width: 63.9375em) {
  .carousel-partenaire .carousel-partenaire-wrapper {
    padding-top: 0;
  }
}
@media screen and (max-width: 39.9375em) {
  .carousel-partenaire {
    display: none;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .carousel-partenaire .carousel-partenaire-wrapper .carousel-partenaire-item {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 64em) and (max-width: 79.9375em) {
  .carousel-partenaire .carousel-partenaire-wrapper .carousel-partenaire-item {
    margin-bottom: 20px;
  }
}
/* programme */
#programme .accordion {
  margin: 0;
  padding-bottom: 4.4444444444rem;
}
@media screen and (max-width: 39.9375em) {
  #programme .accordion {
    padding-bottom: 2.962962963rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  #programme .accordion {
    padding-bottom: 3.7037037037rem;
  }
}
#programme .accordion .accordion-item {
  margin-top: 20px;
}
#programme .accordion .accordion-title {
  background: #95a5a6;
  color: #ffffff;
  transition: all 250ms ease-out;
}
#programme .accordion .accordion-title .formation-module-title {
  font-weight: 700;
}
#programme .accordion .accordion-title .formation-module-title span {
  font-weight: 300;
}
#programme .accordion .accordion-title:hover {
  background-color: #3498db;
}
#programme .accordion .accordion-content .formation-module-title {
  font-weight: 700;
}
#programme .accordion .accordion-content .formation-module-sub-title {
  color: #3498db;
}
#programme .accordion .accordion-content .programme-unite {
  border-bottom: solid 1px #bebebe;
  padding: 20px 0;
}
#programme .accordion .accordion-content .programme-unite:last-child {
  border-bottom: none;
}
#programme .accordion .accordion-title::before {
  font-family: FontAwesome;
  content: "\f107";
  margin-top: 0;
  transform: translateY(-50%);
  font-size: 1.9444444444rem;
}
#programme .accordion .is-active > .accordion-title::before {
  font-family: FontAwesome;
  content: "\f106";
}

@media screen and (max-width: 39.9375em) {
  #programme .accordion {
    margin-left: -20px;
    margin-right: -20px;
    margin-bottom: 0;
  }
  #programme .accordion .accordion-item {
    margin-top: 1px;
  }
  #programme .accordion .accordion-title {
    font-size: 0.7777777778rem;
  }
  #programme .accordion .accordion-content {
    padding-top: 0;
    padding-bottom: 0;
  }
  #programme .accordion .programme-unite {
    margin-left: 20px;
    margin-right: 20px;
  }
  #programme .accordion .programme-unite .small-12 {
    margin-left: -20px;
    margin-right: -20px;
  }
  #programme .accordion .formation-module-title {
    font-size: 0.8888888889rem;
  }
}
/* partenaires formation */
.partenaires-formation {
  padding-top: 3.3333333333rem;
  padding-bottom: 3.3333333333rem;
}
@media screen and (max-width: 39.9375em) {
  .partenaires-formation {
    padding-top: 2.2222222222rem;
    padding-bottom: 2.2222222222rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .partenaires-formation {
    padding-top: 2.7777777778rem;
    padding-bottom: 2.7777777778rem;
  }
}
.partenaires-formation ul.menu {
  display: table;
  width: 100%;
  margin: 0;
}
.partenaires-formation ul.menu li {
  text-align: center;
}
.partenaires-formation ul.menu li:first-child {
  text-align: left;
  min-width: 50%;
}

@media screen and (max-width: 63.9375em) {
  .section-label {
    padding-bottom: 30px;
  }
}
/* plyr js */
body .plyr__video-embed iframe {
  right: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
body .plyr__play-large {
  width: 125px;
  height: 125px;
  border-radius: 125px;
  text-align: center;
  border: none;
  background-color: rgba(0, 0, 0, 0.7);
}
body .plyr__play-large svg {
  position: relative;
  left: 0;
  width: 50px;
  height: 50px;
  display: block;
  fill: #ffffff;
  margin-left: 32px;
}

/* project list*/
#mecavenir-projet .projet-etudiant {
  padding-top: 3.3333333333rem;
  padding-bottom: 3.3333333333rem;
  background-color: #f4f4f4;
}
@media screen and (max-width: 39.9375em) {
  #mecavenir-projet .projet-etudiant {
    padding-top: 2.2222222222rem;
    padding-bottom: 2.2222222222rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  #mecavenir-projet .projet-etudiant {
    padding-top: 2.7777777778rem;
    padding-bottom: 2.7777777778rem;
  }
}
#mecavenir-projet .etudiant-name {
  font-weight: 700;
}
#mecavenir-projet .etudiant-formation {
  font-weight: 400;
  margin-bottom: 20px;
}
#mecavenir-projet .projet-texte {
  padding-top: 3.3333333333rem;
  padding-bottom: 3.3333333333rem;
}
@media screen and (max-width: 39.9375em) {
  #mecavenir-projet .projet-texte {
    padding-top: 2.2222222222rem;
    padding-bottom: 2.2222222222rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  #mecavenir-projet .projet-texte {
    padding-top: 2.7777777778rem;
    padding-bottom: 2.7777777778rem;
  }
}
#mecavenir-projet .projet-texte .mutli-columns h2 {
  font-size: 1.4444444444rem;
  color: #303030;
}

/* quote */
.mecavenir-quote {
  padding-top: 3.3333333333rem;
  padding-bottom: 3.3333333333rem;
  background-color: #ff8f2c;
  color: #ffffff;
}
@media screen and (max-width: 39.9375em) {
  .mecavenir-quote {
    padding-top: 2.2222222222rem;
    padding-bottom: 2.2222222222rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .mecavenir-quote {
    padding-top: 2.7777777778rem;
    padding-bottom: 2.7777777778rem;
  }
}
.mecavenir-quote blockquote {
  font-size: 1.6666666667rem;
  display: table-cell;
  text-align: justify;
}
.mecavenir-quote blockquote p {
  margin: 0;
  line-height: 1.3;
  text-align: justify;
}
.mecavenir-quote .mecavenir-quote-author {
  font-weight: 700;
  margin-left: 47px;
  margin-top: 40px;
}

/* people portrait */
.mecavenir-portrait {
  border-radius: 400px;
}

/* project list */
#project-items-list {
  opacity: 0;
  visibility: hidden;
  transition: all 250ms ease-out;
}
#project-items-list.show-project-list {
  opacity: 1;
  visibility: visible;
}

#project-item-wrapper {
  position: relative;
}
#project-item-wrapper #project-item-loader {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 250ms ease-out;
  background: #f4f4f4;
  z-index: 10;
}
#project-item-wrapper.loading #project-item-loader {
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 39.9375em) {
  #mecavenir-projet .projet-etudiant {
    padding-bottom: 0;
  }
  #mecavenir-projet .projet-texte .mutli-columns h2 {
    font-size: 1.1111111111rem;
  }
  .mecavenir-quote blockquote:after, .mecavenir-quote blockquote:before {
    font-size: 1rem;
  }
  .mecavenir-quote blockquote p {
    font-size: 1rem;
    text-align: justify;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .mecavenir-quote blockquote:after, .mecavenir-quote blockquote:before {
    font-size: 1.1111111111rem;
  }
  .mecavenir-quote blockquote p {
    font-size: 1.1111111111rem;
  }
}
/* carousel-simple */
.carousel-simple {
  padding-top: 4.4444444444rem;
}
@media screen and (max-width: 39.9375em) {
  .carousel-simple {
    padding-top: 2.962962963rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .carousel-simple {
    padding-top: 3.7037037037rem;
  }
}
.carousel-simple .media-object img {
  max-width: 100%;
}
.carousel-simple .media-object-section {
  width: 50%;
}
.carousel-simple .carousel-simple-title {
  color: #3498db;
  font-size: 2.1111111111rem;
  margin-bottom: 20px;
  line-height: 1.3;
}
.carousel-simple .orbit-previous,
.carousel-simple .orbit-next {
  color: #303030;
  outline: none;
}
.carousel-simple .orbit-previous:hover,
.carousel-simple .orbit-next:hover {
  cursor: pointer;
}
.carousel-simple .orbit-previous:hover i,
.carousel-simple .orbit-next:hover i {
  opacity: 1;
}
.carousel-simple .orbit-previous i,
.carousel-simple .orbit-next i {
  font-size: 3.0555555556rem;
  opacity: 0.8;
  transition: all 250ms ease-out;
}
.carousel-simple .orbit-next {
  right: -70px;
}
.carousel-simple .orbit-previous {
  left: -70px;
}
.carousel-simple .orbit-bullets button:hover {
  cursor: pointer;
}

@media screen and (max-width: 39.9375em) {
  .carousel-simple .orbit-previous,
.carousel-simple .orbit-next {
    display: none;
  }
  .carousel-simple .media-object-section {
    width: 100%;
    display: block;
  }
  .carousel-simple .media-object-section .thumbnail {
    padding-bottom: 1.1111111111rem;
  }
}
@media screen and (max-width: 39.9375em) and (max-width: 39.9375em) {
  .carousel-simple .media-object-section .thumbnail {
    padding-bottom: 0.7407407407rem;
  }
}
@media screen and (max-width: 39.9375em) and (min-width: 40em) and (max-width: 63.9375em) {
  .carousel-simple .media-object-section .thumbnail {
    padding-bottom: 0.9259259259rem;
  }
}
@media screen and (max-width: 39.9375em) {
  .carousel-simple .carousel-simple-title {
    font-size: 1.3333333333rem;
  }
}
@media screen and (max-width: 39.9375em) {
  .project-items-list .section-label {
    padding-bottom: 0;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .carousel-simple {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .carousel-simple .orbit-previous,
.carousel-simple .orbit-next {
    display: none;
  }
  .carousel-simple .media-object-section .thumbnail {
    padding-bottom: 1.1111111111rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) and (max-width: 39.9375em) {
  .carousel-simple .media-object-section .thumbnail {
    padding-bottom: 0.7407407407rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) and (min-width: 40em) and (max-width: 63.9375em) {
  .carousel-simple .media-object-section .thumbnail {
    padding-bottom: 0.9259259259rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .carousel-simple .carousel-simple-title {
    font-size: 1.3333333333rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .project-items-list .section-label {
    padding-bottom: 0;
  }
}
#mecavenir-campus .carousel-simple {
  padding-bottom: 4.4444444444rem;
}
@media screen and (max-width: 39.9375em) {
  #mecavenir-campus .carousel-simple {
    padding-bottom: 2.962962963rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  #mecavenir-campus .carousel-simple {
    padding-bottom: 3.7037037037rem;
  }
}

.main-content .orbit-container {
  margin: 0;
  outline: none;
}

/* temoignages carousel */
#temoignages-carousel {
  padding-top: 3.3333333333rem;
}
@media screen and (max-width: 39.9375em) {
  #temoignages-carousel {
    padding-top: 2.2222222222rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  #temoignages-carousel {
    padding-top: 2.7777777778rem;
  }
}
#temoignages-carousel .orbit-container,
#temoignages-carousel .orbit-slide {
  height: 650px !important;
}
#temoignages-carousel .orbit-bullets {
  display: none;
}
#temoignages-carousel .orbit-slide {
  color: #ffffff;
  /*
  min-height: 600px;
  max-height: 600px !important;
  */
}
#temoignages-carousel .orbit-slide .orbit-slide-overlay {
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
}
#temoignages-carousel .orbit-slide > .row {
  height: 100%;
}
#temoignages-carousel .orbit-slide > .row > .columns {
  transform: translateY(-50%);
  top: 50%;
  position: relative;
  z-index: 1;
}
#temoignages-carousel .orbit-slide.is-video > .row {
  height: auto;
}
#temoignages-carousel .orbit-slide.is-video > .row .panneau-temoignage-content {
  padding-left: 20px;
  padding-right: 20px;
}
#temoignages-carousel .orbit-previous,
#temoignages-carousel .orbit-next {
  color: #ffffff;
  outline: none;
}
#temoignages-carousel .orbit-previous:hover,
#temoignages-carousel .orbit-next:hover {
  cursor: pointer;
}
#temoignages-carousel .orbit-previous:hover i,
#temoignages-carousel .orbit-next:hover i {
  opacity: 1;
}
#temoignages-carousel .orbit-previous i,
#temoignages-carousel .orbit-next i {
  font-size: 3.0555555556rem;
  opacity: 0.8;
  transition: all 250ms ease-out;
}
#temoignages-carousel .orbit-previous {
  left: 100px;
}
#temoignages-carousel .orbit-next {
  right: 100px;
}
#temoignages-carousel .panneau-temoignage-content-wrapper.is-video {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
#temoignages-carousel .panneau-temoignage-content-wrapper.is-not-video {
  display: table;
  width: 100%;
  z-index: 1;
  position: relative;
}
#temoignages-carousel .panneau-temoignage-content-wrapper.is-not-video .panneau-temoignage-content {
  display: table-cell;
  vertical-align: middle;
}
#temoignages-carousel .panneau-temoignage-content {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  font-weight: 400;
}
@media screen and (max-width: 39.9375em) {
  #temoignages-carousel .panneau-temoignage-content {
    padding-top: 1.6666666667rem;
    padding-bottom: 1.6666666667rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  #temoignages-carousel .panneau-temoignage-content {
    padding-top: 2.0833333333rem;
    padding-bottom: 2.0833333333rem;
  }
}
#temoignages-carousel .panneau-temoignage-content .lien-wrapper .button {
  margin: 0;
}
#temoignages-carousel .panneau-temoignage-content .lien-wrapper .button:hover, #temoignages-carousel .panneau-temoignage-content .lien-wrapper .button:focus, #temoignages-carousel .panneau-temoignage-content .lien-wrapper .button:active {
  color: #303030;
}
#temoignages-carousel .panneau-temoignage-content .panneau-temoignage-nom {
  font-size: 1.4444444444rem;
  line-height: 1.3;
}
#temoignages-carousel .panneau-temoignage-content .panneau-temoignage-titre {
  font-size: 1.4444444444rem;
  line-height: 1.3;
  font-weight: 700;
}
#temoignages-carousel .panneau-temoignage-content .panneau-temoignage-quote {
  display: table;
  margin: 10px auto 40px;
}
#temoignages-carousel .panneau-temoignage-content .panneau-temoignage-quote blockquote {
  font-style: normal;
}
#temoignages-carousel .panneau-temoignage-content .panneau-temoignage-quote blockquote:before {
  font-size: 0.7222222222rem;
}
#temoignages-carousel .panneau-temoignage-content .panneau-temoignage-quote blockquote:after {
  font-size: 0.7222222222rem;
}
#temoignages-carousel .panneau-temoignage-content .panneau-temoignage-quote blockquote p {
  text-align: center;
}

@media screen and (max-width: 39.9375em) {
  .carousel-temoignage .section-label {
    padding-bottom: 0;
  }
  #temoignages-carousel .orbit-container,
#temoignages-carousel .orbit-slide {
    height: 700px !important;
  }
  #temoignages-carousel .orbit-bullets {
    display: block;
  }
  #temoignages-carousel .orbit-prev-next-wrapper {
    display: none;
  }
  #temoignages-carousel .mecavenir-portrait {
    width: 220px;
    margin-bottom: 40px;
  }
  #temoignages-carousel .panneau-temoignage-content .panneau-temoignage-titre,
#temoignages-carousel .panneau-temoignage-content .panneau-temoignage-nom {
    font-size: 1rem;
  }
  #temoignages-carousel .panneau-temoignage-content blockquote p {
    font-size: 0.7777777778rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .carousel-temoignage .section-label {
    padding-bottom: 0;
  }
  #temoignages-carousel .orbit-container,
#temoignages-carousel .orbit-slide {
    height: 700px !important;
  }
  #temoignages-carousel .orbit-bullets {
    display: block;
  }
  #temoignages-carousel .orbit-prev-next-wrapper {
    display: none;
  }
  #temoignages-carousel .mecavenir-portrait {
    width: 300px;
    margin-bottom: 40px;
  }
  #temoignages-carousel .panneau-temoignage-content .panneau-temoignage-titre,
#temoignages-carousel .panneau-temoignage-content .panneau-temoignage-nom {
    font-size: 1.1111111111rem;
  }
  #temoignages-carousel .panneau-temoignage-content blockquote p {
    font-size: 0.8888888889rem;
  }
}
/* campus */
.formations-campus {
  background: #f4f4f4;
  padding-top: 3.3333333333rem;
  padding-bottom: 3.3333333333rem;
  font-size: 1rem;
  font-weight: 400;
}
@media screen and (max-width: 39.9375em) {
  .formations-campus {
    padding-top: 2.2222222222rem;
    padding-bottom: 2.2222222222rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .formations-campus {
    padding-top: 2.7777777778rem;
    padding-bottom: 2.7777777778rem;
  }
}
.formations-campus h2 {
  padding-bottom: 3.3333333333rem;
}
@media screen and (max-width: 39.9375em) {
  .formations-campus h2 {
    padding-bottom: 2.2222222222rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .formations-campus h2 {
    padding-bottom: 2.7777777778rem;
  }
}
.formations-campus .formation-level-campus {
  font-weight: 700;
}
.formations-campus .list-arrow {
  margin: 0;
}
.formations-campus .formation-campus {
  border-bottom: solid 1px #d3dfe7;
  padding: 10px 0;
}
.formations-campus .formation-campus:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

#campus-location .campus-location-detail {
  padding-top: 3.3333333333rem;
  padding-bottom: 3.3333333333rem;
  font-size: 0.8888888889rem;
}
@media screen and (max-width: 39.9375em) {
  #campus-location .campus-location-detail {
    padding-top: 2.2222222222rem;
    padding-bottom: 2.2222222222rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  #campus-location .campus-location-detail {
    padding-top: 2.7777777778rem;
    padding-bottom: 2.7777777778rem;
  }
}
#campus-location .campus-location-label {
  font-weight: 700;
  margin-top: 20px;
}
#campus-location .campus-location-label-color {
  color: #3498db;
}
#campus-location .accordion {
  margin: 0;
}

/* chiffre-cle */
.chiffre-cle {
  padding-top: 3.3333333333rem;
  padding-bottom: 3.3333333333rem;
  font-size: 0.8888888889rem;
  line-height: 1.2;
}
@media screen and (max-width: 39.9375em) {
  .chiffre-cle {
    padding-top: 2.2222222222rem;
    padding-bottom: 2.2222222222rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .chiffre-cle {
    padding-top: 2.7777777778rem;
    padding-bottom: 2.7777777778rem;
  }
}
.chiffre-cle h2 {
  padding-bottom: 3.3333333333rem;
}
@media screen and (max-width: 39.9375em) {
  .chiffre-cle h2 {
    padding-bottom: 2.2222222222rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .chiffre-cle h2 {
    padding-bottom: 2.7777777778rem;
  }
}
.chiffre-cle .menu {
  display: table;
  margin: 0 auto;
  /* one item */
  /* two items */
  /* three items */
  /* four items */
  /* five items */
}
.chiffre-cle .menu li {
  vertical-align: top;
}
.chiffre-cle .menu li:first-child:nth-last-child(1) {
  width: 100%;
}
.chiffre-cle .menu li:first-child:nth-last-child(2),
.chiffre-cle .menu li:first-child:nth-last-child(2) ~ li {
  width: 50%;
}
.chiffre-cle .menu li:first-child:nth-last-child(3),
.chiffre-cle .menu li:first-child:nth-last-child(3) ~ li {
  width: 33.3333%;
}
.chiffre-cle .menu li:first-child:nth-last-child(4),
.chiffre-cle .menu li:first-child:nth-last-child(4) ~ li {
  width: 25%;
}
.chiffre-cle .menu li:first-child:nth-last-child(5),
.chiffre-cle .menu li:first-child:nth-last-child(5) ~ li {
  width: 20%;
}
.chiffre-cle .menu .stat {
  font-weight: 700;
  display: block;
  margin-bottom: 15px;
}
.chiffre-cle .menu .stat-texte {
  line-height: 1.2;
}
.chiffre-cle .menu .mecavenir-icon {
  font-size: 3.8888888889rem;
  color: #778ac4;
  margin-bottom: 30px;
  display: block;
}

@media screen and (max-width: 39.9375em) {
  .formations-campus h2 {
    padding-bottom: 20px;
  }
  .formations-campus .formation-level-campus {
    padding-top: 20px;
  }
  #campus-location .campus-location-detail {
    font-size: 0.7777777778rem;
  }
  .chiffre-cle .menu {
    display: block;
  }
  .chiffre-cle .menu li {
    display: block;
    width: 100% !important;
    padding-bottom: 40px;
  }
  .chiffre-cle .menu li:last-child {
    padding-bottom: 0;
  }
  .chiffre-cle .menu li .mecavenir-icon {
    font-size: 3.6111111111rem;
    margin-bottom: 10px;
  }
  .chiffre-cle .menu li .stat {
    font-size: 1.1111111111rem;
    display: inline;
  }
  .chiffre-cle .menu li .stat-texte {
    font-size: 0.8888888889rem;
    display: inline;
  }
}
@media screen and (max-width: 63.9375em) {
  .gmap {
    padding: 0;
  }
}
/* default page */
#page-content-wrapper {
  padding-top: 3.3333333333rem;
  padding-bottom: 3.3333333333rem;
}
@media screen and (max-width: 39.9375em) {
  #page-content-wrapper {
    padding-top: 2.2222222222rem;
    padding-bottom: 2.2222222222rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  #page-content-wrapper {
    padding-top: 2.7777777778rem;
    padding-bottom: 2.7777777778rem;
  }
}

/* footer */
footer > p {
  margin: 0;
}

#footer-container {
  margin: 0;
  border: none;
}
#footer-container #footer {
  max-width: none;
  padding: 0;
}
#footer-container #footer .footer-top {
  padding-top: 2.2222222222rem;
  padding-bottom: 2.2222222222rem;
  background: #283957;
}
@media screen and (max-width: 39.9375em) {
  #footer-container #footer .footer-top {
    padding-top: 1.4814814815rem;
    padding-bottom: 1.4814814815rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  #footer-container #footer .footer-top {
    padding-top: 1.8518518519rem;
    padding-bottom: 1.8518518519rem;
  }
}
#footer-container #footer .footer-top .footer-menu {
  font-size: 0.7777777778rem;
  font-weight: 400;
}
#footer-container #footer .footer-top .footer-menu a {
  padding-left: 20px;
  padding-left: 20px;
}
#footer-container #footer .footer-top .footer-menu a:hover, #footer-container #footer .footer-top .footer-menu a:focus, #footer-container #footer .footer-top .footer-menu a:active {
  text-decoration: underline;
}
#footer-container #footer .footer-top .menu-social-network {
  padding-top: 2.2222222222rem;
  padding-bottom: 2.2222222222rem;
}
@media screen and (max-width: 39.9375em) {
  #footer-container #footer .footer-top .menu-social-network {
    padding-top: 1.4814814815rem;
    padding-bottom: 1.4814814815rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  #footer-container #footer .footer-top .menu-social-network {
    padding-top: 1.8518518519rem;
    padding-bottom: 1.8518518519rem;
  }
}
#footer-container #footer .footer-top .menu-social-network a {
  padding-left: 40px;
  padding-left: 40px;
  font-size: 30px;
}
#footer-container #footer .footer-top a {
  color: #ffffff;
}
#footer-container #footer .footer-bottom {
  padding-top: 0.8333333333rem;
  padding-bottom: 0.8333333333rem;
  overflow: auto;
  font-size: 0.8333333333rem;
  font-weight: 400;
}
@media screen and (max-width: 39.9375em) {
  #footer-container #footer .footer-bottom {
    padding-top: 0.5555555556rem;
    padding-bottom: 0.5555555556rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  #footer-container #footer .footer-bottom {
    padding-top: 0.6944444444rem;
    padding-bottom: 0.6944444444rem;
  }
}
#footer-container #footer .footer-bottom,
#footer-container #footer .footer-bottom a {
  color: #003757;
}
#footer-container #footer .footer-bottom:hover, #footer-container #footer .footer-bottom:focus, #footer-container #footer .footer-bottom:active,
#footer-container #footer .footer-bottom a:hover,
#footer-container #footer .footer-bottom a:focus,
#footer-container #footer .footer-bottom a:active {
  text-decoration: underline;
}
#footer-container #footer .footer-bottom li {
  padding-left: 20px;
  padding-left: 20px;
}

@media screen and (max-width: 39.9375em) {
  #footer-container #footer .footer-top .footer-menu {
    font-size: 0.7777777778rem;
  }
  #footer-container #footer .footer-top .footer-menu li {
    display: block;
    padding: 15px 0;
  }
  #footer-container .footer-bottom .menu li {
    display: block;
    font-size: 0.7777777778rem;
    padding: 10px 0;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  #footer-container #footer .footer-top .footer-menu {
    font-size: 0.7777777778rem;
  }
  #footer-container .footer-bottom .menu li {
    display: block;
    padding: 10px 0;
    font-size: 0.8333333333rem;
  }
}
/* formations-listes */
.formations-listes {
  padding-top: 3.3333333333rem;
  padding-bottom: 3.3333333333rem;
  background: #f4f4f4;
}
@media screen and (max-width: 39.9375em) {
  .formations-listes {
    padding-top: 2.2222222222rem;
    padding-bottom: 2.2222222222rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .formations-listes {
    padding-top: 2.7777777778rem;
    padding-bottom: 2.7777777778rem;
  }
}
.formations-listes .courses-list-tabs-wrapper {
  display: flex;
  justify-content: center;
}
.formations-listes .courses-list-tabs-wrapper .tabs {
  margin: 0;
  border: none;
  padding-right: 10%;
}
.formations-listes .courses-list-tabs-wrapper .tabs .tabs-title {
  border-bottom: solid 1px gainsboro;
}
.formations-listes .courses-list-tabs-wrapper .tabs .tabs-title:last-child {
  border-bottom: none;
}
.formations-listes .courses-list-tabs-wrapper .tabs a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.formations-listes .courses-list-tabs-wrapper .tabs a .courses-list-level-title-header {
  transition: all 250ms ease-out;
}
.formations-listes .courses-list-tabs-wrapper .tabs a .courses-list-level-title-header span {
  display: block;
  margin-top: 5px;
}
.formations-listes .courses-list-tabs-wrapper .tabs a .courses-list-level-title-header span + span {
  font-size: 0.7777777778rem;
  font-weight: 300;
  color: #303030;
}
.formations-listes .courses-list-tabs-wrapper .tabs a, .formations-listes .courses-list-tabs-wrapper .tabs a[aria-selected=true] {
  padding: 30px 0;
  font-size: 1.3333333333rem;
  font-weight: 700;
  color: #303030;
  background-color: transparent;
}
.formations-listes .courses-list-tabs-wrapper .tabs a[aria-selected=true], .formations-listes .courses-list-tabs-wrapper .tabs a:hover, .formations-listes .courses-list-tabs-wrapper .tabs a:focus {
  color: #3498db;
}
.formations-listes .courses-list-tabs-wrapper .tabs a:hover .courses-list-level-title-header {
  width: 95%;
  transform: translateX(5%);
}
.formations-listes .courses-list-tabs-wrapper .tabs-content-wrapper {
  display: flex;
}
.formations-listes .courses-list-tabs-wrapper .tabs-content {
  background-color: #ffffff;
  border: none;
  flex: 0 0 100%;
}
.formations-listes .courses-list-tabs-wrapper .courses-list-level-content {
  padding: 40px 60px;
}
.formations-listes .courses-list-tabs-wrapper .courses-list-level-content-header {
  margin-bottom: 20px;
  padding-bottom: 30px;
  border-bottom: solid 1px gainsboro;
}
.formations-listes .courses-list-tabs-wrapper .courses-list-level-content-title {
  margin-bottom: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #3498db;
}
.formations-listes .courses-list-tabs-wrapper .courses-list-level-content-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 20px 0 0;
}
.formations-listes .courses-list-tabs-wrapper .courses-list-level-content-description {
  font-size: 16px;
}
.formations-listes .courses-list-tabs-wrapper .courses-list-level-content-items {
  list-style: none;
  margin: 0;
}
.formations-listes .courses-list-tabs-wrapper .courses-list-level-content-items a:not(.button) {
  color: #303030;
  font-size: 1rem;
  font-weight: 400;
  padding: 20px 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-bottom: solid 1px gainsboro;
}
.formations-listes .courses-list-tabs-wrapper .courses-list-level-content-items a:not(.button):focus, .formations-listes .courses-list-tabs-wrapper .courses-list-level-content-items a:not(.button):hover {
  color: #3498db;
}
.formations-listes .courses-list-tabs-wrapper .courses-list-level-content-items li:first-child a {
  padding-top: 0;
}
.formations-listes .courses-list-tabs-wrapper .courses-list-level-content-items li:last-child a {
  border-bottom: none;
}
.formations-listes .formation-liste-liste {
  position: relative;
  padding-top: 100%;
  width: 100%;
  background: #3498db;
  font-size: 0.8888888889rem;
}
.formations-listes .formation-liste-liste#formation-liste-liste-1 {
  padding-top: 200%;
}
.formations-listes .formation-liste-liste,
.formations-listes .formation-liste-liste a {
  color: #ffffff;
}
.formations-listes .formation-liste-liste .formation-liste-liste-inner {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  padding-top: 3.3333333333rem;
  padding-bottom: 3.3333333333rem;
  padding-left: 20px;
  padding-right: 20px;
  /* 20190129
  &:after{
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 47px 47px 0 0;
    border-color: $real-black transparent transparent transparent;
    position: absolute;
    right: 0;
    bottom: 0;
    opacity: 0.12;
    content: '';
  }
  */
}
@media screen and (max-width: 39.9375em) {
  .formations-listes .formation-liste-liste .formation-liste-liste-inner {
    padding-top: 2.2222222222rem;
    padding-bottom: 2.2222222222rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .formations-listes .formation-liste-liste .formation-liste-liste-inner {
    padding-top: 2.7777777778rem;
    padding-bottom: 2.7777777778rem;
  }
}
.formations-listes .formation-liste-liste .formation-liste-level {
  font-size: 1.6666666667rem;
  font-weight: 400;
  margin-bottom: 1.6666666667rem;
  line-height: 1.2;
}
.formations-listes .formation-liste-liste ul {
  margin-left: 20px;
  margin-bottom: 0;
}
.formations-listes .formation-liste-liste ul li a {
  padding: 15px 0 15px 15px;
  display: block;
  position: relative;
}
.formations-listes .formation-liste-liste ul li a:after {
  content: "";
  height: 1px;
  opacity: 0.5;
  position: absolute;
  bottom: 0;
  left: 15px;
  right: 15px;
  background: #ffffff;
}
.formations-listes .formation-liste-liste ul li:first-child a {
  padding-top: 0;
}
.formations-listes .formation-liste-liste ul li:last-child a {
  padding-bottom: 0;
}
.formations-listes .formation-liste-liste ul li:last-child a:after {
  display: none;
}

@media screen and (min-width: 64em) and (max-width: 79.9375em) {
  .formations-listes .formation-liste-liste .formation-liste-level {
    font-size: 1.3333333333rem;
    margin-bottom: 20px;
  }
  .formations-listes .formation-liste-liste .formation-liste-liste-inner {
    padding: 20px 15px;
  }
  .formations-listes .formation-liste-liste .formation-liste-liste-inner:after {
    display: none;
  }
  .formations-listes .formation-liste-liste ul li a {
    padding: 10px 0 10px 8px;
    font-size: 0.8333333333rem;
  }
}
@media screen and (max-width: 63.9375em) {
  .formations-listes .column-block {
    padding: 0;
    margin: 0;
  }
  .formations-listes .formation-liste-img {
    display: none;
  }
  .formations-listes #formation-liste-liste-1.formation-liste-liste {
    padding: 0;
  }
  .formations-listes .formation-liste-liste {
    padding: 0;
  }
  .formations-listes .formation-liste-liste .formation-liste-liste-inner {
    position: relative;
  }
  .formations-listes .formation-liste-liste .formation-liste-liste-inner:after {
    display: none;
  }
  .formations-listes .formation-liste-liste ul li a {
    font-size: 0.8888888889rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .formations-listes {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 39.9375em) {
  .formations-listes .formation-liste-liste .formation-liste-liste-inner:after {
    display: none;
  }
}
@media screen and (max-width: 63.9375em) {
  .formations-listes .courses-list-tabs-wrapper {
    flex-direction: column;
    gap: 0;
  }
  .formations-listes .courses-list-tabs-wrapper ul {
    margin: 0;
  }
  .formations-listes .courses-list-tabs-wrapper .columns:last-child {
    padding-left: 0;
  }
  .formations-listes .courses-list-tabs-wrapper .accordion-item {
    border-bottom: solid 1px gainsboro;
    color: #303030;
  }
  .formations-listes .courses-list-tabs-wrapper .accordion-item.is-active {
    border-bottom: none;
  }
  .formations-listes .courses-list-tabs-wrapper .accordion-title {
    background-color: transparent;
    padding: 20px 30px;
    color: #3498db;
    font-weight: 400;
  }
  .formations-listes .courses-list-tabs-wrapper .accordion-title span {
    display: block;
    margin-top: 5px;
  }
  .formations-listes .courses-list-tabs-wrapper .accordion-title span + span {
    font-size: 0.7777777778rem;
    font-weight: 300;
    color: #303030;
  }
  .formations-listes .courses-list-tabs-wrapper .accordion-title .mecavenir-icon {
    display: none;
  }
  .formations-listes .courses-list-tabs-wrapper .accordion-content {
    border-bottom: solid 1px gainsboro;
  }
  .formations-listes .courses-list-tabs-wrapper .courses-list-level-content {
    padding: 0 10px;
  }
  .formations-listes .courses-list-tabs-wrapper .courses-list-level-content-title {
    font-size: 1rem;
    color: #303030;
    text-transform: none;
  }
}
/*** 20190129 flexbox for... flexibility ***/
@media print, screen and (min-width: 64em) {
  .formations-listes .large-up-4 {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: stretch;
  }
  .formations-listes .large-up-4 .column-block {
    float: none !important;
    flex: 1 1 0;
    margin-left: 10px;
    margin-right: 10px;
    padding: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 25% !important;
  }
  .formations-listes .large-up-4 .column-block:after {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 47px 47px 0 0;
    border-color: #000000 transparent transparent transparent;
    position: absolute;
    right: 0;
    bottom: 0;
    opacity: 0.12;
    content: "";
  }
  .formations-listes .large-up-4 .formation-liste-img {
    min-height: 1px;
  }
  .formations-listes .large-up-4 .formation-liste-liste {
    padding-top: 0 !important;
  }
  .formations-listes .large-up-4 .formation-liste-liste .formation-liste-liste-inner {
    position: relative !important;
    padding: 30px 15px;
  }
  .formations-listes .large-up-4 .formation-liste-liste .formation-liste-liste-inner:before {
    content: "";
    padding-top: 100%;
    display: block;
    float: left;
  }
  .formations-listes .large-up-4 .formation-liste-liste .formation-liste-level {
    margin-top: 2.2222222222rem;
  }
  .formations-listes .large-up-4 .formation-liste-liste .formation-liste-level:first-child {
    margin-top: 0;
  }
}
/* home page */
.home.page-template-default {
  overflow-x: hidden;
}

#mecavenir-homepage {
  background: #f4f4f4;
}
#mecavenir-homepage .entry-content {
  background: #ffffff;
  padding-top: 3.3333333333rem;
  padding-bottom: 3.3333333333rem;
  text-align: center;
  color: #95a5a6;
  font-size: 1.2222222222rem;
}
@media screen and (max-width: 39.9375em) {
  #mecavenir-homepage .entry-content {
    padding-top: 2.2222222222rem;
    padding-bottom: 2.2222222222rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  #mecavenir-homepage .entry-content {
    padding-top: 2.7777777778rem;
    padding-bottom: 2.7777777778rem;
  }
}
#mecavenir-homepage .entry-content p {
  margin: 0;
}
#mecavenir-homepage .chiffre-cle {
  color: #3498db;
  font-size: 1.2222222222rem;
  background: #f4f4f4;
  padding-bottom: 0;
}
#mecavenir-homepage .chiffre-cle .chiffre-cle-content {
  background: #ffffff;
  padding-top: 3.3333333333rem;
  padding-bottom: 3.3333333333rem;
}
@media screen and (max-width: 39.9375em) {
  #mecavenir-homepage .chiffre-cle .chiffre-cle-content {
    padding-top: 2.2222222222rem;
    padding-bottom: 2.2222222222rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  #mecavenir-homepage .chiffre-cle .chiffre-cle-content {
    padding-top: 2.7777777778rem;
    padding-bottom: 2.7777777778rem;
  }
}
#mecavenir-homepage .chiffre-cle .section-label {
  padding-bottom: 0;
}
#mecavenir-homepage .chiffre-cle .mecavenir-icon {
  color: #2875a8;
}
#mecavenir-homepage .chiffre-cle .stat {
  font-size: 3.3333333333rem;
}
#mecavenir-homepage .chiffre-cle .mecavenir-icon {
  font-size: 4.4444444444rem;
}
#mecavenir-homepage .carousel-partenaire-wrapper {
  padding-top: 0;
}

.has-video-header .main-content-header,
#mecavenir-homepage .main-content-header {
  /*
  height: calc(100vh - 129px) !important;
  position: relative;
  */
  /*
  .main-content-header-content {
    width: 100%;
    z-index: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    //margin-top: 90px;
    > row > columns {
      width: 100%;
    }
  }
  */
}
.has-video-header .main-content-header .plyr,
#mecavenir-homepage .main-content-header .plyr {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.has-video-header .main-content-header .entry-sub-title,
.has-video-header .main-content-header p, .has-video-header .main-content-header h1, .has-video-header .main-content-header a,
#mecavenir-homepage .main-content-header .entry-sub-title,
#mecavenir-homepage .main-content-header p,
#mecavenir-homepage .main-content-header h1,
#mecavenir-homepage .main-content-header a {
  color: #ffffff;
}
.has-video-header .main-content-header .entry-sub-title,
#mecavenir-homepage .main-content-header .entry-sub-title {
  margin-top: 40px;
}
.has-video-header .main-content-header h1,
#mecavenir-homepage .main-content-header h1 {
  font-size: 2.2222222222rem;
}
.has-video-header .main-content-header i.fa-quote-left,
#mecavenir-homepage .main-content-header i.fa-quote-left {
  padding-right: 20px;
  font-size: 1.6666666667rem;
  vertical-align: top;
}
.has-video-header .main-content-header i.fa-quote-right,
#mecavenir-homepage .main-content-header i.fa-quote-right {
  padding-left: 20px;
  font-size: 1.6666666667rem;
  vertical-align: bottom;
}
.has-video-header .main-content-header .entry-sub-title,
#mecavenir-homepage .main-content-header .entry-sub-title {
  font-weight: 700;
}
.has-video-header .main-content-header .plyr__video-embed:after,
#mecavenir-homepage .main-content-header .plyr__video-embed:after {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  content: "";
}
.has-video-header .main-content-header button,
#mecavenir-homepage .main-content-header button {
  display: none !important;
}
.has-video-header .main-content-header .plyr__controls,
#mecavenir-homepage .main-content-header .plyr__controls {
  display: none !important;
}
.has-video-header .main-content-header .scroll-btn,
#mecavenir-homepage .main-content-header .scroll-btn {
  bottom: 30px;
}

#mecavenir-homepage .main-content-header-content .main-content-header-content-2-cols h1,
#mecavenir-homepage .main-content-header-content .main-content-header-content-2-cols h2,
#mecavenir-homepage .main-content-header-content .main-content-header-content-2-cols p {
  margin-bottom: 1.1111111111rem;
  color: #ffffff;
}
#mecavenir-homepage .main-content-header-content .main-content-header-content-2-cols h1,
#mecavenir-homepage .main-content-header-content .main-content-header-content-2-cols h2 {
  line-height: 1.15;
}
#mecavenir-homepage .main-content-header-content .main-content-header-content-2-cols a {
  padding: 0.7777777778rem 1.3888888889rem;
  margin: 0;
  font-size: 0.75rem;
  background-color: #3498db;
  border: solid 1px #3498db;
  color: #ffffff;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.51px;
  line-height: 1;
  font-weight: 700;
}
#mecavenir-homepage .main-content-header-content .main-content-header-content-2-cols a:hover, #mecavenir-homepage .main-content-header-content .main-content-header-content-2-cols a:focus {
  color: #303030;
  background-color: #ffffff;
  border: solid 1px #ffffff;
}
#mecavenir-homepage .main-content-header-content .main-content-header-content-links-bottom a.button {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #3498db;
}
#mecavenir-homepage .main-content-header-content .main-content-header-content-links-bottom a.button:hover, #mecavenir-homepage .main-content-header-content .main-content-header-content-links-bottom a.button:focus {
  color: #303030;
}

@media screen and (min-width: 64em) {
  #mecavenir-homepage {
    /*
    .main-content-header {
      &.has-main-content-header-2-cols {
        display: flex;
        width: 100%;
        height: auto !important;
        overflow: hidden;
        transform: translateY(-60px);
        margin-bottom: -60px;

        .main-content-header-content {
          position: relative;
          top: 0;
          left: 0;
          transform: translate(0, 0);
        }
      }
    }
    */
  }
  #mecavenir-homepage .main-content-header-content .main-content-header-content-2-cols {
    justify-content: center;
    display: flex;
    gap: 5vw;
    padding-top: 1.1111111111rem;
  }
  #mecavenir-homepage .main-content-header-content .main-content-header-content-2-cols h1 {
    font-size: 2.7777777778rem;
    margin-top: -1.1111111111rem;
  }
}
@media screen and (max-width: 63.9375em) {
  #mecavenir-homepage .main-content-header-content .main-content-header-content-2-cols {
    align-items: center;
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  #mecavenir-homepage .main-content-header-content .main-content-header-content-2-cols h1 {
    font-size: 1.6666666667rem;
  }
  #mecavenir-homepage .main-content-header.has-main-content-header-2-cols {
    height: auto !important;
  }
  #mecavenir-homepage .main-content-header.has-main-content-header-2-cols .main-content-header-content {
    position: relative;
    top: 0;
    left: 0;
    transform: translate(0, 0);
  }
}
@media screen and (min-width: 64em) {
  #mecavenir-homepage .header-fixed-links-right + .main-content-header .main-content-header-content-2-cols {
    justify-content: start;
  }
}
@media screen and (max-width: 39.9375em) {
  #mecavenir-homepage .main-content-header-content .main-content-header-content-links-bottom a,
#mecavenir-homepage .main-content-header-content .main-content-header-content-2-cols a {
    display: block;
  }
  #mecavenir-homepage .main-content-header-content .main-content-header-content-links-bottom {
    margin-top: 2.7777777778rem;
  }
}
@media screen and (min-width: 40em) {
  #mecavenir-homepage .main-content-header-content .main-content-header-content-links-bottom {
    margin-top: 80px;
    display: flex;
    justify-content: center;
  }
  #mecavenir-homepage .main-content-header-content .main-content-header-content-links-bottom > div {
    display: flex;
    flex-wrap: wrap;
    gap: 1.1111111111rem;
    justify-content: center;
  }
  #mecavenir-homepage .main-content-header-content .main-content-header-content-links-bottom a {
    margin: 0;
  }
}
.header-fixed-links-right a {
  padding: 0.7777777778rem 0.7777777778rem;
  font-size: 0.75rem;
  background-color: #3498db;
  color: #ffffff;
  line-height: 1.05;
  box-shadow: 0px 2px 8px 0px rgba(99, 99, 99, 0.3);
}
.header-fixed-links-right a:hover, .header-fixed-links-right a:focus {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #303030;
}

@media screen and (min-width: 64em) {
  .header-fixed-links-right {
    position: fixed;
    top: 300px;
    right: 0;
    width: 15vw;
    z-index: 10000;
  }
  .header-fixed-links-right a {
    display: block;
  }
}
@media screen and (max-width: 63.9375em) {
  .header-fixed-links-right {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 10000;
    display: flex;
    justify-content: center;
    gap: 1px;
  }
  .header-fixed-links-right a {
    display: inline-flex;
    width: 50%;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin: 0;
  }
}
@media screen and (max-width: 63.9375em) {
  #mecavenir-homepage .chiffre-cle {
    display: none;
  }
}
@media screen and (max-width: 39.9375em) {
  #mecavenir-homepage .main-content-header h1 {
    font-size: 1rem;
  }
  #mecavenir-homepage .main-content-header h1 i.fa-quote-right,
#mecavenir-homepage .main-content-header h1 i.fa-quote-left {
    font-size: 1.1111111111rem;
  }
  #mecavenir-homepage .main-content-header .entry-sub-title {
    font-size: 0.8888888889rem;
    margin-top: 20px;
  }
  #mecavenir-homepage .main-content-header .scroll-btn {
    display: none;
  }
  #mecavenir-homepage .entry-content p {
    font-size: 0.8333333333rem;
  }
}
/* post article */
#mecavenir-single-post .article-image-wrapper,
#mecavenir-single-post .article-video-wrapper {
  margin-top: 3.3333333333rem;
}
@media screen and (max-width: 39.9375em) {
  #mecavenir-single-post .article-image-wrapper,
#mecavenir-single-post .article-video-wrapper {
    margin-top: 2.2222222222rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  #mecavenir-single-post .article-image-wrapper,
#mecavenir-single-post .article-video-wrapper {
    margin-top: 2.7777777778rem;
  }
}
#mecavenir-single-post .post-date {
  padding-top: 40px;
  display: block;
}
#mecavenir-single-post .navigation.post-navigation {
  border-top: solid 1px #e7e7e7;
}
#mecavenir-single-post .navigation.post-navigation .nav-previous,
#mecavenir-single-post .navigation.post-navigation .nav-next {
  width: 40%;
}
#mecavenir-single-post .navigation.post-navigation .nav-previous a,
#mecavenir-single-post .navigation.post-navigation .nav-next a {
  display: block;
  font-weight: 400;
}
#mecavenir-single-post .navigation.post-navigation .nav-previous {
  text-align: left;
}
#mecavenir-single-post .navigation.post-navigation .nav-previous a {
  padding: 20px 40px 20px 60px;
}
#mecavenir-single-post .navigation.post-navigation .nav-previous a:before {
  font-family: "mecavenir";
  content: "\e908";
  margin-left: -30px;
  padding-right: 10px;
}
#mecavenir-single-post .navigation.post-navigation .nav-next {
  text-align: right;
}
#mecavenir-single-post .navigation.post-navigation .nav-next a {
  padding: 20px 60px 20px 40px;
}
#mecavenir-single-post .navigation.post-navigation .nav-next a:after {
  font-family: "mecavenir";
  content: "\e907";
  margin-right: -30px;
  padding-left: 10px;
}

/* post list */
.blogroll-page {
  margin-bottom: 3.3333333333rem;
}
@media screen and (max-width: 39.9375em) {
  .blogroll-page {
    margin-bottom: 2.2222222222rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .blogroll-page {
    margin-bottom: 2.7777777778rem;
  }
}
.blogroll-page .article-list {
  margin-top: 3.3333333333rem;
}
@media screen and (max-width: 39.9375em) {
  .blogroll-page .article-list {
    margin-top: 2.2222222222rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .blogroll-page .article-list {
    margin-top: 2.7777777778rem;
  }
}
.blogroll-page .article-list .blogpost-entry {
  margin-bottom: 1.6666666667rem;
  padding-bottom: 1.6666666667rem;
  border-bottom: solid 1px #e7e7e7;
}
@media screen and (max-width: 39.9375em) {
  .blogroll-page .article-list .blogpost-entry {
    margin-bottom: 1.1111111111rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .blogroll-page .article-list .blogpost-entry {
    margin-bottom: 1.3888888889rem;
  }
}
@media screen and (max-width: 39.9375em) {
  .blogroll-page .article-list .blogpost-entry {
    padding-bottom: 1.1111111111rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .blogroll-page .article-list .blogpost-entry {
    padding-bottom: 1.3888888889rem;
  }
}
.blogroll-page .article-list .blogpost-entry:last-child {
  border-bottom: none;
}
.blogroll-page .article-list .blogpost-entry h2 {
  margin-bottom: 30px;
}
.blogroll-page .article-list .blogpost-entry .post-date {
  font-size: 0.7222222222rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.blogroll-page .article-list .blogpost-entry p {
  margin-bottom: 0;
}
.blogroll-page .article-read-more {
  font-size: 0.7777777778rem;
  font-weight: 700;
  margin-top: 20px;
}
.blogroll-page .article-read-more:after {
  font-family: "mecavenir";
  content: "\e905";
  padding-left: 10px;
  color: #3498db;
}

/* pagination */
.pagination .current {
  padding: 0;
}
.pagination .current a {
  color: #303030;
}
.pagination .current a:hover, .pagination .current a:focus {
  background: none;
}

/* campus liste */
#campus-liste {
  padding-top: 3.3333333333rem;
}
@media screen and (max-width: 39.9375em) {
  #campus-liste {
    padding-top: 2.2222222222rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  #campus-liste {
    padding-top: 2.7777777778rem;
  }
}
#campus-liste .campus-liste-campus .bg-image-cover {
  padding-top: 67%;
  position: relative;
}
#campus-liste .campus-liste-campus .bg-image-cover:after {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  content: "";
  background: rgba(0, 0, 0, 0.3);
}
#campus-liste .campus-liste-campus h3 {
  font-size: 1.6666666667rem;
  color: #ffffff;
  font-weight: 400;
  margin-bottom: 50px;
}
#campus-liste .campus-liste-campus .campus-liste-campus-wrapper {
  z-index: 1;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
#campus-liste .campus-liste-campus .campus-liste-campus-wrapper .campus-liste-campus-inner {
  height: 100%;
  display: table;
  width: 100%;
}
#campus-liste .campus-liste-campus .campus-liste-campus-wrapper .campus-liste-campus-inner .campus-liste-campus-inner-content {
  display: table-cell;
  vertical-align: middle;
}
#campus-liste .campus-liste-campus .campus-liste-campus-texte {
  background: #ffffff;
}
#campus-liste .campus-liste-campus .campus-liste-campus-texte p {
  padding: 30px 0;
  color: #303030;
  margin: 0;
  font-size: 1.1111111111rem;
}
#campus-liste .campus-liste-campus .campus-poi,
#campus-liste .campus-liste-campus .campus-contact {
  color: #ffffff;
  font-size: 1.9444444444rem;
  float: left;
  width: 50%;
  padding-top: 7px;
  padding-bottom: 7px;
  text-align: center;
  transition: all 250ms ease-out;
}
#campus-liste .campus-liste-campus .campus-poi:hover, #campus-liste .campus-liste-campus .campus-poi:focus, #campus-liste .campus-liste-campus .campus-poi:active,
#campus-liste .campus-liste-campus .campus-contact:hover,
#campus-liste .campus-liste-campus .campus-contact:focus,
#campus-liste .campus-liste-campus .campus-contact:active {
  color: #3498db;
  background: #ffffff;
}
#campus-liste .campus-liste-campus .campus-poi {
  background: #1d6fa5;
}
#campus-liste .campus-liste-campus .campus-contact {
  background: #3498db;
}

@media screen and (max-width: 39.9375em) {
  #campus-liste {
    overflow: hidden;
  }
  #campus-liste .campus-liste {
    margin-left: -20px;
    margin-right: -20px;
  }
  #campus-liste .campus-liste-campus .bg-image-cover {
    padding-top: 50%;
  }
  #campus-liste .campus-liste-campus h3 {
    font-size: 1.1111111111rem;
    margin-bottom: 30px;
  }
  #campus-liste .campus-liste-campus .campus-liste-campus-texte p {
    font-size: 0.7777777778rem;
    padding: 20px;
  }
  #campus-liste .campus-liste-campus .campus-poi,
#campus-liste .campus-liste-campus .campus-contact {
    padding: 0;
  }
  #campus-liste .campus-liste-campus .campus-poi i,
#campus-liste .campus-liste-campus .campus-contact i {
    font-size: 1.6666666667rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  #campus-liste .campus-liste-campus .bg-image-cover {
    padding-top: 50%;
  }
  #campus-liste .campus-liste-campus h3 {
    font-size: 1.3333333333rem;
    margin-bottom: 30px;
  }
  #campus-liste .campus-liste-campus .campus-liste-campus-texte p {
    font-size: 1rem;
    padding: 20px;
  }
}
/* ecoles-liste */
#ecoles-liste {
  padding-top: 3.3333333333rem;
}
@media screen and (max-width: 39.9375em) {
  #ecoles-liste {
    padding-top: 2.2222222222rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  #ecoles-liste {
    padding-top: 2.7777777778rem;
  }
}
#ecoles-liste .ecoles-liste-wrapper {
  background: #ffffff;
  padding-top: 2.2222222222rem;
  padding-bottom: 2.2222222222rem;
}
@media screen and (max-width: 39.9375em) {
  #ecoles-liste .ecoles-liste-wrapper {
    padding-top: 1.4814814815rem;
    padding-bottom: 1.4814814815rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  #ecoles-liste .ecoles-liste-wrapper {
    padding-top: 1.8518518519rem;
    padding-bottom: 1.8518518519rem;
  }
}
#ecoles-liste .ecoles-liste-wrapper ul {
  margin: 0;
}
#ecoles-liste .ecoles-liste-wrapper li {
  padding: 0 20px;
}
#ecoles-liste .ecoles-liste-wrapper .orbit button {
  color: #303030;
  font-size: 1.1111111111rem;
  cursor: pointer;
}
#ecoles-liste .ecoles-liste-wrapper .orbit li img {
  padding: 0 20px;
}

/* blog roll Packery */
#blogroll {
  padding-top: 3.3333333333rem;
  padding-bottom: 3.3333333333rem;
  background: #f4f4f4;
}
@media screen and (max-width: 39.9375em) {
  #blogroll {
    padding-top: 2.2222222222rem;
    padding-bottom: 2.2222222222rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  #blogroll {
    padding-top: 2.7777777778rem;
    padding-bottom: 2.7777777778rem;
  }
}
#blogroll .blogroll-more {
  padding-top: 30px;
}
#blogroll .blogroll-more a {
  border-color: #303030;
  color: #303030;
  display: inline-block !important;
}
#blogroll .blogroll-more a:focus, #blogroll .blogroll-more a:hover, #blogroll .blogroll-more a:active {
  background: #303030;
  color: #ffffff;
}
@media screen and (max-width: 39.9375em) {
  #blogroll .blogroll-more {
    padding-left: 0;
    padding-right: 0;
  }
  #blogroll .blogroll-more a {
    display: block !important;
    margin-left: 0;
    margin-right: 0;
  }
}
#blogroll .grid:after { /* clear fix */
  content: "";
  display: block;
  clear: both;
}
#blogroll .grid-item .grid-form-wrapper {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}
#blogroll .grid-item .grid-form-wrapper .grid-form {
  position: relative;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transform: translateY(-50%);
  top: 50%;
  text-align: center;
}
#blogroll .grid-item .grid-form-wrapper .grid-form label {
  color: #FFF;
  font-weight: bold;
  margin-left: 2px;
  margin-right: 5px;
}
#blogroll .grid-item:hover .grid-form-wrapper {
  display: block;
}
.grid-item {
  float: left;
  width: 25%;
  position: relative;
  font-size: 0.8888888889rem;
}
.grid-item h3 {
  font-size: 1.3333333333rem;
  font-weight: 400;
  margin-bottom: 10px;
}
.grid-item .grid-item-content-wrapper {
  position: relative;
  padding-top: 100%;
}
.grid-item .grid-item-content-wrapper .grid-item-content {
  padding: 10px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.grid-item .grid-item-content-wrapper .grid-item-content-inner {
  height: 100%;
  position: relative;
  overflow: hidden;
}
.grid-item .grid-item-content-date {
  margin-top: 10px;
  font-weight: 700;
}
.grid-item .grid-item-media {
  height: 50%;
}
.grid-item .grid-item-content-excerpt-short {
  display: none;
}
.grid-item .grid-item-content-excerpt {
  display: none;
}
.grid-item .button {
  display: none;
  margin-top: 10px;
  padding-left: 60px;
  padding-right: 60px;
}
.grid-item .grid-item-content-excerpt-long {
  display: none;
}
.grid-item.grid-item--height2 .grid-item-content-wrapper {
  padding-top: 200%;
}
.grid-item.grid-item--height2 .grid-item-content-excerpt-short {
  display: block;
}
.grid-item .has-bg-color,
.grid-item .has-bg-color a,
.grid-item .has-bg-color p {
  color: #ffffff !important;
}
.grid-item.grid-item--width2 {
  width: 50%;
  /*
  .grid-item-content-inner{
    //width: 100%;
    float:left;
  }
  */
}
.grid-item.grid-item--width2 .grid-item-content-wrapper {
  padding-top: 50%;
}
.grid-item.grid-item--width2 .grid-item-media {
  float: right;
  width: 50%;
  height: 100%;
}
.grid-item.grid-item--width2 .grid-item-content-excerpt-short,
.grid-item.grid-item--width2 .grid-item-content-excerpt {
  display: block;
}
.grid-item.grid-item--width2 .grid-item-media {
  float: right;
}
.grid-item.grid-item--width2 .grid-item-content-text {
  margin-right: 50%;
}
.grid-item.grid-item--width2.grid-item--height2 {
  /*
  .grid-item-content-inner{
    width: 100%;
    float: none;
  }
  */
}
.grid-item.grid-item--width2.grid-item--height2 .grid-item-media {
  float: none;
}
.grid-item.grid-item--width2.grid-item--height2 .button {
  display: inline-block;
}
.grid-item.grid-item--width2.grid-item--height2 .grid-item-content-excerpt-short {
  display: bloc;
}
.grid-item.grid-item--width2.grid-item--height2 h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.grid-item.grid-item--width2.grid-item--height2 .grid-item-content-wrapper {
  padding-top: 100%;
}
.grid-item.grid-item--width2.grid-item--height2 .grid-item-media {
  float: none;
  height: 50%;
  width: 100%;
}
.grid-item.grid-item--width2.grid-item--height2 .grid-item-content-text {
  margin-right: 0;
}
.grid-item.grid-item--width2.grid-item--height2 .grid-item-content-excerpt-short {
  display: none;
}
.grid-item.grid-item--width2.grid-item--height2 .grid-item-content-excerpt-long {
  display: block;
}
.grid-item .grid-item-content-text {
  position: relative;
  padding: 30px 30px 0 30px;
}
.grid-item .no-media .grid-item-media {
  display: none;
}
.grid-item .no-media .grid-item-content-excerpt-short {
  display: none;
}
.grid-item .no-media .grid-item-content-excerpt-long {
  display: block;
}
.grid-item .video-media .bg-video-cover {
  background-size: cover;
  background-position: center center;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.grid-item .video-media .bg-video-static-button {
  display: block;
}
.grid-item .video-media .bg-video-static-button svg {
  margin-top: 27px;
}
.grid-item .video-media .grid-item-content-text {
  width: 100%;
  margin: 0;
  text-align: center;
}
@media print, screen and (min-width: 40em) {
  .grid-item .video-media,
.grid-item .video-media a {
    color: #ffffff;
  }
}
.grid-item .video-media h3 {
  position: absolute;
  left: 0;
  right: 0;
  font-size: 2rem;
}
.grid-item .video-media .grid-item-content-date {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
}
.grid-item .video-media .button,
.grid-item .video-media .grid-item-content-excerpt-long {
  display: none;
}
.grid-item .video-media .grid-item-content-text {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.grid-item .video-media .plyr .plyr__video-embed {
  padding-bottom: 100%;
}
.grid-item .video-media .plyr .plyr__video-embed iframe {
  height: 100% !important;
}
.grid-item .video-media .plyr .plyr__controls {
  display: none;
}
.grid-item.grid-item--width2 .video-media .plyr .plyr__video-embed {
  padding-bottom: 50%;
}
.grid-item.grid-item--width2.grid-item--height2 .video-media .button,
.grid-item.grid-item--width2.grid-item--height2 .video-media .grid-item-content-excerpt-long {
  display: none;
}
.grid-item.grid-item--width2.grid-item--height2 .video-media .plyr .plyr__video-embed {
  padding-bottom: 100%;
}

.grid-edit-mode .grid {
  width: 1168px !important;
}
.grid-edit-mode .grid-item {
  width: 292px !important;
}
.grid-edit-mode .grid-item.grid-item--width2 {
  width: 584px !important;
}

@media screen and (min-width: 64em) and (max-width: 79.9375em) {
  #blogroll .grid-item h3 {
    font-size: 1.1111111111rem;
  }
  #blogroll .grid-item.grid-item--width2.grid-item--height2 h3 {
    font-size: 1.6666666667rem;
  }
  #blogroll .grid-item .grid-item-content-text {
    padding: 15px 20px 0 20px;
  }
  #blogroll .grid-item .button {
    display: none !important;
  }
}
@media screen and (max-width: 39.9375em) {
  #blogroll .grid-item {
    width: 100% !important;
    padding-top: 0 !important;
  }
  #blogroll .grid-item.grid-item--width2 .grid-item-content-text,
#blogroll .grid-item.grid-item--width2 .grid-item-media {
    float: none;
    width: 100%;
  }
  #blogroll .grid-item:nth-child(n+6) {
    display: none !important;
  }
  #blogroll .grid-item .grid-item-content-wrapper {
    padding-top: 0 !important;
  }
  #blogroll .grid-item .video-media h3 {
    position: relative !important;
  }
  #blogroll .grid-item .grid-item-content-date,
#blogroll .grid-item .grid-item-content-text,
#blogroll .grid-item .grid-item-content,
#blogroll .grid-item .grid-item-content-inner {
    position: relative !important;
    overflow: auto;
  }
  #blogroll .grid-item .bg-image-cover {
    padding-top: 50% !important;
  }
  #blogroll .section-label,
#blogroll .section-label-secondary {
    padding-left: 40px;
    padding-right: 40px;
  }
  #blogroll .button {
    display: block;
    margin-left: 10%;
    margin-right: 10%;
  }
  #blogroll h1 {
    font-size: 1.3333333333rem !important;
  }
  #blogroll .video-media .grid-item-content-inner .bg-video-cover {
    position: relative;
    padding-top: 50%;
  }
  #blogroll .video-media .grid-item-content-inner .bg-video-static-button {
    position: absolute;
    top: 25%;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  #blogroll {
    margin-left: -10px;
    margin-right: -10px;
  }
  #blogroll .section-label,
#blogroll .section-label-secondary {
    padding-left: 40px;
    padding-right: 40px;
  }
  #blogroll .grid-item {
    width: 50% !important;
  }
  #blogroll .grid-item--height2 .grid-item-content-wrapper {
    padding-top: 100% !important;
  }
  #blogroll h1 {
    font-size: 1.3333333333rem !important;
  }
  #blogroll .grid-item-content-excerpt-long,
#blogroll .button,
#blogroll .grid-item-content-excerpt-short {
    display: none !important;
  }
}
.packery-drop-placeholder {
  outline: 3px dashed #444;
  outline-offset: -6px;
  /* transition position changing */
  -webkit-transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
}

/* social wall */
.mecavenir-wall {
  padding-top: 3.3333333333rem;
}
@media screen and (max-width: 39.9375em) {
  .mecavenir-wall {
    padding-top: 2.2222222222rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .mecavenir-wall {
    padding-top: 2.7777777778rem;
  }
}
.mecavenir-wall .inline-block-fix {
  font-size: 0;
}
.mecavenir-wall a {
  font-size: 0.7777777778rem;
  line-height: 1.55;
  color: #5c5c5c;
  width: 16.6667%;
  float: left;
  margin: 0;
  padding-top: 16.6667%;
  position: relative;
}
.mecavenir-wall a .inner {
  background-size: cover;
  background-position: center center;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.mecavenir-wall .social-network-text {
  background-color: #ffffff;
  padding: 15px;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.mecavenir-wall .social-network-text.full-size {
  top: 0;
}
.mecavenir-wall .social-network-text.full-size .inner-text {
  transform: translateY(-50%);
  top: 50%;
  position: absolute;
}
.mecavenir-wall .social-network-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  color: #ffffff;
  display: table;
  vertical-align: middle;
}
.mecavenir-wall .social-network-icon i {
  font-size: 24px;
  text-align: center;
  vertical-align: middle;
  display: table-cell;
}
.mecavenir-wall .twitter .social-network-icon {
  background-color: #00aaff;
}
.mecavenir-wall .facebook .social-network-icon {
  background-color: #005597;
}

@media screen and (max-width: 39.9375em) {
  .mecavenir-wall a {
    width: 50%;
    padding-top: 50%;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  .mecavenir-wall a {
    width: 33%;
    padding-top: 33%;
  }
}
@media screen and (min-width: 64em) and (max-width: 79.9375em) {
  .mecavenir-wall a {
    width: 25%;
    padding-top: 25%;
  }
}
/* search */
#search-results #searchform {
  padding-top: 1.6666666667rem;
  padding-bottom: 2.2222222222rem;
}
@media screen and (max-width: 39.9375em) {
  #search-results #searchform {
    padding-top: 1.1111111111rem;
    padding-bottom: 1.4814814815rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  #search-results #searchform {
    padding-top: 1.3888888889rem;
    padding-bottom: 1.8518518519rem;
  }
}
#search-results #searchform input {
  box-shadow: none;
  border-color: #ffffff;
}
#search-results #searchform .button {
  margin-left: 3px;
  background: #ffffff;
  border-color: #ffffff;
}
#search-results #searchform .button:hover, #search-results #searchform .button:focus {
  border-color: #196090;
  background: #196090;
  color: #ffffff;
}
#search-results .search-help {
  font-size: 1.6666666667rem;
  font-style: italic;
  padding-top: 1.6666666667rem;
}
@media screen and (max-width: 39.9375em) {
  #search-results .search-help {
    padding-top: 1.1111111111rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  #search-results .search-help {
    padding-top: 1.3888888889rem;
  }
}
#search-results .search-keyword-wrapper {
  padding-bottom: 3.3333333333rem;
  font-size: 1.4444444444rem;
}
@media screen and (max-width: 39.9375em) {
  #search-results .search-keyword-wrapper {
    padding-bottom: 2.2222222222rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  #search-results .search-keyword-wrapper {
    padding-bottom: 2.7777777778rem;
  }
}
#search-results .search-results {
  padding-top: 3.3333333333rem;
  padding-bottom: 3.3333333333rem;
}
@media screen and (max-width: 39.9375em) {
  #search-results .search-results {
    padding-top: 2.2222222222rem;
    padding-bottom: 2.2222222222rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
  #search-results .search-results {
    padding-top: 2.7777777778rem;
    padding-bottom: 2.7777777778rem;
  }
}

/* ACF Gmap */
.acf-map {
  width: 100%;
  min-height: 600px;
  /* fixes potential theme css conflict */
}
.acf-map .acf-map img {
  max-width: inherit !important;
}

/* css3 loader */
/* https://projects.lukehaas.me/css-loaders/ */
.loader-wrapper {
  position: relative;
}

.loader,
.loader:after {
  border-radius: 50%;
  width: 10em;
  height: 10em;
}

.loader {
  margin: 160px auto;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(52, 152, 219, 0.2);
  border-right: 1.1em solid rgba(52, 152, 219, 0.2);
  border-bottom: 1.1em solid rgba(52, 152, 219, 0.2);
  border-left: 1.1em solid #3498db;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}

@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/*** cookie-notice ***/
/*
.cookie-notice,
#cookie-notice{
  font-size: rem-calc(13);
  .cookie-notice-container{
    padding-top: 15px;
    padding-bottom: 15px;
  }
  a,
  button,
  a.button{
    min-width: auto;
    padding-left: 20px;
    padding-right: 20px;
    font-size: rem-calc(10);
  }
  .cn-text-container{
    a{
      padding: 0;
      font-size: inherit;
      color: $white;
      text-decoration: underline;
    }
  }
}
*/
.reveal-overlay.gdpr-reveal-background {
  background-color: rgba(0, 0, 0, 0.33);
  right: -20px;
  z-index: 100020;
}

.reveal-overlay {
  right: -20px;
}

.reveal.reveal-gpdr {
  padding: 1% 5% 4% 5%;
  font-size: 0.8888888889rem;
}
.reveal.reveal-gpdr:focus {
  outline: 0;
}
.reveal.reveal-gpdr h2 {
  font-size: 1.6666666667rem;
  padding: 1.6666666667rem;
  margin-bottom: 10px;
}
.reveal.reveal-gpdr button {
  margin-bottom: 0;
}
.reveal.reveal-gpdr label {
  font-weight: bold;
}
.reveal.reveal-gpdr .reveal-modal-actions {
  padding-top: 20px;
}
.reveal.gpdr-reveal-bottom {
  font-size: 0.7777777778rem;
  top: auto !important;
  bottom: 0 !important;
  margin: 0 !important;
  position: fixed;
  width: 100% !important;
  max-width: none !important;
  border: 0;
  box-shadow: none;
  background-color: #3498db;
  color: #ffffff;
  padding: 0;
  /*
  h2{
    position:absolute;
    left:-10000px;
    top:auto;
    width:1px;
    height:1px;
    overflow:hidden;
  }
  */
}
.reveal.gpdr-reveal-bottom .cookie-notice-container-inner {
  padding-top: 16px;
  padding-bottom: 16px;
}
.reveal.gpdr-reveal-bottom a,
.reveal.gpdr-reveal-bottom button {
  font-size: 0.7777777778rem;
  color: #ffffff;
  margin: 0;
}
.reveal.gpdr-reveal-bottom a {
  text-decoration: underline;
}
.reveal.gpdr-reveal-bottom .block2 a,
.reveal.gpdr-reveal-bottom .block2 button {
  font-weight: 700;
  font-size: 0.6666666667rem;
  text-transform: uppercase;
}
.reveal.gpdr-reveal-bottom .switch {
  margin-bottom: 0;
}
.reveal .close-reveal-modal {
  color: #aaa;
  cursor: pointer;
  font-size: 2.22222rem;
  line-height: 1;
  position: absolute;
  top: 10px;
  right: 15px;
}

@media screen and (min-width: 64em) {
  .reveal.reveal-gpdr.gpdr-reveal-preferences {
    width: 800px;
  }
  .reveal.gpdr-reveal-bottom .cookie-notice-container-inner {
    display: flex;
    align-items: center;
  }
}
@media screen and (max-width: 63.9375em) {
  #coheractio-gdpr-modal-notice {
    min-height: 0;
    height: auto;
  }
  #coheractio-gdpr-modal-notice .block1,
#coheractio-gdpr-modal-notice .block2 {
    text-align: center;
  }
  #coheractio-gdpr-modal-notice .block2 {
    margin-top: 20px;
  }
}
.video-redirect {
  background-color: #f4f4f4;
}
.video-redirect .video-redirect-info {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
}
.video-redirect .video-redirect-info a {
  display: flex;
  flex-direction: column;
}
.video-redirect .video-redirect-info a .plyr {
  height: 90px;
}
.video-redirect .video-redirect-info a .video-redirect-info-text {
  margin-top: 10px;
}

.switch input:checked ~ .switch-paddle::after {
  left: 28px;
}

.switch input:disabled ~ .switch-paddle {
  cursor: not-allowed;
  opacity: 0.5;
}
.switch .switch.small input:checked ~ .switch-paddle::after {
  left: 28px;
}
.switch .switch-paddle {
  height: 24px;
  width: 50px;
  display: inline-block;
  position: static !important;
}
.switch .switch-paddle:after {
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
}
.switch .switch-paddle span {
  color: #303030;
  display: block;
  line-height: 24px;
  left: 60px;
  position: absolute;
}
.switch.small {
  /*
  .switch-input{
    position: absolute;
    opacity: 0;
  }
  */
}
.switch.small .switch-paddle {
  height: 24px;
  display: inline-block;
  position: static !important;
}
.switch.small .switch-paddle:after {
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
}
.switch.small .switch-paddle span {
  color: #303030;
  display: block;
  line-height: 24px;
  left: 60px;
  position: absolute;
}
