@charset "UTF-8";
/******************************************************************
	
Stylesheet: Main Stylesheet

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

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

Stylesheet: Mixins & Constants Stylesheet

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

body {
  margin: 0;
  padding: 0;
  background: #fefefe;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: #1A1A1A;
  -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.41667rem; }

select {
  width: 100%;
  border-radius: 0.41667rem; }

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

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

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

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

.row, #about-first-row, #about-second-row, #cookie-notice .cookie-notice-container {
  max-width: 98.05556rem;
  margin-right: auto;
  margin-left: auto; }
  .row::before, #about-first-row::before, #about-second-row::before, #cookie-notice .cookie-notice-container::before, .row::after, #about-first-row::after, #about-second-row::after, #cookie-notice .cookie-notice-container::after {
    display: table;
    content: ' '; }
  .row::after, #about-first-row::after, #about-second-row::after, #cookie-notice .cookie-notice-container::after {
    clear: both; }
  .row.collapse > .column, .collapse#about-first-row > .column, .collapse#about-second-row > .column, #cookie-notice .collapse.cookie-notice-container > .column, .row.collapse > .columns, .collapse#about-first-row > .columns, .collapse#about-second-row > .columns, #cookie-notice .collapse.cookie-notice-container > .columns {
    padding-right: 0;
    padding-left: 0; }
  .row .row, #about-first-row .row, #about-second-row .row, #cookie-notice .cookie-notice-container .row, .row #about-first-row, #about-first-row #about-first-row, #about-second-row #about-first-row, #cookie-notice .cookie-notice-container #about-first-row, .row #about-second-row, #about-first-row #about-second-row, #about-second-row #about-second-row, #cookie-notice .cookie-notice-container #about-second-row, .row #cookie-notice .cookie-notice-container, #cookie-notice .row .cookie-notice-container, #about-first-row #cookie-notice .cookie-notice-container, #cookie-notice #about-first-row .cookie-notice-container, #about-second-row #cookie-notice .cookie-notice-container, #cookie-notice #about-second-row .cookie-notice-container, #cookie-notice .cookie-notice-container .cookie-notice-container {
    margin-right: -0.69444rem;
    margin-left: -0.69444rem; }
    @media print, screen and (min-width: 40em) {
      .row .row, #about-first-row .row, #about-second-row .row, #cookie-notice .cookie-notice-container .row, .row #about-first-row, #about-first-row #about-first-row, #about-second-row #about-first-row, #cookie-notice .cookie-notice-container #about-first-row, .row #about-second-row, #about-first-row #about-second-row, #about-second-row #about-second-row, #cookie-notice .cookie-notice-container #about-second-row, .row #cookie-notice .cookie-notice-container, #cookie-notice .row .cookie-notice-container, #about-first-row #cookie-notice .cookie-notice-container, #cookie-notice #about-first-row .cookie-notice-container, #about-second-row #cookie-notice .cookie-notice-container, #cookie-notice #about-second-row .cookie-notice-container, #cookie-notice .cookie-notice-container .cookie-notice-container {
        margin-right: -1.38889rem;
        margin-left: -1.38889rem; } }
    @media print, screen and (min-width: 64em) {
      .row .row, #about-first-row .row, #about-second-row .row, #cookie-notice .cookie-notice-container .row, .row #about-first-row, #about-first-row #about-first-row, #about-second-row #about-first-row, #cookie-notice .cookie-notice-container #about-first-row, .row #about-second-row, #about-first-row #about-second-row, #about-second-row #about-second-row, #cookie-notice .cookie-notice-container #about-second-row, .row #cookie-notice .cookie-notice-container, #cookie-notice .row .cookie-notice-container, #about-first-row #cookie-notice .cookie-notice-container, #cookie-notice #about-first-row .cookie-notice-container, #about-second-row #cookie-notice .cookie-notice-container, #cookie-notice #about-second-row .cookie-notice-container, #cookie-notice .cookie-notice-container .cookie-notice-container {
        margin-right: -1.38889rem;
        margin-left: -1.38889rem; } }
    .row .row.collapse, #about-first-row .row.collapse, #about-second-row .row.collapse, #cookie-notice .cookie-notice-container .row.collapse, .row .collapse#about-first-row, #about-first-row .collapse#about-first-row, #about-second-row .collapse#about-first-row, #cookie-notice .cookie-notice-container .collapse#about-first-row, .row .collapse#about-second-row, #about-first-row .collapse#about-second-row, #about-second-row .collapse#about-second-row, #cookie-notice .cookie-notice-container .collapse#about-second-row, .row #cookie-notice .collapse.cookie-notice-container, #cookie-notice .row .collapse.cookie-notice-container, #about-first-row #cookie-notice .collapse.cookie-notice-container, #cookie-notice #about-first-row .collapse.cookie-notice-container, #about-second-row #cookie-notice .collapse.cookie-notice-container, #cookie-notice #about-second-row .collapse.cookie-notice-container, #cookie-notice .cookie-notice-container .collapse.cookie-notice-container {
      margin-right: 0;
      margin-left: 0; }
  .row.expanded, .expanded#about-first-row, .expanded#about-second-row, #cookie-notice .expanded.cookie-notice-container {
    max-width: none; }
    .row.expanded .row, .expanded#about-first-row .row, .expanded#about-second-row .row, #cookie-notice .expanded.cookie-notice-container .row, .row.expanded #about-first-row, .expanded#about-first-row #about-first-row, .expanded#about-second-row #about-first-row, #cookie-notice .expanded.cookie-notice-container #about-first-row, .row.expanded #about-second-row, .expanded#about-first-row #about-second-row, .expanded#about-second-row #about-second-row, #cookie-notice .expanded.cookie-notice-container #about-second-row, .row.expanded #cookie-notice .cookie-notice-container, #cookie-notice .row.expanded .cookie-notice-container, .expanded#about-first-row #cookie-notice .cookie-notice-container, #cookie-notice .expanded#about-first-row .cookie-notice-container, .expanded#about-second-row #cookie-notice .cookie-notice-container, #cookie-notice .expanded#about-second-row .cookie-notice-container, #cookie-notice .expanded.cookie-notice-container .cookie-notice-container {
      margin-right: auto;
      margin-left: auto; }
  .row.gutter-small > .column, .gutter-small#about-first-row > .column, .gutter-small#about-second-row > .column, #cookie-notice .gutter-small.cookie-notice-container > .column, .row.gutter-small > .columns, .gutter-small#about-first-row > .columns, .gutter-small#about-second-row > .columns, #cookie-notice .gutter-small.cookie-notice-container > .columns {
    padding-right: 0.69444rem;
    padding-left: 0.69444rem; }
  .row.gutter-medium > .column, .gutter-medium#about-first-row > .column, .gutter-medium#about-second-row > .column, #cookie-notice .gutter-medium.cookie-notice-container > .column, .row.gutter-medium > .columns, .gutter-medium#about-first-row > .columns, .gutter-medium#about-second-row > .columns, #cookie-notice .gutter-medium.cookie-notice-container > .columns {
    padding-right: 1.38889rem;
    padding-left: 1.38889rem; }

.column, .columns {
  width: 100%;
  float: left;
  padding-right: 0.69444rem;
  padding-left: 0.69444rem; }
  @media print, screen and (min-width: 40em) {
    .column, .columns {
      padding-right: 1.38889rem;
      padding-left: 1.38889rem; } }
  .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, .columns#about-first-row, .columns#about-second-row, #cookie-notice .columns.cookie-notice-container, .column#about-first-row, .column#about-second-row, #cookie-notice .column.cookie-notice-container {
  float: none; }

.row .column.row.row, #about-first-row .column.row.row, #about-second-row .column.row.row, #cookie-notice .cookie-notice-container .column.row.row, .row .row.row.columns, #about-first-row .row.row.columns, #about-second-row .row.row.columns, #cookie-notice .cookie-notice-container .row.row.columns, .row .columns#about-first-row, #about-first-row .columns#about-first-row, #about-second-row .columns#about-first-row, #cookie-notice .cookie-notice-container .columns#about-first-row, .row .columns#about-second-row, #about-first-row .columns#about-second-row, #about-second-row .columns#about-second-row, #cookie-notice .cookie-notice-container .columns#about-second-row, .row #cookie-notice .columns.cookie-notice-container, #cookie-notice .row .columns.cookie-notice-container, #about-first-row #cookie-notice .columns.cookie-notice-container, #cookie-notice #about-first-row .columns.cookie-notice-container, #about-second-row #cookie-notice .columns.cookie-notice-container, #cookie-notice #about-second-row .columns.cookie-notice-container, #cookie-notice .cookie-notice-container .columns.cookie-notice-container, .row .column#about-first-row, #about-first-row .column#about-first-row, #about-second-row .column#about-first-row, #cookie-notice .cookie-notice-container .column#about-first-row, .row .column#about-second-row, #about-first-row .column#about-second-row, #about-second-row .column#about-second-row, #cookie-notice .cookie-notice-container .column#about-second-row, .row #cookie-notice .column.cookie-notice-container, #cookie-notice .row .column.cookie-notice-container, #about-first-row #cookie-notice .column.cookie-notice-container, #cookie-notice #about-first-row .column.cookie-notice-container, #about-second-row #cookie-notice .column.cookie-notice-container, #cookie-notice #about-second-row .column.cookie-notice-container, #cookie-notice .cookie-notice-container .column.cookie-notice-container {
  margin-right: 0;
  margin-left: 0;
  padding-right: 0;
  padding-left: 0; }

.small-1 {
  width: 8.33333%; }

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

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

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

.small-2 {
  width: 16.66667%; }

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

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

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

.small-3 {
  width: 25%; }

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

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

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

.small-4 {
  width: 33.33333%; }

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

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

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

.small-5 {
  width: 41.66667%; }

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

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

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

.small-6 {
  width: 50%; }

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

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

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

.small-7 {
  width: 58.33333%; }

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

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

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

.small-8 {
  width: 66.66667%; }

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

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

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

.small-9 {
  width: 75%; }

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

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

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

.small-10 {
  width: 83.33333%; }

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

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

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

.small-11 {
  width: 91.66667%; }

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

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

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

.small-12 {
  width: 100%; }

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

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

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

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

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

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

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

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

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

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

.small-collapse .row, .small-collapse #about-first-row, .small-collapse #about-second-row, .small-collapse #cookie-notice .cookie-notice-container, #cookie-notice .small-collapse .cookie-notice-container {
  margin-right: 0;
  margin-left: 0; }

.expanded.row .small-collapse.row, .expanded#about-first-row .small-collapse.row, .expanded#about-second-row .small-collapse.row, #cookie-notice .expanded.cookie-notice-container .small-collapse.row, .expanded.row .small-collapse#about-first-row, .expanded#about-first-row .small-collapse#about-first-row, .expanded#about-second-row .small-collapse#about-first-row, #cookie-notice .expanded.cookie-notice-container .small-collapse#about-first-row, .expanded.row .small-collapse#about-second-row, .expanded#about-first-row .small-collapse#about-second-row, .expanded#about-second-row .small-collapse#about-second-row, #cookie-notice .expanded.cookie-notice-container .small-collapse#about-second-row, .expanded.row #cookie-notice .small-collapse.cookie-notice-container, #cookie-notice .expanded.row .small-collapse.cookie-notice-container, .expanded#about-first-row #cookie-notice .small-collapse.cookie-notice-container, #cookie-notice .expanded#about-first-row .small-collapse.cookie-notice-container, .expanded#about-second-row #cookie-notice .small-collapse.cookie-notice-container, #cookie-notice .expanded#about-second-row .small-collapse.cookie-notice-container, #cookie-notice .expanded.cookie-notice-container .small-collapse.cookie-notice-container {
  margin-right: 0;
  margin-left: 0; }

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

.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.33333%; }
  .medium-push-1 {
    position: relative;
    left: 8.33333%; }
  .medium-pull-1 {
    position: relative;
    left: -8.33333%; }
  .medium-offset-0 {
    margin-left: 0%; }
  .medium-2 {
    width: 16.66667%; }
  .medium-push-2 {
    position: relative;
    left: 16.66667%; }
  .medium-pull-2 {
    position: relative;
    left: -16.66667%; }
  .medium-offset-1 {
    margin-left: 8.33333%; }
  .medium-3 {
    width: 25%; }
  .medium-push-3 {
    position: relative;
    left: 25%; }
  .medium-pull-3 {
    position: relative;
    left: -25%; }
  .medium-offset-2 {
    margin-left: 16.66667%; }
  .medium-4 {
    width: 33.33333%; }
  .medium-push-4 {
    position: relative;
    left: 33.33333%; }
  .medium-pull-4 {
    position: relative;
    left: -33.33333%; }
  .medium-offset-3 {
    margin-left: 25%; }
  .medium-5 {
    width: 41.66667%; }
  .medium-push-5 {
    position: relative;
    left: 41.66667%; }
  .medium-pull-5 {
    position: relative;
    left: -41.66667%; }
  .medium-offset-4 {
    margin-left: 33.33333%; }
  .medium-6 {
    width: 50%; }
  .medium-push-6 {
    position: relative;
    left: 50%; }
  .medium-pull-6 {
    position: relative;
    left: -50%; }
  .medium-offset-5 {
    margin-left: 41.66667%; }
  .medium-7 {
    width: 58.33333%; }
  .medium-push-7 {
    position: relative;
    left: 58.33333%; }
  .medium-pull-7 {
    position: relative;
    left: -58.33333%; }
  .medium-offset-6 {
    margin-left: 50%; }
  .medium-8 {
    width: 66.66667%; }
  .medium-push-8 {
    position: relative;
    left: 66.66667%; }
  .medium-pull-8 {
    position: relative;
    left: -66.66667%; }
  .medium-offset-7 {
    margin-left: 58.33333%; }
  .medium-9 {
    width: 75%; }
  .medium-push-9 {
    position: relative;
    left: 75%; }
  .medium-pull-9 {
    position: relative;
    left: -75%; }
  .medium-offset-8 {
    margin-left: 66.66667%; }
  .medium-10 {
    width: 83.33333%; }
  .medium-push-10 {
    position: relative;
    left: 83.33333%; }
  .medium-pull-10 {
    position: relative;
    left: -83.33333%; }
  .medium-offset-9 {
    margin-left: 75%; }
  .medium-11 {
    width: 91.66667%; }
  .medium-push-11 {
    position: relative;
    left: 91.66667%; }
  .medium-pull-11 {
    position: relative;
    left: -91.66667%; }
  .medium-offset-10 {
    margin-left: 83.33333%; }
  .medium-12 {
    width: 100%; }
  .medium-offset-11 {
    margin-left: 91.66667%; }
  .medium-up-1 > .column, .medium-up-1 > .columns {
    float: left;
    width: 100%; }
    .medium-up-1 > .column:nth-of-type(1n), .medium-up-1 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-1 > .column:nth-of-type(1n+1), .medium-up-1 > .columns:nth-of-type(1n+1) {
      clear: both; }
    .medium-up-1 > .column:last-child, .medium-up-1 > .columns:last-child {
      float: left; }
  .medium-up-2 > .column, .medium-up-2 > .columns {
    float: left;
    width: 50%; }
    .medium-up-2 > .column:nth-of-type(1n), .medium-up-2 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-2 > .column:nth-of-type(2n+1), .medium-up-2 > .columns:nth-of-type(2n+1) {
      clear: both; }
    .medium-up-2 > .column:last-child, .medium-up-2 > .columns:last-child {
      float: left; }
  .medium-up-3 > .column, .medium-up-3 > .columns {
    float: left;
    width: 33.33333%; }
    .medium-up-3 > .column:nth-of-type(1n), .medium-up-3 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-3 > .column:nth-of-type(3n+1), .medium-up-3 > .columns:nth-of-type(3n+1) {
      clear: both; }
    .medium-up-3 > .column:last-child, .medium-up-3 > .columns:last-child {
      float: left; }
  .medium-up-4 > .column, .medium-up-4 > .columns {
    float: left;
    width: 25%; }
    .medium-up-4 > .column:nth-of-type(1n), .medium-up-4 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-4 > .column:nth-of-type(4n+1), .medium-up-4 > .columns:nth-of-type(4n+1) {
      clear: both; }
    .medium-up-4 > .column:last-child, .medium-up-4 > .columns:last-child {
      float: left; }
  .medium-up-5 > .column, .medium-up-5 > .columns {
    float: left;
    width: 20%; }
    .medium-up-5 > .column:nth-of-type(1n), .medium-up-5 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-5 > .column:nth-of-type(5n+1), .medium-up-5 > .columns:nth-of-type(5n+1) {
      clear: both; }
    .medium-up-5 > .column:last-child, .medium-up-5 > .columns:last-child {
      float: left; }
  .medium-up-6 > .column, .medium-up-6 > .columns {
    float: left;
    width: 16.66667%; }
    .medium-up-6 > .column:nth-of-type(1n), .medium-up-6 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-6 > .column:nth-of-type(6n+1), .medium-up-6 > .columns:nth-of-type(6n+1) {
      clear: both; }
    .medium-up-6 > .column:last-child, .medium-up-6 > .columns:last-child {
      float: left; }
  .medium-up-7 > .column, .medium-up-7 > .columns {
    float: left;
    width: 14.28571%; }
    .medium-up-7 > .column:nth-of-type(1n), .medium-up-7 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-7 > .column:nth-of-type(7n+1), .medium-up-7 > .columns:nth-of-type(7n+1) {
      clear: both; }
    .medium-up-7 > .column:last-child, .medium-up-7 > .columns:last-child {
      float: left; }
  .medium-up-8 > .column, .medium-up-8 > .columns {
    float: left;
    width: 12.5%; }
    .medium-up-8 > .column:nth-of-type(1n), .medium-up-8 > .columns:nth-of-type(1n) {
      clear: none; }
    .medium-up-8 > .column:nth-of-type(8n+1), .medium-up-8 > .columns:nth-of-type(8n+1) {
      clear: both; }
    .medium-up-8 > .column:last-child, .medium-up-8 > .columns:last-child {
      float: left; }
  .medium-collapse > .column, .medium-collapse > .columns {
    padding-right: 0;
    padding-left: 0; }
  .medium-collapse .row, .medium-collapse #about-first-row, .medium-collapse #about-second-row, .medium-collapse #cookie-notice .cookie-notice-container, #cookie-notice .medium-collapse .cookie-notice-container {
    margin-right: 0;
    margin-left: 0; }
  .expanded.row .medium-collapse.row, .expanded#about-first-row .medium-collapse.row, .expanded#about-second-row .medium-collapse.row, #cookie-notice .expanded.cookie-notice-container .medium-collapse.row, .expanded.row .medium-collapse#about-first-row, .expanded#about-first-row .medium-collapse#about-first-row, .expanded#about-second-row .medium-collapse#about-first-row, #cookie-notice .expanded.cookie-notice-container .medium-collapse#about-first-row, .expanded.row .medium-collapse#about-second-row, .expanded#about-first-row .medium-collapse#about-second-row, .expanded#about-second-row .medium-collapse#about-second-row, #cookie-notice .expanded.cookie-notice-container .medium-collapse#about-second-row, .expanded.row #cookie-notice .medium-collapse.cookie-notice-container, #cookie-notice .expanded.row .medium-collapse.cookie-notice-container, .expanded#about-first-row #cookie-notice .medium-collapse.cookie-notice-container, #cookie-notice .expanded#about-first-row .medium-collapse.cookie-notice-container, .expanded#about-second-row #cookie-notice .medium-collapse.cookie-notice-container, #cookie-notice .expanded#about-second-row .medium-collapse.cookie-notice-container, #cookie-notice .expanded.cookie-notice-container .medium-collapse.cookie-notice-container {
    margin-right: 0;
    margin-left: 0; }
  .medium-uncollapse > .column, .medium-uncollapse > .columns {
    padding-right: 1.38889rem;
    padding-left: 1.38889rem; }
  .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.33333%; }
  .large-push-1 {
    position: relative;
    left: 8.33333%; }
  .large-pull-1 {
    position: relative;
    left: -8.33333%; }
  .large-offset-0 {
    margin-left: 0%; }
  .large-2 {
    width: 16.66667%; }
  .large-push-2 {
    position: relative;
    left: 16.66667%; }
  .large-pull-2 {
    position: relative;
    left: -16.66667%; }
  .large-offset-1 {
    margin-left: 8.33333%; }
  .large-3 {
    width: 25%; }
  .large-push-3 {
    position: relative;
    left: 25%; }
  .large-pull-3 {
    position: relative;
    left: -25%; }
  .large-offset-2 {
    margin-left: 16.66667%; }
  .large-4 {
    width: 33.33333%; }
  .large-push-4 {
    position: relative;
    left: 33.33333%; }
  .large-pull-4 {
    position: relative;
    left: -33.33333%; }
  .large-offset-3 {
    margin-left: 25%; }
  .large-5 {
    width: 41.66667%; }
  .large-push-5 {
    position: relative;
    left: 41.66667%; }
  .large-pull-5 {
    position: relative;
    left: -41.66667%; }
  .large-offset-4 {
    margin-left: 33.33333%; }
  .large-6 {
    width: 50%; }
  .large-push-6 {
    position: relative;
    left: 50%; }
  .large-pull-6 {
    position: relative;
    left: -50%; }
  .large-offset-5 {
    margin-left: 41.66667%; }
  .large-7 {
    width: 58.33333%; }
  .large-push-7 {
    position: relative;
    left: 58.33333%; }
  .large-pull-7 {
    position: relative;
    left: -58.33333%; }
  .large-offset-6 {
    margin-left: 50%; }
  .large-8 {
    width: 66.66667%; }
  .large-push-8 {
    position: relative;
    left: 66.66667%; }
  .large-pull-8 {
    position: relative;
    left: -66.66667%; }
  .large-offset-7 {
    margin-left: 58.33333%; }
  .large-9 {
    width: 75%; }
  .large-push-9 {
    position: relative;
    left: 75%; }
  .large-pull-9 {
    position: relative;
    left: -75%; }
  .large-offset-8 {
    margin-left: 66.66667%; }
  .large-10 {
    width: 83.33333%; }
  .large-push-10 {
    position: relative;
    left: 83.33333%; }
  .large-pull-10 {
    position: relative;
    left: -83.33333%; }
  .large-offset-9 {
    margin-left: 75%; }
  .large-11 {
    width: 91.66667%; }
  .large-push-11 {
    position: relative;
    left: 91.66667%; }
  .large-pull-11 {
    position: relative;
    left: -91.66667%; }
  .large-offset-10 {
    margin-left: 83.33333%; }
  .large-12 {
    width: 100%; }
  .large-offset-11 {
    margin-left: 91.66667%; }
  .large-up-1 > .column, .large-up-1 > .columns {
    float: left;
    width: 100%; }
    .large-up-1 > .column:nth-of-type(1n), .large-up-1 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-1 > .column:nth-of-type(1n+1), .large-up-1 > .columns:nth-of-type(1n+1) {
      clear: both; }
    .large-up-1 > .column:last-child, .large-up-1 > .columns:last-child {
      float: left; }
  .large-up-2 > .column, .large-up-2 > .columns {
    float: left;
    width: 50%; }
    .large-up-2 > .column:nth-of-type(1n), .large-up-2 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-2 > .column:nth-of-type(2n+1), .large-up-2 > .columns:nth-of-type(2n+1) {
      clear: both; }
    .large-up-2 > .column:last-child, .large-up-2 > .columns:last-child {
      float: left; }
  .large-up-3 > .column, .large-up-3 > .columns {
    float: left;
    width: 33.33333%; }
    .large-up-3 > .column:nth-of-type(1n), .large-up-3 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-3 > .column:nth-of-type(3n+1), .large-up-3 > .columns:nth-of-type(3n+1) {
      clear: both; }
    .large-up-3 > .column:last-child, .large-up-3 > .columns:last-child {
      float: left; }
  .large-up-4 > .column, .large-up-4 > .columns {
    float: left;
    width: 25%; }
    .large-up-4 > .column:nth-of-type(1n), .large-up-4 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-4 > .column:nth-of-type(4n+1), .large-up-4 > .columns:nth-of-type(4n+1) {
      clear: both; }
    .large-up-4 > .column:last-child, .large-up-4 > .columns:last-child {
      float: left; }
  .large-up-5 > .column, .large-up-5 > .columns {
    float: left;
    width: 20%; }
    .large-up-5 > .column:nth-of-type(1n), .large-up-5 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-5 > .column:nth-of-type(5n+1), .large-up-5 > .columns:nth-of-type(5n+1) {
      clear: both; }
    .large-up-5 > .column:last-child, .large-up-5 > .columns:last-child {
      float: left; }
  .large-up-6 > .column, .large-up-6 > .columns {
    float: left;
    width: 16.66667%; }
    .large-up-6 > .column:nth-of-type(1n), .large-up-6 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-6 > .column:nth-of-type(6n+1), .large-up-6 > .columns:nth-of-type(6n+1) {
      clear: both; }
    .large-up-6 > .column:last-child, .large-up-6 > .columns:last-child {
      float: left; }
  .large-up-7 > .column, .large-up-7 > .columns {
    float: left;
    width: 14.28571%; }
    .large-up-7 > .column:nth-of-type(1n), .large-up-7 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-7 > .column:nth-of-type(7n+1), .large-up-7 > .columns:nth-of-type(7n+1) {
      clear: both; }
    .large-up-7 > .column:last-child, .large-up-7 > .columns:last-child {
      float: left; }
  .large-up-8 > .column, .large-up-8 > .columns {
    float: left;
    width: 12.5%; }
    .large-up-8 > .column:nth-of-type(1n), .large-up-8 > .columns:nth-of-type(1n) {
      clear: none; }
    .large-up-8 > .column:nth-of-type(8n+1), .large-up-8 > .columns:nth-of-type(8n+1) {
      clear: both; }
    .large-up-8 > .column:last-child, .large-up-8 > .columns:last-child {
      float: left; }
  .large-collapse > .column, .large-collapse > .columns {
    padding-right: 0;
    padding-left: 0; }
  .large-collapse .row, .large-collapse #about-first-row, .large-collapse #about-second-row, .large-collapse #cookie-notice .cookie-notice-container, #cookie-notice .large-collapse .cookie-notice-container {
    margin-right: 0;
    margin-left: 0; }
  .expanded.row .large-collapse.row, .expanded#about-first-row .large-collapse.row, .expanded#about-second-row .large-collapse.row, #cookie-notice .expanded.cookie-notice-container .large-collapse.row, .expanded.row .large-collapse#about-first-row, .expanded#about-first-row .large-collapse#about-first-row, .expanded#about-second-row .large-collapse#about-first-row, #cookie-notice .expanded.cookie-notice-container .large-collapse#about-first-row, .expanded.row .large-collapse#about-second-row, .expanded#about-first-row .large-collapse#about-second-row, .expanded#about-second-row .large-collapse#about-second-row, #cookie-notice .expanded.cookie-notice-container .large-collapse#about-second-row, .expanded.row #cookie-notice .large-collapse.cookie-notice-container, #cookie-notice .expanded.row .large-collapse.cookie-notice-container, .expanded#about-first-row #cookie-notice .large-collapse.cookie-notice-container, #cookie-notice .expanded#about-first-row .large-collapse.cookie-notice-container, .expanded#about-second-row #cookie-notice .large-collapse.cookie-notice-container, #cookie-notice .expanded#about-second-row .large-collapse.cookie-notice-container, #cookie-notice .expanded.cookie-notice-container .large-collapse.cookie-notice-container {
    margin-right: 0;
    margin-left: 0; }
  .large-uncollapse > .column, .large-uncollapse > .columns {
    padding-right: 1.38889rem;
    padding-left: 1.38889rem; }
  .large-centered {
    margin-right: auto;
    margin-left: auto; }
    .large-centered, .large-centered:last-child:not(:first-child) {
      float: none;
      clear: both; }
  .large-uncentered,
  .large-push-0,
  .large-pull-0 {
    position: static;
    float: left;
    margin-right: 0;
    margin-left: 0; } }

.column-block {
  margin-bottom: 1.38889rem; }
  .column-block > :last-child {
    margin-bottom: 0; }
  @media print, screen and (min-width: 40em) {
    .column-block {
      margin-bottom: 2.77778rem; }
      .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: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  color: inherit;
  text-rendering: optimizeLegibility; }
  h1 small,
  h2 small,
  h3 small,
  h4 small,
  h5 small,
  h6 small {
    line-height: 0;
    color: #B1B1B1; }

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

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

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

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

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

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

@media print, screen and (min-width: 40em) {
  h1 {
    font-size: 3.75rem; }
  h2 {
    font-size: 2.08333rem; }
  h3 {
    font-size: 1.59722rem; }
  h4 {
    font-size: 1.38889rem; }
  h5 {
    font-size: 1.11111rem; }
  h6 {
    font-size: 0.97222rem; } }

@media print, screen and (min-width: 64em) {
  h1 {
    font-size: 4.02778rem; }
  h2 {
    font-size: 3.47222rem; }
  h3 {
    font-size: 1.80556rem; }
  h4 {
    font-size: 1.59722rem; }
  h5 {
    font-size: 1.38889rem; }
  h6 {
    font-size: 1.11111rem; } }

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

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

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

li {
  font-size: inherit; }

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

ol {
  margin-left: 1.25rem; }

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

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

blockquote {
  margin: 0 0 1rem;
  padding: 0;
  border-left: none; }
  blockquote, blockquote p {
    line-height: 1.6;
    color: #808080; }

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

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

figure {
  margin: 0; }

code {
  padding: 0.13889rem 0.34722rem 0.06944rem;
  border: 1px solid #B1B1B1;
  background-color: rgba(67, 0, 152, 0.1);
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  font-weight: 400;
  color: #1A1A1A; }

kbd {
  margin: 0;
  padding: 0.13889rem 0.27778rem 0;
  background-color: rgba(67, 0, 152, 0.1);
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  color: #1A1A1A;
  border-radius: 0.41667rem; }

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

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

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

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

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

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

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

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

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

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

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

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

[type='text'], [type='password'], [type='date'], [type='datetime'], [type='datetime-local'], [type='month'], [type='week'], [type='email'], [type='number'], [type='search'], [type='tel'], [type='time'], [type='url'], [type='color'],
textarea {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 2.70833rem;
  margin: 0 0 1.11111rem;
  padding: 0.55556rem;
  border: 1px solid #B1B1B1;
  border-radius: 0.41667rem;
  background-color: #fefefe;
  box-shadow: inset 0 1px 2px rgba(26, 26, 26, 0.1);
  font-family: inherit;
  font-size: 1.11111rem;
  font-weight: 400;
  color: #1A1A1A;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }
  [type='text']:focus, [type='password']:focus, [type='date']:focus, [type='datetime']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='week']:focus, [type='email']:focus, [type='number']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='url']:focus, [type='color']:focus,
  textarea:focus {
    outline: none;
    border: 1px solid #808080;
    background-color: #fefefe;
    box-shadow: 0 0 5px #B1B1B1;
    transition: box-shadow 0.5s, border-color 0.25s ease-in-out; }

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

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

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

input:disabled, input[readonly],
textarea:disabled,
textarea[readonly] {
  background-color: rgba(67, 0, 152, 0.1);
  cursor: not-allowed; }

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

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

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

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

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

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

label {
  display: block;
  margin: 0;
  font-size: 0.97222rem;
  font-weight: 400;
  line-height: 1.8;
  color: #1A1A1A; }
  label.middle {
    margin: 0 0 1.11111rem;
    padding: 0.625rem 0; }

.help-text {
  margin-top: -0.55556rem;
  font-size: 0.90278rem;
  font-style: italic;
  color: #1A1A1A; }

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

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

.input-group-label {
  padding: 0 1rem;
  border: 1px solid #B1B1B1;
  background: rgba(67, 0, 152, 0.1);
  color: #1A1A1A;
  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.77778rem; }

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

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

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

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

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

select {
  height: 2.70833rem;
  margin: 0 0 1.11111rem;
  padding: 0.55556rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #B1B1B1;
  border-radius: 0.41667rem;
  background-color: #fefefe;
  font-family: inherit;
  font-size: 1.11111rem;
  line-height: normal;
  color: #1A1A1A;
  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%28128, 128, 128%29'></polygon></svg>");
  background-origin: content-box;
  background-position: right -1.11111rem center;
  background-repeat: no-repeat;
  background-size: 9px 6px;
  padding-right: 1.66667rem;
  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 #808080;
    background-color: #fefefe;
    box-shadow: 0 0 5px #B1B1B1;
    transition: box-shadow 0.5s, border-color 0.25s ease-in-out; }
  select:disabled {
    background-color: rgba(67, 0, 152, 0.1);
    cursor: not-allowed; }
  select::-ms-expand {
    display: none; }
  select[multiple] {
    height: auto;
    background-image: none; }

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

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

.form-error {
  display: none;
  margin-top: -0.55556rem;
  margin-bottom: 1.11111rem;
  font-size: 0.83333rem;
  font-weight: 700;
  color: #FF1D25; }
  .form-error.is-visible {
    display: block; }

.button {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 1.66667rem 0;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 0.41667rem;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  font-size: 1.04167rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  background-color: #fefefe;
  color: #430098; }
  [data-whatinput='mouse'] .button {
    outline: 0; }
  .button:hover, .button:focus {
    background-color: #4DFFBA;
    color: #430098; }
  .button.tiny {
    font-size: 0.7rem; }
  .button.small {
    font-size: 0.8rem; }
  .button.large {
    font-size: 1.25rem; }
  .button.expanded {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-left: 0; }
  .button.primary {
    background-color: #430098;
    color: #1A1A1A; }
    .button.primary:hover, .button.primary:focus {
      background-color: #36007a;
      color: #1A1A1A; }
  .button.secondary {
    background-color: #4DFFBA;
    color: #430098; }
    .button.secondary:hover, .button.secondary:focus {
      background-color: #0bffa0;
      color: #430098; }
  .button.success {
    background-color: #3adb76;
    color: #430098; }
    .button.success:hover, .button.success:focus {
      background-color: #22bb5b;
      color: #430098; }
  .button.warning {
    background-color: #ffae00;
    color: #430098; }
    .button.warning:hover, .button.warning:focus {
      background-color: #cc8b00;
      color: #430098; }
  .button.alert {
    background-color: #FF1D25;
    color: #430098; }
    .button.alert:hover, .button.alert:focus {
      background-color: #e30008;
      color: #430098; }
  .button.hollow {
    border: 1px solid #430098;
    color: #430098; }
    .button.hollow, .button.hollow:hover, .button.hollow:focus {
      background-color: transparent; }
    .button.hollow:hover, .button.hollow:focus {
      border-color: #22004c;
      color: #22004c; }
    .button.hollow.primary {
      border: 1px solid #430098;
      color: #430098; }
      .button.hollow.primary:hover, .button.hollow.primary:focus {
        border-color: #22004c;
        color: #22004c; }
    .button.hollow.secondary {
      border: 1px solid #4DFFBA;
      color: #4DFFBA; }
      .button.hollow.secondary:hover, .button.hollow.secondary:focus {
        border-color: #00a666;
        color: #00a666; }
    .button.hollow.success {
      border: 1px solid #3adb76;
      color: #3adb76; }
      .button.hollow.success:hover, .button.hollow.success:focus {
        border-color: #157539;
        color: #157539; }
    .button.hollow.warning {
      border: 1px solid #ffae00;
      color: #ffae00; }
      .button.hollow.warning:hover, .button.hollow.warning:focus {
        border-color: #805700;
        color: #805700; }
    .button.hollow.alert {
      border: 1px solid #FF1D25;
      color: #FF1D25; }
      .button.hollow.alert:hover, .button.hollow.alert:focus {
        border-color: #8e0005;
        color: #8e0005; }
  .button.disabled, .button[disabled] {
    opacity: 0.25;
    cursor: not-allowed; }
    .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
      background-color: #430098;
      color: #430098; }
    .button.disabled.primary, .button[disabled].primary {
      opacity: 0.25;
      cursor: not-allowed; }
      .button.disabled.primary:hover, .button.disabled.primary:focus, .button[disabled].primary:hover, .button[disabled].primary:focus {
        background-color: #430098;
        color: #430098; }
    .button.disabled.secondary, .button[disabled].secondary {
      opacity: 0.25;
      cursor: not-allowed; }
      .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
        background-color: #4DFFBA;
        color: #430098; }
    .button.disabled.success, .button[disabled].success {
      opacity: 0.25;
      cursor: not-allowed; }
      .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus {
        background-color: #3adb76;
        color: #430098; }
    .button.disabled.warning, .button[disabled].warning {
      opacity: 0.25;
      cursor: not-allowed; }
      .button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning:hover, .button[disabled].warning:focus {
        background-color: #ffae00;
        color: #430098; }
    .button.disabled.alert, .button[disabled].alert {
      opacity: 0.25;
      cursor: not-allowed; }
      .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus {
        background-color: #FF1D25;
        color: #430098; }
  .button.dropdown::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 0.4em;
    content: '';
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #fefefe transparent transparent;
    position: relative;
    top: 0.4em;
    display: inline-block;
    float: right;
    margin-left: 0; }
  .button.arrow-only::after {
    top: -0.1em;
    float: none;
    margin-left: 0; }

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

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

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

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

.accordion-content {
  display: none;
  padding: 1rem;
  border: 1px solid rgba(67, 0, 152, 0.1);
  border-bottom: 0;
  background-color: #fefefe;
  color: #1A1A1A; }
  :last-child > .accordion-content:last-child {
    border-bottom: 1px solid rgba(67, 0, 152, 0.1); }

.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: #430098 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: #430098;
  color: #fefefe; }
  .badge.primary {
    background: #430098;
    color: #fefefe; }
  .badge.secondary {
    background: #4DFFBA;
    color: #1A1A1A; }
  .badge.success {
    background: #3adb76;
    color: #1A1A1A; }
  .badge.warning {
    background: #ffae00;
    color: #1A1A1A; }
  .badge.alert {
    background: #FF1D25;
    color: #fefefe; }

.breadcrumbs {
  margin: 0 0 2.77778rem 0;
  list-style: none; }
  .breadcrumbs::before, .breadcrumbs::after {
    display: table;
    content: ' '; }
  .breadcrumbs::after {
    clear: both; }
  .breadcrumbs li {
    float: left;
    font-size: 0.76389rem;
    color: #1A1A1A;
    cursor: default;
    text-transform: uppercase; }
    .breadcrumbs li:not(:last-child)::after {
      position: relative;
      top: 1px;
      margin: 0 0.75rem;
      opacity: 1;
      content: "/";
      color: #B1B1B1; }
  .breadcrumbs a {
    color: #430098; }
    .breadcrumbs a:hover {
      text-decoration: underline; }
  .breadcrumbs .disabled {
    color: #B1B1B1;
    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: 1.04167rem; }
    .button-group .button:last-child {
      margin-right: 0; }
  .button-group.tiny .button {
    font-size: 0.7rem; }
  .button-group.small .button {
    font-size: 0.8rem; }
  .button-group.large .button {
    font-size: 1.25rem; }
  .button-group.expanded {
    margin-right: -1px; }
    .button-group.expanded::before, .button-group.expanded::after {
      display: none; }
    .button-group.expanded .button:first-child:nth-last-child(2), .button-group.expanded .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button {
      display: inline-block;
      width: calc(50% - 1px);
      margin-right: 1px; }
      .button-group.expanded .button:first-child:nth-last-child(2):last-child, .button-group.expanded .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button:last-child {
        margin-right: -6px; }
    .button-group.expanded .button:first-child:nth-last-child(3), .button-group.expanded .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button {
      display: inline-block;
      width: calc(33.33333% - 1px);
      margin-right: 1px; }
      .button-group.expanded .button:first-child:nth-last-child(3):last-child, .button-group.expanded .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button:last-child {
        margin-right: -6px; }
    .button-group.expanded .button:first-child:nth-last-child(4), .button-group.expanded .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button {
      display: inline-block;
      width: calc(25% - 1px);
      margin-right: 1px; }
      .button-group.expanded .button:first-child:nth-last-child(4):last-child, .button-group.expanded .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button:last-child {
        margin-right: -6px; }
    .button-group.expanded .button:first-child:nth-last-child(5), .button-group.expanded .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button {
      display: inline-block;
      width: calc(20% - 1px);
      margin-right: 1px; }
      .button-group.expanded .button:first-child:nth-last-child(5):last-child, .button-group.expanded .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button:last-child {
        margin-right: -6px; }
    .button-group.expanded .button:first-child:nth-last-child(6), .button-group.expanded .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button {
      display: inline-block;
      width: calc(16.66667% - 1px);
      margin-right: 1px; }
      .button-group.expanded .button:first-child:nth-last-child(6):last-child, .button-group.expanded .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button:last-child {
        margin-right: -6px; }
  .button-group.primary .button {
    background-color: #430098;
    color: #1A1A1A; }
    .button-group.primary .button:hover, .button-group.primary .button:focus {
      background-color: #36007a;
      color: #1A1A1A; }
  .button-group.secondary .button {
    background-color: #4DFFBA;
    color: #430098; }
    .button-group.secondary .button:hover, .button-group.secondary .button:focus {
      background-color: #0bffa0;
      color: #430098; }
  .button-group.success .button {
    background-color: #3adb76;
    color: #430098; }
    .button-group.success .button:hover, .button-group.success .button:focus {
      background-color: #22bb5b;
      color: #430098; }
  .button-group.warning .button {
    background-color: #ffae00;
    color: #430098; }
    .button-group.warning .button:hover, .button-group.warning .button:focus {
      background-color: #cc8b00;
      color: #430098; }
  .button-group.alert .button {
    background-color: #FF1D25;
    color: #430098; }
    .button-group.alert .button:hover, .button-group.alert .button:focus {
      background-color: #e30008;
      color: #430098; }
  .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(26, 26, 26, 0.25);
  border-radius: 0.41667rem;
  background-color: white;
  color: #1A1A1A; }
  .callout > :first-child {
    margin-top: 0; }
  .callout > :last-child {
    margin-bottom: 0; }
  .callout.primary {
    background-color: #e1c9ff;
    color: #1A1A1A; }
  .callout.secondary {
    background-color: #e4fff5;
    color: #1A1A1A; }
  .callout.success {
    background-color: #e1faea;
    color: #1A1A1A; }
  .callout.warning {
    background-color: #fff3d9;
    color: #1A1A1A; }
  .callout.alert {
    background-color: #ffddde;
    color: #1A1A1A; }
  .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: 2.77778rem;
  border: 1px solid rgba(67, 0, 152, 0.1);
  border-radius: 0.41667rem;
  background: #fefefe;
  box-shadow: none;
  overflow: hidden;
  color: #1A1A1A; }
  .card > :last-child {
    margin-bottom: 0; }

.card-divider {
  padding: 2.77778rem;
  background: rgba(67, 0, 152, 0.1); }
  .card-divider > :last-child {
    margin-bottom: 0; }

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

.close-button {
  position: absolute;
  color: #808080;
  cursor: pointer; }
  [data-whatinput='mouse'] .close-button {
    outline: 0; }
  .close-button:hover, .close-button:focus {
    color: #1A1A1A; }
  .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 0 0 3.8vw;
    line-height: 1; }
  .menu input,
  .menu select,
  .menu a,
  .menu button {
    margin-bottom: 0; }
  .menu > li > a img,
  .menu > li > a i,
  .menu > li > a svg {
    vertical-align: middle; }
    .menu > li > a img + span,
    .menu > li > a i + span,
    .menu > li > a svg + span {
      vertical-align: middle; }
  .menu > li > a img,
  .menu > li > a i,
  .menu > li > a svg {
    margin-right: 0.25rem;
    display: inline-block; }
  .menu > li, .menu.horizontal > li {
    display: table-cell; }
  .menu.expanded {
    display: table;
    width: 100%;
    table-layout: fixed; }
    .menu.expanded > li:first-child:last-child {
      width: 100%; }
  .menu.vertical > li {
    display: block; }
  @media print, screen and (min-width: 40em) {
    .menu.medium-horizontal > li {
      display: table-cell; }
    .menu.medium-expanded {
      display: table;
      width: 100%;
      table-layout: fixed; }
      .menu.medium-expanded > li:first-child:last-child {
        width: 100%; }
    .menu.medium-vertical > li {
      display: block; } }
  @media print, screen and (min-width: 64em) {
    .menu.large-horizontal > li {
      display: table-cell; }
    .menu.large-expanded {
      display: table;
      width: 100%;
      table-layout: fixed; }
      .menu.large-expanded > li:first-child:last-child {
        width: 100%; }
    .menu.large-vertical > li {
      display: block; } }
  .menu.simple li {
    display: inline-block;
    margin-right: 0;
    line-height: 1; }
  .menu.simple a {
    padding: 0; }
  .menu.align-right::before, .menu.align-right::after {
    display: table;
    content: ' '; }
  .menu.align-right::after {
    clear: both; }
  .menu.align-right > li {
    float: right; }
  .menu.icon-top > li > a {
    text-align: center; }
    .menu.icon-top > li > a img,
    .menu.icon-top > li > a i,
    .menu.icon-top > li > a svg {
      display: block;
      margin: 0 auto 0.25rem; }
  .menu.icon-top.vertical a > span {
    margin: auto; }
  .menu.nested {
    margin-left: 1rem; }
  .menu .active > a {
    background: transparent;
    color: #4DFFBA; }
  .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: rgba(67, 0, 152, 0.1); }

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

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

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

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

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

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

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

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

.is-drilldown-submenu-parent > a {
  position: relative; }
  .is-drilldown-submenu-parent > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-right-width: 0;
    border-left-style: solid;
    border-color: transparent transparent transparent #430098;
    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 #430098 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 #B1B1B1;
  border-radius: 0.41667rem;
  background-color: #fefefe;
  font-size: 1rem; }
  .dropdown-pane.is-open {
    visibility: visible; }

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

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

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

.dropdown.menu > li.opens-left > .is-dropdown-submenu {
  top: 100%;
  right: 0;
  left: auto; }

.dropdown.menu > li.opens-right > .is-dropdown-submenu {
  top: 100%;
  right: auto;
  left: 0; }

.dropdown.menu > li.is-dropdown-submenu-parent > a {
  position: relative;
  padding-right: 1.5rem; }

.dropdown.menu > li.is-dropdown-submenu-parent > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: '';
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: #430098 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 #430098 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 #430098; }

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

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

.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 #B1B1B1;
  background: #fefefe; }
  .is-dropdown-submenu .is-dropdown-submenu-parent > a::after {
    right: 14px; }
  .is-dropdown-submenu .is-dropdown-submenu-parent.opens-left > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-left-width: 0;
    border-right-style: solid;
    border-color: transparent #430098 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 #430098; }
  .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: 1.11111rem;
  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.41667rem;
  font-size: 0.8rem;
  line-height: 1;
  white-space: nowrap;
  cursor: default;
  background: #430098;
  color: #fefefe; }
  .label.primary {
    background: #430098;
    color: #fefefe; }
  .label.secondary {
    background: #4DFFBA;
    color: #1A1A1A; }
  .label.success {
    background: #3adb76;
    color: #1A1A1A; }
  .label.warning {
    background: #ffae00;
    color: #1A1A1A; }
  .label.alert {
    background: #FF1D25;
    color: #fefefe; }

.media-object {
  display: block;
  margin-bottom: 2.77778rem; }
  .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: 2.77778rem;
      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: 2.77778rem; }
  .media-object-section:last-child:not(:nth-child(2)) {
    padding-left: 2.77778rem; }
  .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(254, 254, 254, 0.25);
  opacity: 0;
  visibility: hidden;
  overflow: hidden; }
  .js-off-canvas-overlay.is-visible {
    opacity: 1;
    visibility: visible; }
  .js-off-canvas-overlay.is-closable {
    cursor: pointer; }
  .js-off-canvas-overlay.is-overlay-absolute {
    position: absolute; }
  .js-off-canvas-overlay.is-overlay-fixed {
    position: fixed; }

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

.off-canvas {
  position: fixed;
  z-index: 1;
  transition: transform 0.5s ease;
  backface-visibility: hidden;
  background: rgba(67, 0, 152, 0.1); }
  [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(26, 26, 26, 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: rgba(67, 0, 152, 0.1); }
  [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(26, 26, 26, 0.7); }
  .off-canvas-absolute.is-open {
    transform: translate(0, 0); }

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

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

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

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

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

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

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

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

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

.orbit-previous {
  left: 0; }

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

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

.pagination {
  margin-left: 0;
  margin-bottom: 2.77778rem; }
  .pagination::before, .pagination::after {
    display: table;
    content: ' '; }
  .pagination::after {
    clear: both; }
  .pagination li {
    margin-right: 0.06944rem;
    border-radius: 0.41667rem;
    font-size: 0.97222rem;
    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.20833rem 0.69444rem;
    border-radius: 0.41667rem;
    color: #1A1A1A; }
    .pagination a:hover,
    .pagination button:hover {
      background: rgba(67, 0, 152, 0.1); }
  .pagination .current {
    padding: 0.20833rem 0.69444rem;
    background: #430098;
    color: #fefefe;
    cursor: default; }
  .pagination .disabled {
    padding: 0.20833rem 0.69444rem;
    color: #B1B1B1;
    cursor: not-allowed; }
    .pagination .disabled:hover {
      background: transparent; }
  .pagination .ellipsis::after {
    padding: 0.20833rem 0.69444rem;
    content: '\2026';
    color: #1A1A1A; }

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

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

.progress {
  height: 1rem;
  margin-bottom: 2.77778rem;
  border-radius: 0.41667rem;
  background-color: #B1B1B1; }
  .progress.primary .progress-meter {
    background-color: #430098; }
  .progress.secondary .progress-meter {
    background-color: #4DFFBA; }
  .progress.success .progress-meter {
    background-color: #3adb76; }
  .progress.warning .progress-meter {
    background-color: #ffae00; }
  .progress.alert .progress-meter {
    background-color: #FF1D25; }

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

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

.slider {
  position: relative;
  height: 0.5rem;
  margin-top: 1.25rem;
  margin-bottom: 2.25rem;
  background-color: rgba(67, 0, 152, 0.1);
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: none;
  touch-action: none; }

.slider-fill {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  max-width: 100%;
  height: 0.5rem;
  background-color: #B1B1B1;
  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.41667rem;
  background-color: #430098;
  transition: all 0.2s ease-in-out;
  -ms-touch-action: manipulation;
  touch-action: manipulation; }
  [data-whatinput='mouse'] .slider-handle {
    outline: 0; }
  .slider-handle:hover {
    background-color: #390081; }
  .slider-handle.is-dragging {
    transition: all 0s linear; }

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

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

.sticky-container {
  position: relative; }

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

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

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

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

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

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

.reveal {
  z-index: 1006;
  backface-visibility: hidden;
  display: none;
  padding: 2.77778rem;
  border: 1px solid #B1B1B1;
  border-radius: 0.41667rem;
  background-color: #fefefe;
  position: relative;
  top: 100px;
  margin-right: auto;
  margin-left: auto;
  overflow-y: auto; }
  [data-whatinput='mouse'] .reveal {
    outline: 0; }
  @media print, screen and (min-width: 40em) {
    .reveal {
      min-height: 0; } }
  .reveal .column, .reveal .columns,
  .reveal .columns {
    min-width: 0; }
  .reveal > :last-child {
    margin-bottom: 0; }
  @media print, screen and (min-width: 40em) {
    .reveal {
      width: 600px;
      max-width: 98.05556rem; } }
  @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: 98.05556rem; } }
  @media print, screen and (min-width: 40em) {
    .reveal.small {
      width: 50%;
      max-width: 98.05556rem; } }
  @media print, screen and (min-width: 40em) {
    .reveal.large {
      width: 90%;
      max-width: 98.05556rem; } }
  .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: 2.77778rem;
  outline: 0;
  font-size: 0.97222rem;
  font-weight: bold;
  color: #fefefe;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

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

.switch-paddle {
  position: relative;
  display: block;
  width: 4rem;
  height: 2rem;
  border-radius: 0.41667rem;
  background: #B1B1B1;
  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.41667rem;
    background: #fefefe;
    transition: all 0.25s ease-out;
    content: ''; }
  input:checked ~ .switch-paddle {
    background: #430098; }
    input:checked ~ .switch-paddle::after {
      left: 2.25rem; }
  [data-whatinput='mouse'] input:focus ~ .switch-paddle {
    outline: 0; }

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

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

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

.switch.tiny {
  height: 1.5rem; }
  .switch.tiny .switch-paddle {
    width: 3rem;
    height: 1.5rem;
    font-size: 0.69444rem; }
  .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.83333rem; }
  .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: 1.11111rem; }
  .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: 2.77778rem;
  border-radius: 0.41667rem; }
  table thead,
  table tbody,
  table tfoot {
    border: 1px solid #f1f1f1;
    background-color: #fefefe; }
  table caption {
    padding: 0.55556rem 0.69444rem 0.69444rem;
    font-weight: 700; }
  table thead {
    background: #f8f8f8;
    color: #1A1A1A; }
  table tfoot {
    background: #f1f1f1;
    color: #1A1A1A; }
  table thead tr,
  table tfoot tr {
    background: transparent; }
  table thead th,
  table thead td,
  table tfoot th,
  table tfoot td {
    padding: 0.55556rem 0.69444rem 0.69444rem;
    font-weight: 700;
    text-align: left; }
  table tbody th,
  table tbody td {
    padding: 0.55556rem 0.69444rem 0.69444rem; }
  table tbody tr:nth-child(even) {
    border-bottom: 0;
    background-color: #f1f1f1; }
  table.unstriped tbody {
    background-color: #fefefe; }
    table.unstriped tbody tr {
      border-bottom: 0;
      border-bottom: 1px solid #f1f1f1;
      background-color: #fefefe; }

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

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

table.hover thead tr:hover {
  background-color: #f3f3f3; }

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

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

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

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

.tabs {
  margin: 0;
  border: 1px solid rgba(67, 0, 152, 0.1);
  background: #fefefe;
  list-style-type: none; }
  .tabs::before, .tabs::after {
    display: table;
    content: ' '; }
  .tabs::after {
    clear: both; }

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

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

.tabs.primary {
  background: #430098; }
  .tabs.primary > li > a {
    color: #fefefe; }
    .tabs.primary > li > a:hover, .tabs.primary > li > a:focus {
      background: #4b00aa; }

.tabs-title {
  float: left; }
  .tabs-title > a {
    display: block;
    padding: 1.25rem 1.5rem;
    font-size: 0.83333rem;
    line-height: 1;
    color: #430098; }
    .tabs-title > a:hover {
      background: #fefefe;
      color: #3a0083; }
    .tabs-title > a:focus, .tabs-title > a[aria-selected='true'] {
      background: rgba(67, 0, 152, 0.1);
      color: #430098; }

.tabs-content {
  border: 1px solid rgba(67, 0, 152, 0.1);
  border-top: 0;
  background: #fefefe;
  color: #1A1A1A;
  transition: all 0.5s ease; }

.tabs-content.vertical {
  border: 1px solid rgba(67, 0, 152, 0.1);
  border-left: 0; }

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

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

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

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

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

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

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

.has-tip {
  position: relative;
  display: inline-block;
  border-bottom: dotted 1px #808080;
  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.41667rem;
  background-color: #1A1A1A;
  font-size: 80%;
  color: #fefefe; }
  .tooltip::before {
    display: block;
    width: 0;
    height: 0;
    border: inset 0.75rem;
    content: '';
    border-top-width: 0;
    border-bottom-style: solid;
    border-color: transparent transparent #1A1A1A;
    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: #1A1A1A 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 #1A1A1A;
    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 #1A1A1A transparent transparent;
    top: 50%;
    right: 100%;
    bottom: auto;
    left: auto;
    transform: translateY(-50%); }

.top-bar {
  padding: 2.08333rem 2.77778rem 2.08333rem 2.77778rem; }
  .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: 13.88889rem;
    margin-right: 1rem; }
  .top-bar .input-group-field {
    width: 100%;
    margin-right: 0; }
  .top-bar input.button {
    width: auto; }
  .top-bar .top-bar-left,
  .top-bar .top-bar-right {
    width: 100%; }
  @media print, screen and (min-width: 40em) {
    .top-bar .top-bar-left,
    .top-bar .top-bar-right {
      width: auto; } }
  @media screen and (max-width: 63.9375em) {
    .top-bar.stacked-for-medium .top-bar-left,
    .top-bar.stacked-for-medium .top-bar-right {
      width: 100%; } }
  @media screen and (max-width: 74.9375em) {
    .top-bar.stacked-for-large .top-bar-left,
    .top-bar.stacked-for-large .top-bar-right {
      width: 100%; } }

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

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

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

.hide {
  display: none !important; }

.invisible {
  visibility: hidden; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.clearfix::after {
  clear: both; }

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

Stylesheet: Main Stylesheet

*************************************************/
/*********************
GENERAL STYLES
*********************/
html {
  background: #1A1A1A;
  line-height: 1.7; }

#spinner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%; }

.spinner {
  animation: rotator 1.4s linear infinite; }

@keyframes rotator {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(270deg); } }

.path {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  transform-origin: center;
  animation: dash 1.4s ease-in-out infinite, colors 5.6s ease-in-out infinite; }

@keyframes colors {
  0% {
    stroke: #430098; }
  25% {
    stroke: #4DFFBA; }
  50% {
    stroke: #430098; }
  75% {
    stroke: #4DFFBA; }
  100% {
    stroke: #430098; } }

@keyframes dash {
  0% {
    stroke-dashoffset: 187; }
  50% {
    stroke-dashoffset: 46.75;
    transform: rotate(135deg); }
  100% {
    stroke-dashoffset: 187;
    transform: rotate(450deg); } }

.loader {
  display: block;
  position: fixed;
  width: 100%;
  height: 100%;
  background: #fefefe;
  opacity: 1;
  overflow: hidden;
  z-index: 1000000; }

main#content {
  background: #fefefe;
  position: relative; }

p.quote {
  background-position: top left, bottom right;
  background-repeat: no-repeat;
  padding-left: 5.55556rem;
  margin-left: -5.55556rem; }
  @media screen and (min-width: 40em) and (max-width: 63.9375em) {
    p.quote {
      padding-left: 0;
      margin-left: 0; } }
  @media screen and (max-width: 39.9375em) {
    p.quote {
      padding-left: 0;
      margin-left: 0; } }

.alltransition, .scroll-fade, .button:hover, .button.hover, form label input, form label textarea, form label select, form label input[data-invalid], form label select[data-invalid], .header nav.sticky.is-anchored.is-at-top, .header nav.sticky.is-at-top.is-stuck, .header nav.sticky.is-at-bottom, .top-bar .top-bar-right .menu .is-dropdown-submenu .is-submenu-item a, .top-bar .top-bar-right .menu .is-dropdown-submenu li.is-submenu-item a, #off-canvas ul.vertical.menu li a:hover, #off-canvas ul.vertical.menu li a:active, #off-canvas ul.vertical.menu li.current-menu-item ul li a:hover, #off-canvas ul.vertical.menu li.current-menu-item ul li a:active, #off-canvas ul.vertical.menu li.current-page-ancestor ul li a:hover, #off-canvas ul.vertical.menu li.current-page-ancestor ul li a:active, .backoffice #ui-list-right .img-container .list-avatar, .backoffice #ui-list-right .list-row .img-container .list-avatar, .backoffice #ui-list-right .list-row .img-container img, .backoffice #ui-list-right .list-row-options .img-container .list-avatar, .backoffice #ui-list-right .list-row-options .img-container img, .backoffice #ui-list-right .list-row .show-row-info, .backoffice #ui-list-right .list-row-options .show-row-info, .backoffice #ui-list-right .list-row .show-row-info p, .backoffice #ui-list-right .list-row-options .show-row-info p, .backoffice #ui-list-right .list-row .show-row-info p.info, .backoffice #ui-list-right .list-row-options .show-row-info p.info, .backoffice #ui-list-right .list-row:hover .img-container img, .backoffice #ui-list-right .list-row-options:hover .img-container img, .backoffice #ui-list-right .list-row:hover .img-container .list-avatar, .backoffice #ui-list-right .list-row-options:hover .img-container .list-avatar, .backoffice #ui-list-right .list-row:hover .show-row-info, .backoffice #ui-list-right .list-row-options:hover .show-row-info, .backoffice #ui-list-right .list-row:hover .show-row-info p, .backoffice #ui-list-right .list-row-options:hover .show-row-info p, .backoffice #ui-list-right .list-row:hover .show-row-info p.info, .backoffice #ui-list-right .list-row-options:hover .show-row-info p.info, .backoffice #ui-list-right #edit-form .select-all-wrapper .select-all i, .backoffice #ui-list-right #edit-form .select-all-wrapper .select-all span {
  transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition-timing-function: ease;
  transition-delay: .01s; }

.colortransition, .top-bar ul li a, .top-bar ul li.active ul li a, .top-bar ul li.active ul li a:active, .top-bar ul li.active ul li .current-page-ancestor a, .top-bar ul li.active ul li .current-page-ancestor a:active, section.features .feature-block a span {
  transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition-timing-function: ease;
  transition-delay: .01s; }

.backgroundtransition, .header nav, .top-bar .top-bar-right #session_icon, .top-bar .top-bar-right #profile_icon {
  transition: background 0.3s ease;
  -moz-transition: background 0.3s ease;
  -webkit-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
  transition-timing-function: ease;
  transition-delay: .01s; }

.bordertransition, .top-bar .top-bar-right .menu-item.is-dropdown-submenu-parent, .top-bar .top-bar-right .top-bar .top-bar-right .menu li.menu-item.is-dropdown-submenu-parent, .top-bar .top-bar-right .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a::after {
  transition: border 0.3s ease;
  -webkit-transition: border 0.3s ease;
  -moz-transition: border 0.3s ease;
  -o-transition: border 0.3s ease;
  transition-timing-function: ease;
  transition-delay: .01s; }

.opacitytransition, section.features .feature-block a .feature-block-images .image {
  transition: opacity 0.3s ease;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition-timing-function: ease;
  transition-delay: .01s; }

.box-shadow, .button:hover, .button.hover, .top-bar .top-bar-right .menu .is-dropdown-submenu .is-submenu-item a, .top-bar .top-bar-right .menu .is-dropdown-submenu li.is-submenu-item a, .backoffice #ui-list-right .list-row:hover .img-container img, .backoffice #ui-list-right .list-row-options:hover .img-container img, .backoffice #ui-list-right .list-row:hover .img-container .list-avatar, .backoffice #ui-list-right .list-row-options:hover .img-container .list-avatar {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23); }

.text-shadow, #off-canvas ul.vertical.menu li a:hover, #off-canvas ul.vertical.menu li a:active, #off-canvas ul.vertical.menu li.current-menu-item ul li a:hover, #off-canvas ul.vertical.menu li.current-menu-item ul li a:active, #off-canvas ul.vertical.menu li.current-page-ancestor ul li a:hover, #off-canvas ul.vertical.menu li.current-page-ancestor ul li a:active, .backoffice #ui-list-right .list-row:hover .show-row-info p, .backoffice #ui-list-right .list-row-options:hover .show-row-info p, .backoffice #ui-list-right #edit-form .select-all-wrapper .select-all.selected i, .backoffice #ui-list-right #edit-form .select-all-wrapper .select-all.selected span {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.11), 0 1px 1px rgba(0, 0, 0, 0.21); }

.add-border-top {
  border-top: 1px solid rgba(67, 0, 152, 0.1); }

.add-border-bottom {
  border-bottom: 1px solid rgba(67, 0, 152, 0.1); }

.scroll-fade {
  opacity: 0;
  padding-top: 2.77778rem; }
  @media screen and (min-width: 40em) and (max-width: 63.9375em) {
    .scroll-fade {
      opacity: 1;
      padding-top: 0; } }
  @media screen and (max-width: 39.9375em) {
    .scroll-fade {
      opacity: 1;
      padding-top: 0; } }

.fade-button {
  opacity: 0; }

.parallax, .orbit .orbit-container .orbit-slide .slide section > div, section, section .negative {
  background-attachment: fixed; }

.text-center .button {
  margin: 0 1.38889rem 2.77778rem 1.38889rem; }

.text-left .button {
  margin: 0 2.77778rem 2.77778rem 0; }

.text-right .button {
  margin: 0 0 2.77778rem 2.77778rem; }

.button-group .button-magellan-wrapper {
  max-width: 100%;
  width: 100%; }
  .button-group .button-magellan-wrapper a.button {
    margin: 0;
    min-width: 100%; }

.button-magellan-wrapper {
  display: inline-block; }
  @media screen and (max-width: 39.9375em) {
    .button-magellan-wrapper {
      width: 100%; } }
  @media screen and (min-width: 40em) and (max-width: 63.9375em) {
    .button-magellan-wrapper {
      width: 100%; } }
  .button-magellan-wrapper.button-withicon {
    width: 100%;
    height: 100%; }
    @media screen and (max-width: 39.9375em) {
      .button-magellan-wrapper.button-withicon {
        margin-bottom: 1.38889rem; } }
    @media screen and (min-width: 40em) and (max-width: 63.9375em) {
      .button-magellan-wrapper.button-withicon {
        margin-bottom: 2.77778rem; } }

#back-to-top {
  position: fixed !important;
  bottom: 3.33333rem !important;
  right: 3.33333rem !important;
  display: block !important;
  z-index: 101 !important; }
  #back-to-top .button {
    background-color: #4DFFBA !important;
    width: auto !important;
    padding: 1.66667rem !important;
    float: right !important;
    color: #fefefe !important; }
    #back-to-top .button:hover, #back-to-top .button:active {
      color: #430098 !important; }
  @media screen and (max-width: 39.9375em) {
    #back-to-top {
      display: none !important; } }

.button {
  border: 2px solid #4DFFBA !important;
  letter-spacing: 0.08em !important;
  font-weight: 700 !important;
  font-size: 0.83333rem !important;
  text-transform: uppercase !important;
  width: 13.19444rem; }
  @media screen and (max-width: 39.9375em) {
    .button {
      width: 100% !important;
      margin-left: 0 !important;
      margin-right: 0 !important; } }
  @media screen and (min-width: 40em) and (max-width: 63.9375em) {
    .button {
      width: 100% !important;
      margin-left: 0 !important;
      margin-right: 0 !important; } }
  .button.on, .button.hover {
    background-color: #4DFFBA !important; }
  .button.button-withicon {
    width: 100% !important;
    height: 100% !important;
    padding: 4.16667rem 0 !important; }
    .button.button-withicon img {
      display: block !important;
      clear: both !important;
      margin: 0 auto !important; }
    .button.button-withicon span {
      display: inline-block !important;
      width: 100% !important;
      font-size: 1.80556rem !important;
      margin: 2.08333rem 0 !important; }

.button:active, .button.click {
  box-shadow: none !important; }

form {
  margin-top: 4.16667rem; }
  form label input, form label textarea, form label select {
    font-size: 1.38889rem !important;
    font-family: "Open Sans", sans-serif !important;
    font-weight: 400 !important;
    border: none !important;
    background-color: rgba(67, 0, 152, 0.1) !important;
    margin: 0 0 2.77778rem 0 !important;
    padding-left: 1.80556rem !important;
    padding-right: 1.80556rem !important;
    color: #1A1A1A !important; }
  form label input, form label select {
    height: 4.16667rem !important; }
    form label input[data-invalid], form label select[data-invalid] {
      color: #FF1D25 !important; }
  form label input[type="file"] {
    size: '60'; }
  form label textarea, form label select[multiple] {
    padding-top: 1.38889rem;
    height: 18.05556rem !important; }
    @media screen and (max-width: 39.9375em) {
      form label textarea, form label select[multiple] {
        padding-top: 1.11111rem; } }
  @media screen and (max-width: 39.9375em) {
    form label select[multiple] {
      height: 4.16667rem !important; } }
  form #single-file-upload {
    position: relative;
    overflow: hidden;
    margin-top: -0.20833rem; }
  form #single-file-upload input.upload {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    padding: 0;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    filter: alpha(opacity=0);
    height: 100%;
    text-align: center; }
  form span.mobile-select-label {
    color: #B1B1B1; }

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

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

h2, .h2 {
  color: #430098;
  line-height: 1.13333;
  font-weight: 700; }

h3, .h3 {
  color: #430098;
  font-weight: 500;
  margin: 0 0 3.47222rem 0; }

p, .p, br {
  line-height: 2.08333rem;
  letter-spacing: 0.005em; }

/*********************
HEADER STYLES
*********************/
.header {
  position: fixed;
  z-index: 1000;
  width: 100%; }
  .header ul.off-canvas-list li {
    list-style: none; }
  .header nav {
    width: 100%; }
    .header nav.sticky.is-anchored.is-at-top {
      background: transparent; }
    .header nav.sticky.is-at-top.is-stuck {
      background: #430098; }
    .header nav.sticky.is-at-bottom {
      background: #430098;
      top: 0 !important; }
    @media screen and (max-width: 39.9375em) {
      .header nav.sticky {
        height: 80px !important; } }

/*********************
NAVIGATION STYLES
*********************/
.top-bar ul li a {
  color: #fefefe;
  font-family: "Open Sans", sans-serif; }
  .top-bar ul li a:hover, .top-bar ul li a:active {
    color: #4DFFBA; }

.top-bar ul li.active {
  color: #4DFFBA;
  font-weight: 700; }
  .top-bar ul li.active ul li {
    font-weight: 400; }
    .top-bar ul li.active ul li a, .top-bar ul li.active ul li a:active, .top-bar ul li.active ul li .current-page-ancestor a, .top-bar ul li.active ul li .current-page-ancestor a:active {
      color: #fefefe; }
      .top-bar ul li.active ul li a:hover, .top-bar ul li.active ul li a:active:hover, .top-bar ul li.active ul li .current-page-ancestor a:hover, .top-bar ul li.active ul li .current-page-ancestor a:active:hover {
        color: #4DFFBA; }

.top-bar ul li.current-page-ancestor > a {
  color: #4DFFBA;
  font-weight: 700; }

.top-bar .top-bar-left {
  padding-left: 1.38889rem; }
  .top-bar .top-bar-left a img {
    padding-top: 0.13889rem !important; }
  @media screen and (max-width: 39.9375em) {
    .top-bar .top-bar-left {
      margin-top: -5px; } }
  @media screen and (max-width: 39.9375em) {
    .top-bar .top-bar-left {
      width: 35px;
      height: auto;
      padding-left: 0 !important;
      margin-left: -10px;
      margin-top: -10px; } }

.top-bar .top-bar-right {
  margin-right: 1.38889rem;
  letter-spacing: 0.025em; }
  .top-bar .top-bar-right .menu {
    float: left;
    padding-top: 0.83333rem; }
    .top-bar .top-bar-right .menu .is-dropdown-submenu {
      border: 0; }
      .top-bar .top-bar-right .menu .is-dropdown-submenu .is-submenu-item a, .top-bar .top-bar-right .menu .is-dropdown-submenu li.is-submenu-item a {
        margin: 1.04167rem 0;
        text-align: center;
        background: #430098;
        padding: 1.38889rem 0.69444rem; }
  .top-bar .top-bar-right #menu-backoffice-1 li.menu-item-backoffice.current-page-ancestor:not(.is-dropdown-submenu-parent) a {
    font-weight: 400;
    color: #fefefe; }
    .top-bar .top-bar-right #menu-backoffice-1 li.menu-item-backoffice.current-page-ancestor:not(.is-dropdown-submenu-parent) a:hover, .top-bar .top-bar-right #menu-backoffice-1 li.menu-item-backoffice.current-page-ancestor:not(.is-dropdown-submenu-parent) a:active {
      color: #4DFFBA; }
  .top-bar .top-bar-right #menu-admin-1 li.is-dropdown-submenu-parent ul {
    margin-right: -3.47222rem; }
  .top-bar .top-bar-right #menu-logged-1 li.is-dropdown-submenu-parent ul {
    margin-right: -4.51389rem; }
  .top-bar .top-bar-right #menu-backoffice-1 li.is-dropdown-submenu-parent ul {
    margin-right: -3.47222rem; }
  .top-bar .top-bar-right #menu-backoffice-1 li.menu-item-documentos.is-dropdown-submenu-parent ul {
    margin-right: -2.77778rem; }
  .top-bar .top-bar-right .menu-item-signin a {
    padding-right: 0 !important; }
  .top-bar .top-bar-right #session_icon, .top-bar .top-bar-right #profile_icon {
    margin-top: -0.69444rem;
    margin-bottom: -0.69444rem; }
  .top-bar .top-bar-right .menu-item.is-dropdown-submenu-parent:hover, .top-bar .top-bar-right .menu-item.is-dropdown-submenu-parent:active, .top-bar .top-bar-right .top-bar .top-bar-right .menu li.menu-item.is-dropdown-submenu-parent:hover, .top-bar .top-bar-right .top-bar .top-bar-right .menu li.menu-item.is-dropdown-submenu-parent:active {
    cursor: pointer; }
  .top-bar .top-bar-right .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a::after {
    margin: -0.48611rem 0 0 0;
    border: 0.13889rem solid #fefefe;
    border-width: 0 0.13889rem 0.13889rem 0;
    padding: 0.27778rem;
    right: 0;
    margin-left: 20px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg); }
  .top-bar .top-bar-right .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a:hover:after {
    border-color: #3adb76; }
  @media screen and (min-width: 40em) and (max-width: 63.9375em) {
    .top-bar .top-bar-right {
      width: auto;
      margin-right: 30px; }
      .top-bar .top-bar-right.hide-for-large ul.menu {
        margin-right: -8px;
        margin-top: -5px; } }
  @media screen and (max-width: 39.9375em) {
    .top-bar .top-bar-right {
      width: auto;
      margin-right: 0; }
      .top-bar .top-bar-right.hide-for-large ul.menu {
        margin-right: -8px;
        margin-top: -15px; } }

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

/*********************
OFFCANVAS NAV
*********************/
#off-canvas {
  background: #430098;
  padding: 2.96875rem 3.95833rem; }
  #off-canvas ul#close-offcanvas {
    position: absolute;
    top: 2.77778rem;
    right: 3.125rem; }
    #off-canvas ul#close-offcanvas i.material-icons {
      font-size: 2.77778rem; }
      @media screen and (max-width: 39.9375em) {
        #off-canvas ul#close-offcanvas i.material-icons {
          font-size: 1.38889rem; } }
    @media screen and (max-width: 39.9375em) {
      #off-canvas ul#close-offcanvas {
        top: 1.38889rem;
        right: 1.80556rem; } }
  #off-canvas ul.vertical.menu li a {
    display: inline-block;
    color: #fefefe;
    font-size: 2.22222rem;
    padding: 1.48438rem 0 1.48438rem 0;
    margin: 0; }
    #off-canvas ul.vertical.menu li a:hover, #off-canvas ul.vertical.menu li a:active {
      color: #4DFFBA; }
    @media screen and (max-width: 39.9375em) {
      #off-canvas ul.vertical.menu li a {
        font-size: 1.38889rem; } }
  #off-canvas ul.vertical.menu li.current-menu-item a, #off-canvas ul.vertical.menu li.current-page-ancestor a {
    color: #4DFFBA;
    font-weight: 700; }
  #off-canvas ul.vertical.menu li.current-menu-item ul li a, #off-canvas ul.vertical.menu li.current-page-ancestor ul li a {
    color: #fefefe;
    font-weight: 400; }
    #off-canvas ul.vertical.menu li.current-menu-item ul li a:hover, #off-canvas ul.vertical.menu li.current-menu-item ul li a:active, #off-canvas ul.vertical.menu li.current-page-ancestor ul li a:hover, #off-canvas ul.vertical.menu li.current-page-ancestor ul li a:active {
      color: #4DFFBA; }
  #off-canvas ul.vertical.menu li.menu-item-backoffice.current-page-ancestor a {
    font-weight: 400;
    color: #fefefe; }
  #off-canvas ul.vertical.menu ul.sub-menu {
    margin-left: 2.77778rem; }
  @media screen and (max-width: 39.9375em) {
    #off-canvas {
      padding-left: 2.08333rem;
      padding-right: 2.08333rem;
      padding-top: 1.38889rem; } }

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

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

.byline {
  color: #999; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*********************
FOOTER STYLES
*********************/
.footer {
  clear: both;
  padding: 2.77778rem 0;
  color: #808080;
  bottom: 0;
  background: #1A1A1A;
  width: 100%;
  height: 6.94444rem;
  font-weight: 400; }
  .footer .footer-logo {
    display: block;
    float: right;
    margin-top: 1px; }
  .footer .source-org.copyright {
    display: block;
    float: left;
    width: initial; }
  .footer > .row, .footer > #about-first-row, .footer > #about-second-row, #cookie-notice .footer > .cookie-notice-container {
    padding: 0 2.77778rem; }
  @media screen and (max-width: 39.9375em) {
    .footer {
      height: auto; }
      .footer p.source-org.copyright {
        display: block !important;
        width: 100% !important; }
      .footer a {
        display: block;
        width: 100%; }
        .footer a .footer-logo {
          float: left;
          margin-top: 0; }
      .footer > .row, .footer > #about-first-row, .footer > #about-second-row, #cookie-notice .footer > .cookie-notice-container {
        padding: 0 1.38889rem; } }

.footer.pseudo {
  bottom: 0;
  z-index: 100;
  position: absolute;
  background: transparent; }
  @media screen and (max-width: 39.9375em) {
    .footer.pseudo {
      position: relative;
      background: #1A1A1A; } }

/*********************
FOUNDATION STYLES
*********************/
.off-canvas-content {
  background-color: #1A1A1A; }

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

.orbit .orbit-container {
  height: 100%; }
  .orbit .orbit-container .orbit-slide .slide {
    position: relative;
    height: 66vh;
    min-height: initial;
    width: 100%; }
    .orbit .orbit-container .orbit-slide .slide section {
      position: absolute;
      height: 100%;
      width: 100%;
      top: 50%;
      transform: translateY(-50%); }
      .orbit .orbit-container .orbit-slide .slide section > div.row, .orbit .orbit-container .orbit-slide .slide section > div#about-first-row, .orbit .orbit-container .orbit-slide .slide section > div#about-second-row, .orbit .orbit-container .orbit-slide .slide #cookie-notice section > div.cookie-notice-container, #cookie-notice .orbit .orbit-container .orbit-slide .slide section > div.cookie-notice-container {
        position: absolute;
        width: 100%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); }
      @media screen and (max-width: 39.9375em) {
        .orbit .orbit-container .orbit-slide .slide section {
          padding-left: 5.55556rem;
          padding-right: 5.55556rem; } }
  .orbit .orbit-container .slider-title {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 99; }
    .orbit .orbit-container .slider-title .row, .orbit .orbit-container .slider-title #about-first-row, .orbit .orbit-container .slider-title #about-second-row, .orbit .orbit-container .slider-title #cookie-notice .cookie-notice-container, #cookie-notice .orbit .orbit-container .slider-title .cookie-notice-container {
      padding-left: 4.16667rem;
      padding-right: 4.16667rem;
      padding-bottom: 3.47222rem; }
      @media screen and (max-width: 39.9375em) {
        .orbit .orbit-container .slider-title .row, .orbit .orbit-container .slider-title #about-first-row, .orbit .orbit-container .slider-title #about-second-row, .orbit .orbit-container .slider-title #cookie-notice .cookie-notice-container, #cookie-notice .orbit .orbit-container .slider-title .cookie-notice-container {
          padding-left: 2.77778rem;
          padding-right: 2.77778rem; } }
  .orbit .orbit-container .orbit-navigation {
    width: 100%;
    padding: 0;
    margin: 0 auto; }
    .orbit .orbit-container .orbit-navigation > .row, .orbit .orbit-container .orbit-navigation > #about-first-row, .orbit .orbit-container .orbit-navigation > #about-second-row, .orbit .orbit-container #cookie-notice .orbit-navigation > .cookie-notice-container, #cookie-notice .orbit .orbit-container .orbit-navigation > .cookie-notice-container {
      width: 100%;
      position: absolute;
      margin: 0;
      z-index: 100;
      top: 50%;
      transform: translateY(-50%); }
      .orbit .orbit-container .orbit-navigation > .row .orbit-previous, .orbit .orbit-container .orbit-navigation > #about-first-row .orbit-previous, .orbit .orbit-container .orbit-navigation > #about-second-row .orbit-previous, .orbit .orbit-container #cookie-notice .orbit-navigation > .cookie-notice-container .orbit-previous, #cookie-notice .orbit .orbit-container .orbit-navigation > .cookie-notice-container .orbit-previous {
        float: left; }
      .orbit .orbit-container .orbit-navigation > .row .orbit-next, .orbit .orbit-container .orbit-navigation > #about-first-row .orbit-next, .orbit .orbit-container .orbit-navigation > #about-second-row .orbit-next, .orbit .orbit-container #cookie-notice .orbit-navigation > .cookie-notice-container .orbit-next, #cookie-notice .orbit .orbit-container .orbit-navigation > .cookie-notice-container .orbit-next {
        float: right; }
      .orbit .orbit-container .orbit-navigation > .row .orbit-previous, .orbit .orbit-container .orbit-navigation > #about-first-row .orbit-previous, .orbit .orbit-container .orbit-navigation > #about-second-row .orbit-previous, .orbit .orbit-container #cookie-notice .orbit-navigation > .cookie-notice-container .orbit-previous, #cookie-notice .orbit .orbit-container .orbit-navigation > .cookie-notice-container .orbit-previous, .orbit .orbit-container .orbit-navigation > .row .orbit-next, .orbit .orbit-container .orbit-navigation > #about-first-row .orbit-next, .orbit .orbit-container .orbit-navigation > #about-second-row .orbit-next, .orbit .orbit-container #cookie-notice .orbit-navigation > .cookie-notice-container .orbit-next, #cookie-notice .orbit .orbit-container .orbit-navigation > .cookie-notice-container .orbit-next {
        opacity: 0.81;
        display: block;
        color: #430098;
        cursor: pointer !important;
        font-size: 1.38889rem; }
        .orbit .orbit-container .orbit-navigation > .row .orbit-previous:hover, .orbit .orbit-container .orbit-navigation > #about-first-row .orbit-previous:hover, .orbit .orbit-container .orbit-navigation > #about-second-row .orbit-previous:hover, .orbit .orbit-container #cookie-notice .orbit-navigation > .cookie-notice-container .orbit-previous:hover, #cookie-notice .orbit .orbit-container .orbit-navigation > .cookie-notice-container .orbit-previous:hover, .orbit .orbit-container .orbit-navigation > .row .orbit-previous:active, .orbit .orbit-container .orbit-navigation > #about-first-row .orbit-previous:active, .orbit .orbit-container .orbit-navigation > #about-second-row .orbit-previous:active, .orbit .orbit-container #cookie-notice .orbit-navigation > .cookie-notice-container .orbit-previous:active, #cookie-notice .orbit .orbit-container .orbit-navigation > .cookie-notice-container .orbit-previous:active, .orbit .orbit-container .orbit-navigation > .row .orbit-previous:focus, .orbit .orbit-container .orbit-navigation > #about-first-row .orbit-previous:focus, .orbit .orbit-container .orbit-navigation > #about-second-row .orbit-previous:focus, .orbit .orbit-container #cookie-notice .orbit-navigation > .cookie-notice-container .orbit-previous:focus, #cookie-notice .orbit .orbit-container .orbit-navigation > .cookie-notice-container .orbit-previous:focus, .orbit .orbit-container .orbit-navigation > .row .orbit-next:hover, .orbit .orbit-container .orbit-navigation > #about-first-row .orbit-next:hover, .orbit .orbit-container .orbit-navigation > #about-second-row .orbit-next:hover, .orbit .orbit-container #cookie-notice .orbit-navigation > .cookie-notice-container .orbit-next:hover, #cookie-notice .orbit .orbit-container .orbit-navigation > .cookie-notice-container .orbit-next:hover, .orbit .orbit-container .orbit-navigation > .row .orbit-next:active, .orbit .orbit-container .orbit-navigation > #about-first-row .orbit-next:active, .orbit .orbit-container .orbit-navigation > #about-second-row .orbit-next:active, .orbit .orbit-container #cookie-notice .orbit-navigation > .cookie-notice-container .orbit-next:active, #cookie-notice .orbit .orbit-container .orbit-navigation > .cookie-notice-container .orbit-next:active, .orbit .orbit-container .orbit-navigation > .row .orbit-next:focus, .orbit .orbit-container .orbit-navigation > #about-first-row .orbit-next:focus, .orbit .orbit-container .orbit-navigation > #about-second-row .orbit-next:focus, .orbit .orbit-container #cookie-notice .orbit-navigation > .cookie-notice-container .orbit-next:focus, #cookie-notice .orbit .orbit-container .orbit-navigation > .cookie-notice-container .orbit-next:focus {
          background: transparent;
          opacity: 1; }
  @media screen and (max-width: 39.9375em) {
    .orbit .orbit-container img {
      max-width: 66vw;
      height: auto; } }

.orbit nav.orbit-bullets {
  display: none; }

#bannerslider .orbit-previous, #bannerslider .orbit-next {
  color: #4DFFBA; }

#os-nossos-cliente.orbit.default-slider {
  height: inherit !important; }

/*********************
SECTIONS
*********************/
.page-title {
  position: relative;
  z-index: 99; }
  .page-title h2, .page-title .h2 {
    font-size: 5.55556rem;
    padding-bottom: 4.16667rem;
    opacity: 1; }
    @media screen and (max-width: 39.9375em) {
      .page-title h2, .page-title .h2 {
        font-size: 4.16667rem;
        padding-top: 2.96875rem; } }
    @media screen and (max-width: 39.9375em) {
      .page-title h2, .page-title .h2 {
        font-size: 2.08333rem;
        padding-top: 2.96875rem; } }

.add-section-padding-top {
  padding-top: 11.875rem; }
  @media screen and (max-width: 39.9375em) {
    .add-section-padding-top {
      padding-top: 6.98529rem; } }
  @media screen and (min-width: 40em) and (max-width: 63.9375em) {
    .add-section-padding-top {
      padding-top: 7.91667rem; } }

.add-section-padding-bottom {
  padding-bottom: 11.875rem; }
  @media screen and (max-width: 39.9375em) {
    .add-section-padding-bottom {
      padding-bottom: 6.98529rem; } }
  @media screen and (min-width: 40em) and (max-width: 63.9375em) {
    .add-section-padding-bottom {
      padding-bottom: 7.91667rem; } }

section .row, section #about-first-row, section #about-second-row, section #cookie-notice .cookie-notice-container, #cookie-notice section .cookie-notice-container {
  padding-left: 2.77778rem;
  padding-right: 2.77778rem; }
  @media screen and (max-width: 39.9375em) {
    section .row, section #about-first-row, section #about-second-row, section #cookie-notice .cookie-notice-container, #cookie-notice section .cookie-notice-container {
      padding-left: 1.38889rem;
      padding-right: 1.38889rem; } }

section, section .negative {
  background-repeat: no-repeat;
  background-size: cover; }
  @media screen and (max-width: 39.9375em) {
    section, section .negative {
      background-size: auto 125%; } }
  @media screen and (min-width: 40em) and (max-width: 63.9375em) {
    section, section .negative {
      background-size: auto 150%; } }

.negative {
  background-color: #430098;
  color: #fefefe; }
  .negative h2, .negative h3 {
    color: #fefefe; }
  .negative h3 {
    font-weight: 400; }
  .negative .button {
    background: transparent;
    color: #fefefe !important; }
    .negative .button:hover, .negative .button:active {
      background-color: #4DFFBA;
      color: #430098 !important; }

#banner_highlight {
  height: 100vh;
  padding-top: 40vh; }
  @media screen and (min-width: 40em) and (max-width: 63.9375em) {
    #banner_highlight {
      height: 100vh;
      padding-top: 40vh; } }
  @media screen and (max-width: 39.9375em) {
    #banner_highlight {
      height: 100vh;
      padding-top: 40vh; } }

section.separator .row, section.separator #about-first-row, section.separator #about-second-row, section.separator #cookie-notice .cookie-notice-container, #cookie-notice section.separator .cookie-notice-container {
  padding-left: 5.55556rem;
  padding-right: 5.55556rem; }
  section.separator .row .section-number-container, section.separator #about-first-row .section-number-container, section.separator #about-second-row .section-number-container, section.separator #cookie-notice .cookie-notice-container .section-number-container, #cookie-notice section.separator .cookie-notice-container .section-number-container {
    display: block;
    position: absolute;
    left: 50%; }
    section.separator .row .section-number-container .section-number, section.separator #about-first-row .section-number-container .section-number, section.separator #about-second-row .section-number-container .section-number, section.separator #cookie-notice .cookie-notice-container .section-number-container .section-number, #cookie-notice section.separator .cookie-notice-container .section-number-container .section-number {
      position: relative;
      left: -50%;
      display: block;
      margin: -50px 0 -50px 0;
      padding: 1.11111rem;
      width: 6.94444rem;
      height: 6.94444rem;
      background: #fefefe;
      border-top-left-radius: 3.47222rem;
      border-top-right-radius: 3.47222rem;
      border-bottom-right-radius: 3.47222rem;
      border-bottom-left-radius: 3.47222rem;
      border: 1px solid rgba(67, 0, 152, 0.1);
      font-size: 2.63889rem;
      font-weight: 700;
      color: #4DFFBA; }

section.features .no-title {
  margin: -4.16667rem 0 0 0; }

section.features .feature-row {
  display: inline-block;
  clear: both;
  margin-top: 11.875rem !important; }
  section.features .feature-row .image {
    margin: -2.08333rem 0 0 0; }
  section.features .feature-row .info h2, section.features .feature-row .info .h2 {
    margin: 0 0 3.47222rem 0; }
  @media screen and (max-width: 39.9375em) {
    section.features .feature-row {
      margin-top: 5.9375rem !important;
      padding-top: 5.9375rem !important;
      margin-bottom: 0 !important;
      padding-bottom: 0 !important; } }

section.features .feature-block {
  margin: 4.16667rem 0 0 0; }
  section.features .feature-block a {
    font-weight: 700;
    color: #B1B1B1; }
    section.features .feature-block a .feature-block-images {
      width: 100%;
      background-color: #fefefe;
      background-position: center center;
      background-repeat: no-repeat;
      background-size: 100% auto; }
      section.features .feature-block a .feature-block-images .image {
        left: -50%;
        width: 100%;
        height: 100%;
        border-top-left-radius: 50%;
        border-top-right-radius: 50%;
        border-bottom-right-radius: 50%;
        border-bottom-left-radius: 50%;
        background-color: #430098;
        opacity: 1; }
    section.features .feature-block a span {
      position: relative;
      display: block;
      margin-top: 2.22222rem;
      line-height: 1.38889rem;
      letter-spacing: 0.02em; }
    section.features .feature-block a:hover {
      background: transparent !important; }
      section.features .feature-block a:hover .feature-block-images .image {
        opacity: 0; }
      section.features .feature-block a:hover span {
        color: #1A1A1A; }

section.about .about-info h3 {
  margin-top: 1.38889rem; }

section.about .about-info .about-content {
  font-weight: 400; }

@media screen and (min-width: 64em) and (max-width: 74.9375em) {
  section.about .about-info h3 {
    padding-left: 2.77778rem;
    border-left: 2px solid #4DFFBA; }
  section.about .about-info .about-content {
    padding-left: 2.77778rem; } }

section.info-row {
  z-index: 100;
  position: relative; }
  section.info-row h2, section.info-row h3 {
    margin-bottom: 2.77778rem; }
  section.info-row h3 {
    margin-top: -map-get((small: 1.38889rem, medium: 2.77778rem), medium); }
  @media screen and (max-width: 39.9375em) {
    section.info-row h2, section.info-row h3 {
      margin-bottom: 1.38889rem; }
    section.info-row h3 {
      margin-top: -map-get((small: 1.38889rem, medium: 2.77778rem), small); } }

#about-first-row {
  background-position: 88% 100% !important;
  background-size: auto 90%;
  background-attachment: scroll;
  padding-top: 23.75rem;
  padding-left: 1.38889rem;
  padding-right: 1.38889rem;
  margin-top: -11.875rem;
  /*
	h2 {
		display: block;
		height: 176px;
		overflow: hidden;

		@include breakpoint( small only ) {
			display: block;
			height: 100px;
			overflow: hidden;
		}
	}
	*/ }
  #about-first-row p {
    margin-top: -map-get((small: 1.38889rem, medium: 2.77778rem), small); }
    @media screen and (max-width: 39.9375em) {
      #about-first-row p {
        margin-top: -map-get((small: 1.38889rem, medium: 2.77778rem), medium);
        margin-bottom: 0; } }
  @media screen and (max-width: 39.9375em) {
    #about-first-row {
      background-image: none !important;
      padding-bottom: 2.96875rem;
      padding-top: 5.9375rem;
      margin-top: 0; } }

#about-second-row {
  background-position: 4.16667rem top !important;
  background-size: 45% auto;
  background-attachment: scroll;
  margin-bottom: -3.95833rem;
  padding-left: 1.38889rem;
  padding-right: 1.38889rem; }
  @media screen and (min-width: 40em) and (max-width: 63.9375em) {
    #about-second-row {
      background-position: 4.16667rem 38% !important; } }
  @media screen and (max-width: 39.9375em) {
    #about-second-row {
      background-image: none !important;
      padding-top: 2.96875rem; } }

section#highlight_plataforma .scroll-fade {
  display: block;
  max-width: 720px;
  margin: auto; }

section.testimonial .logo {
  height: 66vh;
  position: absolute;
  top: 0; }
  section.testimonial .logo .logo-image-container {
    position: relative;
    height: 100%; }
    section.testimonial .logo .logo-image-container a {
      position: absolute;
      top: 0;
      left: 0;
      right: 0; }
      @media screen and (max-width: 39.9375em) {
        section.testimonial .logo .logo-image-container a {
          display: inline-block;
          position: relative; } }
    @media screen and (max-width: 39.9375em) {
      section.testimonial .logo .logo-image-container {
        height: initial;
        position: relative; } }
  @media screen and (max-width: 39.9375em) {
    section.testimonial .logo {
      height: initial;
      position: relative;
      padding: 1.38889rem 0 2.77778rem 0; } }

section.testimonial .review a, section.testimonial .review {
  padding: 0;
  font-style: italic;
  color: #808080;
  font-size: 2.08333rem;
  line-height: 2.77778rem; }
  @media screen and (max-width: 39.9375em) {
    section.testimonial .review a, section.testimonial .review {
      font-size: 1.38889rem; } }
  @media screen and (min-width: 40em) and (max-width: 63.9375em) {
    section.testimonial .review a, section.testimonial .review {
      font-size: 1.73611rem; } }

section.testimonial .review span {
  padding: 0;
  color: #808080;
  font-weight: 700;
  font-size: 1.38889rem;
  margin-top: 3.47222rem;
  display: inline-block;
  width: 100%; }
  @media screen and (max-width: 39.9375em) {
    section.testimonial .review span {
      font-size: 0.97222rem; } }
  @media screen and (min-width: 40em) and (max-width: 63.9375em) {
    section.testimonial .review span {
      font-size: 1.11111rem; } }

section#contact-info-with-map {
  position: relative;
  padding-bottom: 6.94444rem;
  margin-top: -6.94444rem; }
  section#contact-info-with-map #contacts {
    padding-top: 6.94444rem;
    padding-right: 0; }
    section#contact-info-with-map #contacts p {
      font-size: 1.38889rem;
      line-height: 2.08333rem;
      margin-bottom: 0; }
      section#contact-info-with-map #contacts p .contact-label {
        font-size: inherit;
        font-weight: 400; }
      section#contact-info-with-map #contacts p img {
        margin-right: 0.97222rem; }
      @media screen and (max-width: 39.9375em) {
        section#contact-info-with-map #contacts p {
          font-size: 0.83333rem; }
          section#contact-info-with-map #contacts p img {
            display: none; } }
    section#contact-info-with-map #contacts p.country {
      text-transform: uppercase; }
    section#contact-info-with-map #contacts h2 {
      margin-bottom: 3.47222rem; }
  section#contact-info-with-map #map-area {
    padding: 0; }
    @media screen and (max-width: 39.9375em) {
      section#contact-info-with-map #map-area {
        display: none; } }
  section#contact-info-with-map #google-map-container {
    background: #fefefe;
    position: absolute;
    padding: 0;
    padding-top: 6.94444rem;
    z-index: 99; }
    @media screen and (max-width: 39.9375em) {
      section#contact-info-with-map #google-map-container {
        display: none; } }
    section#contact-info-with-map #google-map-container #google-map {
      position: relative;
      width: 100%;
      height: 100%; }
      @media screen and (max-width: 39.9375em) {
        section#contact-info-with-map #google-map-container #google-map {
          display: none; } }
  section#contact-info-with-map #pseudo-footer {
    background-color: #1A1A1A;
    position: absolute;
    width: 100%;
    padding: 0;
    margin: 0;
    bottom: 0;
    height: 6.94444rem;
    z-index: 99; }
    @media screen and (max-width: 39.9375em) {
      section#contact-info-with-map #pseudo-footer {
        display: none; } }
  @media screen and (max-width: 39.9375em) {
    section#contact-info-with-map {
      padding-bottom: 2.08333rem;
      margin-top: 0; } }

section.contact-form h2, section.contact-form .h2 {
  margin-bottom: 1.38889rem; }

section.contact-form form {
  margin-top: 2.77778rem !important; }
  section.contact-form form textarea#contact-form-message {
    padding-bottom: 1.38889rem; }

section.contact-form #contact-form-success h3, section.contact-form #contact-form-success .h3 {
  color: #1A1A1A;
  font-weight: 100; }

section#contact-info-with-map.negative {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#220051+1,430098+47,430098+47 */
  background: #220051;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #220051 1%, #430098 47%, #430098 47%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#220051', endColorstr='#430098',GradientType=1 );
  /* IE6-9 */ }
  section#contact-info-with-map.negative h2, section#contact-info-with-map.negative .h2 {
    color: #4DFFBA; }
  section#contact-info-with-map.negative p {
    color: #fefefe; }
    section#contact-info-with-map.negative p .contact-label {
      color: #4DFFBA; }

section.posts .row, section.posts #about-first-row, section.posts #about-second-row, section.posts #cookie-notice .cookie-notice-container, #cookie-notice section.posts .cookie-notice-container {
  padding: 0 2.77778rem; }
  section.posts .row .post-row, section.posts #about-first-row .post-row, section.posts #about-second-row .post-row, section.posts #cookie-notice .cookie-notice-container .post-row, #cookie-notice section.posts .cookie-notice-container .post-row {
    display: block;
    position: relative;
    float: left;
    width: 100%;
    padding: 5.9375rem 0; }
    section.posts .row .post-row h2, section.posts #about-first-row .post-row h2, section.posts #about-second-row .post-row h2, section.posts #cookie-notice .cookie-notice-container .post-row h2, #cookie-notice section.posts .cookie-notice-container .post-row h2 {
      margin-bottom: 1.38889rem; }

.posts-prev-next {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center; }
  .posts-prev-next .posts-prev-link {
    float: left; }
  .posts-prev-next .posts-next-link {
    float: right; }
  .posts-prev-next .material-icons {
    display: inline-block;
    width: 100%;
    font-size: 3.47222rem;
    line-height: inherit; }
  .posts-prev-next .posts-page-numbers {
    font-size: 1.80556rem;
    line-height: inherit; }
    .posts-prev-next .posts-page-numbers span.page-numbers {
      font-weight: 700;
      color: #430098; }

.shortcode-byline .shortcode-byline-date {
  width: 8vw;
  min-width: 100%;
  height: 100%;
  background: #430098;
  padding: 1.25rem 2.08333rem;
  border-radius: 0.69444rem;
  margin-bottom: 0.97222rem; }
  .shortcode-byline .shortcode-byline-date .shortcode-byline-date-day {
    position: relative;
    display: inline-block;
    font-weight: 700;
    color: #fefefe;
    font-size: 7.77778rem;
    line-height: 7.77778rem;
    width: 100%;
    font-size: 5vw; }
  .shortcode-byline .shortcode-byline-date .shortcode-byline-date-month {
    display: block;
    color: #4DFFBA;
    font-weight: 700;
    font-size: 1.2vw; }

/*********************
AJAX AUTH
*********************/
#auth-modal-form {
  width: 40vw;
  padding: 5.55556rem; }
  #auth-modal-form #login.ajax-auth {
    margin-top: 2.08333rem; }
  #auth-modal-form button.button {
    width: 100%; }
  #auth-modal-form a, #auth-modal-form a:visited {
    display: inline-block;
    width: 100%;
    font-weight: 700;
    color: #430098; }
  #auth-modal-form a.text-link {
    margin-top: 2.08333rem; }
    #auth-modal-form a.text-link span {
      display: inline-block;
      border-bottom: 2px solid #430098; }
  #auth-modal-form p.status {
    margin-bottom: 2.77778rem;
    font-weight: 700; }
  #auth-modal-form #close-auth-modal-form {
    position: absolute;
    top: 2.96875rem;
    right: 2.96875rem; }
    #auth-modal-form #close-auth-modal-form i.material-icons {
      font-size: 2.77778rem; }
      @media screen and (max-width: 39.9375em) {
        #auth-modal-form #close-auth-modal-form i.material-icons {
          font-size: 1.38889rem;
          font-weight: 800; } }
    @media screen and (max-width: 39.9375em) {
      #auth-modal-form #close-auth-modal-form {
        right: 2.08333rem; } }
  #auth-modal-form #login-container {
    padding: 0;
    overflow: hidden; }
    @media screen and (max-width: 39.9375em) {
      #auth-modal-form #login-container h2.text-center {
        text-align: left; }
      #auth-modal-form #login-container #login input {
        font-size: 1.04167rem !important; } }
  #auth-modal-form.reveal {
    overflow: hidden !important; }
  @media screen and (max-width: 39.9375em) {
    #auth-modal-form {
      width: 100%;
      height: 100vh;
      padding: 1.38889rem;
      padding-top: 2.63889rem; } }
  @media screen and (min-width: 40em) and (max-width: 63.9375em) {
    #auth-modal-form {
      width: 66vw; } }

/*********************
USERGROUP BACKOFFICE
*********************/
#backoffice .large-12.medium-12.columns {
  padding-left: 0.34722rem;
  padding-right: 0; }

.backoffice #ui-list-left {
  border-right: solid 2px #4DFFBA;
  margin-right: -2px;
  display: block;
  float: left; }
  .backoffice #ui-list-left h3, .backoffice #ui-list-left .h3 {
    margin-bottom: 0;
    margin-top: 0.55556rem; }
  .backoffice #ui-list-left h2, .backoffice #ui-list-left .h2 {
    margin-bottom: 2.77778rem; }
  .backoffice #ui-list-left .row, .backoffice #ui-list-left #about-first-row, .backoffice #ui-list-left #about-second-row, .backoffice #ui-list-left #cookie-notice .cookie-notice-container, #cookie-notice .backoffice #ui-list-left .cookie-notice-container {
    padding-right: 5.55556rem; }
  .backoffice #ui-list-left .button-magellan-wrapper {
    display: block;
    width: 100% !important; }
    .backoffice #ui-list-left .button-magellan-wrapper .button {
      width: 100%; }
  .backoffice #ui-list-left.columns {
    padding-left: 0; }
  .backoffice #ui-list-left br {
    display: block;
    width: 100%;
    margin-top: 2.5rem; }
  @media screen and (min-width: 40em) and (max-width: 63.9375em) {
    .backoffice #ui-list-left {
      border: 0;
      margin-right: 0;
      margin-bottom: 0; }
      .backoffice #ui-list-left h2, .backoffice #ui-list-left .h2 {
        margin-bottom: 0; }
      .backoffice #ui-list-left h3, .backoffice #ui-list-left .h3 {
        margin-top: -2.77778rem; }
      .backoffice #ui-list-left .row, .backoffice #ui-list-left #about-first-row, .backoffice #ui-list-left #about-second-row, .backoffice #ui-list-left #cookie-notice .cookie-notice-container, #cookie-notice .backoffice #ui-list-left .cookie-notice-container {
        padding-left: 2.77778rem;
        padding-right: 1.38889rem; } }
  @media screen and (max-width: 39.9375em) {
    .backoffice #ui-list-left {
      border: 0;
      margin-right: 0;
      margin-bottom: 0; }
      .backoffice #ui-list-left h2, .backoffice #ui-list-left .h2 {
        margin-bottom: 0; }
      .backoffice #ui-list-left .row, .backoffice #ui-list-left #about-first-row, .backoffice #ui-list-left #about-second-row, .backoffice #ui-list-left #cookie-notice .cookie-notice-container, #cookie-notice .backoffice #ui-list-left .cookie-notice-container {
        padding-left: 1.38889rem;
        padding-right: 1.38889rem; } }

.backoffice #ui-list-right {
  border-left: solid 2px #4DFFBA;
  padding-left: 2px;
  display: block;
  float: left; }
  .backoffice #ui-list-right .row, .backoffice #ui-list-right #about-first-row, .backoffice #ui-list-right #about-second-row, .backoffice #ui-list-right #cookie-notice .cookie-notice-container, #cookie-notice .backoffice #ui-list-right .cookie-notice-container {
    padding-left: 6.94444rem;
    padding-right: 1.38889rem; }
  .backoffice #ui-list-right .row .columns, .backoffice #ui-list-right #about-first-row .columns, .backoffice #ui-list-right #about-second-row .columns, .backoffice #ui-list-right #cookie-notice .cookie-notice-container .columns, #cookie-notice .backoffice #ui-list-right .cookie-notice-container .columns {
    padding-left: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important; }
  .backoffice #ui-list-right .img-container {
    margin: -1.73611rem 0 1.73611rem -1.38889rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 8.68056rem !important;
    height: 8.68056rem !important; }
    .backoffice #ui-list-right .img-container img {
      left: 0;
      right: 0; }
    .backoffice #ui-list-right .img-container .list-avatar {
      border: solid 2px transparent;
      border-radius: 4.34028rem;
      overflow: hidden;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-align: center;
      align-items: center;
      width: 8.68056rem !important;
      height: 8.68056rem !important; }
      .backoffice #ui-list-right .img-container .list-avatar img {
        border-radius: 4.34028rem;
        width: 100%;
        height: 100%;
        object-fit: cover; }
    @media screen and (min-width: 40em) and (max-width: 63.9375em) {
      .backoffice #ui-list-right .img-container {
        margin-top: 0; } }
    @media screen and (max-width: 39.9375em) {
      .backoffice #ui-list-right .img-container {
        margin-top: 0;
        margin-left: 0; } }
  .backoffice #ui-list-right .list-row, .backoffice #ui-list-right .list-row-options {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    cursor: pointer;
    padding: 1.38889rem 0 1.38889rem 0;
    border-bottom: 1px solid rgba(67, 0, 152, 0.1); }
    .backoffice #ui-list-right .list-row .img-container, .backoffice #ui-list-right .list-row-options .img-container {
      margin: 0 1.38889rem 0 -1.38889rem; }
      .backoffice #ui-list-right .list-row .img-container .list-avatar, .backoffice #ui-list-right .list-row-options .img-container .list-avatar {
        width: 5.83333rem !important;
        height: 5.83333rem !important; }
    .backoffice #ui-list-right .list-row .show-row-info, .backoffice #ui-list-right .list-row-options .show-row-info {
      margin-top: -8px;
      margin-left: 30px; }
      .backoffice #ui-list-right .list-row .show-row-info p, .backoffice #ui-list-right .list-row-options .show-row-info p {
        margin-top: 0;
        margin-bottom: 0;
        line-height: 1.4 !important;
        color: #430098; }
        .backoffice #ui-list-right .list-row .show-row-info p.info, .backoffice #ui-list-right .list-row-options .show-row-info p.info {
          font-size: 0.90278rem;
          color: #808080;
          font-weight: normal; }
    .backoffice #ui-list-right .list-row .button-magellan-wrapper, .backoffice #ui-list-right .list-row-options .button-magellan-wrapper {
      float: right; }
    .backoffice #ui-list-right .list-row .columns, .backoffice #ui-list-right .list-row-options .columns {
      padding-right: 0; }
    .backoffice #ui-list-right .list-row.last, .backoffice #ui-list-right .list-row-options.last {
      border-bottom: none; }
    .backoffice #ui-list-right .list-row:hover .img-container img, .backoffice #ui-list-right .list-row-options:hover .img-container img {
      transform: scale(1.05); }
    .backoffice #ui-list-right .list-row:hover .img-container .list-avatar, .backoffice #ui-list-right .list-row-options:hover .img-container .list-avatar {
      padding: 1px;
      transform: scale(1.05);
      border-color: #4DFFBA; }
    .backoffice #ui-list-right .list-row:hover .show-row-info p, .backoffice #ui-list-right .list-row-options:hover .show-row-info p {
      font-size: 1.11111rem;
      font-weight: 500; }
      .backoffice #ui-list-right .list-row:hover .show-row-info p.info, .backoffice #ui-list-right .list-row-options:hover .show-row-info p.info {
        color: #1A1A1A;
        font-size: 0.97222rem;
        text-shadow: none; }
    @media screen and (max-width: 39.9375em) {
      .backoffice #ui-list-right .list-row, .backoffice #ui-list-right .list-row-options {
        padding: 0 0 0 0; } }
  .backoffice #ui-list-right .list-row-options {
    padding: 0 0 2.08333rem 0 !important; }
    .backoffice #ui-list-right .list-row-options select {
      margin: 0 !important;
      height: 62px; }
    .backoffice #ui-list-right .list-row-options > .columns:first-child {
      padding-right: 1.38889rem; }
    .backoffice #ui-list-right .list-row-options .button-magellan-wrapper {
      width: 100%;
      width: 89%; }
      .backoffice #ui-list-right .list-row-options .button-magellan-wrapper .button {
        width: 100%; }
    @media screen and (min-width: 40em) and (max-width: 63.9375em) {
      .backoffice #ui-list-right .list-row-options .button-magellan-wrapper {
        width: 90%; }
        .backoffice #ui-list-right .list-row-options .button-magellan-wrapper .button {
          width: 100%; } }
    @media screen and (max-width: 39.9375em) {
      .backoffice #ui-list-right .list-row-options .button-magellan-wrapper {
        width: 100% !important;
        min-width: auto !important;
        padding-left: 1.38889rem !important; }
        .backoffice #ui-list-right .list-row-options .button-magellan-wrapper .button {
          width: 100% !important;
          min-width: auto !important; }
          .backoffice #ui-list-right .list-row-options .button-magellan-wrapper .button span {
            display: block !important;
            min-width: auto !important;
            width: auto !important;
            margin: 0 auto; } }
  .backoffice #ui-list-right #profile-list {
    padding-top: 1.73611rem; }
    .backoffice #ui-list-right #profile-list .img-container {
      -ms-flex-pack: start;
      justify-content: flex-start; }
    @media screen and (min-width: 40em) and (max-width: 63.9375em) {
      .backoffice #ui-list-right #profile-list {
        padding-top: 0; } }
    @media screen and (max-width: 39.9375em) {
      .backoffice #ui-list-right #profile-list {
        padding-top: 0; } }
  .backoffice #ui-list-right #edit-form .select-all-wrapper {
    display: block;
    position: relative;
    padding-bottom: 60px !important; }
    .backoffice #ui-list-right #edit-form .select-all-wrapper .select-all {
      display: block;
      cursor: pointer;
      width: 100%; }
      .backoffice #ui-list-right #edit-form .select-all-wrapper .select-all i, .backoffice #ui-list-right #edit-form .select-all-wrapper .select-all span {
        display: block;
        float: left;
        color: #808080; }
      .backoffice #ui-list-right #edit-form .select-all-wrapper .select-all span {
        margin-top: -2px; }
      .backoffice #ui-list-right #edit-form .select-all-wrapper .select-all.selected i, .backoffice #ui-list-right #edit-form .select-all-wrapper .select-all.selected span {
        color: #430098; }
      @media screen and (max-width: 39.9375em) {
        .backoffice #ui-list-right #edit-form .select-all-wrapper .select-all i {
          font-size: 1.7em !important; }
        .backoffice #ui-list-right #edit-form .select-all-wrapper .select-all span {
          font-size: 1em !important;
          margin-top: 0px !important; } }
  @media screen and (max-width: 39.9375em) {
    .backoffice #ui-list-right #edit-form #usergroup_filter_id .select-all-wrapper .select-all {
      margin-top: 1.04167rem; } }
  .backoffice #ui-list-right #list-options .button-magellan-wrapper, .backoffice #ui-list-right #list-options .button-magellan-wrapper .button {
    width: 100%; }
  .backoffice #ui-list-right #list-options .columns {
    padding-right: 1.04167rem;
    padding-left: 0; }
  .backoffice #ui-list-right #list-options .last {
    padding-right: 0;
    padding-left: 1.04167rem; }
  .backoffice #ui-list-right #edit-form form {
    margin-top: 0; }
  .backoffice #ui-list-right #edit-form .columns {
    padding-right: 1.38889rem;
    padding-left: 0; }
  .backoffice #ui-list-right #edit-form .last {
    padding-right: 0 !important;
    padding-left: 1.38889rem !important; }
  .backoffice #ui-list-right #edit-form input.button {
    margin-top: -0.20833rem;
    width: 100% !important; }
  .backoffice #ui-list-right #edit-form .large-3.medium-3.small-3.columns p {
    margin-top: 1.11111rem; }
  .backoffice #ui-list-right #edit-form .button {
    width: 100% !important; }
  .backoffice #ui-list-right #edit-form option:not([disabled]) {
    cursor: pointer; }
  .backoffice #ui-list-right #edit-form .usergroup_filter .list-row-options {
    padding: 2.77778rem !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    border-top: 1px solid rgba(67, 0, 152, 0.1) !important;
    border-bottom: 0; }
    .backoffice #ui-list-right #edit-form .usergroup_filter .list-row-options select {
      padding-right: 0 !important; }
    .backoffice #ui-list-right #edit-form .usergroup_filter .list-row-options div.button-magellan-wrapper {
      padding-left: 0 !important; }
    @media screen and (max-width: 39.9375em) {
      .backoffice #ui-list-right #edit-form .usergroup_filter .list-row-options {
        padding-bottom: 1.38889rem !important; } }
  @media screen and (min-width: 40em) and (max-width: 63.9375em) {
    .backoffice #ui-list-right {
      margin-left: 0;
      border: 0;
      padding-top: 0;
      margin-top: 40px; }
      .backoffice #ui-list-right .row, .backoffice #ui-list-right #about-first-row, .backoffice #ui-list-right #about-second-row, .backoffice #ui-list-right #cookie-notice .cookie-notice-container, #cookie-notice .backoffice #ui-list-right .cookie-notice-container {
        padding-left: 2.77778rem;
        padding-right: 1.38889rem; } }
  @media screen and (max-width: 39.9375em) {
    .backoffice #ui-list-right {
      margin-left: 0;
      border: 0;
      padding-top: 0;
      margin-top: 40px; }
      .backoffice #ui-list-right .row, .backoffice #ui-list-right #about-first-row, .backoffice #ui-list-right #about-second-row, .backoffice #ui-list-right #cookie-notice .cookie-notice-container, #cookie-notice .backoffice #ui-list-right .cookie-notice-container {
        padding-left: 1.38889rem;
        padding-right: 1.38889rem; } }

@media screen and (max-width: 39.9375em) {
  .backoffice > .add-section-padding-top {
    padding-top: 2.77778rem; }
  .backoffice > .add-section-padding-bottom {
    padding-bottom: 2.77778rem; }
  .backoffice #ui-list-left, .backoffice #ui-list-right {
    padding-right: 0 !important; }
  .backoffice #ajax-update-user-form > div.large-12.medium-12.small-12 {
    padding-left: 0 !important;
    padding-right: 0 !important; }
  .backoffice p, .backoffice span, .backoffice a, .backoffice input, .backoffice textarea, .backoffice option, .backoffice select {
    font-size: 0.8rem !important;
    letter-spacing: 0.05rem !important; }
  .backoffice textarea {
    line-height: 2rem !important; }
  .backoffice input:not(#file-upload-button), .backoffice textarea, .backoffice label, .backoffice option {
    padding-left: 0.69444rem !important;
    padding-right: 0.69444rem !important;
    min-width: 50px; }
  .backoffice select {
    padding-left: 0.69444rem !important;
    min-width: 50px; }
  .backoffice option {
    padding-top: 0.69444rem !important;
    padding-bottom: 0.69444rem !important; }
  .backoffice select[multiple] {
    padding-top: 0.55556rem !important; }
    .backoffice select[multiple] option {
      padding-top: 0 !important;
      padding-bottom: 0 !important; }
  .backoffice .button-magellan-wrapper, .backoffice .button {
    display: block;
    min-width: 80px !important;
    font-size: 0.7rem !important;
    float: right; }
  .backoffice label {
    padding: 0 !important; }
  .backoffice #update-user-form-reset, .backoffice #update-object-form-reset, .backoffice #update-group-form-reset, .backoffice #update-attachment-form-reset {
    float: left; }
  .backoffice .select-all i.material-icons {
    padding-top: 0.13889rem; } }

/*********************
SEARCH BAR
*********************/
.search-form {
  position: relative;
  display: inline-block;
  margin: 0;
  width: 100%; }
  .search-form .screen-reader-text {
    display: none; }
  .search-form .search-submit {
    position: absolute;
    background-color: #430098 !important;
    color: #fefefe !important;
    right: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0; }
    .search-form .search-submit:hover, .search-form .search-submit:active {
      background-color: #4DFFBA !important;
      color: #430098 !important;
      cursor: pointer; }

#search-loader {
  width: 100%;
  margin-top: 5.55556rem; }

/*********************
FILE UPLOADER
*********************/
.media-modal {
  font-family: "Open Sans", sans-serif !important; }
  .media-modal .thumbnail, .media-modal .attachment-info .thumbnail {
    border: initial;
    border-radius: initial;
    margin-bottom: initial;
    box-shadow: initial; }
  .media-modal .attachment-info .thumbnail {
    margin-bottom: 5px;
    padding: 5px; }
  .media-modal .button {
    width: initial; }
  .media-modal .screen-reader-text {
    display: none; }
  .media-modal .label {
    background: initial; }
  .media-modal .compat-attachment-fields tr {
    background: #f1f1f1; }
  .media-modal input, .media-modal textarea {
    border-radius: 0; }
  .media-modal .setting span, .media-modal .compat-item label span {
    font-size: 12px;
    padding-top: 13px;
    text-align: left; }
  .media-modal .media-sidebar {
    width: 20%; }
  .media-modal .attachments.ui-sortable.ui-sortable-disabled {
    width: 77%; }
  .media-modal .attachments-browser .media-toolbar {
    width: 76%; }
  .media-modal select#media-attachment-date-filters {
    border-radius: 0;
    padding: 5px !important;
    width: 275px !important;
    height: 38px !important;
    background-position: right center; }
  .media-modal .media-frame-title {
    margin-bottom: -32px; }
  .media-modal .media-toolbar-primary.search-form {
    text-transform: lowercase; }
  .media-modal .media-toolbar-primary.search-form:first-letter {
    text-transform: uppercase; }
  .media-modal .attachment-details.save-ready {
    overflow: hidden; }
  .media-modal .media-sidebar.setting.name {
    max-width: 50px; }
  .media-modal .media-modal-content .attachments-browser .search {
    width: 80%; }

.reveal h3, .reveal .h3 {
  margin-bottom: 2.08333rem; }

/*
	SELECT2
*/
.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple, .select2-container--default .select2-selection--single, .select2-container--default .select2-selection--single .select2-selection__arrow, .select2-container--default .select2-selection--multiple .select2-selection__rendered li, .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  min-height: 60px; }

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 60px; }

.select2-container--default .select2-search--inline .select2-search__field {
  padding: 0 10px !important;
  min-width: auto !important;
  width: 100% !important; }

.select2-search.select2-search--inline {
  width: 100% !important; }

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  padding: 20px 5px !important; }

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  padding: 0 20px 0 5px !important; }

.select2-search.select2-search--inline {
  min-height: auto !important; }
  .select2-search.select2-search--inline input.select2-search__field {
    margin-top: 5px !important;
    margin-bottom: 0 !important; }

#usergroup_filter_id, .filter_companies {
  margin-bottom: 40px !important; }

.select2-container {
  width: 100% !important; }
  @media screen and (max-width: 39.9375em) {
    .select2-container {
      left: 0px !important; } }

.select2-container--default .select2-results__option[aria-disabled="true"] {
  display: none !important; }

@media screen and (max-width: 39.9375em) {
  .select2-container--open .select2-dropdown--below, .select2-container--open .select2-dropdown {
    width: 100% !important;
    border-top: 1px solid;
    border-bottom: 1px solid;
    margin-top: 1px;
    margin-bottom: 1px; } }

.select2-results ul li {
  padding: 15px; }

.select2-search.select2-search--dropdown input {
  height: 60px;
  margin: 0; }

form#filter_people label input {
  margin-bottom: 20px !important; }

/*
NEW
*/
h3.h3-title {
  margin: 30px 0px 0px !important; }

#cookie-notice {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  background-color: rgba(26, 26, 26, 0.6) !important;
  background-blend-mode: multiply;
  background-image: url("../images/IMG2.jpg") !important;
  background-size: cover !important;
  background-position: center bottom !important; }
  #cookie-notice .cookie-notice-container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: left;
    justify-content: left;
    padding: 2.08333rem 4.16667rem; }
    #cookie-notice .cookie-notice-container #cn-notice-text {
      max-width: 500px;
      margin-right: auto;
      text-align: left;
      letter-spacing: 0.06rem; }
      @media screen and (max-width: 63.9375em) {
        #cookie-notice .cookie-notice-container #cn-notice-text {
          max-width: 100%;
          text-align: center; } }
    #cookie-notice .cookie-notice-container a.button {
      width: auto;
      text-align: center;
      white-space: nowrap;
      padding: 0.69444rem 0.69444rem !important;
      font-size: 12px !important;
      letter-spacing: 0.09rem !important; }
      #cookie-notice .cookie-notice-container a.button:last-child {
        margin-left: 2.08333rem; }
      @media screen and (max-width: 63.9375em) {
        #cookie-notice .cookie-notice-container a.button {
          padding: 1.38889rem 1.38889rem !important;
          margin-top: 1.38889rem !important; } }
    @media screen and (max-width: 39.9375em) {
      #cookie-notice .cookie-notice-container {
        padding: 2.08333rem 2.08333rem; } }

form#contact-form-email-form label[for="contact-form-policy"] {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 0.83333rem !important;
  margin-top: -2.08333rem !important; }
  form#contact-form-email-form label[for="contact-form-policy"] input {
    margin: 0 !important; }
  form#contact-form-email-form label[for="contact-form-policy"] span {
    margin-left: 2.08333rem !important; }
  @media screen and (max-width: 63.9375em) {
    form#contact-form-email-form label[for="contact-form-policy"] {
      margin-bottom: 2.08333rem !important;
      margin-top: -1.04167rem !important; } }

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

Stylesheet: Retina Screens & Devices Stylesheet

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

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

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

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

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

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

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

*/ }

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

Stylesheet: Print Stylesheet

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

Remember to add things that won't make sense to print at 
the bottom. Things like nav, ads, and forms shouldbe set 
to display none.
******************************************************************/
@media print {
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important; }
  a, a:visited {
    color: #444 !important;
    text-decoration: underline; }
    a:after, a:visited:after {
      content: " (" attr(href) ")"; }
    a abbr[title]:after, a:visited abbr[title]:after {
      content: " (" attr(title) ")"; }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: ""; }
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }
  thead {
    display: table-header-group; }
  tr, img {
    page-break-inside: avoid; }
  img {
    max-width: 100% !important; }
  @page {
    margin: 0.5cm; }
  p, h2, h3 {
    orphans: 3;
    widows: 3; }
  h2,
  h3 {
    page-break-after: avoid; }
  .sidebar,
  .page-navigation,
  .wp-prev-next,
  .respond-form,
  nav {
    display: none; } }
