<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/** 
  * Erdmann &amp; Freunde - Nutshell
  * Starterkit
  * erdmann-freunde.de/nutshell/
  *
  * Lizenziert unter MIT OPEN SOURCE 
  * 
  */
/** Contents
  *
  * SETTINGS
  * ...variables
  *
  *
  * MIXINS
  * ...general
  * ...responsive
  * 
  *
  * GENERIC
  * ...normalize
  * ...contao-reset
  * ...box-sizing
  *
  *
  * BASE
  * ...shared
  * ...page
  * ...type
  * ...grid
  * ...layout
  *
  *
  * COMPONENTS
  * ...media
  * ...tables
  * ...accordion
  * ...links
  * ...events
  * ...faq
  * ...forms
  * ...navs
  * ...news
  * ...newsletter
  * ...slider
  * ...downloads
  *
  */
@-webkit-keyframes ltr {
  0% {
    left: .1rem; }
  100% {
    left: .45rem; } }
@keyframes ltr {
  0% {
    left: .1rem; }
  100% {
    left: .45rem; } }

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@-webkit-keyframes hovering {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  50% {
    -webkit-transform: translateY(-5%);
    transform: translateY(-5%); } }

@keyframes hovering {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  50% {
    -webkit-transform: translateY(-5%);
    transform: translateY(-5%); } }

.hovering {
  -webkit-animation: hovering 6s linear infinite;
  animation: hovering 6s linear infinite; }

/*! normalize.css v4.0.0 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Prevent adjustments of font size after orientation changes in IE and iOS.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

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

/* HTML5 display definitions
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 * 2. Add the correct display in IE.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  /* 1 */
  display: block; }

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

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

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline; }

/**
 * Add the correct display in IE 10-.
 * 1. Add the correct display in IE.
 */
template,
[hidden] {
  display: none; }

/* Links
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent; }

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

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

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

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

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

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

/**
 * 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
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none; }

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

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

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

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

/* Forms
   ========================================================================== */
/**
 * Change font properties to `inherit` in all browsers (opinionated).
 */
button,
input,
select,
textarea {
  font: inherit; }

/**
 * Restore the font weight unset by the previous rule.
 */
optgroup {
  font-weight: bold; }

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 * 2. Show the overflow in Edge, Firefox, and IE.
 */
button,
input,
select {
  /* 2 */
  overflow: visible; }

/**
 * Remove the margin in Safari.
 * 1. Remove the margin in Firefox and Safari.
 */
button,
input,
select,
textarea {
  /* 1 */
  margin: 0; }

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

/**
 * Change the cursor in all browsers (opinionated).
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  cursor: pointer; }

/**
 * Restore the default cursor to disabled elements unset by the previous rule.
 */
[disabled] {
  cursor: default; }

/**
 * 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.
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */ }

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
input:-moz-focusring {
  outline: 1px dotted ButtonText; }

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

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

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

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

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

/**
 * Correct the odd appearance of search inputs in Chrome and Safari.
 */
[type="search"] {
  -webkit-appearance: textfield; }

/**
 * Remove the inner padding and cancel buttons in Chrome on OS X and
 * Safari on OS X.
 */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

.float_left {
  float: left; }

.float_right {
  float: right; }

.block {
  overflow: hidden; }

.clear {
  height: 0.1px;
  font-size: 0.1px;
  line-height: 0.1px;
  clear: both; }

.invisible {
  width: 0;
  height: 0;
  left: -1000px;
  top: -1000px;
  position: absolute;
  overflow: hidden;
  display: inline; }

/**
 * Set the global `box-sizing` state to `border-box`.
 *
 * css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice
 * paulirish.com/2012/box-sizing-border-box-ftw
 */
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

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

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem; }

ul, ol, dl,
blockquote, p, address,
hr,
fieldset, figure,
pre {
  margin-bottom: 1rem; }

ul, ol, dd {
  margin-left: 1rem; }

.clearfix:after, [id="header"] .inside:after, .ce_gallery ul:after,
.row:after,
[id="footer"] &gt; .inside:after,
.news-list .layout_short:after,
.news-list .layout_latest:after,
.news-list .layout_simple:after,
.news-grid:after,
.events-list .event:after,
.nav--horizontal ul:after,
.nav--breadcrumb ul:after,
.pagination:after {
  content: "";
  display: table;
  clear: both; }

a {
  color: #ff5636; }

:not(p) a {
  text-decoration: none; }

figure {
  margin: 0; }

img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto; }

html {
  font-family: "ff-meta-web-pro", sans-serif, sans-serif;
  font-size: 1em;
  line-height: 1.625;
  background-color: #fff;
  color: #222;
  overflow-y: scroll;
  min-height: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased; }
  @media screen and (max-width: 34.3125em) {
    html {
      font-size: 0.875em; } }
  @media screen and (min-width: 68.75em) {
    html {
      font-size: 1.125em; } }

body {
  overflow-y: hidden; }

html, body {
  width: 100%;
  overflow-x: hidden; }
  html.noScroll, body.noScroll {
    overflow-y: hidden; }

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

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

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

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

#main &gt; .inside {
  background-color: #FFF;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #FFF), to(#FFF));
  background-image: -o-linear-gradient(top, #FFF 0, #FFF);
  background-image: linear-gradient(to bottom, #FFF 0, #FFF);
  background-size: 100% 400px;
  background-repeat: no-repeat;
  min-height: inherit; }

#main {
  min-height: 750px; }

#main [class^="ce_"]:not(.ce_rsce_text_advanced):not(.ce_rsce_parallax_banner):not(.slick-slide):not(.ce_download):not(.ce_rsce_pdf_image) {
  margin-top: 1vw;
  margin-bottom: 1vw; }

/* Scrollbar styles */
body::-webkit-scrollbar {
  width: 10px;
  height: 10px; }

body::-webkit-scrollbar-track {
  border-radius: 0px; }

body::-webkit-scrollbar-thumb {
  border-radius: 0px;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#004f91), to(#001849));
  background-image: linear-gradient(0deg, #004f91, #001849);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.15); }

body.home #container {
  display: none; }

body.home #banner {
  height: auto;
  padding-bottom: none;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0; }
  body.home #banner &gt; .inside {
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  body.home #banner .starter_wrapper {
    width: 100%;
    height: 100%; }

@media screen and (max-width: 68.6875em) and (min-width: 48em) {
  body.home #banner .starter_wrapper {
    max-width: 90%;
    margin: 0 auto; } }
    @media screen and (min-width: 48em) {
      body.home #banner .starter_wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center; } }
    @media screen and (max-width: 47.9375em) {
      body.home #banner .starter_wrapper {
        overflow: hidden;
        overflow-y: scroll; } }
    body.home #banner .starter_wrapper .background-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      z-index: -1;
      opacity: .1; }
    body.home #banner .starter_wrapper .mod_logo {
      margin: 1rem auto; }

body.home .section_teaser {
  position: relative; }
  @media screen and (max-width: 47.9375em) {
    body.home .section_teaser {
      max-width: 50%;
      margin: 1rem auto; } }
  @media screen and (max-width: 34.3125em) {
    body.home .section_teaser {
      max-width: 80%; } }
  body.home .section_teaser .full_link {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 2; }
  body.home .section_teaser .text_container {
    position: relative;
    width: 100%;
    bottom: 0;
    left: 0;
    -webkit-transition: all 0.6s cubic-bezier(0.82, 0.78, 0.19, 0.96);
    -o-transition: all 0.6s cubic-bezier(0.82, 0.78, 0.19, 0.96);
    transition: all 0.6s cubic-bezier(0.82, 0.78, 0.19, 0.96); }
  body.home .section_teaser .teasertext {
    font-size: 50px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 50px;
    text-align: center;
    display: block;
    width: 100%;
    position: relative;
    -webkit-transition: all 0.6s cubic-bezier(0.82, 0.78, 0.19, 0.96);
    -o-transition: all 0.6s cubic-bezier(0.82, 0.78, 0.19, 0.96);
    transition: all 0.6s cubic-bezier(0.82, 0.78, 0.19, 0.96);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }
    @media screen and (max-width: 47.9375em) {
      body.home .section_teaser .teasertext {
        font-size: 36px;
        line-height: 36px; } }
    body.home .section_teaser .teasertext .sm-text {
      background: -o-linear-gradient(330deg, #004f91, #001849);
      background: linear-gradient(120deg, #004f91, #001849);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      -webkit-transition: all 0.6s cubic-bezier(0.82, 0.78, 0.19, 0.96);
      -o-transition: all 0.6s cubic-bezier(0.82, 0.78, 0.19, 0.96);
      transition: all 0.6s cubic-bezier(0.82, 0.78, 0.19, 0.96);
      font-size: 36px;
      line-height: 36px; }
      @media screen and (max-width: 47.9375em) {
        body.home .section_teaser .teasertext .sm-text {
          font-size: 24px;
          line-height: 24px; } }
  body.home .section_teaser .ce_image {
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    -webkit-transition: all 0.6s cubic-bezier(0.82, 0.78, 0.19, 0.96);
    -o-transition: all 0.6s cubic-bezier(0.82, 0.78, 0.19, 0.96);
    transition: all 0.6s cubic-bezier(0.82, 0.78, 0.19, 0.96);
    overflow: hidden;
    position: relative;
    margin-bottom: 1rem; }
    body.home .section_teaser .ce_image .image_container {
      -webkit-transition: all 12s cubic-bezier(0.82, 0.78, 0.19, 0.96);
      -o-transition: all 12s cubic-bezier(0.82, 0.78, 0.19, 0.96);
      transition: all 12s cubic-bezier(0.82, 0.78, 0.19, 0.96); }
    body.home .section_teaser .ce_image:after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: -o-linear-gradient(330deg, rgba(0, 79, 145, 0.92), rgba(0, 24, 73, 0.92));
      background: linear-gradient(120deg, rgba(0, 79, 145, 0.92), rgba(0, 24, 73, 0.92));
      opacity: 0;
      -webkit-transition: all 0.6s cubic-bezier(0.82, 0.78, 0.19, 0.96);
      -o-transition: all 0.6s cubic-bezier(0.82, 0.78, 0.19, 0.96);
      transition: all 0.6s cubic-bezier(0.82, 0.78, 0.19, 0.96);
      z-index: 0; }
  @media screen and (min-width: 48em) {
    body.home .section_teaser:hover .text_container {
      -webkit-transform: translateY(0%);
      -ms-transform: translateY(0%);
      transform: translateY(0%);
      height: 100%; }
    body.home .section_teaser:hover .teasertext {
      -webkit-transform: translateY(calc(-200% - 1rem));
      -ms-transform: translateY(calc(-200% - 1rem));
      transform: translateY(calc(-200% - 1rem)); }
      body.home .section_teaser:hover .teasertext .sm-text {
        background: none;
        -webkit-background-clip: unset;
        -webkit-text-fill-color: #FFF;
        color: #FFF; }
    body.home .section_teaser:hover .ce_image {
      -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
      margin-bottom: 1rem; }
      body.home .section_teaser:hover .ce_image:after {
        opacity: 1; }
      body.home .section_teaser:hover .ce_image .image_container {
        -webkit-transform: scale(2);
        -ms-transform: scale(2);
        transform: scale(2); } }
  body.home .section_teaser.teaser_bildung .ce_image:after {
    background: -o-linear-gradient(330deg, rgba(243, 146, 0, 0.92), rgba(242, 85, 0, 0.92));
    background: linear-gradient(120deg, rgba(243, 146, 0, 0.92), rgba(242, 85, 0, 0.92)); }
  body.home .section_teaser.teaser_bildung .teasertext .sm-text {
    background: -webkit-linear-gradient(120deg, #f39200, #f25500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; }
  @media screen and (min-width: 48em) {
    body.home .section_teaser.teaser_bildung:hover .teasertext .sm-text {
      background: none;
      -webkit-background-clip: unset;
      -webkit-text-fill-color: #FFF;
      color: #FFF; } }

body.home .footernav {
  margin-top: 2rem;
  margin-bottom: 5rem;
  text-align: center; }
  body.home .footernav a, body.home .footernav a:visited, body.home .footernav a:active {
    color: #656464;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 0.875rem; }
  body.home .footernav ul {
    display: inline-block; }
  body.home .footernav li {
    float: left; }

.no-pageimage #banner .mod_pageImage {
  display: none; }

.lock {
  overflow-y: hidden; }

h1, h2, h3, h4, h5, h6 {
  font-weight: 300;
  font-family: "Helvetica"; }


h1 {
  font-size: 2rem;
  font-family: "Helvetica";
  font-weight: 300;
  line-height: 1.55;
  margin-bottom: 0.5rem; }
  @media screen and (min-width: 34.375em) {
    
    h1 {
      font-size: 2rem; } }
  @media screen and (min-width: 48em) {
    
    h1 {
      font-size: 2.25rem; } }
  @media screen and (min-width: 58.75em) {
    
    h1 {
      font-size: 2.25rem; } }
  @media screen and (min-width: 68.75em) {
    
    h1 {
      font-size: 2.25rem; } }

p + h1,
ul + h1,
ol + h1 {
  margin-top: 2rem; }

.ce_text + .ce_text h1:first-child {
  margin-top: 1rem; }

h1 + h2 {
  margin-top: -0.5rem; }


h2 {
  font-size: 1.625rem;
  font-family: "Helvetica";
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 0.5rem; }
  @media screen and (min-width: 34.375em) {
    
    h2 {
      font-size: 1.625rem; } }
  @media screen and (min-width: 48em) {
    
    h2 {
      font-size: 1.75rem; } }
  @media screen and (min-width: 58.75em) {
    
    h2 {
      font-size: 1.75rem; } }
  @media screen and (min-width: 68.75em) {
    
    h2 {
      font-size: 1.75rem; } }

p + h2,
ul + h2,
ol + h2 {
  margin-top: 2rem; }

.ce_text + .ce_text h2:first-child {
  margin-top: 1rem; }

h2 + h3 {
  margin-top: -0.5rem; }


h3 {
  font-size: 1.375rem;
  font-family: "Helvetica";
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 0.5rem; }
  @media screen and (min-width: 34.375em) {
    
    h3 {
      font-size: 1.375rem; } }
  @media screen and (min-width: 48em) {
    
    h3 {
      font-size: 1.5rem; } }
  @media screen and (min-width: 58.75em) {
    
    h3 {
      font-size: 1.5rem; } }
  @media screen and (min-width: 68.75em) {
    
    h3 {
      font-size: 1.5rem; } }

p + h3,
ul + h3,
ol + h3 {
  margin-top: 2rem; }

.ce_text + .ce_text h3:first-child {
  margin-top: 1rem; }

h3 + h4 {
  margin-top: -0.5rem; }


h4 {
  font-size: 1.125rem;
  font-family: "Helvetica";
  font-weight: 300;
  line-height: 1;
  margin-bottom: 0.5rem; }
  @media screen and (min-width: 34.375em) {
    
    h4 {
      font-size: 1.125rem; } }
  @media screen and (min-width: 48em) {
    
    h4 {
      font-size: 1.25rem; } }
  @media screen and (min-width: 58.75em) {
    
    h4 {
      font-size: 1.25rem; } }
  @media screen and (min-width: 68.75em) {
    
    h4 {
      font-size: 1.25rem; } }

p + h4,
ul + h4,
ol + h4 {
  margin-top: 1.5rem; }

.ce_text + .ce_text h4:first-child {
  margin-top: 0.5rem; }

h4 + h5 {
  margin-top: -0.5rem; }


h5 {
  font-size: 1rem;
  font-family: "Helvetica";
  font-weight: 300;
  line-height: 1;
  margin-bottom: 0.5rem; }
  @media screen and (min-width: 34.375em) {
    
    h5 {
      font-size: 1rem; } }
  @media screen and (min-width: 48em) {
    
    h5 {
      font-size: 1rem; } }
  @media screen and (min-width: 58.75em) {
    
    h5 {
      font-size: 1rem; } }
  @media screen and (min-width: 68.75em) {
    
    h5 {
      font-size: 1rem; } }

p + h5,
ul + h5,
ol + h5 {
  margin-top: 1.5rem; }

.ce_text + .ce_text h5:first-child {
  margin-top: 0.5rem; }

h5 + h6 {
  margin-top: -0.5rem; }


h6 {
  font-size: 0.875rem;
  font-family: "Helvetica";
  font-weight: 300;
  line-height: 1;
  margin-bottom: 0.5rem; }
  @media screen and (min-width: 34.375em) {
    
    h6 {
      font-size: 0.875rem; } }
  @media screen and (min-width: 48em) {
    
    h6 {
      font-size: 0.875rem; } }
  @media screen and (min-width: 58.75em) {
    
    h6 {
      font-size: 0.875rem; } }
  @media screen and (min-width: 68.75em) {
    
    h6 {
      font-size: 0.875rem; } }

p + h6,
ul + h6,
ol + h6 {
  margin-top: 1.5rem; }

.ce_text + .ce_text h6:first-child {
  margin-top: 0.5rem; }

p,
ul,
ol {
  margin-top: 0; }
  p a,
  ul a,
  ol a {
    color: #ff5636;
    text-decoration: underline; }
    p a:hover,
    ul a:hover,
    ol a:hover {
      text-decoration: none; }
  p:last-child,
  ul:last-child,
  ol:last-child {
    margin-bottom: 0; }

code {
  color: #f5d400; }

pre {
  padding: 1rem;
  background: #656464;
  color: #fff;
  overflow-x: scroll; }

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid #ccc; }

.li--block {
  margin-bottom: 1rem; }

.ce_text {
  margin-bottom: 1rem; }

::-moz-selection {
  background: #ff5636;
  color: #fff;
  opacity: 1; }

::selection {
  background: #ff5636;
  color: #fff;
  opacity: 1; }

@font-face {
  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-weight: 900;
  font-display: auto;
  src: url("/files/default/fonts/fontawesome/fa-solid-900.eot");
  src: url("/files/default/fonts/fontawesome/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("/files/default/fonts/fontawesome/fa-solid-900.woff2") format("woff2"), url("/files/default/fonts/fontawesome/fa-solid-900.woff") format("woff"), url("/files/default/fonts/fontawesome/fa-solid-900.ttf") format("truetype"), url("/files/default/fonts/fontawesome/fa-solid-900.svg#fontawesome") format("svg"); }

@font-face {
  font-family: 'Font Awesome 5 Brands';
  font-style: normal;
  font-weight: normal;
  font-display: auto;
  src: url("/files/default/fonts/fontawesome/fa-brands-400.eot");
  src: url("/files/default/fonts/fontawesome/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("/files/default/fonts/fontawesome/fa-brands-400.woff2") format("woff2"), url("/files/default/fonts/fontawesome/fa-brands-400.woff") format("woff"), url("/files/default/fonts/fontawesome/fa-brands-400.ttf") format("truetype"), url("/files/default/fonts/fontawesome/fa-brands-400.svg#fontawesome") format("svg"); }

.fa,
.fas {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900; }

.fab {
  font-family: 'Font Awesome 5 Brands'; }

html, body {
  font-family: "ff-meta-web-pro", sans-serif;
  color: #656464; }

h1,
h2,
h3,
h4,
h5,
h6,
.headline {
  font-family: "ff-meta-web-pro", sans-serif;
  font-weight: 700;
  color: #656464; }
  h1.headline-color--mark,
  h2.headline-color--mark,
  h3.headline-color--mark,
  h4.headline-color--mark,
  h5.headline-color--mark,
  h6.headline-color--mark,
  .headline.headline-color--mark {
    color: #001849; }

.headline-color--mark h1, .headline-color--mark h2, .headline-color--mark h3, .headline-color--mark h4, .headline-color--mark h5, .headline-color--mark h6, .headline-color--mark .headline {
  color: #001849; }

h1,
h2.likeH1,
.likeH1 h2 {
  font-size: 2.25rem;
  text-transform: uppercase; }
  @media screen and (max-width: 47.9375em) {
    h1,
    h2.likeH1,
    .likeH1 h2 {
      font-size: 2rem; } }
  @media screen and (max-width: 34.3125em) {
    h1,
    h2.likeH1,
    .likeH1 h2 {
      font-size: 1.8rem; } }
  h1:after,
  h2.likeH1:after,
  .likeH1 h2:after {
    content: "";
    display: block;
    width: 200px;
    margin: 2rem 0;
    height: 1px;
    background: #656464; }
  h1.align--center:after,
  h2.likeH1.align--center:after,
  .likeH1 h2.align--center:after {
    margin-left: auto;
    margin-right: auto; }
  h1.align--right:after,
  h2.likeH1.align--right:after,
  .likeH1 h2.align--right:after {
    margin-left: auto;
    margin-right: 0; }
  h1 p,
  h2.likeH1 p,
  .likeH1 h2 p {
    font-size: 1rem;
    text-transform: none;
    color: #004f91; }

a, a:visited, a:active {
  color: #001849; }

span.big {
  font-family: "ff-meta-web-pro", sans-serif;
  font-size: 1.8rem;
  font-style: italic; }

#main ul {
  margin-left: 1.5rem;
  padding-left: 0; }

.mod_article p, .mod_article ul {
  font-size: 115%;
  line-height: 1.65; }

.mod_article h1 p {
  font-size: 1rem; }

.mod_article .nav--pageteaser p, .mod_article .nav--pageteaser ul {
  font-size: 100%;
  line-height: 1.625; }

.row {
  margin-left: -0.9375rem;
  margin-right: -0.9375rem; }

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 {
  float: left;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
  width: 100%; }

@media screen and (min-width: 0) {
  .col-xs-1 {
    width: 8.33333%; }
  .col-xs-2 {
    width: 16.66667%; }
  .col-xs-3 {
    width: 25%; }
  .col-xs-4 {
    width: 33.33333%; }
  .col-xs-5 {
    width: 41.66667%; }
  .col-xs-6 {
    width: 50%; }
  .col-xs-7 {
    width: 58.33333%; }
  .col-xs-8 {
    width: 66.66667%; }
  .col-xs-9 {
    width: 75%; }
  .col-xs-10 {
    width: 83.33333%; }
  .col-xs-11 {
    width: 91.66667%; }
  .col-xs-12 {
    width: 100%; } }

@media screen and (min-width: 0) {
  .offset-xs-0 {
    margin-left: 0%; }
  .offset-xs-1 {
    margin-left: 8.33333%; }
  .offset-xs-2 {
    margin-left: 16.66667%; }
  .offset-xs-3 {
    margin-left: 25%; }
  .offset-xs-4 {
    margin-left: 33.33333%; }
  .offset-xs-5 {
    margin-left: 41.66667%; }
  .offset-xs-6 {
    margin-left: 50%; }
  .offset-xs-7 {
    margin-left: 58.33333%; }
  .offset-xs-8 {
    margin-left: 66.66667%; }
  .offset-xs-9 {
    margin-left: 75%; }
  .offset-xs-10 {
    margin-left: 83.33333%; }
  .offset-xs-11 {
    margin-left: 91.66667%; } }

@media screen and (min-width: 0) {
  .pull-right-xs {
    float: right; }
  .pull-left-xs {
    float: left; } }

@media screen and (min-width: 0) {
  .clear-xs {
    clear: both; } }

@media screen and (min-width: 34.375em) {
  .clear-xs {
    clear: none; } }

@media screen and (min-width: 34.375em) {
  .col-sm-1 {
    width: 8.33333%; }
  .col-sm-2 {
    width: 16.66667%; }
  .col-sm-3 {
    width: 25%; }
  .col-sm-4 {
    width: 33.33333%; }
  .col-sm-5 {
    width: 41.66667%; }
  .col-sm-6 {
    width: 50%; }
  .col-sm-7 {
    width: 58.33333%; }
  .col-sm-8 {
    width: 66.66667%; }
  .col-sm-9 {
    width: 75%; }
  .col-sm-10 {
    width: 83.33333%; }
  .col-sm-11 {
    width: 91.66667%; }
  .col-sm-12 {
    width: 100%; } }

@media screen and (min-width: 34.375em) {
  .offset-sm-0 {
    margin-left: 0%; }
  .offset-sm-1 {
    margin-left: 8.33333%; }
  .offset-sm-2 {
    margin-left: 16.66667%; }
  .offset-sm-3 {
    margin-left: 25%; }
  .offset-sm-4 {
    margin-left: 33.33333%; }
  .offset-sm-5 {
    margin-left: 41.66667%; }
  .offset-sm-6 {
    margin-left: 50%; }
  .offset-sm-7 {
    margin-left: 58.33333%; }
  .offset-sm-8 {
    margin-left: 66.66667%; }
  .offset-sm-9 {
    margin-left: 75%; }
  .offset-sm-10 {
    margin-left: 83.33333%; }
  .offset-sm-11 {
    margin-left: 91.66667%; } }

@media screen and (min-width: 34.375em) {
  .pull-right-sm {
    float: right; }
  .pull-left-sm {
    float: left; } }

@media screen and (min-width: 34.375em) {
  .clear-sm {
    clear: both; } }

@media screen and (min-width: 48em) {
  .clear-sm {
    clear: none; } }

@media screen and (min-width: 48em) {
  .col-md-1 {
    width: 8.33333%; }
  .col-md-2 {
    width: 16.66667%; }
  .col-md-3 {
    width: 25%; }
  .col-md-4 {
    width: 33.33333%; }
  .col-md-5 {
    width: 41.66667%; }
  .col-md-6 {
    width: 50%; }
  .col-md-7 {
    width: 58.33333%; }
  .col-md-8 {
    width: 66.66667%; }
  .col-md-9 {
    width: 75%; }
  .col-md-10 {
    width: 83.33333%; }
  .col-md-11 {
    width: 91.66667%; }
  .col-md-12 {
    width: 100%; } }

@media screen and (min-width: 48em) {
  .offset-md-0 {
    margin-left: 0%; }
  .offset-md-1 {
    margin-left: 8.33333%; }
  .offset-md-2 {
    margin-left: 16.66667%; }
  .offset-md-3 {
    margin-left: 25%; }
  .offset-md-4 {
    margin-left: 33.33333%; }
  .offset-md-5 {
    margin-left: 41.66667%; }
  .offset-md-6 {
    margin-left: 50%; }
  .offset-md-7 {
    margin-left: 58.33333%; }
  .offset-md-8 {
    margin-left: 66.66667%; }
  .offset-md-9 {
    margin-left: 75%; }
  .offset-md-10 {
    margin-left: 83.33333%; }
  .offset-md-11 {
    margin-left: 91.66667%; } }

@media screen and (min-width: 48em) {
  .pull-right-md {
    float: right; }
  .pull-left-md {
    float: left; } }

@media screen and (min-width: 48em) {
  .clear-md {
    clear: both; } }

@media screen and (min-width: 58.75em) {
  .clear-md {
    clear: none; } }

@media screen and (min-width: 58.75em) {
  .col-lg-1 {
    width: 8.33333%; }
  .col-lg-2 {
    width: 16.66667%; }
  .col-lg-3 {
    width: 25%; }
  .col-lg-4 {
    width: 33.33333%; }
  .col-lg-5 {
    width: 41.66667%; }
  .col-lg-6 {
    width: 50%; }
  .col-lg-7 {
    width: 58.33333%; }
  .col-lg-8 {
    width: 66.66667%; }
  .col-lg-9 {
    width: 75%; }
  .col-lg-10 {
    width: 83.33333%; }
  .col-lg-11 {
    width: 91.66667%; }
  .col-lg-12 {
    width: 100%; } }

@media screen and (min-width: 58.75em) {
  .offset-lg-0 {
    margin-left: 0%; }
  .offset-lg-1 {
    margin-left: 8.33333%; }
  .offset-lg-2 {
    margin-left: 16.66667%; }
  .offset-lg-3 {
    margin-left: 25%; }
  .offset-lg-4 {
    margin-left: 33.33333%; }
  .offset-lg-5 {
    margin-left: 41.66667%; }
  .offset-lg-6 {
    margin-left: 50%; }
  .offset-lg-7 {
    margin-left: 58.33333%; }
  .offset-lg-8 {
    margin-left: 66.66667%; }
  .offset-lg-9 {
    margin-left: 75%; }
  .offset-lg-10 {
    margin-left: 83.33333%; }
  .offset-lg-11 {
    margin-left: 91.66667%; } }

@media screen and (min-width: 58.75em) {
  .pull-right-lg {
    float: right; }
  .pull-left-lg {
    float: left; } }

@media screen and (min-width: 58.75em) {
  .clear-lg {
    clear: both; } }

@media screen and (min-width: 68.75em) {
  .clear-lg {
    clear: none; } }

@media screen and (min-width: 68.75em) {
  .col-xl-1 {
    width: 8.33333%; }
  .col-xl-2 {
    width: 16.66667%; }
  .col-xl-3 {
    width: 25%; }
  .col-xl-4 {
    width: 33.33333%; }
  .col-xl-5 {
    width: 41.66667%; }
  .col-xl-6 {
    width: 50%; }
  .col-xl-7 {
    width: 58.33333%; }
  .col-xl-8 {
    width: 66.66667%; }
  .col-xl-9 {
    width: 75%; }
  .col-xl-10 {
    width: 83.33333%; }
  .col-xl-11 {
    width: 91.66667%; }
  .col-xl-12 {
    width: 100%; } }

@media screen and (min-width: 68.75em) {
  .offset-xl-0 {
    margin-left: 0%; }
  .offset-xl-1 {
    margin-left: 8.33333%; }
  .offset-xl-2 {
    margin-left: 16.66667%; }
  .offset-xl-3 {
    margin-left: 25%; }
  .offset-xl-4 {
    margin-left: 33.33333%; }
  .offset-xl-5 {
    margin-left: 41.66667%; }
  .offset-xl-6 {
    margin-left: 50%; }
  .offset-xl-7 {
    margin-left: 58.33333%; }
  .offset-xl-8 {
    margin-left: 66.66667%; }
  .offset-xl-9 {
    margin-left: 75%; }
  .offset-xl-10 {
    margin-left: 83.33333%; }
  .offset-xl-11 {
    margin-left: 91.66667%; } }

@media screen and (min-width: 68.75em) {
  .pull-right-xl {
    float: right; }
  .pull-left-xl {
    float: left; } }

@media screen and (min-width: 68.75em) {
  .clear-xl {
    clear: both; } }

[id="header"] {
  background: #fff;
  color: #222; }
  [id="header"] .inside {
    max-width: 62em;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem; }

.mod_article {
  max-width: 62em;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  position: relative; }

.article--full {
  max-width: none;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  padding-bottom: 0; }

[id="footer"] &gt; .inside {
  max-width: 62em;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem; }

.mod_article {
  max-width: 100%;
  padding: 0; }

#wrapper {
  will-change: unset !important;
  -webkit-transform: none !important;
  -ms-transform: none !important;
  transform: none !important;
  width: 100%;
  max-width: 100%; }

.linkToSM:before {
  content: "\f0c1";
  font-family: "Font Awesome 5 Free";
  color: #004f91;
  font-size: 2rem;
  margin-right: 1rem; }

[id="footer"] {
  position: relative;
  background-color: #FFF;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #FFF), to(#FFF));
  background-image: -o-linear-gradient(top, #FFF 0, #FFF);
  background-image: linear-gradient(to bottom, #FFF 0, #FFF); }
  [id="footer"] &gt; .inside {
    position: relative;
    padding: 0;
    z-index: 10;
    max-width: 100%; }
  @media screen and (max-width: 34.3125em) {
    [id="footer"] * {
      text-align: center; }
    [id="footer"] .mod_logo {
      top: 0 !important;
      left: 0 !important; }
      [id="footer"] .mod_logo a {
        left: 0;
        top: 0;
        background-position: center !important; } }

[id="footer"] {
  font-weight: 400; }
  [id="footer"] [class^="col-"] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
  [id="footer"] h4 {
    font-weight: 500; }
  [id="footer"] .social-media-icons a, [id="footer"] .social-media-icons a:visited, [id="footer"] .social-media-icons a:active {
    font-size: 1.6rem;
    margin: 0 12px;
    color: #004f91; }
    [id="footer"] .social-media-icons a:first-child, [id="footer"] .social-media-icons a:visited:first-child, [id="footer"] .social-media-icons a:active:first-child {
      margin-left: 0; }

[id="header"] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
  overflow: visible;
  -webkit-transition: all 0.4s cubic-bezier(0.82, 0.78, 0.19, 0.96);
  -o-transition: all 0.4s cubic-bezier(0.82, 0.78, 0.19, 0.96);
  transition: all 0.4s cubic-bezier(0.82, 0.78, 0.19, 0.96); }
  [id="header"] &gt; .inside {
    max-width: 90%;
    padding: 0 1rem; }
  @media screen and (max-width: 1179px) {
    [id="header"] .asset-column {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: end;
      -ms-flex-pack: end;
      justify-content: flex-end;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row; }
      [id="header"] .asset-column .search-button {
        margin-left: 0; } }
  [id="header"].is-stuck {
    background: #FFF;
    -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25); }
  [id="header"] .flex-col-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end; }
  @media screen and (min-width: 1180px) {
    [id="header"] .search-button {
      -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
      order: 2; } }
  @media screen and (min-width: 48em) {
    [id="header"] .slogan-column {
      display: none; } }
  [id="header"] .slogan {
    position: relative;
    height: 90px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center; }
    @media screen and (max-width: 34.3125em) {
      [id="header"] .slogan {
        height: 75px; } }
    [id="header"] .slogan .text_container {
      position: relative;
      width: 100%;
      bottom: 0;
      left: 0;
      -webkit-transition: all 0.6s cubic-bezier(0.82, 0.78, 0.19, 0.96);
      -o-transition: all 0.6s cubic-bezier(0.82, 0.78, 0.19, 0.96);
      transition: all 0.6s cubic-bezier(0.82, 0.78, 0.19, 0.96); }
    [id="header"] .slogan .teasertext {
      font-size: 20px;
      font-weight: 900;
      text-transform: uppercase;
      line-height: 20px;
      background: -webkit-linear-gradient(120deg, #004f91, #001849);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      text-align: center;
      display: inline-block;
      width: auto;
      position: relative;
      -webkit-transition: all 0.6s cubic-bezier(0.82, 0.78, 0.19, 0.96);
      -o-transition: all 0.6s cubic-bezier(0.82, 0.78, 0.19, 0.96);
      transition: all 0.6s cubic-bezier(0.82, 0.78, 0.19, 0.96); }
      @media screen and (max-width: 34.3125em) {
        [id="header"] .slogan .teasertext {
          font-size: 14px;
          line-height: 14px; } }
      [id="header"] .slogan .teasertext.bildung {
        background: -webkit-linear-gradient(120deg, #f39200, #f25500);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent; }

body:not(.home) [id="header"] {
  background: #FFF; }

[id="preheader"] {
  height: 35px;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: #004f91; }
  [id="preheader"] h4 {
    display: none; }
  [id="preheader"] .social-media-icons {
    float: right; }
    [id="preheader"] .social-media-icons a, [id="preheader"] .social-media-icons a:visited, [id="preheader"] .social-media-icons a:active {
      color: #FFF;
      margin: 0 8px;
      font-size: 1.2rem; }
      [id="preheader"] .social-media-icons a:last-child, [id="preheader"] .social-media-icons a:visited:last-child, [id="preheader"] .social-media-icons a:active:last-child {
        margin-right: 0; }
  [id="preheader"] &gt; .inside {
    max-width: 95%;
    position: relative;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end; }
  @media screen and (max-width: 1179px) {
    [id="preheader"] {
      display: none; } }

.increase--padding-vertical.x-small {
  padding-top: .5rem;
  padding-bottom: .5rem; }

.increase--padding-vertical.small {
  padding-top: 1rem;
  padding-bottom: 1rem; }

.increase--padding-vertical.medium {
  padding-top: 2rem;
  padding-bottom: 2rem; }

.increase--padding-vertical.large {
  padding-top: 3rem;
  padding-bottom: 3rem; }

.increase--padding-vertical.no--padding-top {
  padding-top: 0; }

.increase--padding-vertical.no--padding-bottom {
  padding-bottom: 0; }

.no--padding-top {
  padding-top: 0; }
  .no--padding-top .rsce_bgimage-inside {
    padding-top: 0 !important; }

.no--padding-bottom {
  padding-bottom: 0; }
  .no--padding-bottom .rsce_bgimage-inside {
    padding-bottom: 0 !important; }

.no--padding-left {
  padding-left: 0; }
  .no--padding-left .rsce_bgimage-content {
    padding-left: 0; }

.no--padding-right {
  padding-right: 0; }
  .no--padding-right .rsce_bgimage-content {
    padding-right: 0; }

@media screen and (min-width: 0) {
  .rsce_bgimage .pv_standard.rsce_bgimage-inside {
    padding-top: 0.9375rem;
    padding-bottom: 0.9375rem; }
  .rsce_bgimage .pv_none.rsce_bgimage-inside {
    padding-top: 0.9375rem;
    padding-bottom: 0.9375rem; }
  .rsce_bgimage .pv_xxs.rsce_bgimage-inside {
    padding-top: 0.9375rem;
    padding-bottom: 0.9375rem; }
  .rsce_bgimage .pv_xs.rsce_bgimage-inside {
    padding-top: 0.9375rem;
    padding-bottom: 0.9375rem; }
  .rsce_bgimage .pv_s.rsce_bgimage-inside {
    padding-top: 0.9375rem;
    padding-bottom: 0.9375rem; }
  .rsce_bgimage .pv_m.rsce_bgimage-inside {
    padding-top: 0.9375rem;
    padding-bottom: 0.9375rem; }
  .rsce_bgimage .pv_l.rsce_bgimage-inside {
    padding-top: 0.9375rem;
    padding-bottom: 0.9375rem; }
  .rsce_bgimage .pv_xl.rsce_bgimage-inside {
    padding-top: 0.9375rem;
    padding-bottom: 0.9375rem; }
  .rsce_bgimage .pv_xxl.rsce_bgimage-inside {
    padding-top: 0.9375rem;
    padding-bottom: 0.9375rem; } }

@media screen and (min-width: 68.75em) {
  .rsce_bgimage .pv_standard.rsce_bgimage-inside {
    padding-top: 1rem;
    padding-bottom: 1rem; }
  .rsce_bgimage .pv_none.rsce_bgimage-inside {
    padding-top: 0;
    padding-bottom: 0; }
  .rsce_bgimage .pv_xxs.rsce_bgimage-inside {
    padding-top: .5rem;
    padding-bottom: .5rem; }
  .rsce_bgimage .pv_xs.rsce_bgimage-inside {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem; }
  .rsce_bgimage .pv_s.rsce_bgimage-inside {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem; }
  .rsce_bgimage .pv_m.rsce_bgimage-inside {
    padding-top: 4rem;
    padding-bottom: 4rem; }
  .rsce_bgimage .pv_l.rsce_bgimage-inside {
    padding-top: 5rem;
    padding-bottom: 5rem; }
  .rsce_bgimage .pv_xl.rsce_bgimage-inside {
    padding-top: 6rem;
    padding-bottom: 6rem; }
  .rsce_bgimage .pv_xxl.rsce_bgimage-inside {
    padding-top: 8rem;
    padding-bottom: 8rem; } }

@media screen and (min-width: 0) {
  .rsce_bgimage .ph_standard.rsce_bgimage-content {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem; }
  .rsce_bgimage .ph_none.rsce_bgimage-content {
    padding-left: 0;
    padding-right: 0; }
  .rsce_bgimage .ph_xxs.rsce_bgimage-content {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem; }
  .rsce_bgimage .ph_xs.rsce_bgimage-content {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem; }
  .rsce_bgimage .ph_s.rsce_bgimage-content {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem; }
  .rsce_bgimage .ph_m.rsce_bgimage-content {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem; }
  .rsce_bgimage .ph_l.rsce_bgimage-content {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem; }
  .rsce_bgimage .ph_xl.rsce_bgimage-content {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem; }
  .rsce_bgimage .ph_xxl.rsce_bgimage-content {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem; } }

@media screen and (min-width: 68.75em) {
  .rsce_bgimage .ph_standard.rsce_bgimage-content {
    padding-left: 1rem;
    padding-right: 1rem; }
  .rsce_bgimage .ph_none.rsce_bgimage-content {
    padding-left: 0;
    padding-right: 0; }
  .rsce_bgimage .ph_xxs.rsce_bgimage-content {
    padding-left: .5rem;
    padding-right: .5rem; }
  .rsce_bgimage .ph_xs.rsce_bgimage-content {
    padding-left: 1.5rem;
    padding-right: 1.5rem; }
  .rsce_bgimage .ph_s.rsce_bgimage-content {
    padding-left: 2.5rem;
    padding-right: 2.5rem; }
  .rsce_bgimage .ph_m.rsce_bgimage-content {
    padding-left: 4rem;
    padding-right: 4rem; }
  .rsce_bgimage .ph_l.rsce_bgimage-content {
    padding-left: 5rem;
    padding-right: 5rem; }
  .rsce_bgimage .ph_xl.rsce_bgimage-content {
    padding-left: 6rem;
    padding-right: 6rem; }
  .rsce_bgimage .ph_xxl.rsce_bgimage-content {
    padding-left: 8rem;
    padding-right: 8rem; } }

.mb_standard {
  margin-bottom: 1rem; }

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

.mb_xxs {
  margin-bottom: .25rem; }

.mb_xs {
  margin-bottom: .5rem; }

.mb_s {
  margin-bottom: 1rem; }

.mb_m {
  margin-bottom: 2rem; }

.mb_l {
  margin-bottom: 3rem; }

.mb_xl {
  margin-bottom: 4rem; }

.mb_xxl {
  margin-bottom: 5rem; }

.mt_standard {
  margin-top: 0rem; }

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

.mt_xxs {
  margin-top: .25rem; }

.mt_xs {
  margin-top: .5rem; }

.mt_s {
  margin-top: 1rem; }

.mt_m {
  margin-top: 2rem; }

.mt_l {
  margin-top: 3rem; }

.mt_xl {
  margin-top: 4rem; }

.mt_xxl {
  margin-top: 5rem; }

body.cookie-bar-visible {
  overflow: hidden; }
  body.cookie-bar-visible #header,
  body.cookie-bar-visible #footer,
  body.cookie-bar-visible .scrollToTop {
    z-index: 999; }
  body.cookie-bar-visible.start #wrapper,
  body.cookie-bar-visible.start #container,
  body.cookie-bar-visible.start #main,
  body.cookie-bar-visible.start #main &gt; .inside,
  body.cookie-bar-visible.start .mod_article {
    overflow: hidden; }

body .mod_cms_accept_tags {
  overflow: auto;
  overflow-x: hidden;
  background: rgba(0, 0, 0, 0.8);
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  font-family: "ff-meta-web-pro", sans-serif; }
  body .mod_cms_accept_tags form {
    max-width: 780px;
    overflow: auto;
    background: #f9f8f7;
    color: #5b5a59;
    width: 100%;
    padding: 24px; }
    body .mod_cms_accept_tags form .formbody {
      padding: 0 8px; }
    body .mod_cms_accept_tags form h2 {
      color: #004f91;
      font-size: 16px;
      line-height: 1.5;
      margin-bottom: 8px;
      margin-top: 0px;
      font-weight: 600; }
    body .mod_cms_accept_tags form .tags {
      display: none; }
      body .mod_cms_accept_tags form .tags .container {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        margin-left: -8px;
        margin-right: -8px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
        body .mod_cms_accept_tags form .tags .container .tag {
          padding-left: 8px;
          padding-right: 8px;
          position: relative;
          width: 100%;
          min-height: 1px;
          -webkit-box-flex: 0;
          -ms-flex: 0 0 50%;
          flex: 0 0 50%;
          margin-bottom: 16px;
          max-width: 50%; }
          body .mod_cms_accept_tags form .tags .container .tag &gt; .inside {
            border-width: 1px;
            border-style: solid;
            border-color: #f2f2f2;
            background-color: white;
            padding: 24px;
            height: 100%;
            border-radius: 0px; }
          body .mod_cms_accept_tags form .tags .container .tag .head {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: justify;
            -ms-flex-pack: justify;
            justify-content: space-between; }
            body .mod_cms_accept_tags form .tags .container .tag .head h3 {
              font-size: 16px;
              line-height: 1.5;
              color: #004f91;
              padding-right: 16px;
              margin-top: 0px;
              margin-bottom: 0px;
              font-weight: 600;
              padding-bottom: 20px; }
            body .mod_cms_accept_tags form .tags .container .tag .head &gt; div {
              position: absolute;
              top: 7px;
              right: 0; }
            body .mod_cms_accept_tags form .tags .container .tag .head label:before {
              content: "";
              background: #eeeeee;
              display: block;
              width: 48px;
              height: 24px;
              border-radius: 13px;
              -webkit-box-shadow: none;
              box-shadow: none;
              margin-right: 0;
              border: 0;
              right: calc(30px / 2);
              float: right;
              top: 1rem;
              position: absolute;
              border-style: solid;
              border-width: 1px;
              border-color: #cccccc; }
            body .mod_cms_accept_tags form .tags .container .tag .head label:after {
              content: "";
              display: block;
              position: absolute;
              width: 24px;
              height: 24px;
              border-radius: 50%;
              -webkit-transition: all .3s;
              -o-transition: all .3s;
              transition: all .3s;
              top: calc(.8rem + 4px);
              left: auto;
              right: 40px;
              background: #cccccc; }
            body .mod_cms_accept_tags form .tags .container .tag .head label.no_input {
              display: none; }
            body .mod_cms_accept_tags form .tags .container .tag .head input.cookieInput {
              position: absolute;
              height: 0;
              width: 0; }
            body .mod_cms_accept_tags form .tags .container .tag .head input:checked + label:before {
              background: rgba(0, 79, 145, 0.4); }
            body .mod_cms_accept_tags form .tags .container .tag .head input:checked + label:after {
              background: #004f91;
              right: 15px; }
          body .mod_cms_accept_tags form .tags .container .tag p {
            margin-bottom: 0px;
            margin-top: 5px;
            font-size: 14px;
            line-height: 1.5;
            color: #484848; }
    body .mod_cms_accept_tags form .info {
      font-size: 16px;
      line-height: 1.5;
      margin-bottom: 8px;
      margin-top: 0px;
      padding-bottom: 24px; }
      body .mod_cms_accept_tags form .info a {
        color: #001849; }
    body .mod_cms_accept_tags form .buttons {
      margin-top: 16px;
      -webkit-box-flex: 1;
      -ms-flex: 1 1 0%;
      flex: 1 1 0%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      padding-top: 0px; }
      body .mod_cms_accept_tags form .buttons .button_action2 {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center; }
        body .mod_cms_accept_tags form .buttons .button_action2 &gt; div {
          margin-bottom: 0px;
          margin-left: 8px;
          margin-right: 8px; }
          body .mod_cms_accept_tags form .buttons .button_action2 &gt; div:last-child {
            margin-right: 0; }
      body .mod_cms_accept_tags form .buttons .reject_settings #button_reject_settings {
        color: #001849;
        font-size: 14px;
        line-height: 1.1;
        font-weight: 600;
        border-color: transparent transparent #001849;
        border-style: solid solid dotted;
        border-width: 0px 0px 1px;
        margin: 0px;
        padding: 0px 0px 1px;
        text-align: center;
        background-color: transparent;
        overflow: hidden;
        outline: 0px;
        cursor: pointer;
        text-decoration: none;
        -webkit-transition: opacity 0.2s ease-in-out 0s, border 0.1s ease-in-out 0s;
        -o-transition: opacity 0.2s ease-in-out 0s, border 0.1s ease-in-out 0s;
        transition: opacity 0.2s ease-in-out 0s, border 0.1s ease-in-out 0s;
        text-transform: none;
        opacity: 1; }
        body .mod_cms_accept_tags form .buttons .reject_settings #button_reject_settings:hover {
          border-style: solid solid solid;
          opacity: .8; }
      body .mod_cms_accept_tags form .buttons .open_settings {
        margin: 0px;
        font-weight: 600;
        text-align: center;
        line-height: 1;
        display: inline-block;
        letter-spacing: 0.3px;
        overflow: hidden;
        outline: 0px;
        position: relative;
        cursor: pointer;
        text-decoration: none;
        font-size: 14px;
        border-radius: 0px; }
        body .mod_cms_accept_tags form .buttons .open_settings #button_open_settings {
          border-color: #001849;
          border-style: solid;
          border-width: 2px;
          -webkit-transition: opacity 0.2s ease-in-out 0s, color 0.2s ease-in-out 0s, background-color 250ms ease-in-out 0s;
          -o-transition: opacity 0.2s ease-in-out 0s, color 0.2s ease-in-out 0s, background-color 250ms ease-in-out 0s;
          transition: opacity 0.2s ease-in-out 0s, color 0.2s ease-in-out 0s, background-color 250ms ease-in-out 0s;
          display: block;
          background-color: white;
          padding: 16px 24px;
          color: #001849; }
          body .mod_cms_accept_tags form .buttons .open_settings #button_open_settings:hover {
            background: #001849;
            color: #fff; }
      body .mod_cms_accept_tags form .buttons .widget-submit {
        margin: 0px;
        font-weight: 600;
        text-align: center;
        line-height: 1;
        display: inline-block;
        letter-spacing: 0.3px;
        overflow: hidden;
        outline: 0px;
        position: relative;
        cursor: pointer;
        text-decoration: none;
        font-size: 14px;
        border-radius: 0px; }
        body .mod_cms_accept_tags form .buttons .widget-submit button {
          border-color: #001849;
          border-style: solid;
          border-width: 2px;
          -webkit-transition: opacity 0.2s ease-in-out 0s, color 0.2s ease-in-out 0s, background-color 250ms ease-in-out 0s;
          -o-transition: opacity 0.2s ease-in-out 0s, color 0.2s ease-in-out 0s, background-color 250ms ease-in-out 0s;
          transition: opacity 0.2s ease-in-out 0s, color 0.2s ease-in-out 0s, background-color 250ms ease-in-out 0s;
          background-color: #001849;
          color: white;
          padding: 16px 24px;
          line-height: 1;
          border-radius: 0; }
          body .mod_cms_accept_tags form .buttons .widget-submit button:hover {
            border-color: rgba(0, 24, 73, 0.8);
            background: rgba(0, 24, 73, 0.8); }
  @media screen and (max-width: 767px) {
    body .mod_cms_accept_tags form .formbody {
      max-width: 540px;
      width: 100%;
      margin: 0 auto; }
    body .mod_cms_accept_tags form .tags .container .tag {
      max-width: 100%;
      -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
      flex: 0 0 100%; }
    body .mod_cms_accept_tags form .buttons {
      margin-top: 16px;
      -webkit-box-flex: 1;
      -ms-flex: 1 1 0%;
      flex: 1 1 0%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
      flex-direction: column-reverse;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      padding-top: 8px; }
      body .mod_cms_accept_tags form .buttons .button_action2 {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
        body .mod_cms_accept_tags form .buttons .button_action2 &gt; div {
          margin-bottom: 8px; }
          body .mod_cms_accept_tags form .buttons .button_action2 &gt; div:last-child {
            margin-right: 8px; }
      body .mod_cms_accept_tags form .buttons .reject_settings {
        padding-top: 16px; }
        body .mod_cms_accept_tags form .buttons .reject_settings #button_reject_settings {
          font-size: 12px; }
      body .mod_cms_accept_tags form .buttons .open_settings #button_open_settings {
        padding: 8px 16px;
        font-size: 12px; }
      body .mod_cms_accept_tags form .buttons .widget-submit button {
        padding: 8px 16px;
        font-size: 12px; } }

.ce_optin_fallback {
  text-align: center;
  padding: 15px; }
  .ce_optin_fallback a {
    color: #000;
    text-decoration: underline; }

body.optin_cookie #main &gt; .inside {
  height: 100vh;
  padding-bottom: 0; }
  body.optin_cookie #main &gt; .inside .mod_article.optin {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%); }

.image--left img {
  text-align: left;
  margin-left: 0; }

.image--right img {
  text-align: right;
  margin-right: 0; }

.image--center img {
  text-align: center;
  margin-left: auto;
  margin-right: auto; }

.ce_gallery ul {
  margin-left: -0.9375rem;
  margin-right: -0.9375rem;
  padding: 0;
  list-style-type: none; }

.ce_gallery li {
  float: left;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
  margin-bottom: 1.875rem; }

.ce_gallery .cols_2 li {
  width: 50%; }

.ce_gallery .cols_3 li {
  width: 50%; }
  @media screen and (min-width: 48em) {
    .ce_gallery .cols_3 li {
      width: 33.33333%; } }

.ce_gallery .cols_4 li {
  width: 50%; }
  @media screen and (min-width: 48em) {
    .ce_gallery .cols_4 li {
      width: 25%; } }

.ce_gallery .cols_5 li {
  width: 50%; }
  @media screen and (min-width: 48em) {
    .ce_gallery .cols_5 li {
      width: 20%; } }

.ce_gallery .cols_6 li {
  width: 50%; }
  @media screen and (min-width: 48em) {
    .ce_gallery .cols_6 li {
      width: 16.66667%; } }

.ce_gallery img {
  display: block; }

.ce_player .inside,
.ce_player .mejs-video,
.ce_player .mejs__video,
.ce_youtube .inside,
.ce_youtube .mejs-video,
.ce_youtube .mejs__video {
  margin-left: auto;
  margin-right: auto; }

.ce_player .mejs-video,
.ce_player .mejs__video,
.ce_youtube .mejs-video,
.ce_youtube .mejs__video {
  width: 100% !important;
  height: auto !important;
  padding-top: 56.25%; }

.ce_player .mejs-audio,
.ce_player .mejs__audio,
.ce_youtube .mejs-audio,
.ce_youtube .mejs__audio {
  margin-top: 30px; }
  .ce_player .mejs-audio audio,
  .ce_player .mejs__audio audio,
  .ce_youtube .mejs-audio audio,
  .ce_youtube .mejs__audio audio {
    height: auto; }

.ce_player .mejs-overlay,
.ce_player .mejs-poster,
.ce_player .mejs__overlay,
.ce_player .mejs__poster,
.ce_youtube .mejs-overlay,
.ce_youtube .mejs-poster,
.ce_youtube .mejs__overlay,
.ce_youtube .mejs__poster {
  width: 100% !important;
  height: 100% !important; }

.ce_player .mejs-video .mejs-mediaelement video,
.ce_player .mejs-video .mejs-mediaelement .me-plugin,
.ce_player .mejs-video .mejs-mediaelement embed,
.ce_youtube .mejs-video .mejs-mediaelement video,
.ce_youtube .mejs-video .mejs-mediaelement .me-plugin,
.ce_youtube .mejs-video .mejs-mediaelement embed {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100% !important;
  height: 100% !important; }

.ce_player .mejs__video .mejs__mediaelement video,
.ce_player .mejs__video .mejs__mediaelement .me__plugin,
.ce_player .mejs__video .mejs__mediaelement embed,
.ce_youtube .mejs__video .mejs__mediaelement video,
.ce_youtube .mejs__video .mejs__mediaelement .me__plugin,
.ce_youtube .mejs__video .mejs__mediaelement embed {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100% !important;
  height: 100% !important; }

.ce_youtube {
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto; }
  .ce_youtube iframe {
    border: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100% !important;
    height: 100% !important; }

.circle {
  border-radius: 100%;
  overflow: hidden; }
  .circle img, .circle figure {
    -webkit-transform: translate3d(0, 0, 0) !important;
    transform: translate3d(0, 0, 0) !important;
    border-radius: 100% !important; }

.foobar-image {
  width: 100%;
  height: 100%;
  max-width: 100%; }

#main .ce_gallery ul {
  margin-left: -0.9375rem;
  margin-right: -0.9375rem; }

.ce_gallery li {
  margin: 0; }

.ce_gallery .image_container {
  margin: 0.9375rem 0; }

.mitgliedschaften-galerie .image_container {
  border: 1px solid #f5f5f5; }

a.btn,
span.btn,
button.btn, div.btn &gt; a,
div.btn &gt; button,
.ce_toplink &gt; a,
.ce_toplink &gt; button,
.toplink &gt; a,
.toplink &gt; button, input.submit,
button.submit, .ce_comments .submit {
  border-radius: 4px;
  padding: 0.5rem 1rem;
  display: inline-block;
  border: 1px solid transparent;
  font-family: "ff-meta-web-pro", sans-serif;
  font-weight: 400;
  line-height: 1.625;
  text-align: center;
  background: transparent;
  background-image: none;
  white-space: nowrap; }

a.btn,
span.btn,
button.btn {
  margin-bottom: 1rem; }

a.btn--primary,
span.btn--primary,
button.btn--primary,
input.submit,
button.submit,
.ce_comments .submit {
  background: #ff5636;
  color: #fff; }
  a.btn--primary:hover,
  span.btn--primary:hover,
  button.btn--primary:hover,
  input.submit:hover,
  button.submit:hover,
  .ce_comments .submit:hover {
    background: #ff2b03; }

div.btn:not(:last-child),
.ce_toplink:not(:last-child),
.toplink:not(:last-child) {
  margin-bottom: 1rem; }

div.btn--primary &gt; a,
div.btn--primary &gt; button,
.ce_toplink &gt; a,
.ce_toplink &gt; button,
.toplink &gt; a,
.toplink &gt; button {
  background: #ff5636;
  color: #fff; }
  div.btn--primary &gt; a:hover,
  div.btn--primary &gt; button:hover,
  .ce_toplink &gt; a:hover,
  .ce_toplink &gt; button:hover,
  .toplink &gt; a:hover,
  .toplink &gt; button:hover {
    background: #ff2b03; }

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

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

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

.btn--floated {
  float: left;
  margin-right: 0.25rem; }

.ce_toplink a,
.toplink a {
  text-decoration: none; }

.back {
  border-top: 1px solid #ccc;
  margin-top: 1rem;
  padding-top: 0.5rem; }
  .back a {
    text-decoration: none; }
    .back a:before {
      font-size: 0.75rem;
      line-height: 1.4;
      padding-bottom: 0.25rem;
      display: inline-block;
      content: "◄";
      vertical-align: middle;
      margin-right: 0.25rem; }

p a,
p a:visited,
p a:active {
  color: #004f91; }

.slider {
  position: relative; }
  .slider .slider-control {
    position: static;
    height: 0; }
  .slider .slider-control a {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 2rem;
    line-height: 1;
    position: absolute;
    display: block;
    color: inherit;
    font-family: Arial; }
    .slider .slider-control a:before {
      padding: 0.5rem;
      display: block; }
    .slider .slider-control a:hover {
      opacity: 0.5; }
  .slider .slider-prev:before {
    content: "◄"; }
  .slider .slider-next:before {
    content: "►"; }
  .slider .slider-menu {
    font-size: 3rem;
    line-height: 1;
    top: auto;
    bottom: 0; }
    .slider .slider-menu b {
      color: inherit; }
    .slider .slider-menu b.active {
      color: #ff5636; }
    .slider .slider-menu b:hover {
      opacity: 0.5; }

@media screen and (max-width: 58.6875em) {
  #banner .mod_rocksolid_slider .ce_image,
  #banner .mod_pageImage .ce_image {
    width: 100% !important; } }

#banner .mod_rocksolid_slider .rsts-caption,
#banner .mod_pageImage .rsts-caption {
  width: auto;
  top: 65%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
  right: 0;
  color: #FFF;
  font-weight: 500;
  padding: .75vw 1vw .75vw 2vw;
  text-align: right;
  font-size: 2.2vw;
  line-height: 1.25;
  z-index: 10;
  border-bottom-left-radius: 40px;
  border-top-left-radius: 20px;
  margin-right: 0;
  left: auto; }
  @media screen and (max-width: 58.6875em) {
    #banner .mod_rocksolid_slider .rsts-caption,
    #banner .mod_pageImage .rsts-caption {
      font-size: 3vw;
      max-width: 100vw;
      padding: 2vw 3vw 2vw 6vw; } }

.glide__arrows {
  text-align: center;
  font-size: 2.4rem;
  padding-bottom: .5rem; }
  .glide__arrows button {
    background: none;
    border: 0;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease; }
    .glide__arrows button:hover {
      -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
      transform: scale(1.2); }

.mod_rocksolid_slider .rsts-nav-bullets {
  right: auto;
  left: 70%;
  bottom: 0.5vw;
  z-index: 6;
  position: absolute;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%); }
  .mod_rocksolid_slider .rsts-nav-bullets ul li {
    display: inline-block; }
    .mod_rocksolid_slider .rsts-nav-bullets ul li a {
      margin: 4px;
      width: 16px;
      height: 16px;
      border: none;
      -webkit-box-shadow: none;
      box-shadow: none;
      background: rgba(255, 255, 255, 0.5); }
      @media screen and (max-width: 47.9375em) {
        .mod_rocksolid_slider .rsts-nav-bullets ul li a {
          margin: 2px 2px; } }
      .mod_rocksolid_slider .rsts-nav-bullets ul li a.active, .mod_rocksolid_slider .rsts-nav-bullets ul li a:hover {
        border: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        background: #FFF; }
  @media screen and (max-width: 47.9375em) {
    .mod_rocksolid_slider .rsts-nav-bullets {
      display: none; } }
  .mod_rocksolid_slider .rsts-nav-bullets .rsts-nav-prev,
  .mod_rocksolid_slider .rsts-nav-bullets .rsts-nav-next {
    display: none; }
  .mod_rocksolid_slider .rsts-nav-bullets .rsts-nav-item a {
    text-indent: -9999px; }

/************************************************
 5 - SLICK SLIDER
************************************************/
#slicknav {
  position: relative;
  overflow: visible;
  display: none; }
  #slicknav #slicknav-container {
    position: relative;
    width: 250px;
    margin: 0 auto;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
  #slicknav .slick-prev,
  #slicknav .slick-next {
    position: relative;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    margin: 0 auto;
    background: none;
    border: 0; }
    #slicknav .slick-prev:before,
    #slicknav .slick-next:before {
      content: "";
      font-family: "Linearicons-Free";
      font-size: 1.6rem; }
  #slicknav .drag-icon {
    font-size: 2.8rem; }
  #slicknav .slick-prev {
    float: left;
    margin-left: 0; }
    #slicknav .slick-prev:before {
      content: "\e879"; }
    #slicknav .slick-prev:hover {
      -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
      transform: scale(1.05); }
  #slicknav .slick-next {
    float: right;
    margin-right: 0; }
    #slicknav .slick-next:before {
      content: "\e87a"; }
    #slicknav .slick-next:hover {
      -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
      transform: scale(1.05); }

@media screen and (max-width: 47.9375em) {
  #slicknav {
    display: block; } }

.slick-gallery {
  background: #f5f5f5; }
  .slick-gallery h2 {
    background: -o-linear-gradient(330deg, #004f91, #001849);
    background: linear-gradient(120deg, #004f91, #001849);
    text-align: center;
    padding: .5rem;
    color: #FFF;
    font-weight: 100;
    text-transform: uppercase; }
  .slick-gallery &gt; ul li.col_first {
    clear: none; }

#main .slick-slider {
  position: relative;
  overflow: hidden;
  margin: 0; }
  #main .slick-slider .slick-track {
    overflow: hidden; }
  #main .slick-slider .slick-slide {
    overflow: visible;
    display: block;
    float: left;
    padding: 2rem 0 4rem;
    outline: none; }
    @media screen and (max-width: 47.9375em) {
      #main .slick-slider .slick-slide {
        padding: 2rem 0 6rem; } }
  #main .slick-slider .image_container {
    text-align: center;
    position: relative;
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    width: 80%;
    margin: 0 auto; }
    #main .slick-slider .image_container:before {
      content: "";
      background: #FFF;
      left: 0;
      top: 0;
      position: absolute;
      width: 100%;
      height: 100%; }
    #main .slick-slider .image_container img {
      -webkit-box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
      box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
      -webkit-transition: all .2s ease;
      -o-transition: all .2s ease;
      transition: all .2s ease;
      width: 100%;
      margin: 0;
      opacity: .7;
      border: 1px solid #656464; }
    #main .slick-slider .image_container .caption {
      z-index: 5;
      position: absolute;
      bottom: 1vw;
      left: 0%;
      width: 100%;
      color: #FFFFFF;
      text-transform: uppercase;
      text-decoration: underline;
      font-size: 1.2vw;
      font-weight: bold;
      text-align: left;
      line-height: 1.2;
      text-align: center; }
  @media screen and (max-width: 1024px) {
    #main .slick-slider .image_container .caption {
      left: 10%;
      width: 80%;
      font-size: 1.8vw;
      bottom: -5vw;
      text-align: center;
      text-decoration: none; }
    #main .slick-slider .slick__slide--active .image_container .caption {
      width: 100%;
      left: 0; } }
  @media screen and (max-width: 47.9375em) {
    #main .slick-slider .image_container .caption {
      bottom: -10vw;
      font-size: 2.6vw; } }
  @media screen and (max-width: 34.3125em) {
    #main .slick-slider .image_container .caption {
      font-size: 4vw; } }

body.ie,
body.trident {
  -ms-grid-columns: 1fr; }
  body.ie .teaser-grid,
  body.trident .teaser-grid {
    margin: 0;
    display: block;
    float: left; }
    body.ie .teaser-grid .grid-teaser,
    body.trident .teaser-grid .grid-teaser {
      width: 33.333%;
      display: block;
      float: left;
      padding: 0 0.9375rem;
      margin: 0.9375rem 0;
      padding-bottom: 25vw;
      height: 0; }
      body.ie .teaser-grid .grid-teaser .teaser-image,
      body.trident .teaser-grid .grid-teaser .teaser-image {
        position: absolute;
        left: 0.9375rem;
        top: 0;
        width: calc(100% - 1.875rem); }
        body.ie .teaser-grid .grid-teaser .teaser-image img,
        body.trident .teaser-grid .grid-teaser .teaser-image img {
          width: auto;
          left: 0; }
      body.ie .teaser-grid .grid-teaser .text_container,
      body.trident .teaser-grid .grid-teaser .text_container {
        padding: 1rem 2rem; }
      @media screen and (max-width: 58.6875em) {
        body.ie .teaser-grid .grid-teaser,
        body.trident .teaser-grid .grid-teaser {
          width: 50%;
          padding-bottom: 40vw; }
          body.ie .teaser-grid .grid-teaser .teaser-image img,
          body.trident .teaser-grid .grid-teaser .teaser-image img {
            width: 100%; } }
      @media screen and (max-width: 47.9375em) {
        body.ie .teaser-grid .grid-teaser,
        body.trident .teaser-grid .grid-teaser {
          width: 100%;
          padding-bottom: 50vw; } }
      @media screen and (max-width: 34.3125em) {
        body.ie .teaser-grid .grid-teaser,
        body.trident .teaser-grid .grid-teaser {
          padding-bottom: 56.25vw; } }
    body.ie .teaser-grid:after,
    body.trident .teaser-grid:after {
      content: "";
      display: table;
      clear: both; }

.teaser-grid {
  display: grid;
  grid-gap: .5rem;
  grid-auto-columns: 1fr;
  width: 100%; }
  .teaser-grid .item .text_container {
    max-width: 400px; }
  .teaser-grid .item:nth-child(1) {
    grid-column: 1/2;
    grid-row: 1/3; }
  .teaser-grid .item:nth-child(2) {
    grid-column: 2/4;
    grid-row: 1/2; }
  .teaser-grid .item:nth-child(3) {
    grid-column: 2/3;
    grid-row: 2/3; }
  .teaser-grid .item:nth-child(4) {
    grid-column: 3/4;
    grid-row: 2/3; }
  .teaser-grid .item:nth-child(5) {
    grid-column: 1/3;
    grid-row: 3/5; }
  .teaser-grid .item:nth-child(6) {
    grid-column: 3/4;
    grid-row: 3/4; }
  .teaser-grid .item:nth-child(7) {
    grid-column: 3/4;
    grid-row: 4/5; }
  .teaser-grid .item:nth-child(8) {
    grid-column: 1/4;
    grid-row: 5/6; }
  .teaser-grid.grid-3 .item:nth-child(1) {
    grid-column: 1/2;
    grid-row: 1; }
  .teaser-grid.grid-3 .item:nth-child(2) {
    grid-column: 2/3;
    grid-row: 1; }
  .teaser-grid.grid-3 .item:nth-child(3) {
    grid-column: 3/4;
    grid-row: 1; }
  .teaser-grid.grid-5 .item:nth-child(1) {
    grid-column: 1/2;
    grid-row: 1/2; }
  .teaser-grid.grid-5 .item:nth-child(3) {
    grid-column: 1/2;
    grid-row: 2/3; }
  .teaser-grid.grid-5 .item:nth-child(4) {
    grid-column: 2/3;
    grid-row: 2/3; }
  .teaser-grid.grid-5 .item:nth-child(5) {
    grid-column: 3/4;
    grid-row: 2/3; }
  .teaser-grid.grid-6 .item:nth-child(5) {
    grid-column: 1/3;
    grid-row: 3/4; }
  .teaser-grid.grid-6 .item:nth-child(6) {
    grid-row: 3/4;
    grid-column: 3/4; }
  .teaser-grid.grid-8 .item:nth-child(6) {
    grid-column: 3/4;
    grid-row: 3/5; }
  .teaser-grid.grid-8 .item:nth-child(7) {
    grid-column: 1/2;
    grid-row: 5/6; }
  .teaser-grid.grid-8 .item:nth-child(8) {
    grid-column: 2/4;
    grid-row: 5/6; }
  @media screen and (max-width: 68.6875em) {
    .teaser-grid .item {
      grid-row: auto !important; }
    .teaser-grid .item:nth-child(1n+2) {
      grid-column: 1/2 !important; }
    .teaser-grid .item:nth-child(2n+2) {
      grid-column: 2/3 !important; } }
  @media screen and (max-width: 47.9375em) {
    .teaser-grid .item:nth-child(1n+1), .teaser-grid .item:nth-child(1n+2), .teaser-grid .item:nth-child(2n+2) {
      grid-column: 1 !important;
      grid-row: span 2 !important; } }

.teaser-grid .full_link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2; }

.teaser-grid .grid-teaser {
  color: #FFF;
  position: relative;
  overflow: hidden; }
  .teaser-grid .grid-teaser:hover .calltoaction a {
    background: #FFF;
    color: #656464;
    border-color: #FFF; }
  .teaser-grid .grid-teaser .text_container {
    position: absolute;
    top: 0;
    left: 0;
    padding: 1rem;
    z-index: 1; }
    .teaser-grid .grid-teaser .text_container h3 {
      font-size: 1.8rem;
      color: #FFF; }
  .teaser-grid .grid-teaser .teaser-image {
    overflow: hidden !important;
    background: #000;
    height: 100%; }
    .teaser-grid .grid-teaser .teaser-image img {
      -o-object-fit: cover;
      object-fit: cover;
      height: 100%;
      width: 100%;
      max-width: 100%;
      -webkit-transition: all 0.3s cubic-bezier(0.82, 0.78, 0.19, 0.96);
      -o-transition: all 0.3s cubic-bezier(0.82, 0.78, 0.19, 0.96);
      transition: all 0.3s cubic-bezier(0.82, 0.78, 0.19, 0.96);
      opacity: .6; }
    .teaser-grid .grid-teaser .teaser-image:before {
      content: "";
      position: absolute;
      height: 100%;
      width: 100%; }
  .teaser-grid .grid-teaser:hover .teaser-image img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    opacity: .3; }

@media screen and (max-width: 1439px) and (min-width: 58.75em) {
  .teaser-grid .grid-teaser .text_container h3 {
    font-size: 1.125rem; }
  .teaser-grid .grid-teaser .text_container p {
    font-size: 0.875rem; } }
  @media screen and (max-width: 47.9375em) {
    .teaser-grid .grid-teaser .text_container {
      text-align: center;
      max-width: none;
      width: 100%;
      left: 0;
      top: 50%;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%); } }

body:not(.ie) .teaser-grid,
body:not(.trident) .teaser-grid {
  grid-auto-rows: minmax(200px, 700px); }
  @media screen and (max-width: 58.6875em) {
    body:not(.ie) .teaser-grid,
    body:not(.trident) .teaser-grid {
      grid-auto-rows: minmax(60vw, 60vw); } }
  @media screen and (max-width: 400px) {
    body:not(.ie) .teaser-grid,
    body:not(.trident) .teaser-grid {
      grid-auto-rows: minmax(200px, 100vw); } }

@media screen and (min-width: 1180px) {
  body:not(.ie) .teaser-grid,
  body:not(.trident) .teaser-grid {
    grid-template-rows: 40vw 20vw auto; }
    body:not(.ie) .teaser-grid.grid-3,
    body:not(.trident) .teaser-grid.grid-3 {
      grid-template-rows: 22.5vw auto; } }

@media screen and (max-width: 1179px) {
  body:not(.ie) .teaser-grid,
  body:not(.trident) .teaser-grid {
    grid-template-rows: 30vw;
    grid-auto-rows: 30vw; } }

.news-list {
  margin-bottom: 1rem; }
  .news-list &gt; h1, .news-list &gt; h2, .news-list &gt; h3, .news-list &gt; h4, .news-list &gt; h5, .news-list &gt; h6 {
    margin-bottom: 0; }
    .news-list &gt; h1:after, .news-list &gt; h2:after, .news-list &gt; h3:after, .news-list &gt; h4:after, .news-list &gt; h5:after, .news-list &gt; h6:after {
      border-top: 1px solid #ccc;
      content: "";
      display: block; }
  .news-list .info {
    margin-bottom: 0;
    font-weight: 700; }
  .news-list .image_container {
    margin-top: 1rem;
    margin-bottom: 1rem; }
  .news-list .float_left {
    margin-right: 1rem; }
  .news-list .float_right {
    margin-left: 1rem; }
  .news-list .layout_short &gt; h1, .news-list .layout_short &gt; h2, .news-list .layout_short &gt; h3, .news-list .layout_short &gt; h4, .news-list .layout_short &gt; h5, .news-list .layout_short &gt; h6,
  .news-list .layout_latest &gt; h1,
  .news-list .layout_latest &gt; h2,
  .news-list .layout_latest &gt; h3,
  .news-list .layout_latest &gt; h4,
  .news-list .layout_latest &gt; h5,
  .news-list .layout_latest &gt; h6,
  .news-list .layout_simple &gt; h1,
  .news-list .layout_simple &gt; h2,
  .news-list .layout_simple &gt; h3,
  .news-list .layout_simple &gt; h4,
  .news-list .layout_simple &gt; h5,
  .news-list .layout_simple &gt; h6 {
    margin-top: 1rem; }
  .news-list .layout_short:after,
  .news-list .layout_latest:after,
  .news-list .layout_simple:after {
    border-bottom: 1px solid #ccc;
    margin-top: 1rem;
    content: "";
    display: block; }
  .news-list .layout_simple time,
  .news-list .layout_simple a,
  .news-list .layout_upcoming time,
  .news-list .layout_upcoming a {
    padding-top: 1rem;
    display: inline-block; }
  .news-list .header {
    margin-top: 1rem; }

.news-grid {
  margin-left: -0.9375rem;
  margin-right: -0.9375rem;
  margin-bottom: 1rem; }
  .news-grid &gt; h1, .news-grid &gt; h2, .news-grid &gt; h3, .news-grid &gt; h4, .news-grid &gt; h5, .news-grid &gt; h6 {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem; }
    .news-grid &gt; h1:after, .news-grid &gt; h2:after, .news-grid &gt; h3:after, .news-grid &gt; h4:after, .news-grid &gt; h5:after, .news-grid &gt; h6:after {
      border-top: 1px solid #ccc;
      content: "";
      display: block; }
  .news-grid .layout_short,
  .news-grid .layout_latest,
  .news-grid .layout_simple {
    float: left;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    margin-top: 1rem; }
    @media screen and (min-width: 34.375em) {
      .news-grid .layout_short,
      .news-grid .layout_latest,
      .news-grid .layout_simple {
        float: left;
        padding-left: 0.9375rem;
        padding-right: 0.9375rem;
        width: 50%; }
        .news-grid .layout_short:nth-of-type(2n + 1),
        .news-grid .layout_latest:nth-of-type(2n + 1),
        .news-grid .layout_simple:nth-of-type(2n + 1) {
          clear: both; } }
    @media screen and (min-width: 48em) {
      .news-grid .layout_short,
      .news-grid .layout_latest,
      .news-grid .layout_simple {
        float: left;
        padding-left: 0.9375rem;
        padding-right: 0.9375rem;
        width: 50%; }
        .news-grid .layout_short:nth-of-type(n),
        .news-grid .layout_latest:nth-of-type(n),
        .news-grid .layout_simple:nth-of-type(n) {
          clear: none; }
        .news-grid .layout_short:nth-of-type(2n + 1),
        .news-grid .layout_latest:nth-of-type(2n + 1),
        .news-grid .layout_simple:nth-of-type(2n + 1) {
          clear: both; } }
    @media screen and (min-width: 58.75em) {
      .news-grid .layout_short,
      .news-grid .layout_latest,
      .news-grid .layout_simple {
        float: left;
        padding-left: 0.9375rem;
        padding-right: 0.9375rem;
        width: 33.33333%; }
        .news-grid .layout_short:nth-of-type(n),
        .news-grid .layout_latest:nth-of-type(n),
        .news-grid .layout_simple:nth-of-type(n) {
          clear: none; }
        .news-grid .layout_short:nth-of-type(3n + 1),
        .news-grid .layout_latest:nth-of-type(3n + 1),
        .news-grid .layout_simple:nth-of-type(3n + 1) {
          clear: both; } }
  .news-grid .layout_simple time {
    display: block; }

.news-menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0; }

.news-menu a {
  text-decoration: none; }

.news-menu &gt; h1:after, .news-menu &gt; h2:after, .news-menu &gt; h3:after, .news-menu &gt; h4:after, .news-menu &gt; h5:after, .news-menu &gt; h6:after {
  border-top: 1px solid #ccc;
  content: "";
  display: block; }

.news-menu .year {
  margin-bottom: 0.5rem; }
  .news-menu .year &gt; a,
  .news-menu .year &gt; .active {
    color: inherit;
    font-weight: 300;
    font-family: "Helvetica"; }

.news-menu .level_2 li {
  margin-bottom: 0.25rem; }

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

.mod_newslist &gt; h2 {
  padding: 0.5rem 0;
  margin-bottom: 1rem; }
  .mod_newslist &gt; h2:after {
    content: "";
    height: 1px;
    display: block;
    width: calc(100% - 0.9375rem);
    background: #004f91;
    position: relative; }

.mod_newslist &gt; h2, .mod_newslist .empty {
  padding-left: .9375rem; }

.mod_newslist .layout_latest {
  overflow: visible;
  margin-bottom: 16px;
  padding-bottom: 16px;
  position: relative; }
  .mod_newslist .layout_latest .full_link {
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 11;
    text-indent: -9999px; }
  .mod_newslist .layout_latest .text_container {
    border-top: 0;
    padding: 0.9375rem;
    padding-bottom: 4rem;
    border: 1px solid rgba(101, 100, 100, 0.3);
    border-top: 0; }
  .mod_newslist .layout_latest .image_holder {
    position: relative; }
    .mod_newslist .layout_latest .image_holder p.info {
      position: absolute;
      right: 0;
      bottom: 0;
      z-index: 10;
      background: #004f91;
      padding: 8px 12px;
      margin: 0;
      -webkit-transition: all .3s ease;
      -o-transition: all .3s ease;
      transition: all .3s ease; }
      .mod_newslist .layout_latest .image_holder p.info time {
        display: block;
        text-align: center;
        color: #FFF; }
        .mod_newslist .layout_latest .image_holder p.info time.day {
          font-weight: 300;
          font-size: 1.125rem;
          line-height: 1.4; }
        .mod_newslist .layout_latest .image_holder p.info time.month {
          font-weight: 600;
          font-size: 0.875rem;
          text-transform: uppercase; }
        .mod_newslist .layout_latest .image_holder p.info time.year {
          font-weight: 300;
          font-size: 0.875rem; }
    .mod_newslist .layout_latest .image_holder .image_container {
      border: 1px solid rgba(101, 100, 100, 0.3);
      overflow: hidden;
      position: relative; }
      .mod_newslist .layout_latest .image_holder .image_container img {
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-transition: all .4s ease;
        -o-transition: all .4s ease;
        transition: all .4s ease;
        width: 100%;
        -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
        transform: scale(1.05); }
      .mod_newslist .layout_latest .image_holder .image_container.float_left {
        float: none; }
  .mod_newslist .layout_latest:hover .image_holder p.info,
  .mod_newslist .layout_latest:hover .image_holder p.icon {
    background-color: rgba(0, 24, 73, 0.8);
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease; }
  .mod_newslist .layout_latest:hover .image_holder .image_container img {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1); }
  .mod_newslist .layout_latest:hover p.more a, .mod_newslist .layout_latest:hover p.more a:visited, .mod_newslist .layout_latest:hover p.more a:active {
    background: #001849;
    color: #FFF; }
  .mod_newslist .layout_latest h3 {
    font-size: 1.125rem;
    font-weight: bold; }
  .mod_newslist .layout_latest p.more {
    position: absolute;
    bottom: 2rem; }
    .mod_newslist .layout_latest p.more a, .mod_newslist .layout_latest p.more a:visited, .mod_newslist .layout_latest p.more a:active {
      background: #004f91;
      padding: 8px 30px;
      border: 0;
      text-transform: lowercase;
      text-decoration: none;
      color: #FFF;
      -webkit-transition: all .3s ease;
      -o-transition: all .3s ease;
      transition: all .3s ease; }
      .mod_newslist .layout_latest p.more a:hover, .mod_newslist .layout_latest p.more a:visited:hover, .mod_newslist .layout_latest p.more a:active:hover {
        background: #001849;
        color: #FFF; }

.pagination {
  max-width: 62em;
  width: 100%;
  margin-left: auto;
  margin-right: auto; }

.mod_newslist .layout_latest .image_container figcaption,
.mod_newslist .layout_full .image_container figcaption,
.mod_newsreader .layout_latest .image_container figcaption,
.mod_newsreader .layout_full .image_container figcaption {
  position: relative;
  display: block;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  text-align: center;
  background: rgba(255, 255, 255, 0.55);
  color: #000;
  margin-bottom: -1.25rem;
  height: 1.2rem;
  font-size: .75rem;
  -webkit-backface-visibility: hidden; }
  .mod_newslist .layout_latest .image_container figcaption:before,
  .mod_newslist .layout_full .image_container figcaption:before,
  .mod_newsreader .layout_latest .image_container figcaption:before,
  .mod_newsreader .layout_full .image_container figcaption:before {
    content: "\A9";
    margin-right: 1%; }
  @media screen and (min-width: 34.375em) {
    .mod_newslist .layout_latest .image_container figcaption,
    .mod_newslist .layout_full .image_container figcaption,
    .mod_newsreader .layout_latest .image_container figcaption,
    .mod_newsreader .layout_full .image_container figcaption {
      height: 2rem;
      margin-bottom: -2rem;
      line-height: 1rem; } }
  @media screen and (min-width: 68.75em) {
    .mod_newslist .layout_latest .image_container figcaption,
    .mod_newslist .layout_full .image_container figcaption,
    .mod_newsreader .layout_latest .image_container figcaption,
    .mod_newsreader .layout_full .image_container figcaption {
      height: 1.3rem;
      margin-bottom: -1.35rem;
      line-height: 1.3rem; } }

.mod_newslist .layout_full .info,
.mod_newsreader .layout_full .info {
  text-align: right; }

.mod_newslist .layout_full .image_container figcaption,
.mod_newsreader .layout_full .image_container figcaption {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  margin: 0; }

.aktuelles .layout_latest h2 {
  font-size: 1.0rem;
  margin: 0; }

.layout_simple {
  margin: 1rem 0; }
  .layout_simple a {
    height: inherit; }
  .layout_simple .inner {
    height: inherit;
    padding: 1rem;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 1rem;
    min-height: 150px;
    font-weight: 900;
    -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
    -webkit-transition: all 0.3s cubic-bezier(0.73, 0.72, 0.81, 1.44);
    -o-transition: all 0.3s cubic-bezier(0.73, 0.72, 0.81, 1.44);
    transition: all 0.3s cubic-bezier(0.73, 0.72, 0.81, 1.44);
    background: #f5f5f5;
    color: #004f91; }
  .layout_simple:hover .inner, .layout_simple:focus .inner, .layout_simple:active .inner {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    color: #FFF;
    background: #004f91; }

.mod_newscategories {
  margin: 2rem 0; }
  .mod_newscategories ul {
    text-align: center;
    margin: 0;
    padding: 0; }
    .mod_newscategories ul li {
      display: inline-block; }
      .mod_newscategories ul li strong span,
      .mod_newscategories ul li a span {
        padding: .5rem 1rem;
        color: #656464;
        -webkit-transition: all 0.3s cubic-bezier(0.73, 0.72, 0.81, 1.44);
        -o-transition: all 0.3s cubic-bezier(0.73, 0.72, 0.81, 1.44);
        transition: all 0.3s cubic-bezier(0.73, 0.72, 0.81, 1.44); }
      .mod_newscategories ul li a span:hover {
        color: #FFF; }
      .mod_newscategories ul li a {
        text-decoration: none; }
      .mod_newscategories ul li strong span {
        color: #FFF; }

.mod_newsreader .back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-bottom: 4rem; }

.mod_newsreader .float_left {
  margin-right: 1rem;
  margin-bottom: 0.9375rem; }

.mod_newsreader .image_container {
  border: 1px solid #ccc; }

.mod_newsreader .ce_rsce_text_advanced {
  margin-top: -7px !important; }
  @media screen and (max-width: 549px) {
    .mod_newsreader .ce_rsce_text_advanced {
      margin-top: 0 !important; } }

.events-list {
  margin-bottom: 1rem; }
  .events-list &gt; h1, .events-list &gt; h2, .events-list &gt; h3, .events-list &gt; h4, .events-list &gt; h5, .events-list &gt; h6 {
    margin-bottom: 0; }
    .events-list &gt; h1:after, .events-list &gt; h2:after, .events-list &gt; h3:after, .events-list &gt; h4:after, .events-list &gt; h5:after, .events-list &gt; h6:after {
      border-top: 1px solid #ccc;
      content: "";
      display: block; }
  .events-list .image_container {
    margin-top: 1rem;
    margin-bottom: 1rem; }
  .events-list .float_left {
    margin-right: 1rem; }
  .events-list .float_right {
    margin-left: 1rem; }
  .events-list .event &gt; h1, .events-list .event &gt; h2, .events-list .event &gt; h3, .events-list .event &gt; h4, .events-list .event &gt; h5, .events-list .event &gt; h6 {
    margin-top: 1rem; }
  .events-list .event:after {
    border-bottom: 1px solid #ccc;
    margin-top: 1rem;
    content: "";
    display: block; }
  .events-list .layout_upcoming time,
  .events-list .layout_upcoming a {
    padding-top: 1rem;
    display: inline-block; }
  .events-list .header {
    margin-top: 1rem; }

.events-menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0; }

.events-menu a {
  text-decoration: none; }

.events-menu &gt; h1:after, .events-menu &gt; h2:after, .events-menu &gt; h3:after, .events-menu &gt; h4:after, .events-menu &gt; h5:after, .events-menu &gt; h6:after {
  border-top: 1px solid #ccc;
  content: "";
  display: block; }

.events-menu .year {
  margin-bottom: 0.5rem; }
  .events-menu .year &gt; a,
  .events-menu .year &gt; .active {
    color: inherit;
    font-weight: 300;
    font-family: "Helvetica"; }

.events-menu .level_2 li {
  margin-bottom: 0.25rem; }

.ce_form {
  overflow: visible; }

fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0; }

label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 0.25rem;
  font-weight: bold; }

input.text,
input.captcha,
textarea {
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  background-clip: padding-box;
  background-image: none; }

textarea.textarea {
  height: auto; }

.widget-text,
.widget-textarea {
  margin-bottom: 1rem; }

input[type="search"] {
  -webkit-appearance: none; }

input[type="file"] {
  display: block;
  vertical-align: middle;
  line-height: 1; }

input.radio,
input.checkbox {
  margin: 0.25rem 0 0;
  margin-left: 1px;
  margin-top: 1px \9;
  line-height: normal; }
  input.radio + label,
  input.checkbox + label {
    margin-right: 0.25rem;
    font-weight: normal; }

select.select {
  margin-left: 0.25rem; }

.widget-radio,
.widget-checkbox,
.widget-select,
.widget-upload {
  margin-bottom: 1rem; }
  .widget-radio legend,
  .widget-checkbox legend,
  .widget-select legend,
  .widget-upload legend {
    font-weight: 700; }

.radio_container &gt; span,
.checkbox_container &gt; span {
  display: inline-block; }

span.mandatory {
  color: #ff5636; }

p.error {
  margin-bottom: 0; }

.widget-text label {
  position: relative; }

.widget-text input.text {
  border-radius: 0;
  border: 0;
  border-bottom: 2px solid #001849;
  padding-left: 0;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease; }

.widget-checkbox {
  /*Outer box of the fake checkbox*/
  /*Checkmark of the fake checkbox*/
  /*Hide the checkmark by default*/
  /*Unhide on the checked state*/
  /*Adding focus styles on the outer-box of the fake checkbox*/ }
  .widget-checkbox input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    left: -9999px; }
  .widget-checkbox label {
    position: relative;
    display: inline-block;
    /*16px width of fake checkbox + 6px distance between fake checkbox and text*/
    padding-left: 22px; }
  .widget-checkbox label::before,
  .widget-checkbox label::after {
    position: absolute;
    content: "";
    /*Needed for the line-height to take effect*/
    display: inline-block; }
  .widget-checkbox label::before {
    height: 16px;
    width: 16px;
    border: 1px solid;
    border-color: #001849;
    left: 0px;
    /*(24px line-height - 16px height of fake checkbox) / 2 - 1px for the border
             *to vertically center it.
             */
    top: 7px; }
  .widget-checkbox label::after {
    height: 5px;
    width: 9px;
    border-left: 2px solid;
    border-bottom: 2px solid;
    border-color: #001849;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    left: 4px;
    top: 11px; }
  .widget-checkbox input[type="checkbox"] + label::after {
    content: none; }
  .widget-checkbox input[type="checkbox"]:checked + label::after {
    content: ""; }
  .widget-checkbox input[type="checkbox"]:focus + label::before {
    outline: #3b99fc auto 5px; }

.widget-radio {
  /*Outer box of the fake checkbox*/
  /*Checkmark of the fake checkbox*/
  /*Hide the checkmark by default*/
  /*Unhide on the checked state*/
  /*Adding focus styles on the outer-box of the fake checkbox*/ }
  .widget-radio input[type="radio"] {
    opacity: 0;
    position: absolute;
    left: -9999px; }
  .widget-radio label {
    position: relative;
    display: inline-block;
    /*16px width of fake checkbox + 6px distance between fake checkbox and text*/
    padding-left: 22px; }
  .widget-radio label::before,
  .widget-radio label::after {
    position: absolute;
    content: "";
    /*Needed for the line-height to take effect*/
    display: inline-block; }
  .widget-radio label::before {
    height: 16px;
    width: 16px;
    border-radius: 100%;
    border: 1px solid #001849;
    left: 0px;
    /*(24px line-height - 16px height of fake checkbox) / 2 - 1px for the border
             *to vertically center it.
             */
    top: 7px; }
  .widget-radio label::after {
    height: 10px;
    width: 10px;
    left: 3px;
    top: 10px;
    border-radius: 100%;
    background: #001849; }
  .widget-radio input[type="radio"] + label::after {
    content: none; }
  .widget-radio input[type="radio"]:checked + label::after {
    content: ""; }
  .widget-radio input[type="radio"]:focus + label::before {
    outline: #001849 auto 5px; }

.widget input.text,
.widget textarea,
.widget select {
  border-radius: 0;
  border: 0;
  border-bottom: 2px solid #001849;
  padding-left: 0;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease; }
  .widget input.text:focus,
  .widget textarea:focus,
  .widget select:focus {
    outline: none;
    border-color: #004f91; }

.widget input.checkbox + label,
.widget input.radio + label {
  margin-right: 1rem; }

.widget textarea {
  -webkit-box-shadow: inset 1px 1px 4px 0px rgba(0, 0, 0, 0.1);
  box-shadow: inset 1px 1px 4px 0px rgba(0, 0, 0, 0.1);
  padding-left: .5rem; }

.widget select {
  margin: 0;
  padding: .6rem 0;
  width: 100%; }

.widget button {
  border: 2px solid #001849;
  color: #001849;
  background: none;
  padding: .5rem 1rem;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease; }
  .widget button:hover {
    color: #FFF;
    background: #001849; }

@media screen and (max-width: 47.9375em) {
  .widget {
    text-align: center; } }

p.error {
  color: #C00;
  position: absolute;
  font-size: .75rem;
  bottom: 0;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%); }

p.confirm.showInfo {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000;
  opacity: 1;
  width: 100%;
  height: 100%;
  background: rgba(245, 212, 0, 0.9);
  color: white;
  text-align: center;
  font-size: 4rem;
  line-height: 15;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  visibility: visible; }
  p.confirm.showInfo.fadeOut {
    opacity: 0;
    visibility: hidden; }
  p.confirm.showInfo span.info {
    font-size: 1rem;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0); }

.anfrage-formular .widget-text,
.anfrage-formular .widget-textarea {
  margin-top: 1rem;
  margin-bottom: 0; }
  .anfrage-formular .widget-text input, .anfrage-formular .widget-text textarea,
  .anfrage-formular .widget-textarea input,
  .anfrage-formular .widget-textarea textarea {
    border-color: #656464;
    background: #f5f5f5;
    padding-left: 1rem;
    padding-right: 1rem;
    -webkit-box-shadow: none;
    box-shadow: none; }
    .anfrage-formular .widget-text input:focus, .anfrage-formular .widget-text textarea:focus,
    .anfrage-formular .widget-textarea input:focus,
    .anfrage-formular .widget-textarea textarea:focus {
      border-color: #004f91; }

.anfrage-formular .widget-textarea {
  margin-bottom: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch; }
  .anfrage-formular .widget-textarea textarea {
    height: 100%; }

.anfrage-formular .fields {
  margin-top: -1rem; }

.anfrage-formular .flex-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.anfrage-formular .widget-submit button {
  float: right; }
  @media screen and (max-width: 47.9375em) {
    .anfrage-formular .widget-submit button {
      width: 100%; } }

.anfrage-formular .checkbox_container legend:not(.showLegend) {
  display: none; }

.anfrage-formular .checkbox_container .inner_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: evenly;
  -ms-flex-pack: evenly;
  justify-content: evenly;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .anfrage-formular .checkbox_container .inner_container &gt; span {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%; }
    @media screen and (max-width: 58.6875em) {
      .anfrage-formular .checkbox_container .inner_container &gt; span {
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%; } }
    @media screen and (max-width: 47.9375em) {
      .anfrage-formular .checkbox_container .inner_container &gt; span {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%; } }

.ce_accordion {
  margin-bottom: 0.25rem; }
  .ce_accordion .toggler {
    font-size: 1.5rem;
    cursor: pointer;
    background: #f5d400;
    color: #fff;
    padding: 0.5rem;
    border: 2px solid transparent; }
    .ce_accordion .toggler:hover {
      color: rgba(255, 255, 255, 0.5); }
    .ce_accordion .toggler:focus {
      outline: 0; }
  .ce_accordion .accordion {
    padding: 0.5rem;
    background: #f5f5f5; }

.ce_accordion .toggler {
  background: #004f91; }
  @media screen and (max-width: 47.9375em) {
    .ce_accordion .toggler {
      text-align: center; } }

.ce_accordion .accordion {
  background: none;
  color: #656464;
  padding: 0; }

.ce_accordion h5 {
  background: rgba(0, 79, 145, 0.8);
  width: 100%;
  display: block;
  padding: 1rem;
  color: #FFF !important;
  margin-bottom: 0;
  border-bottom: 1px solid #FFF;
  text-transform: uppercase;
  text-align: center; }

.rsce_bgimage.gradient .ce_accordion {
  margin: 0 !important; }
  .rsce_bgimage.gradient .ce_accordion .toggler {
    background: none;
    padding: 1rem;
    padding-left: 0;
    padding-right: 0;
    border: 0;
    text-align: center; }
    .rsce_bgimage.gradient .ce_accordion .toggler.active {
      border-bottom: 2px solid #FFF;
      margin-bottom: 1rem; }
  .rsce_bgimage.gradient .ce_accordion .accordion {
    padding-bottom: 2rem; }

.ce_download,
.ce_downloads {
  margin-bottom: 1rem; }
  .ce_download .mime_icon,
  .ce_downloads .mime_icon {
    display: inline-block;
    vertical-align: middle; }
  .ce_download a,
  .ce_downloads a {
    display: inline-block;
    color: inherit;
    text-decoration: none; }

.ce_downloads ul {
  list-style-type: none;
  margin: 0;
  padding: 0; }

.ce_downloads a {
  text-decoration: none; }

.ce_downloads ul li {
  line-height: 1.8; }
  .ce_downloads ul li a {
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease; }
    .ce_downloads ul li a:before {
      margin-right: .5rem; }

.ce_download {
  overflow: visible;
  margin-top: 2rem;
  margin-bottom: 2rem; }
  .ce_download p {
    width: 100%;
    position: relative; }
    .ce_download p a {
      height: inherit;
      position: relative;
      height: 100%;
      width: 100%;
      bottom: 0;
      text-align: center;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      background: #dedede;
      border-radius: 1rem 0;
      -webkit-transition: all .3s ease;
      -o-transition: all .3s ease;
      transition: all .3s ease;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-flow: column;
      flex-flow: column;
      padding: 2.5rem 0 2rem; }
      .ce_download p a:before {
        position: absolute;
        width: 60px;
        height: 60px;
        line-height: 55px;
        font-size: 25px;
        left: 50%;
        background: white;
        border-radius: 100%;
        border: 3px solid #dedede;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        text-align: center;
        z-index: 2;
        top: 0;
        -webkit-transition: all .3s ease;
        -o-transition: all .3s ease;
        transition: all .3s ease; }
      .ce_download p a:hover {
        background: #004f91;
        color: #FFF; }
        .ce_download p a:hover:before {
          border-color: #004f91;
          color: #004f91; }

.ce_rsce_pdf_image {
  margin-top: 2rem;
  margin-bottom: 2rem; }
  .ce_rsce_pdf_image .image_container {
    border-radius: 1rem 0;
    overflow: hidden;
    background: #004f91;
    border: 1px solid transparent; }
    .ce_rsce_pdf_image .image_container img {
      -webkit-transition: all 0.3s cubic-bezier(0.82, 0.78, 0.19, 0.96);
      -o-transition: all 0.3s cubic-bezier(0.82, 0.78, 0.19, 0.96);
      transition: all 0.3s cubic-bezier(0.82, 0.78, 0.19, 0.96);
      opacity: .95; }
  .ce_rsce_pdf_image .download-element {
    position: absolute;
    width: 60px;
    height: 60px;
    line-height: 55px;
    font-size: 25px;
    left: 50%;
    background: white;
    border-radius: 100%;
    border: 3px solid #dedede;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    top: 0;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease; }
    .ce_rsce_pdf_image .download-element a:before {
      color: #656464; }
  .ce_rsce_pdf_image:hover .image_container {
    border-color: #333; }
    .ce_rsce_pdf_image:hover .image_container img {
      opacity: 1; }
  .ce_rsce_pdf_image:hover .download-element {
    border-color: #004f91; }
    .ce_rsce_pdf_image:hover .download-element a:before {
      color: #004f91; }

.rsce_bgimage.colored .ce_download p a {
  background: #004f91;
  color: #FFF; }
  .rsce_bgimage.colored .ce_download p a:before {
    border-color: #004f91;
    color: #004f91; }
  .rsce_bgimage.colored .ce_download p a:hover {
    background: rgba(101, 100, 100, 0.15); }
    .rsce_bgimage.colored .ce_download p a:hover:before {
      border-color: #001849;
      color: #001849; }

.rsce_bgimage.colored .ce_rsce_pdf_image .download-element {
  border-color: #004f91;
  color: #004f91; }

.rsce_bgimage.colored .ce_rsce_pdf_image:hover .download-element {
  border-color: #001849;
  color: #001849; }

.download-element.ext-jpg a:before, .download-element.ext-png a:before, .download-element.ext-jpeg a:before, .download-element.ext-gif a:before, .download-element.ext-bmp a:before {
  content: "\f1c5"; }

.download-element.ext-pdf a:before {
  content: "\f1c1"; }

.download-element.ext-ppt a:before {
  content: "\f1c4"; }

.download-element.ext-svg a:before, .download-element.ext-html a:before, .download-element.ext-css a:before, .download-element.ext-php a:before, .download-element.ext-svgz a:before {
  content: "\f1c9"; }

.download-element.ext-doc a:before {
  content: "\f1c2"; }

.download-element a:before {
  content: "\f15b";
  font-family: "Font Awesome 5 Free"; }

table {
  margin-bottom: 1rem;
  width: 100%;
  padding: 0;
  border-spacing: 0;
  border-left: 1px solid #ccc;
  border-top: 1px solid #ccc; }
  table th,
  table td {
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding: 10px; }

thead {
  text-align: left;
  background: rgba(204, 204, 204, 0.2); }

tfoot {
  font-style: italic; }

.table--striped .even {
  background: rgba(204, 204, 204, 0.2); }

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

table {
  border: 0; }
  table th {
    background: #004f91;
    color: #FFF; }
  table th, table td {
    border: 0;
    padding: 10px 20px;
    border-bottom: 2px solid #FFF;
    border-right: 2px solid #FFF; }
  table td {
    background: rgba(0, 79, 145, 0.25); }
  table td.price {
    text-align: right; }
    @media screen and (max-width: 47.9375em) {
      table td.price {
        text-align: center; } }
  table tfoot td {
    background: none !important;
    font-size: 0.875rem; }

.rsce_bgimage.colored table th.col_last, .rsce_bgimage.colored table td.col_last {
  border-right: 0; }

.ce_table.preise .col_last {
  width: 20%;
  text-align: right; }

.ce_accordion table {
  width: 100%; }
  @media screen and (min-width: 48em) {
    .ce_accordion table td, .ce_accordion table th {
      border-right: 2px solid #FFF; }
      .ce_accordion table td:first-child, .ce_accordion table th:first-child {
        width: 40% !important; }
      .ce_accordion table td:last-child, .ce_accordion table th:last-child {
        border-right: 0; }
    .ce_accordion table tr:last-child td {
      border-bottom: 0; } }

/***** RESPONSIVE TABLES *****/
body.gutscheine tbody td.price[data-th]:after {
  content: " **"; }

body.gutscheine tbody td.price[data-th="undefined"]:after,
body.gutscheine tbody td.price[data-th="Preis / Dauer"]:after {
  content: none; }

td {
  position: relative; }
  td a {
    text-decoration: none; }

td p &gt; a:first-of-type {
  position: absolute;
  top: 0;
  padding-top: 10px;
  left: 0;
  padding-left: 20px;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s cubic-bezier(0.82, 0.78, 0.19, 0.96);
  -o-transition: all 0.3s cubic-bezier(0.82, 0.78, 0.19, 0.96);
  transition: all 0.3s cubic-bezier(0.82, 0.78, 0.19, 0.96); }
  td p &gt; a:first-of-type:hover {
    background: rgba(0, 0, 0, 0.05); }

@media screen and (max-width: 47.9375em) {
  table {
    width: 100%;
    display: block;
    height: auto !important; }
  thead {
    display: none; }
  tbody {
    display: block;
    width: 100%; }
    tbody tr {
      height: auto !important;
      border-bottom: 10px solid transparent;
      display: block;
      width: 100%; }
      tbody tr td {
        display: block;
        text-align: center;
        width: 100% !important;
        height: auto !important; }
        tbody tr td:first-child {
          border-bottom: 1px solid #fff; }
          tbody tr td:first-child:before {
            font-size: 1.1em; }
        tbody tr td p {
          text-align: center; }
  tbody td[data-th]:before {
    content: attr(data-th);
    display: block;
    text-align: center;
    font-weight: bold; }
  tbody td[data-th="undefined"],
  tbody td[data-th="Preis / Dauer"] {
    display: none; }
    tbody td[data-th="undefined"]:before,
    tbody td[data-th="Preis / Dauer"]:before {
      content: none; } }

@media screen and (min-width: 48em) {
  body.massagen table th, body.massagen table td {
    border-right: 2px solid #FFF; } }

body.massagen table th.col_first, body.massagen table td.col_first {
  width: 50%; }

body.massagen table th.col_last, body.massagen table td.col_last {
  border-right: 0; }

@media screen and (min-width: 48em) {
  body.massagen table th br {
    display: none; } }

@media screen and (min-width: 48em) {
  body.massagen table td.col_last {
    text-align: right; } }

.newsletter-subscribe,
.newsletter-unsubscribe {
  margin-bottom: 1rem; }
  .newsletter-subscribe .formbody,
  .newsletter-unsubscribe .formbody {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap; }
  .newsletter-subscribe .text,
  .newsletter-subscribe .widget-text,
  .newsletter-unsubscribe .text,
  .newsletter-unsubscribe .widget-text {
    margin-bottom: 0;
    display: inline-block;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1; }
  .newsletter-subscribe .error,
  .newsletter-unsubscribe .error {
    margin-bottom: 0;
    -webkit-box-flex: 1;
    -ms-flex: 1 100%;
    flex: 1 100%;
    font-weight: 700; }
  .newsletter-subscribe .submit,
  .newsletter-unsubscribe .submit {
    margin-left: 0.25rem; }

.newsletter-list ul {
  list-style-type: none;
  margin: 0;
  padding: 0; }

.newsletter-list a {
  text-decoration: none; }

.newsletter-list li {
  border-bottom: 1px solid #ccc;
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: block; }
  .newsletter-list li:first-of-type {
    border-top: 1px solid #ccc; }
  @media screen and (min-width: 34.375em) {
    .newsletter-list li {
      font-size: 1.125rem;
      line-height: 1; } }
  @media screen and (min-width: 48em) {
    .newsletter-list li {
      font-size: 1.375rem;
      line-height: 1.25; } }
  .newsletter-list li a:hover {
    opacity: 0.5; }

.newsletter-reader {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #ccc;
  padding: 0 1rem; }

.faq-list ul {
  list-style-type: none;
  margin: 0;
  padding: 0; }

.faq-list a {
  text-decoration: none; }

.faq-list &gt; ul {
  margin-top: 2rem; }

.faq-list li {
  margin-bottom: 0.5rem; }

.faq-list li a {
  display: inline-block; }
  .faq-list li a:before {
    font-size: 0.75rem;
    line-height: 1.4;
    padding-bottom: 0.25rem;
    display: inline-block;
    content: "►";
    vertical-align: middle;
    margin-right: 0.25rem; }

.faq-list &gt; h1, .faq-list &gt; h2, .faq-list &gt; h3, .faq-list &gt; h4, .faq-list &gt; h5, .faq-list &gt; h6 {
  margin-bottom: 0; }
  .faq-list &gt; h1:after, .faq-list &gt; h2:after, .faq-list &gt; h3:after, .faq-list &gt; h4:after, .faq-list &gt; h5:after, .faq-list &gt; h6:after {
    border-top: 1px solid #ccc;
    content: "";
    display: block; }

.faq-list article &gt; h1, .faq-list article &gt; h2, .faq-list article &gt; h3, .faq-list article &gt; h4, .faq-list article &gt; h5, .faq-list article &gt; h6 {
  margin-bottom: 0; }
  .faq-list article &gt; h1:after, .faq-list article &gt; h2:after, .faq-list article &gt; h3:after, .faq-list article &gt; h4:after, .faq-list article &gt; h5:after, .faq-list article &gt; h6:after {
    border-top: 1px solid #ccc;
    content: "";
    display: block; }

.faq-page &gt; h1, .faq-page &gt; h2, .faq-page &gt; h3, .faq-page &gt; h4, .faq-page &gt; h5, .faq-page &gt; h6 {
  margin-bottom: 0; }
  .faq-page &gt; h1:after, .faq-page &gt; h2:after, .faq-page &gt; h3:after, .faq-page &gt; h4:after, .faq-page &gt; h5:after, .faq-page &gt; h6:after {
    border-top: 1px solid #ccc;
    content: "";
    display: block; }

.faq-page article &gt; h1, .faq-page article &gt; h2, .faq-page article &gt; h3, .faq-page article &gt; h4, .faq-page article &gt; h5, .faq-page article &gt; h6 {
  margin-bottom: 0; }
  .faq-page article &gt; h1:after, .faq-page article &gt; h2:after, .faq-page article &gt; h3:after, .faq-page article &gt; h4:after, .faq-page article &gt; h5:after, .faq-page article &gt; h6:after {
    border-top: 1px solid #ccc;
    content: "";
    display: block; }

.faq-page .info {
  font-size: 0.875rem;
  margin-top: 1rem;
  opacity: 0.5; }

.faq-page section {
  padding: 1rem 0;
  border-bottom: 1px solid #ccc; }
  .faq-page section.last {
    margin-bottom: 1rem; }

.faq-reader .info {
  font-size: 0.875rem;
  margin-top: 1rem;
  opacity: 0.5; }

.ce_comments {
  overflow: visible; }
  .ce_comments .widget {
    margin-bottom: 1rem; }
  .ce_comments p.error {
    margin-bottom: 0;
    color: #f00; }
  .ce_comments .error {
    border-color: #f00;
    border-color: rgba(255, 0, 0, 0.5); }

.comment_default {
  padding: 1rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc; }
  .comment_default .info {
    padding-bottom: 1rem;
    border-bottom: 1px solid #ccc; }
  .comment_default.last {
    margin-bottom: 2rem; }

.search .formbody {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap; }

.search .text,
.search .widget-text {
  margin-bottom: 0.5rem;
  display: inline-block;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1; }

.search .widget-text label {
  width: 0;
  height: 0;
  left: -1000px;
  top: -1000px;
  position: absolute;
  overflow: hidden;
  display: inline; }

.search .submit,
.search .submit_container,
.search .widget-submit {
  margin-bottom: 0.5rem;
  margin-left: 0.25rem;
  -ms-flex-item-align: end;
  align-self: flex-end; }

.search .submit_container .submit,
.search .widget-submit .submit {
  margin-left: 0; }

.search .relevance {
  color: #656464; }

.search .context {
  margin-bottom: 0.25rem; }

.search .highlight {
  font-weight: bold; }

.search .url {
  color: #656464; }

.search-button {
  float: right;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  margin-left: 2rem;
  text-transform: uppercase;
  font-weight: bold;
  color: #656464; }
  @media screen and (max-width: 47.9375em) {
    .search-button {
      height: 90px; } }
  @media screen and (max-width: 34.3125em) {
    .search-button {
      height: 75px; } }
  .search-button i {
    margin-right: .5rem;
    font-weight: bold; }
  @media screen and (max-width: 1439px) {
    .search-button {
      margin-left: 1rem; }
      .search-button .text {
        display: none; } }
  @media screen and (max-width: 1279px) {
    .search-button {
      margin-left: .5rem; } }
  @media screen and (max-width: 1179px) {
    .search-button .text {
      display: inline-block; }
    .search-button i {
      font-size: 1.4rem; } }
  @media screen and (max-width: 47.9375em) {
    .search-button .text {
      display: none; } }
  .search-button:hover {
    color: #004f91; }

#search-overlay .overlay_container {
  overflow-y: hidden; }
  @media screen and (max-width: 47.9375em) {
    #search-overlay .overlay_container {
      top: 25%; } }
  #search-overlay .overlay_container &gt; .inside {
    background: none; }

#search-overlay input.text {
  background: none;
  border: 0;
  border-bottom: 2px solid #FFF;
  text-align: center;
  color: #FFF;
  font-size: 1.8rem;
  outline: none;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease; }

#search-overlay .formbody {
  max-width: 480px;
  position: relative;
  margin: 0 auto; }

#search-overlay button.submit {
  background: none;
  border: 0;
  color: #FFF;
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 1.8rem; }

#search-overlay .mod_autocompleter {
  position: relative;
  overflow: visible; }

#search-overlay .ui-helper-hidden-accessible {
  position: absolute;
  left: -9999px; }

#search-overlay .headline {
  color: #FFF;
  text-align: center;
  font-weight: 100; }

.ui-autocomplete {
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 480px;
  z-index: 99999;
  position: fixed; }
  .ui-autocomplete .ui-menu-item {
    margin: 0;
    padding: 0;
    display: block;
    text-align: center;
    cursor: pointer; }
    .ui-autocomplete .ui-menu-item a {
      color: rgba(255, 255, 255, 0.65);
      text-decoration: none;
      font-size: 1.4rem; }
      .ui-autocomplete .ui-menu-item a.ui-state-focus {
        color: #FFF;
        text-decoration: underline; }
      @media screen and (max-width: 34.3125em) {
        .ui-autocomplete .ui-menu-item a {
          font-size: 1.1rem; } }
    .ui-autocomplete .ui-menu-item:hover a {
      color: #FFF; }

.mod_search input {
  background: none; }
  .mod_search input:focus {
    border-color: #0278b1; }

.mod_search .widget-submit {
  position: absolute;
  bottom: 0;
  right: 0; }
  .mod_search .widget-submit button {
    border: 0; }
    .mod_search .widget-submit button:hover {
      background: none;
      color: #0278b1; }

.mod_search .formbody {
  position: relative; }

.mod_search .context .highlight {
  font-style: italic;
  background: none; }

.mod_search div.odd,
.mod_search div.even {
  padding: 1rem;
  display: block;
  float: left;
  margin: 1rem -1rem; }
  .mod_search div.odd h3,
  .mod_search div.even h3 {
    font-weight: 100; }
  .mod_search div.odd p,
  .mod_search div.even p {
    margin-bottom: 0; }

.ce_rsce_parallax_banner {
  background-position: center center;
  background-repeat: no-repeat;
  -ms-background-size: cover;
  background-size: cover;
  min-height: 300px;
  height: 45vh;
  position: relative;
  width: 100%;
  overflow: hidden; }
  @media screen and (min-width: 1921px) {
    .ce_rsce_parallax_banner {
      height: 60vh; } }
  .ce_rsce_parallax_banner.darken:after {
    content: " ";
    background: rgba(0, 0, 0, 0.35);
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1; }
  .ce_rsce_parallax_banner &gt; .inner {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 10;
    max-width: 66.625rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0; }
    .ce_rsce_parallax_banner &gt; .inner .content {
      width: 100%;
      position: relative;
      top: 50%;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      text-align: center; }
    .ce_rsce_parallax_banner &gt; .inner span {
      display: block; }
    .ce_rsce_parallax_banner &gt; .inner .headline {
      color: #FFFFFF;
      font-size: 2rem;
      text-transform: uppercase;
      font-weight: 700;
      text-align: center;
      margin-bottom: 18px;
      text-shadow: 1px 1px 6px black; }
    .ce_rsce_parallax_banner &gt; .inner .subheadline {
      color: #FFFFFF;
      font-size: 1.6rem;
      text-transform: none;
      font-weight: 300;
      text-align: center;
      margin-bottom: 36px;
      line-height: 2.1rem; }
    .ce_rsce_parallax_banner &gt; .inner .calltoaction {
      margin: 0 auto; }
      .ce_rsce_parallax_banner &gt; .inner .calltoaction a {
        color: #FFFFFF;
        text-transform: uppercase;
        padding: 8px 60px;
        display: inline-block;
        text-decoration: none;
        width: auto;
        font-weight: 500;
        text-align: center;
        -webkit-transition: all .3s ease;
        -o-transition: all .3s ease;
        transition: all .3s ease;
        margin: 0 auto; }
        .ce_rsce_parallax_banner &gt; .inner .calltoaction a:hover {
          background: #FFF;
          -webkit-transition: all .3s ease;
          -o-transition: all .3s ease;
          transition: all .3s ease;
          color: #656464;
          border-color: #FFF; }
      .ce_rsce_parallax_banner &gt; .inner .calltoaction.w50 {
        display: inline-block;
        min-width: 200px; }
        .ce_rsce_parallax_banner &gt; .inner .calltoaction.w50 a {
          display: block; }

.parallax-mirror {
  z-index: 1 !important; }

.pagination ul li {
  display: inline-block; }
  .pagination ul li strong, .pagination ul li a {
    padding: .25rem .5rem;
    border: 1px solid;
    border-color: #001849;
    color: #001849; }
  .pagination ul li strong {
    border-color: #656464;
    color: #656464; }
  .pagination ul li a.next,
  .pagination ul li a.previous {
    margin: .25rem;
    padding: .25rem .65rem; }

.nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0; }

.nav a {
  text-decoration: none; }

@media screen and (min-width: 48em) {
  .nav--horizontal li {
    float: left; } }

.nav--horizontal a,
.nav--horizontal span.active,
.nav--horizontal span.trail,
.nav--horizontal strong.active,
.nav--horizontal strong.trail {
  display: block;
  padding: 0.5rem 1rem; }

.nav--right {
  float: right; }

.nav--vertical a,
.nav--vertical span.active,
.nav--vertical span.trail,
.nav--vertical strong.active,
.nav--vertical strong.trail {
  display: block;
  padding: 0.5rem 1rem; }

.nav--border {
  border: 1px solid #ccc; }
  .nav--border a,
  .nav--border span.active,
  .nav--border span.trail,
  .nav--border strong.active,
  .nav--border strong.trail {
    padding: 1rem 1rem;
    border-bottom: 1px solid #ccc; }
    .nav--border a.last,
    .nav--border span.active.last,
    .nav--border span.trail.last,
    .nav--border strong.active.last,
    .nav--border strong.trail.last {
      border-bottom: 0; }

.nav--breadcrumb {
  border: 1px solid #ccc;
  padding: 0.5rem 1rem; }
  @media screen and (min-width: 48em) {
    .nav--breadcrumb li {
      float: left;
      padding-right: 1rem; } }
  .nav--breadcrumb a:after {
    font-size: 0.75rem;
    display: inline-block;
    content: "►";
    vertical-align: middle;
    padding-left: 1rem; }

.nav--select select {
  -webkit-appearance: none;
  background: transparent;
  border: 1px solid #ccc;
  padding: 0.25rem 0.5rem; }

.nav--select .submit {
  vertical-align: middle;
  padding: 0.25rem 0.5rem; }

.nav--pager ul {
  text-align: center; }

.nav--pager li {
  display: inline-block; }

.nav--pager .empty {
  width: 0;
  height: 0;
  left: -1000px;
  top: -1000px;
  position: absolute;
  overflow: hidden;
  display: inline; }

.nav--pager a {
  padding: 0.5rem; }

.pagination {
  margin-top: 1rem;
  clear: both;
  text-align: center;
  line-height: 1; }
  .pagination ul {
    list-style-type: none;
    margin: 0;
    padding: 0; }
  .pagination a {
    text-decoration: none; }
  .pagination p {
    padding: 0.25rem;
    padding-left: 0;
    margin: 0.25rem;
    margin-left: 0;
    border-top: 1px solid transparent; }
  .pagination li {
    display: inline; }
  .pagination a,
  .pagination span,
  .pagination strong {
    display: inline-block;
    padding: 0.25rem;
    margin: 0.25rem; }
  .pagination span,
  .pagination strong {
    border: 1px solid #ccc; }
  .pagination a.next {
    margin-right: 0;
    padding-right: 0; }
  @media screen and (min-width: 34.375em) {
    .pagination p {
      float: left; }
    .pagination p + ul {
      float: right; } }

.nav--main li.showMobileNav {
  display: none; }

.nav--footer {
  margin-bottom: 2rem; }
  .nav--footer a, .nav--footer a:visited, .nav--footer a:active, .nav--footer strong, .nav--footer strong.active, .nav--footer strong.trail {
    padding: 0;
    font-weight: 400;
    color: #004f91; }
  .nav--footer strong, .nav--footer strong.active, .nav--footer a.trail {
    font-weight: 700;
    color: #FFF; }

@media screen and (min-width: 1180px) {
  .nav--header {
    height: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; } }
  @media screen and (min-width: 1180px) and (max-width: 47.9375em) {
    .nav--header {
      height: 90px; } }
  @media screen and (min-width: 1180px) and (max-width: 34.3125em) {
    .nav--header {
      height: 75px; } }

@media screen and (min-width: 1180px) {
    .nav--header li.last a, .nav--header li.last a:visited, .nav--header li.last a:active, .nav--header li.last strong, .nav--header li.last strong.trail, .nav--header li.last strong.active {
      padding-right: 0; } }
  @media screen and (min-width: 1180px) and (max-width: 1600px) {
    .nav--header li a, .nav--header li a:visited, .nav--header li a:active, .nav--header li strong, .nav--header li strong.trail, .nav--header li strong.active {
      font-size: .75rem;
      padding: .35rem; } }
  @media screen and (min-width: 1180px) and (max-width: 1279px) {
    .nav--header li a, .nav--header li a:visited, .nav--header li a:active, .nav--header li strong, .nav--header li strong.trail, .nav--header li strong.active {
      padding: .5rem .25rem; } }

@media screen and (min-width: 1180px) {
  .nav--main {
    font-weight: bold;
    float: right;
    text-transform: uppercase;
    overflow: visible; }
    .nav--main .level_1 {
      height: 100%; }
      .nav--main .level_1 li {
        height: 100%; }
        .nav--main .level_1 li a, .nav--main .level_1 li strong {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          height: 100%;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          -ms-flex-direction: column;
          flex-direction: column;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          justify-content: center;
          color: #656464; }
          .nav--main .level_1 li a:hover, .nav--main .level_1 li strong:hover {
            color: #004f91; }
        .nav--main .level_1 li strong,
        .nav--main .level_1 li a.trail,
        .nav--main .level_1 li a.forward {
          color: #004f91; }
    .nav--main a, .nav--main span.active, .nav--main span.trail, .nav--main span.forward,
    .nav--main strong.active, .nav--main strong.trail, .nav--main strong.forward {
      padding: .5rem; }
    .nav--main .level_2 {
      max-height: 0;
      -webkit-transition: all 0.2s cubic-bezier(0.73, 0.72, 0.81, 1.44);
      -o-transition: all 0.2s cubic-bezier(0.73, 0.72, 0.81, 1.44);
      transition: all 0.2s cubic-bezier(0.73, 0.72, 0.81, 1.44);
      position: absolute;
      top: 100px;
      left: 0;
      overflow: hidden;
      min-width: 20em;
      max-width: 27em; }
      .nav--main .level_2 li {
        width: 100%;
        display: block; }
        .nav--main .level_2 li a, .nav--main .level_2 li a:visited, .nav--main .level_2 li a:active, .nav--main .level_2 li strong, .nav--main .level_2 li strong.trail, .nav--main .level_2 li strong.active, .nav--main .level_2 li a.trail {
          background: #f5f5f5;
          display: block;
          width: 100%;
          position: relative;
          border-bottom: 1px solid #FFF;
          font-size: 0.875rem;
          text-transform: none;
          padding: .4rem 1rem; } }
        @media screen and (min-width: 1180px) and (max-width: 1279px) {
          .nav--main .level_2 li a, .nav--main .level_2 li a:visited, .nav--main .level_2 li a:active, .nav--main .level_2 li strong, .nav--main .level_2 li strong.trail, .nav--main .level_2 li strong.active, .nav--main .level_2 li a.trail {
            padding: .5rem; } }

@media screen and (min-width: 1180px) {
          .nav--main .level_2 li a:after, .nav--main .level_2 li a:visited:after, .nav--main .level_2 li a:active:after, .nav--main .level_2 li strong:after, .nav--main .level_2 li strong.trail:after, .nav--main .level_2 li strong.active:after, .nav--main .level_2 li a.trail:after {
            content: none; }
          .nav--main .level_2 li a:before, .nav--main .level_2 li a:visited:before, .nav--main .level_2 li a:active:before, .nav--main .level_2 li strong:before, .nav--main .level_2 li strong.trail:before, .nav--main .level_2 li strong.active:before, .nav--main .level_2 li a.trail:before {
            content: "";
            background: #004f91;
            max-width: 0px;
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            -webkit-transition: all 0.3s cubic-bezier(0.73, 0.72, 0.81, 1.44);
            -o-transition: all 0.3s cubic-bezier(0.73, 0.72, 0.81, 1.44);
            transition: all 0.3s cubic-bezier(0.73, 0.72, 0.81, 1.44); }
        .nav--main .level_2 li strong:before, .nav--main .level_2 li strong.active:before, .nav--main .level_2 li strong.trail:before, .nav--main .level_2 li a:hover:before {
          max-width: 5px; }
        .nav--main .level_2 li:last-child a, .nav--main .level_2 li:last-child a:visited, .nav--main .level_2 li:last-child a:active, .nav--main .level_2 li.last a, .nav--main .level_2 li.last a:visited, .nav--main .level_2 li.last a:active {
          border-bottom: 0; }
    .nav--main .level_3 {
      display: none; }
    .nav--main li.submenu {
      position: relative; }
      .nav--main li.submenu:hover .level_2 {
        max-height: 450px;
        -webkit-transition: all 0.6s cubic-bezier(0.73, 0.72, 0.81, 1.44);
        -o-transition: all 0.6s cubic-bezier(0.73, 0.72, 0.81, 1.44);
        transition: all 0.6s cubic-bezier(0.73, 0.72, 0.81, 1.44); }
  .nav--underline li a:after, .nav--underline li a:visited:after, .nav--underline li a:active:after, .nav--underline li strong:after, .nav--underline li strong.trail:after, .nav--underline li strong.active:after {
    content: "";
    display: block;
    height: 2px;
    width: 100%;
    position: relative;
    top: 2px;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s cubic-bezier(0.73, 0.72, 0.81, 1.44);
    -o-transition: all 0.3s cubic-bezier(0.73, 0.72, 0.81, 1.44);
    transition: all 0.3s cubic-bezier(0.73, 0.72, 0.81, 1.44);
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    background: #004f91; }
  .nav--underline li strong:after, .nav--underline li strong.trail:after, .nav--underline li strong.active:after, .nav--underline li a:hover:after {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1); }
  .nav--underline li.submenu:hover a:after {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1); } }

@media screen and (max-width: 1179px) {
  .nav--header {
    display: none; }
  .mobile_menu .nav--header {
    display: block; } }

.nav--preheader {
  margin-right: 2rem; }
  .nav--preheader li.showMobileNav {
    display: inline-block; }
    .nav--preheader li.showMobileNav a, .nav--preheader li.showMobileNav a:visited, .nav--preheader li.showMobileNav a:active, .nav--preheader li.showMobileNav strong, .nav--preheader li.showMobileNav strong.trail, .nav--preheader li.showMobileNav strong.active {
      padding: 0 .75rem;
      font-size: 0.875rem;
      font-weight: normal;
      color: #FFF; }
      @media screen and (max-width: 1439px) {
        .nav--preheader li.showMobileNav a, .nav--preheader li.showMobileNav a:visited, .nav--preheader li.showMobileNav a:active, .nav--preheader li.showMobileNav strong, .nav--preheader li.showMobileNav strong.trail, .nav--preheader li.showMobileNav strong.active {
          padding: 0 .25rem; } }
    .nav--preheader li.showMobileNav strong, .nav--preheader li.showMobileNav strong.active, .nav--preheader li.showMobileNav strong.trail {
      text-decoration: underline; }
  @media screen and (max-width: 1439px) {
    .nav--preheader li a, .nav--preheader li a:visited, .nav--preheader li a:active, .nav--preheader li strong, .nav--preheader li strong.trail, .nav--preheader li strong.active {
      padding: 0 .25rem; } }

#main .nav--pageteaser.news--pageteaser ul.pt_overview li .image_container &gt; a {
  position: relative; }

#main .nav--pageteaser.news--pageteaser ul.pt_overview li .image_container figcaption {
  position: absolute;
  bottom: 0;
  padding: .5rem 1rem;
  background: rgba(255, 255, 255, 0.9);
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  z-index: 0;
  font-size: .75rem; }

#main .nav--pageteaser.news--pageteaser ul.pt_overview li .text_container {
  background: #FFF;
  z-index: 1; }

#main .nav--pageteaser.news--pageteaser ul.pt_overview li:hover .image_container figcaption {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0); }

#main .nav--pageteaser ul {
  margin: 0;
  padding: 0; }
  #main .nav--pageteaser ul.pt_overview {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    margin-left: -0.9375rem;
    margin-right: -0.9375rem; }
    @media screen and (min-width: 0) {
      #main .nav--pageteaser ul.pt_overview li {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        -webkit-box-flex: 0;
        -ms-flex-positive: 0;
        flex-grow: 0;
        -ms-flex-negative: 0;
        flex-shrink: 0; } }
    @media screen and (min-width: 34.375em) {
      #main .nav--pageteaser ul.pt_overview li {
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%; } }
    @media screen and (min-width: 48em) {
      #main .nav--pageteaser ul.pt_overview li {
        -ms-flex-preferred-size: calc(100% / 3);
        flex-basis: calc(100% / 3); } }
    #main .nav--pageteaser ul.pt_overview li {
      padding-left: 0.9375rem;
      padding-right: 0.9375rem;
      margin-bottom: 0.9375rem;
      margin-top: 0.9375rem; }
      #main .nav--pageteaser ul.pt_overview li &gt; div {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column; }
      #main .nav--pageteaser ul.pt_overview li .text_container .title {
        padding: .5rem 0;
        display: block;
        color: #004f91;
        font-size: 1.2rem;
        font-weight: 700; }
      #main .nav--pageteaser ul.pt_overview li .image_container {
        position: relative; }
        #main .nav--pageteaser ul.pt_overview li .image_container &gt; a {
          width: 100%;
          height: 100%;
          position: absolute;
          top: 0;
          left: 0; }
      #main .nav--pageteaser ul.pt_overview li div &gt; a {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        padding: .7rem 1rem;
        color: #FFF;
        margin-top: 1rem;
        -webkit-transition: all .3s ease;
        -o-transition: all .3s ease;
        transition: all .3s ease;
        position: relative;
        overflow: hidden; }
        #main .nav--pageteaser ul.pt_overview li div &gt; a:before {
          content: "Mehr erfahren";
          position: relative;
          z-index: 2; }
        #main .nav--pageteaser ul.pt_overview li div &gt; a:after {
          content: "";
          width: 200%;
          background: -o-linear-gradient(330deg, #004f91, #004f91 25%, #001849);
          background: linear-gradient(120deg, #004f91, #004f91 25%, #001849);
          position: absolute;
          height: 100%;
          left: 0;
          -webkit-transition: all 0.7s cubic-bezier(0.82, 0.78, 0.19, 0.96);
          -o-transition: all 0.7s cubic-bezier(0.82, 0.78, 0.19, 0.96);
          transition: all 0.7s cubic-bezier(0.82, 0.78, 0.19, 0.96);
          top: 0; }
        #main .nav--pageteaser ul.pt_overview li div &gt; a:hover:after {
          -webkit-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
          transform: translateX(-50%); }
  #main .nav--pageteaser ul.pt_subpage {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -.5rem; }
    @media screen and (min-width: 0) {
      #main .nav--pageteaser ul.pt_subpage li {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        -webkit-box-flex: 0;
        -ms-flex-positive: 0;
        flex-grow: 0;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        margin: .5rem 0; } }
    @media screen and (min-width: 48em) {
      #main .nav--pageteaser ul.pt_subpage li {
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%; }
        #main .nav--pageteaser ul.pt_subpage li &gt; div {
          padding: 0 .5rem;
          overflow: hidden;
          position: relative; } }
    @media screen and (min-width: 1280px) {
      #main .nav--pageteaser ul.pt_subpage li {
        -ms-flex-preferred-size: 33.3333%;
        flex-basis: 33.3333%; } }
    @media screen and (min-width: 1280px) {
      #main .nav--pageteaser ul.pt_subpage a {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1; }
      #main .nav--pageteaser ul.pt_subpage li {
        overflow: hidden;
        position: relative; }
        #main .nav--pageteaser ul.pt_subpage li .image_container {
          width: 100%; }
          #main .nav--pageteaser ul.pt_subpage li .image_container img {
            width: 100%; }
        #main .nav--pageteaser ul.pt_subpage li .text_container {
          position: absolute;
          height: 100%;
          width: calc(100% - 1rem);
          left: .5rem;
          top: 0; }
          #main .nav--pageteaser ul.pt_subpage li .text_container .title {
            font-size: .85rem; }
          #main .nav--pageteaser ul.pt_subpage li .text_container .title,
          #main .nav--pageteaser ul.pt_subpage li .text_container .text {
            position: absolute;
            bottom: 10%;
            left: 0;
            margin: 0;
            color: #FFF;
            text-transform: uppercase;
            font-weight: 100;
            padding: .35rem .7rem;
            background: -o-linear-gradient(330deg, rgba(0, 79, 145, 0.92), rgba(0, 24, 73, 0.92));
            background: linear-gradient(120deg, rgba(0, 79, 145, 0.92), rgba(0, 24, 73, 0.92));
            -webkit-transition: bottom 0.4s cubic-bezier(0.82, 0.78, 0.19, 0.96), left 0.2s cubic-bezier(0.73, 0.72, 0.81, 1.44) 0.4s;
            -o-transition: bottom 0.4s cubic-bezier(0.82, 0.78, 0.19, 0.96), left 0.2s cubic-bezier(0.73, 0.72, 0.81, 1.44) 0.4s;
            transition: bottom 0.4s cubic-bezier(0.82, 0.78, 0.19, 0.96), left 0.2s cubic-bezier(0.73, 0.72, 0.81, 1.44) 0.4s; } }
      @media screen and (min-width: 1280px) and (min-width: 541px) and (max-width: 1279px) {
        #main .nav--pageteaser ul.pt_subpage li .text_container .title,
        #main .nav--pageteaser ul.pt_subpage li .text_container .text {
          font-size: 1.25rem;
          -webkit-transition: bottom 0.4s cubic-bezier(0.82, 0.78, 0.19, 0.96), left 0.2s cubic-bezier(0.73, 0.72, 0.81, 1.44) 0.4s;
          -o-transition: bottom 0.4s cubic-bezier(0.82, 0.78, 0.19, 0.96), left 0.2s cubic-bezier(0.73, 0.72, 0.81, 1.44) 0.4s;
          transition: bottom 0.4s cubic-bezier(0.82, 0.78, 0.19, 0.96), left 0.2s cubic-bezier(0.73, 0.72, 0.81, 1.44) 0.4s; } }
    @media screen and (min-width: 1280px) {
          #main .nav--pageteaser ul.pt_subpage li .text_container .text {
            top: 100%;
            -webkit-transition: all 0.6s cubic-bezier(0.82, 0.78, 0.19, 0.96);
            -o-transition: all 0.6s cubic-bezier(0.82, 0.78, 0.19, 0.96);
            transition: all 0.6s cubic-bezier(0.82, 0.78, 0.19, 0.96);
            text-transform: none;
            background: rgba(255, 255, 255, 0.79);
            color: #004f91;
            font-weight: 400;
            bottom: auto;
            left: 1rem;
            right: 1rem;
            font-size: .8rem; } }
      @media screen and (min-width: 1280px) and (min-width: 541px) and (max-width: 1279px) {
        #main .nav--pageteaser ul.pt_subpage li .text_container .text {
          font-size: 1rem; } }
    @media screen and (min-width: 1280px) {
        #main .nav--pageteaser ul.pt_subpage li.hasText:hover .text_container .title {
          bottom: 75%;
          left: 1rem; }
        #main .nav--pageteaser ul.pt_subpage li.hasText:hover .text_container .text {
          top: 25%; }
        #main .nav--pageteaser ul.pt_subpage li.active .text_container {
          background: -o-linear-gradient(330deg, rgba(0, 79, 145, 0.92), rgba(0, 24, 73, 0.92));
          background: linear-gradient(120deg, rgba(0, 79, 145, 0.92), rgba(0, 24, 73, 0.92));
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          justify-content: center; }
          #main .nav--pageteaser ul.pt_subpage li.active .text_container .title {
            position: relative;
            background: none;
            top: auto;
            bottom: auto;
            left: auto;
            right: auto;
            font-size: 1.25rem;
            text-align: center; }
            #main .nav--pageteaser ul.pt_subpage li.active .text_container .title:before {
              content: "Sie befinden sich hier:";
              display: block;
              font-size: 1rem;
              text-align: center; }
          #main .nav--pageteaser ul.pt_subpage li.active .text_container .text {
            display: none; }
        #main .nav--pageteaser ul.pt_subpage li.active:hover .text_container .title {
          top: auto;
          bottom: auto;
          left: auto;
          right: auto; } }
    @media screen and (max-width: 1279px) {
      #main .nav--pageteaser ul.pt_subpage {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin: -0.9375rem;
        margin-bottom: 2rem; }
        #main .nav--pageteaser ul.pt_subpage li {
          margin-bottom: 0.9375rem;
          margin-top: 0.9375rem; }
          #main .nav--pageteaser ul.pt_subpage li &gt; div {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -ms-flex-direction: column;
            flex-direction: column;
            padding: 0 0.9375rem; }
          #main .nav--pageteaser ul.pt_subpage li .text_container {
            position: relative;
            height: auto;
            left: auto;
            top: auto;
            width: 100%;
            padding: 0 .5rem; }
            #main .nav--pageteaser ul.pt_subpage li .text_container .title {
              padding: .5rem 0;
              display: block;
              color: #004f91;
              font-size: 1.2rem;
              font-weight: 700;
              position: relative;
              background: none;
              bottom: auto;
              top: auto;
              left: auto; }
            #main .nav--pageteaser ul.pt_subpage li .text_container .text {
              position: relative;
              bottom: auto;
              top: auto;
              background: none;
              font-size: 1rem;
              left: 0;
              padding: 0; }
          #main .nav--pageteaser ul.pt_subpage li .image_container {
            position: relative; }
            #main .nav--pageteaser ul.pt_subpage li .image_container &gt; a {
              width: 100%;
              height: 100%;
              position: absolute;
              top: 0;
              left: 0; }
          #main .nav--pageteaser ul.pt_subpage li div &gt; a {
            -webkit-box-ordinal-group: 4;
            -ms-flex-order: 3;
            order: 3;
            display: -webkit-inline-box;
            display: -ms-inline-flexbox;
            display: inline-flex;
            width: -webkit-fit-content;
            width: -moz-fit-content;
            width: fit-content;
            padding: .7rem 1rem;
            color: #FFF;
            margin-top: 1rem;
            -webkit-transition: all .3s ease;
            -o-transition: all .3s ease;
            transition: all .3s ease;
            position: relative;
            overflow: hidden;
            left: .5rem; }
            #main .nav--pageteaser ul.pt_subpage li div &gt; a:before {
              content: "Mehr erfahren";
              position: relative;
              z-index: 2; }
            #main .nav--pageteaser ul.pt_subpage li div &gt; a:after {
              content: "";
              width: 200%;
              background: -o-linear-gradient(330deg, #004f91, #004f91 25%, #001849);
              background: linear-gradient(120deg, #004f91, #004f91 25%, #001849);
              position: absolute;
              height: 100%;
              left: 0;
              -webkit-transition: all 0.7s cubic-bezier(0.82, 0.78, 0.19, 0.96);
              -o-transition: all 0.7s cubic-bezier(0.82, 0.78, 0.19, 0.96);
              transition: all 0.7s cubic-bezier(0.82, 0.78, 0.19, 0.96);
              top: 0; }
            #main .nav--pageteaser ul.pt_subpage li div &gt; a:hover:after {
              -webkit-transform: translateX(-50%);
              -ms-transform: translateX(-50%);
              transform: translateX(-50%); }
          #main .nav--pageteaser ul.pt_subpage li.active &gt; div {
            position: relative; }
          #main .nav--pageteaser ul.pt_subpage li.active .text_container {
            background: -o-linear-gradient(330deg, rgba(0, 79, 145, 0.92), rgba(0, 24, 73, 0.92));
            background: linear-gradient(120deg, rgba(0, 79, 145, 0.92), rgba(0, 24, 73, 0.92));
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%; }
            #main .nav--pageteaser ul.pt_subpage li.active .text_container .title {
              position: relative;
              background: none;
              top: auto;
              bottom: auto;
              left: auto;
              right: auto;
              font-size: 1.25rem;
              text-align: center;
              color: #FFF; }
              #main .nav--pageteaser ul.pt_subpage li.active .text_container .title:before {
                content: "Sie befinden sich hier:";
                display: block;
                font-size: 1rem;
                text-align: center; }
            #main .nav--pageteaser ul.pt_subpage li.active .text_container .text {
              display: none; }
          #main .nav--pageteaser ul.pt_subpage li.active:hover .text_container .title {
            top: auto;
            bottom: auto;
            left: auto;
            right: auto; } }

#main .rsce_bgimage.color--light-grey .nav--pageteaser.news--pageteaser ul.pt_overview li .text_container {
  padding: 1rem; }
  #main .rsce_bgimage.color--light-grey .nav--pageteaser.news--pageteaser ul.pt_overview li .text_container .title {
    padding-top: 0; }

.mod_mobile_menu {
  overflow: visible;
  height: 100px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  position: relative;
  right: 0;
  display: none; }
  @media screen and (max-width: 47.9375em) {
    .mod_mobile_menu {
      height: 90px;
      width: 90px; } }
  @media screen and (max-width: 34.3125em) {
    .mod_mobile_menu {
      height: 75px;
      width: 75px; } }
  .mod_mobile_menu .mobile_menu_trigger {
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
    transform: scaleX(-1);
    cursor: pointer; }
    @media screen and (max-width: 1179px) {
      .mod_mobile_menu .mobile_menu_trigger {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center; }
        .mod_mobile_menu .mobile_menu_trigger span.text {
          -webkit-transform: scaleX(-1);
          -ms-transform: scaleX(-1);
          transform: scaleX(-1);
          font-weight: bold;
          text-transform: uppercase;
          position: relative;
          left: .5rem;
          color: #004f91; } }
    @media screen and (max-width: 1179px) and (max-width: 47.9375em) {
      .mod_mobile_menu .mobile_menu_trigger span.text {
        display: none; } }
  @media screen and (max-width: 1179px) {
    .mod_mobile_menu {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; } }

.mobile_menu_trigger .hamburger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.hamburger {
  outline: none; }
  .hamburger .hamburger-inner {
    height: 2px;
    background-color: #004f91; }
    .hamburger .hamburger-inner:before, .hamburger .hamburger-inner:after {
      height: 2px;
      background-color: #004f91; }

.mobile_menu {
  overflow: hidden;
  display: block; }
  .mobile_menu .kontakt-info {
    padding: 2rem 4rem; }
    @media screen and (max-width: 34.3125em) {
      .mobile_menu .kontakt-info {
        padding: 1rem; } }
    .mobile_menu .kontakt-info .mod_logo a {
      left: 0;
      background-position: center; }
    .mobile_menu .kontakt-info .social-media-icons {
      font-size: 2rem; }
      .mobile_menu .kontakt-info .social-media-icons a {
        margin: 0 12px; }
  .mobile_menu .toggle-submenu {
    position: absolute;
    top: 0;
    right: 0;
    color: #000;
    padding: .75rem 0;
    font-size: 1.1rem;
    border-left: 1px solid rgba(0, 0, 0, 0.25);
    width: 50px;
    text-align: center; }
    .mobile_menu .toggle-submenu:before {
      font-family: "Font Awesome 5 Free";
      font-weight: 900;
      display: block;
      content: "\f0da"; }
    .mobile_menu .toggle-submenu.active:before {
      -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
      transform: rotate(90deg); }
  .mobile_menu .inner {
    overflow-y: scroll;
    background: #FFF; }
    .mobile_menu .inner .headline {
      color: rgba(101, 100, 100, 0.4);
      font-size: .87rem;
      border-bottom: 1px solid rgba(101, 100, 100, 0.25);
      display: block;
      width: 100%;
      text-align: center;
      text-transform: uppercase;
      padding: .5rem 0;
      font-weight: bold; }
    .mobile_menu .inner .mod_navigation ul {
      margin: 0;
      padding: 0; }
      .mobile_menu .inner .mod_navigation ul li {
        float: none;
        position: relative; }
        .mobile_menu .inner .mod_navigation ul li.showMobileNav {
          display: block; }
        .mobile_menu .inner .mod_navigation ul li a, .mobile_menu .inner .mod_navigation ul li a:visited, .mobile_menu .inner .mod_navigation ul li a:active, .mobile_menu .inner .mod_navigation ul li strong {
          display: block;
          color: #656464;
          text-transform: none;
          text-decoration: none;
          width: 100%;
          padding: .75rem 1rem;
          font-size: 1.1rem;
          font-weight: normal;
          border-bottom: 1px solid rgba(101, 100, 100, 0.25); }
        .mobile_menu .inner .mod_navigation ul li .level_2 {
          display: none; }
        .mobile_menu .inner .mod_navigation ul li .level_3 {
          display: none; }
        .mobile_menu .inner .mod_navigation ul li.opened, .mobile_menu .inner .mod_navigation ul li.trail.opened {
          border-left: 5px solid #004f91; }
          .mobile_menu .inner .mod_navigation ul li.opened &gt; a span,
          .mobile_menu .inner .mod_navigation ul li.opened &gt; a:visited span,
          .mobile_menu .inner .mod_navigation ul li.opened &gt; a:active span, .mobile_menu .inner .mod_navigation ul li.trail.opened &gt; a span,
          .mobile_menu .inner .mod_navigation ul li.trail.opened &gt; a:visited span,
          .mobile_menu .inner .mod_navigation ul li.trail.opened &gt; a:active span {
            margin-left: -5px;
            color: #004f91;
            font-weight: bold; }
          .mobile_menu .inner .mod_navigation ul li.opened .level_2, .mobile_menu .inner .mod_navigation ul li.trail.opened .level_2 {
            display: block; }
            .mobile_menu .inner .mod_navigation ul li.opened .level_2 li a, .mobile_menu .inner .mod_navigation ul li.opened .level_2 li a:visited, .mobile_menu .inner .mod_navigation ul li.opened .level_2 li a:active, .mobile_menu .inner .mod_navigation ul li.opened .level_2 li strong, .mobile_menu .inner .mod_navigation ul li.trail.opened .level_2 li a, .mobile_menu .inner .mod_navigation ul li.trail.opened .level_2 li a:visited, .mobile_menu .inner .mod_navigation ul li.trail.opened .level_2 li a:active, .mobile_menu .inner .mod_navigation ul li.trail.opened .level_2 li strong {
              padding-left: 2rem; }
              .mobile_menu .inner .mod_navigation ul li.opened .level_2 li a.active, .mobile_menu .inner .mod_navigation ul li.opened .level_2 li a:visited.active, .mobile_menu .inner .mod_navigation ul li.opened .level_2 li a:active.active, .mobile_menu .inner .mod_navigation ul li.opened .level_2 li strong.active, .mobile_menu .inner .mod_navigation ul li.trail.opened .level_2 li a.active, .mobile_menu .inner .mod_navigation ul li.trail.opened .level_2 li a:visited.active, .mobile_menu .inner .mod_navigation ul li.trail.opened .level_2 li a:active.active, .mobile_menu .inner .mod_navigation ul li.trail.opened .level_2 li strong.active {
                color: #004f91; }
        .mobile_menu .inner .mod_navigation ul li.active, .mobile_menu .inner .mod_navigation ul li.trail {
          border-left: 5px solid #004f91; }
          .mobile_menu .inner .mod_navigation ul li.active &gt; strong, .mobile_menu .inner .mod_navigation ul li.trail &gt; strong {
            color: #004f91;
            font-weight: bold;
            margin-left: -5px; }
        .mobile_menu .inner .mod_navigation ul li.trail {
          border-left: 5px solid #004f91; }
          .mobile_menu .inner .mod_navigation ul li.trail &gt; a,
          .mobile_menu .inner .mod_navigation ul li.trail &gt; a:visited,
          .mobile_menu .inner .mod_navigation ul li.trail &gt; a:active {
            color: #004f91;
            font-weight: bold;
            margin-left: -5px; }
          .mobile_menu .inner .mod_navigation ul li.trail li.active {
            border: 0; }
          .mobile_menu .inner .mod_navigation ul li.trail.opened &gt; a,
          .mobile_menu .inner .mod_navigation ul li.trail.opened &gt; a:visited,
          .mobile_menu .inner .mod_navigation ul li.trail.opened &gt; a:active {
            margin-left: 0; }
          .mobile_menu .inner .mod_navigation ul li.trail .active &gt; strong {
            margin-left: 0; }

.rsce_bgimage {
  position: relative;
  margin-bottom: 2rem;
  z-index: 6; }
  .rsce_bgimage .rsce_bgimage-content {
    padding: 0.9375rem; }
    @media screen and (min-width: 68.75em) {
      .rsce_bgimage .rsce_bgimage-content {
        padding: 0; } }
    @media screen and (max-width: 47.9375em) {
      .rsce_bgimage .rsce_bgimage-content.ph_standard {
        padding-left: 0.9375rem;
        padding-right: 0.9375rem; } }

@media screen and (max-width: 1240px) and (min-width: 58.75em) {
  .rsce_bgimage:not(.full_width) {
    padding-right: calc(1rem + 80px) !important; } }
  @media screen and (min-width: 48em) {
    .rsce_bgimage .rsce_bgimage-inside {
      padding-top: 60px;
      padding-bottom: 60px;
      vertical-align: middle; } }

.rsce_bgimage.no--padding-left {
  padding-left: 0; }
  .rsce_bgimage.no--padding-left .rsce_bgimage-content {
    padding-left: 0; }

.rsce_bgimage.no--padding-right {
  padding-right: 0; }
  .rsce_bgimage.no--padding-right .rsce_bgimage-content {
    padding-right: 0; }

@media screen and (min-width: 48em) {
  .rsce_bgimage.proportional {
    padding-bottom: 28.25%;
    height: 0; } }

@media screen and (max-width: 47.9375em) {
  .rsce_bgimage.has--image .rsce_bgimage-inside {
    padding-top: 0; } }

.rsce_bgimage.content_width {
  max-width: 62em;
  width: 100%;
  margin-left: auto;
  margin-right: auto; }
  @media screen and (min-width: 1280px) {
    .rsce_bgimage.content_width {
      max-width: 70%; } }

.rsce_bgimage.inner_content_width .rsce_bgimage-stage {
  max-width: 62em;
  width: 100%;
  margin-left: auto;
  margin-right: auto; }
  @media screen and (min-width: 1280px) {
    .rsce_bgimage.inner_content_width .rsce_bgimage-stage {
      max-width: 70%; } }

@media screen and (min-width: 48em) {
  .rsce_bgimage .rsce_bgimage-content.center--content {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    z-index: 1; } }

@media screen and (max-width: 47.9375em) {
  .rsce_bgimage.remove--gutters-mobile &gt; .rsce_bgimage-stage &gt; .rsce_bgimage-inside {
    padding: 0;
    margin: 0; }
    .rsce_bgimage.remove--gutters-mobile &gt; .rsce_bgimage-stage &gt; .rsce_bgimage-inside &gt; .rsce_bgimage-content {
      padding: 0;
      margin: 0; } }

.rsce_bgimage.color--primary {
  background: #004f91; }

.rsce_bgimage.color--mark {
  background: #001849; }

.rsce_bgimage.color--highlight {
  background: #f5d400; }

.rsce_bgimage.color--dark-grey {
  background: #333; }

.rsce_bgimage.color--light-grey {
  background: #f5f5f5; }

.rsce_bgimage.color--black {
  background: #000; }

.rsce_bgimage.color--white {
  background: #FFF; }

.rsce_bgimage.text-color-white *, .rsce_bgimage.color--primary *, .rsce_bgimage.color--mark *, .rsce_bgimage.color--highlight *, .rsce_bgimage.color--dark-grey *, .rsce_bgimage.color--black * {
  color: #FFF;
  border-color: #FFF; }

.rsce_bgimage.text-color-black *, .rsce_bgimage.color--light-grey *, .rsce_bgimage.color--white * {
  color: #000;
  border-color: #000; }
  .rsce_bgimage.text-color-black * table td, .rsce_bgimage.color--light-grey * table td, .rsce_bgimage.color--white * table td,
  .rsce_bgimage.text-color-black * table th,
  .rsce_bgimage.color--light-grey * table th,
  .rsce_bgimage.color--white * table th {
    border-color: #FFF; }
  
  .rsce_bgimage.text-color-black * table th,
  .rsce_bgimage.color--light-grey * table th,
  .rsce_bgimage.color--white * table th {
    color: #FFF; }

.rsce_bgimage.gradient {
  background: -o-linear-gradient(330deg, #004f91, #001849);
  background: linear-gradient(120deg, #004f91, #001849); }
  .rsce_bgimage.gradient * {
    color: #FFF; }
  .rsce_bgimage.gradient .rsce_bgimage-stage {
    position: relative;
    z-index: 10; }

@media screen and (max-width: 47.9375em) {
  .rsce_bgimage .calltoaction {
    margin-top: 1rem; }
  .rsce_bgimage .ce_columns {
    margin-top: .5rem;
    margin-bottom: .5rem; } }

@media screen and (min-width: 48em) {
  .rsce_bgimage.content_width.image--left .rsce_bgimage-image {
    margin-left: 0.9375rem; }
  .rsce_bgimage.content_width.image--right.w25 .rsce_bgimage-image {
    margin-left: calc(75% - 0.9375rem); }
  .rsce_bgimage.content_width.image--right.w33 .rsce_bgimage-image {
    margin-left: calc(67.6666% - 0.9375rem); }
  .rsce_bgimage.content_width.image--right.w40 .rsce_bgimage-image {
    margin-left: calc(60% - 0.9375rem); }
  .rsce_bgimage.content_width.image--right.w45 .rsce_bgimage-image {
    margin-left: calc(55% - 0.9375rem); }
  .rsce_bgimage.content_width.image--right.w50 .rsce_bgimage-image {
    margin-left: calc(50% - 0.9375rem); }
  .rsce_bgimage.image--left .rsce_bgimage-image {
    display: table-cell;
    vertical-align: middle;
    padding: 0; }
  .rsce_bgimage.image--left.w25 .rsce_bgimage-stage {
    margin-left: 25%; }
  .rsce_bgimage.image--left.w25 .rsce_bgimage-image {
    width: 25%; }
  .rsce_bgimage.image--left.w33 .rsce_bgimage-stage {
    margin-left: 33.3333%; }
  .rsce_bgimage.image--left.w33 .rsce_bgimage-image {
    width: 33.3333%; }
  .rsce_bgimage.image--left.w40 .rsce_bgimage-stage {
    margin-left: 40%; }
  .rsce_bgimage.image--left.w40 .rsce_bgimage-image {
    width: 40%; }
  .rsce_bgimage.image--left.w45 .rsce_bgimage-stage {
    margin-left: 45%; }
  .rsce_bgimage.image--left.w45 .rsce_bgimage-image {
    width: 45%; }
  .rsce_bgimage.image--left.w50 .rsce_bgimage-stage {
    margin-left: 50%; }
  .rsce_bgimage.image--left.w50 .rsce_bgimage-image {
    width: 50%; }
  .rsce_bgimage.image--right .rsce_bgimage-image {
    display: table-cell;
    vertical-align: middle;
    padding: 0; }
  .rsce_bgimage.image--right .rsce_bgimage-stage.angle_slash:before, .rsce_bgimage.image--right .rsce_bgimage-stage.angle_backslash:before {
    right: 0; }
  .rsce_bgimage.image--right .rsce_bgimage-stage.angle--shadow:after {
    right: 0; }
  .rsce_bgimage.image--right.w25 .rsce_bgimage-stage {
    margin-right: 25%; }
  .rsce_bgimage.image--right.w25 .rsce_bgimage-image {
    width: 25%;
    margin-left: 75%; }
  .rsce_bgimage.image--right.w33 .rsce_bgimage-stage {
    margin-right: 33.3333%; }
  .rsce_bgimage.image--right.w33 .rsce_bgimage-image {
    width: 33.3333%;
    margin-left: 66.6667%; }
  .rsce_bgimage.image--right.w40 .rsce_bgimage-stage {
    margin-right: 40%; }
  .rsce_bgimage.image--right.w40 .rsce_bgimage-image {
    width: 40%;
    margin-left: 60%; }
  .rsce_bgimage.image--right.w50 .rsce_bgimage-stage {
    margin-right: 50%; }
  .rsce_bgimage.image--right.w50 .rsce_bgimage-image {
    width: 50%;
    margin-left: 50%; } }

@media screen and (min-width: 2561px) {
  .rsce_bgimage .rsce_bgimage-image .image_container img {
    display: none !important; } }

.rsce_bgimage .mobile_image {
  display: none; }

.rsce_bgimage .rsce_bgimage-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat; }
  .rsce_bgimage .rsce_bgimage-image.rsce_bgimage-position_l-t {
    background-position: left top; }
  .rsce_bgimage .rsce_bgimage-image.rsce_bgimage-position_l-c {
    background-position: left center; }
  .rsce_bgimage .rsce_bgimage-image.rsce_bgimage-position_l-b {
    background-position: left bottom; }
  .rsce_bgimage .rsce_bgimage-image.rsce_bgimage-position_c-t {
    background-position: center top; }
  .rsce_bgimage .rsce_bgimage-image.rsce_bgimage-position_c-c {
    background-position: center center; }
  .rsce_bgimage .rsce_bgimage-image.rsce_bgimage-position_c-b {
    background-position: center bottom; }
  .rsce_bgimage .rsce_bgimage-image.rsce_bgimage-position_r-t {
    background-position: right top; }
  .rsce_bgimage .rsce_bgimage-image.rsce_bgimage-position_r-c {
    background-position: right center; }
  .rsce_bgimage .rsce_bgimage-image.rsce_bgimage-position_r-b {
    background-position: right bottom; }

@media screen and (max-width: 47.9375em) {
  .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h1.align--left,
  .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h1.align--right .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h1.align--center, .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h2.align--left,
  .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h2.align--right .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h1.align--center, .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h3.align--left,
  .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h3.align--right .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h1.align--center, .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h4.align--left,
  .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h4.align--right .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h1.align--center, .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h5.align--left,
  .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h5.align--right .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h1.align--center, .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h6.align--left,
  .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h6.align--right .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h1.align--center,
  .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h1.align--right .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h2.align--center,
  .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h2.align--right .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h2.align--center,
  .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h3.align--right .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h2.align--center,
  .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h4.align--right .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h2.align--center,
  .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h5.align--right .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h2.align--center,
  .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h6.align--right .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h2.align--center,
  .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h1.align--right .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h3.align--center,
  .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h2.align--right .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h3.align--center,
  .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h3.align--right .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h3.align--center,
  .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h4.align--right .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h3.align--center,
  .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h5.align--right .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h3.align--center,
  .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h6.align--right .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h3.align--center,
  .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h1.align--right .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h4.align--center,
  .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h2.align--right .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h4.align--center,
  .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h3.align--right .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h4.align--center,
  .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h4.align--right .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h4.align--center,
  .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h5.align--right .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h4.align--center,
  .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h6.align--right .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h4.align--center,
  .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h1.align--right .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h5.align--center,
  .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h2.align--right .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h5.align--center,
  .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h3.align--right .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h5.align--center,
  .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h4.align--right .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h5.align--center,
  .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h5.align--right .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h5.align--center,
  .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h6.align--right .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h5.align--center,
  .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h1.align--right .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h6.align--center,
  .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h2.align--right .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h6.align--center,
  .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h3.align--right .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h6.align--center,
  .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h4.align--right .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h6.align--center,
  .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h5.align--right .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h6.align--center,
  .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h6.align--right .rsce_bgimage.has--image.image--left.full_width .ce_rsce_headline_advanced h6.align--center {
    text-align: center; }
  .rsce_bgimage.has--image.image--left.full_width .ce_rsce_text_advanced.align--left, .rsce_bgimage.has--image.image--left.full_width .ce_rsce_text_advanced.align--right, .rsce_bgimage.has--image.image--left.full_width .ce_rsce_text_advanced.align--center {
    text-align: center; }
  .rsce_bgimage.has--image.image--left.full_width .ce_rsce_calltoaction.align--left, .rsce_bgimage.has--image.image--left.full_width .ce_rsce_calltoaction.align--right, .rsce_bgimage.has--image.image--left.full_width .ce_rsce_calltoaction.align--center {
    text-align: center; } }

@media screen and (min-width: 48em) {
  .rsce_bgimage .rsce_bgimage-stage {
    position: relative; }
    .rsce_bgimage .rsce_bgimage-stage:before, .rsce_bgimage .rsce_bgimage-stage:after {
      z-index: 0; } }

#main .ce_rsce_kachel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  @media screen and (min-width: 0) {
    #main .ce_rsce_kachel .item {
      -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
      -webkit-box-flex: 0;
      -ms-flex-positive: 0;
      flex-grow: 0;
      -ms-flex-negative: 0;
      flex-shrink: 0; } }
  @media screen and (min-width: 48em) {
    #main .ce_rsce_kachel .item {
      -ms-flex-preferred-size: 50%;
      flex-basis: 50%; } }
  @media screen and (min-width: 58.75em) {
    #main .ce_rsce_kachel .item {
      -ms-flex-preferred-size: 33.3333%;
      flex-basis: 33.3333%; } }
  #main .ce_rsce_kachel .full_link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; }
  #main .ce_rsce_kachel .item {
    overflow: hidden; }
    #main .ce_rsce_kachel .item .text_container {
      position: absolute;
      height: 100%;
      width: 100%;
      left: 0;
      top: 0; }
      #main .ce_rsce_kachel .item .text_container h3.ce_headline,
      #main .ce_rsce_kachel .item .text_container .inner_text {
        position: absolute;
        bottom: 10%;
        left: 0;
        margin: 0;
        color: #FFF;
        text-transform: uppercase;
        font-weight: 100;
        padding: .5rem 1rem;
        background: rgba(0, 79, 145, 0.67);
        -webkit-transition: bottom 0.3s cubic-bezier(0.82, 0.78, 0.19, 0.96), left 0.1s cubic-bezier(0.73, 0.72, 0.81, 1.44) 0.3s;
        -o-transition: bottom 0.3s cubic-bezier(0.82, 0.78, 0.19, 0.96), left 0.1s cubic-bezier(0.73, 0.72, 0.81, 1.44) 0.3s;
        transition: bottom 0.3s cubic-bezier(0.82, 0.78, 0.19, 0.96), left 0.1s cubic-bezier(0.73, 0.72, 0.81, 1.44) 0.3s; }
        @media screen and (min-width: 541px) and (max-width: 1279px) {
          #main .ce_rsce_kachel .item .text_container h3.ce_headline,
          #main .ce_rsce_kachel .item .text_container .inner_text {
            font-size: 1rem;
            -webkit-transition: top 0.3s cubic-bezier(0.82, 0.78, 0.19, 0.96), left 0.1s cubic-bezier(0.73, 0.72, 0.81, 1.44) 0.3s;
            -o-transition: top 0.3s cubic-bezier(0.82, 0.78, 0.19, 0.96), left 0.1s cubic-bezier(0.73, 0.72, 0.81, 1.44) 0.3s;
            transition: top 0.3s cubic-bezier(0.82, 0.78, 0.19, 0.96), left 0.1s cubic-bezier(0.73, 0.72, 0.81, 1.44) 0.3s; } }
      #main .ce_rsce_kachel .item .text_container .inner_text {
        top: 100%;
        -webkit-transition: all 0.4s cubic-bezier(0.82, 0.78, 0.19, 0.96);
        -o-transition: all 0.4s cubic-bezier(0.82, 0.78, 0.19, 0.96);
        transition: all 0.4s cubic-bezier(0.82, 0.78, 0.19, 0.96);
        text-transform: none;
        background: rgba(255, 255, 255, 0.67);
        color: #004f91;
        font-weight: 400;
        bottom: auto;
        left: 1rem;
        right: 1rem; }
        @media screen and (min-width: 541px) and (max-width: 1279px) {
          #main .ce_rsce_kachel .item .text_container .inner_text {
            font-size: 0.875rem; } }
    #main .ce_rsce_kachel .item.hasText:hover .text_container h3.ce_headline {
      bottom: 80%;
      left: 1rem; }
      @media screen and (max-width: 1279px) {
        #main .ce_rsce_kachel .item.hasText:hover .text_container h3.ce_headline {
          top: 0;
          bottom: auto; } }
    #main .ce_rsce_kachel .item.hasText:hover .text_container .inner_text {
      top: 20%; }
      @media screen and (min-width: 941px) and (max-width: 1279px) {
        #main .ce_rsce_kachel .item.hasText:hover .text_container .inner_text {
          top: 3rem; } }
      @media screen and (min-width: 541px) and (max-width: 940px) {
        #main .ce_rsce_kachel .item.hasText:hover .text_container .inner_text {
          top: 4rem; } }

[class*="col-"] .calltoaction a, [class*="col-"] .calltoaction a:visited, [class*="col-"] .calltoaction a:active {
  width: 100%;
  text-align: center; }

[class*="col-"].sidebar-column .calltoaction a, [class*="col-"].sidebar-column .calltoaction a:visited, [class*="col-"].sidebar-column .calltoaction a:active {
  text-align: left; }

.calltoaction {
  margin-bottom: 1rem; }
  @media screen and (max-width: 768px) {
    .calltoaction {
      text-align: center;
      width: 100% !important; } }
  .calltoaction a, .calltoaction a:visited, .calltoaction a:active {
    color: #FFFFFF;
    padding: .5rem 1rem;
    font-size: 1rem;
    display: inline-block;
    text-decoration: none;
    width: auto;
    font-weight: 300;
    border: 2px solid;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    font-weight: 600;
    text-align: center;
    font-family: "ff-meta-web-pro", sans-serif; }
    .calltoaction a[data-aos^=fade][data-aos^=fade], .calltoaction a:visited[data-aos^=fade][data-aos^=fade], .calltoaction a:active[data-aos^=fade][data-aos^=fade] {
      -webkit-transition-property: all;
      -o-transition-property: all;
      transition-property: all; }
    @media screen and (max-width: 47.9375em) {
      .calltoaction a, .calltoaction a:visited, .calltoaction a:active {
        width: 75% !important; } }
  .calltoaction.button--hyperlink a, .calltoaction.button--hyperlink a:visited, .calltoaction.button--hyperlink a:active {
    padding: .5rem 0;
    border: 0; }
  .calltoaction.bg-transparent a, .calltoaction.bg-transparent a:visited, .calltoaction.bg-transparent a:active {
    background: transparent; }
  .calltoaction.bg-default a, .calltoaction.bg-default a:visited, .calltoaction.bg-default a:active {
    background: #004f91; }
  .calltoaction.bg-mark a, .calltoaction.bg-mark a:visited, .calltoaction.bg-mark a:active {
    background: #001849; }
  .calltoaction.bg-white a, .calltoaction.bg-white a:visited, .calltoaction.bg-white a:active {
    background: #FFF; }
  .calltoaction.bg-black a, .calltoaction.bg-black a:visited, .calltoaction.bg-black a:active {
    background: #000; }
  .calltoaction.bg-highlight a, .calltoaction.bg-highlight a:visited, .calltoaction.bg-highlight a:active {
    background: #f5d400; }
  .calltoaction[class^="bg-"].button--hyperlink a {
    background: none; }
  .calltoaction.color-default a, .calltoaction.color-default a:visited, .calltoaction.color-default a:active {
    color: #004f91; }
  .calltoaction.color-default.button--boxed a {
    border-color: #004f91; }
  .calltoaction.color-default.button--default a {
    border-color: transparent; }
  .calltoaction.color-mark a, .calltoaction.color-mark a:visited, .calltoaction.color-mark a:active {
    color: #001849; }
  .calltoaction.color-mark.button--boxed a {
    border-color: #001849; }
  .calltoaction.color-mark.button--default a {
    border-color: transparent; }
  .calltoaction.color-white a, .calltoaction.color-white a:visited, .calltoaction.color-white a:active {
    color: #FFF; }
  .calltoaction.color-white.button--boxed a {
    border-color: #FFF; }
  .calltoaction.color-white.button--default a {
    border-color: transparent; }
  .calltoaction.color-black a, .calltoaction.color-black a:visited, .calltoaction.color-black a:active {
    color: #000; }
  .calltoaction.color-black.button--boxed a {
    border-color: #000; }
  .calltoaction.color-black.button--default a {
    border-color: transparent; }
  .calltoaction.hover-bg-default a:hover {
    background: #004f91; }
  .calltoaction.hover-bg-default.button--boxed a {
    border-color: #004f91; }
  .calltoaction.hover-bg-mark a:hover {
    background: #001849; }
  .calltoaction.hover-bg-mark.button--boxed a {
    border-color: #001849; }
  .calltoaction.hover-bg-white a:hover {
    background: #FFF; }
  .calltoaction.hover-bg-white.button--boxed a {
    border-color: #FFF; }
  .calltoaction.hover-bg-black a:hover {
    background: #000; }
  .calltoaction.hover-bg-black.button--boxed a {
    border-color: #000; }
  .calltoaction.hover-bg-highlight a:hover {
    background: #f5d400; }
  .calltoaction[class^="hover-bg-"].button--hyperlink a {
    border: 0;
    background: none; }
    .calltoaction[class^="hover-bg-"].button--hyperlink a:hover {
      border: 0;
      background: none; }
  .calltoaction.hover-color-default a:hover {
    color: #004f91; }
  .calltoaction.hover-color-mark a:hover {
    color: #001849; }
  .calltoaction.hover-color-white a:hover {
    color: #FFF !important; }
  .calltoaction.hover-color-black a:hover {
    color: #000; }
  .calltoaction.hover-color-highlight a:hover {
    color: #f5d400; }

.ce_rsce_headline_advanced.color--default *,
.ce_rsce_text_image_advanced.color--default *,
.ce_rsce_text_advanced.color--default * {
  color: #004f91; }

.ce_rsce_headline_advanced.color--mark *,
.ce_rsce_text_image_advanced.color--mark *,
.ce_rsce_text_advanced.color--mark * {
  color: #001849; }

.ce_rsce_headline_advanced.color--dark-grey *,
.ce_rsce_text_image_advanced.color--dark-grey *,
.ce_rsce_text_advanced.color--dark-grey * {
  color: #333; }

.ce_rsce_headline_advanced.color--light-grey *,
.ce_rsce_text_image_advanced.color--light-grey *,
.ce_rsce_text_advanced.color--light-grey * {
  color: #f5f5f5; }

.ce_rsce_headline_advanced.color--black *,
.ce_rsce_text_image_advanced.color--black *,
.ce_rsce_text_advanced.color--black * {
  color: #000; }

.ce_rsce_headline_advanced.color--white *,
.ce_rsce_text_image_advanced.color--white *,
.ce_rsce_text_advanced.color--white * {
  color: #FFF; }

@media screen and (min-width: 0) {
  .ce_rsce_headline_advanced h1, .ce_rsce_headline_advanced h2.likeH1, .ce_rsce_headline_advanced .likeH1 h2,
  .ce_rsce_text_image_advanced h1,
  .ce_rsce_text_image_advanced h2.likeH1,
  .ce_rsce_text_image_advanced .likeH1 h2,
  .ce_rsce_text_advanced h1,
  .ce_rsce_text_advanced h2.likeH1,
  .ce_rsce_text_advanced .likeH1 h2 {
    font-size: 175%; } }

@media screen and (min-width: 68.75em) {
  .ce_rsce_headline_advanced h1, .ce_rsce_headline_advanced h2.likeH1, .ce_rsce_headline_advanced .likeH1 h2,
  .ce_rsce_text_image_advanced h1,
  .ce_rsce_text_image_advanced h2.likeH1,
  .ce_rsce_text_image_advanced .likeH1 h2,
  .ce_rsce_text_advanced h1,
  .ce_rsce_text_advanced h2.likeH1,
  .ce_rsce_text_advanced .likeH1 h2 {
    font-size: 220%; } }

@media screen and (min-width: 0) {
  .ce_rsce_headline_advanced.font-size-250 h1, .ce_rsce_headline_advanced.font-size-250 h2, .ce_rsce_headline_advanced.font-size-250 h3, .ce_rsce_headline_advanced.font-size-250 h4, .ce_rsce_headline_advanced.font-size-250 h5, .ce_rsce_headline_advanced.font-size-250 h6,
  .ce_rsce_text_image_advanced.font-size-250 h1,
  .ce_rsce_text_image_advanced.font-size-250 h2,
  .ce_rsce_text_image_advanced.font-size-250 h3,
  .ce_rsce_text_image_advanced.font-size-250 h4,
  .ce_rsce_text_image_advanced.font-size-250 h5,
  .ce_rsce_text_image_advanced.font-size-250 h6,
  .ce_rsce_text_advanced.font-size-250 h1,
  .ce_rsce_text_advanced.font-size-250 h2,
  .ce_rsce_text_advanced.font-size-250 h3,
  .ce_rsce_text_advanced.font-size-250 h4,
  .ce_rsce_text_advanced.font-size-250 h5,
  .ce_rsce_text_advanced.font-size-250 h6 {
    font-size: 175%; }
  .ce_rsce_headline_advanced.font-size-300 h1, .ce_rsce_headline_advanced.font-size-300 h2, .ce_rsce_headline_advanced.font-size-300 h3, .ce_rsce_headline_advanced.font-size-300 h4, .ce_rsce_headline_advanced.font-size-300 h5, .ce_rsce_headline_advanced.font-size-300 h6,
  .ce_rsce_text_image_advanced.font-size-300 h1,
  .ce_rsce_text_image_advanced.font-size-300 h2,
  .ce_rsce_text_image_advanced.font-size-300 h3,
  .ce_rsce_text_image_advanced.font-size-300 h4,
  .ce_rsce_text_image_advanced.font-size-300 h5,
  .ce_rsce_text_image_advanced.font-size-300 h6,
  .ce_rsce_text_advanced.font-size-300 h1,
  .ce_rsce_text_advanced.font-size-300 h2,
  .ce_rsce_text_advanced.font-size-300 h3,
  .ce_rsce_text_advanced.font-size-300 h4,
  .ce_rsce_text_advanced.font-size-300 h5,
  .ce_rsce_text_advanced.font-size-300 h6 {
    font-size: 220%; }
  .ce_rsce_headline_advanced.font-size-400 h1, .ce_rsce_headline_advanced.font-size-400 h2, .ce_rsce_headline_advanced.font-size-400 h3, .ce_rsce_headline_advanced.font-size-400 h4, .ce_rsce_headline_advanced.font-size-400 h5, .ce_rsce_headline_advanced.font-size-400 h6,
  .ce_rsce_text_image_advanced.font-size-400 h1,
  .ce_rsce_text_image_advanced.font-size-400 h2,
  .ce_rsce_text_image_advanced.font-size-400 h3,
  .ce_rsce_text_image_advanced.font-size-400 h4,
  .ce_rsce_text_image_advanced.font-size-400 h5,
  .ce_rsce_text_image_advanced.font-size-400 h6,
  .ce_rsce_text_advanced.font-size-400 h1,
  .ce_rsce_text_advanced.font-size-400 h2,
  .ce_rsce_text_advanced.font-size-400 h3,
  .ce_rsce_text_advanced.font-size-400 h4,
  .ce_rsce_text_advanced.font-size-400 h5,
  .ce_rsce_text_advanced.font-size-400 h6 {
    font-size: 270%; }
  .ce_rsce_headline_advanced.font-size-500 h1, .ce_rsce_headline_advanced.font-size-500 h2, .ce_rsce_headline_advanced.font-size-500 h3, .ce_rsce_headline_advanced.font-size-500 h4, .ce_rsce_headline_advanced.font-size-500 h5, .ce_rsce_headline_advanced.font-size-500 h6,
  .ce_rsce_text_image_advanced.font-size-500 h1,
  .ce_rsce_text_image_advanced.font-size-500 h2,
  .ce_rsce_text_image_advanced.font-size-500 h3,
  .ce_rsce_text_image_advanced.font-size-500 h4,
  .ce_rsce_text_image_advanced.font-size-500 h5,
  .ce_rsce_text_image_advanced.font-size-500 h6,
  .ce_rsce_text_advanced.font-size-500 h1,
  .ce_rsce_text_advanced.font-size-500 h2,
  .ce_rsce_text_advanced.font-size-500 h3,
  .ce_rsce_text_advanced.font-size-500 h4,
  .ce_rsce_text_advanced.font-size-500 h5,
  .ce_rsce_text_advanced.font-size-500 h6 {
    font-size: 320%; } }

@media screen and (min-width: 68.75em) {
  .ce_rsce_headline_advanced.font-size-250 h1, .ce_rsce_headline_advanced.font-size-250 h2, .ce_rsce_headline_advanced.font-size-250 h3, .ce_rsce_headline_advanced.font-size-250 h4, .ce_rsce_headline_advanced.font-size-250 h5, .ce_rsce_headline_advanced.font-size-250 h6,
  .ce_rsce_text_image_advanced.font-size-250 h1,
  .ce_rsce_text_image_advanced.font-size-250 h2,
  .ce_rsce_text_image_advanced.font-size-250 h3,
  .ce_rsce_text_image_advanced.font-size-250 h4,
  .ce_rsce_text_image_advanced.font-size-250 h5,
  .ce_rsce_text_image_advanced.font-size-250 h6,
  .ce_rsce_text_advanced.font-size-250 h1,
  .ce_rsce_text_advanced.font-size-250 h2,
  .ce_rsce_text_advanced.font-size-250 h3,
  .ce_rsce_text_advanced.font-size-250 h4,
  .ce_rsce_text_advanced.font-size-250 h5,
  .ce_rsce_text_advanced.font-size-250 h6 {
    font-size: 220%; }
  .ce_rsce_headline_advanced.font-size-300 h1, .ce_rsce_headline_advanced.font-size-300 h2, .ce_rsce_headline_advanced.font-size-300 h3, .ce_rsce_headline_advanced.font-size-300 h4, .ce_rsce_headline_advanced.font-size-300 h5, .ce_rsce_headline_advanced.font-size-300 h6,
  .ce_rsce_text_image_advanced.font-size-300 h1,
  .ce_rsce_text_image_advanced.font-size-300 h2,
  .ce_rsce_text_image_advanced.font-size-300 h3,
  .ce_rsce_text_image_advanced.font-size-300 h4,
  .ce_rsce_text_image_advanced.font-size-300 h5,
  .ce_rsce_text_image_advanced.font-size-300 h6,
  .ce_rsce_text_advanced.font-size-300 h1,
  .ce_rsce_text_advanced.font-size-300 h2,
  .ce_rsce_text_advanced.font-size-300 h3,
  .ce_rsce_text_advanced.font-size-300 h4,
  .ce_rsce_text_advanced.font-size-300 h5,
  .ce_rsce_text_advanced.font-size-300 h6 {
    font-size: 270%; }
  .ce_rsce_headline_advanced.font-size-400 h1, .ce_rsce_headline_advanced.font-size-400 h2, .ce_rsce_headline_advanced.font-size-400 h3, .ce_rsce_headline_advanced.font-size-400 h4, .ce_rsce_headline_advanced.font-size-400 h5, .ce_rsce_headline_advanced.font-size-400 h6,
  .ce_rsce_text_image_advanced.font-size-400 h1,
  .ce_rsce_text_image_advanced.font-size-400 h2,
  .ce_rsce_text_image_advanced.font-size-400 h3,
  .ce_rsce_text_image_advanced.font-size-400 h4,
  .ce_rsce_text_image_advanced.font-size-400 h5,
  .ce_rsce_text_image_advanced.font-size-400 h6,
  .ce_rsce_text_advanced.font-size-400 h1,
  .ce_rsce_text_advanced.font-size-400 h2,
  .ce_rsce_text_advanced.font-size-400 h3,
  .ce_rsce_text_advanced.font-size-400 h4,
  .ce_rsce_text_advanced.font-size-400 h5,
  .ce_rsce_text_advanced.font-size-400 h6 {
    font-size: 370%; }
  .ce_rsce_headline_advanced.font-size-500 h1, .ce_rsce_headline_advanced.font-size-500 h2, .ce_rsce_headline_advanced.font-size-500 h3, .ce_rsce_headline_advanced.font-size-500 h4, .ce_rsce_headline_advanced.font-size-500 h5, .ce_rsce_headline_advanced.font-size-500 h6,
  .ce_rsce_text_image_advanced.font-size-500 h1,
  .ce_rsce_text_image_advanced.font-size-500 h2,
  .ce_rsce_text_image_advanced.font-size-500 h3,
  .ce_rsce_text_image_advanced.font-size-500 h4,
  .ce_rsce_text_image_advanced.font-size-500 h5,
  .ce_rsce_text_image_advanced.font-size-500 h6,
  .ce_rsce_text_advanced.font-size-500 h1,
  .ce_rsce_text_advanced.font-size-500 h2,
  .ce_rsce_text_advanced.font-size-500 h3,
  .ce_rsce_text_advanced.font-size-500 h4,
  .ce_rsce_text_advanced.font-size-500 h5,
  .ce_rsce_text_advanced.font-size-500 h6 {
    font-size: 450%; } }

.ce_rsce_headline_advanced .headline-accent,
.ce_rsce_text_image_advanced .headline-accent,
.ce_rsce_text_advanced .headline-accent {
  color: #004f91; }

.ce_rsce_headline_advanced .headline--sub,
.ce_rsce_text_image_advanced .headline--sub,
.ce_rsce_text_advanced .headline--sub {
  font-size: 1.25rem;
  color: rgba(101, 100, 100, 0.5); }

.ce_rsce_headline_advanced .headline-white,
.ce_rsce_headline_advanced.headline-white .ce_headline,
.ce_rsce_text_image_advanced .headline-white,
.ce_rsce_text_image_advanced.headline-white .ce_headline,
.ce_rsce_text_advanced .headline-white,
.ce_rsce_text_advanced.headline-white .ce_headline {
  color: #FFF; }

.ce_rsce_headline_advanced .headline-black,
.ce_rsce_headline_advanced.headline-black .ce_headline,
.ce_rsce_text_image_advanced .headline-black,
.ce_rsce_text_image_advanced.headline-black .ce_headline,
.ce_rsce_text_advanced .headline-black,
.ce_rsce_text_advanced.headline-black .ce_headline {
  color: #656464; }

.ce_rsce_headline_advanced .big,
.ce_rsce_headline_advanced.big .ce_headline,
.ce_rsce_text_image_advanced .big,
.ce_rsce_text_image_advanced.big .ce_headline,
.ce_rsce_text_advanced .big,
.ce_rsce_text_advanced.big .ce_headline {
  font-size: 3rem; }

.ce_rsce_headline_advanced .small,
.ce_rsce_headline_advanced.small .ce_headline,
.ce_rsce_text_image_advanced .small,
.ce_rsce_text_image_advanced.small .ce_headline,
.ce_rsce_text_advanced .small,
.ce_rsce_text_advanced.small .ce_headline {
  font-size: 2.4rem; }

.gradient--default-mark .ce_rsce_headline_advanced .headline--sub,
.gradient--mark-default .ce_rsce_headline_advanced .headline--sub,
.gradient--default-transparent .ce_rsce_headline_advanced .headline--sub,
.color--default .ce_rsce_headline_advanced .headline--sub,
.color--mark .ce_rsce_headline_advanced .headline--sub {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 700; }

.rsce_bgimage:not(.colored) .ce_rsce_headline_advanced h1, .rsce_bgimage:not(.colored) .ce_rsce_headline_advanced h2, .rsce_bgimage:not(.colored) .ce_rsce_headline_advanced h3, .rsce_bgimage:not(.colored) .ce_rsce_headline_advanced h4, .rsce_bgimage:not(.colored) .ce_rsce_headline_advanced h5, .rsce_bgimage:not(.colored) .ce_rsce_headline_advanced h6,
.rsce_bgimage:not(.colored) .ce_rsce_text_advanced h1,
.rsce_bgimage:not(.colored) .ce_rsce_text_advanced h2,
.rsce_bgimage:not(.colored) .ce_rsce_text_advanced h3,
.rsce_bgimage:not(.colored) .ce_rsce_text_advanced h4,
.rsce_bgimage:not(.colored) .ce_rsce_text_advanced h5,
.rsce_bgimage:not(.colored) .ce_rsce_text_advanced h6 {
  color: #656464; }

.rsce_bgimage:not(.colored) .ce_rsce_headline_advanced .headline--sub,
.rsce_bgimage:not(.colored) .ce_rsce_headline_advanced .headline-accent,
.rsce_bgimage:not(.colored) .ce_rsce_text_advanced .headline--sub,
.rsce_bgimage:not(.colored) .ce_rsce_text_advanced .headline-accent {
  color: #004f91; }

.ce_rsce_teaser {
  margin: 2rem 0; }
  .ce_rsce_teaser h4 {
    color: #001849;
    padding: 1rem 0;
    line-height: 1.3;
    margin-bottom: 0;
    padding-bottom: 0; }
  .ce_rsce_teaser .text_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }
  .ce_rsce_teaser .ce_text {
    margin: .5rem 0; }
  .ce_rsce_teaser .link a,
  .ce_rsce_teaser .link a:visited, .ce_rsce_teaser .link a:active {
    color: #f5d400;
    left: -20px;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    position: relative;
    font-family: "ff-meta-web-pro", sans-serif;
    font-style: italic; }
  .ce_rsce_teaser .link a:before {
    content: "\e876";
    font-family: "Linearicons-Free";
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    display: inline-block;
    width: 20px; }
  .ce_rsce_teaser .link a:hover {
    left: 0; }
    .ce_rsce_teaser .link a:hover:before {
      -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
      transform: translateX(0); }
  @media screen and (max-width: 768px) {
    .ce_rsce_teaser .link {
      text-align: center; } }

.ce_rsce_text_advanced .headline-accent {
  color: #004f91; }
  @media screen and (max-width: 47.9375em) {
    .ce_rsce_text_advanced .headline-accent {
      display: block; } }

.ce_rsce_text_advanced.color--default * {
  color: #004f91; }

.ce_rsce_text_advanced.color--mark * {
  color: #001849; }

.ce_rsce_text_advanced.color--dark-grey * {
  color: #333; }

.ce_rsce_text_advanced.color--light-grey * {
  color: #f5f5f5; }

.ce_rsce_text_advanced.color--black * {
  color: #000; }

.ce_rsce_text_advanced.color--white * {
  color: #FFF; }

.ce_rsce_text_advanced.limit_text_width {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto; }

@media screen and (min-width: 0) {
  .ce_rsce_text_advanced.font-size-125 p, .ce_rsce_text_advanced.font-size-125 ul {
    font-size: 115%; }
  .ce_rsce_text_advanced.font-size-150 p, .ce_rsce_text_advanced.font-size-150 ul {
    font-size: 125%; }
  .ce_rsce_text_advanced.font-size-175 p, .ce_rsce_text_advanced.font-size-175 ul {
    font-size: 140%; }
  .ce_rsce_text_advanced.font-size-200 p, .ce_rsce_text_advanced.font-size-200 ul {
    font-size: 150%; } }

@media screen and (min-width: 68.75em) {
  .ce_rsce_text_advanced.font-size-125 p, .ce_rsce_text_advanced.font-size-125 ul {
    font-size: 125%; }
  .ce_rsce_text_advanced.font-size-150 p, .ce_rsce_text_advanced.font-size-150 ul {
    font-size: 150%; }
  .ce_rsce_text_advanced.font-size-175 p, .ce_rsce_text_advanced.font-size-175 ul {
    font-size: 175%; }
  .ce_rsce_text_advanced.font-size-200 p, .ce_rsce_text_advanced.font-size-200 ul {
    font-size: 200%; } }

.ce_rsce_text_advanced .ce_text {
  margin: 0;
  -webkit-column-gap: 15px;
  -moz-column-gap: 15px;
  column-gap: 15px; }
  .ce_rsce_text_advanced .ce_text.columngap_small {
    -webkit-column-gap: 8px;
    -moz-column-gap: 8px;
    column-gap: 8px; }
  .ce_rsce_text_advanced .ce_text.columngap_medium {
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px; }
  .ce_rsce_text_advanced .ce_text.columngap_large {
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px; }
  .ce_rsce_text_advanced .ce_text.columngap_xlarge {
    -webkit-column-gap: 45px;
    -moz-column-gap: 45px;
    column-gap: 45px; }
  .ce_rsce_text_advanced .ce_text.columncount_4 {
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4; }
    @media screen and (max-width: 58.6875em) {
      .ce_rsce_text_advanced .ce_text.columncount_4 {
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2; } }
    @media screen and (max-width: 47.9375em) {
      .ce_rsce_text_advanced .ce_text.columncount_4 {
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1; } }
  .ce_rsce_text_advanced .ce_text.columncount_3 {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3; }
    @media screen and (max-width: 47.9375em) {
      .ce_rsce_text_advanced .ce_text.columncount_3 {
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1; } }
  .ce_rsce_text_advanced .ce_text.columncount_2 {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2; }
    @media screen and (max-width: 47.9375em) {
      .ce_rsce_text_advanced .ce_text.columncount_2 {
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1; } }

@media screen and (min-width: 0) {
  .ce_rsce_text_advanced .ce_headline.font-size-250 h1, .ce_rsce_text_advanced .ce_headline.font-size-250 h2, .ce_rsce_text_advanced .ce_headline.font-size-250 h3, .ce_rsce_text_advanced .ce_headline.font-size-250 h4, .ce_rsce_text_advanced .ce_headline.font-size-250 h5, .ce_rsce_text_advanced .ce_headline.font-size-250 h6 {
    font-size: 200%; }
  .ce_rsce_text_advanced .ce_headline.font-size-300 h1, .ce_rsce_text_advanced .ce_headline.font-size-300 h2, .ce_rsce_text_advanced .ce_headline.font-size-300 h3, .ce_rsce_text_advanced .ce_headline.font-size-300 h4, .ce_rsce_text_advanced .ce_headline.font-size-300 h5, .ce_rsce_text_advanced .ce_headline.font-size-300 h6 {
    font-size: 250%; }
  .ce_rsce_text_advanced .ce_headline.font-size-400 h1, .ce_rsce_text_advanced .ce_headline.font-size-400 h2, .ce_rsce_text_advanced .ce_headline.font-size-400 h3, .ce_rsce_text_advanced .ce_headline.font-size-400 h4, .ce_rsce_text_advanced .ce_headline.font-size-400 h5, .ce_rsce_text_advanced .ce_headline.font-size-400 h6 {
    font-size: 300%; }
  .ce_rsce_text_advanced .ce_headline.font-size-500 h1, .ce_rsce_text_advanced .ce_headline.font-size-500 h2, .ce_rsce_text_advanced .ce_headline.font-size-500 h3, .ce_rsce_text_advanced .ce_headline.font-size-500 h4, .ce_rsce_text_advanced .ce_headline.font-size-500 h5, .ce_rsce_text_advanced .ce_headline.font-size-500 h6 {
    font-size: 350%; } }

@media screen and (min-width: 68.75em) {
  .ce_rsce_text_advanced .ce_headline.font-size-250 h1, .ce_rsce_text_advanced .ce_headline.font-size-250 h2, .ce_rsce_text_advanced .ce_headline.font-size-250 h3, .ce_rsce_text_advanced .ce_headline.font-size-250 h4, .ce_rsce_text_advanced .ce_headline.font-size-250 h5, .ce_rsce_text_advanced .ce_headline.font-size-250 h6 {
    font-size: 250%; }
  .ce_rsce_text_advanced .ce_headline.font-size-300 h1, .ce_rsce_text_advanced .ce_headline.font-size-300 h2, .ce_rsce_text_advanced .ce_headline.font-size-300 h3, .ce_rsce_text_advanced .ce_headline.font-size-300 h4, .ce_rsce_text_advanced .ce_headline.font-size-300 h5, .ce_rsce_text_advanced .ce_headline.font-size-300 h6 {
    font-size: 300%; }
  .ce_rsce_text_advanced .ce_headline.font-size-400 h1, .ce_rsce_text_advanced .ce_headline.font-size-400 h2, .ce_rsce_text_advanced .ce_headline.font-size-400 h3, .ce_rsce_text_advanced .ce_headline.font-size-400 h4, .ce_rsce_text_advanced .ce_headline.font-size-400 h5, .ce_rsce_text_advanced .ce_headline.font-size-400 h6 {
    font-size: 400%; }
  .ce_rsce_text_advanced .ce_headline.font-size-500 h1, .ce_rsce_text_advanced .ce_headline.font-size-500 h2, .ce_rsce_text_advanced .ce_headline.font-size-500 h3, .ce_rsce_text_advanced .ce_headline.font-size-500 h4, .ce_rsce_text_advanced .ce_headline.font-size-500 h5, .ce_rsce_text_advanced .ce_headline.font-size-500 h6 {
    font-size: 500%; } }

.hinweisbox .text_container {
  border: 2px solid #004f91;
  position: relative;
  font-weight: bold;
  color: #004f91; }
  .hinweisbox .text_container .headline {
    position: absolute;
    display: inline-block;
    top: -.25rem;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: .15rem .5rem;
    margin-left: 1rem;
    background: #FFF; }
    .hinweisbox .text_container .headline h1, .hinweisbox .text_container .headline h2, .hinweisbox .text_container .headline h3, .hinweisbox .text_container .headline h4, .hinweisbox .text_container .headline h5, .hinweisbox .text_container .headline h6 {
      font-size: 1.2rem; }
  .hinweisbox .text_container .text {
    padding: 1rem; }
    .hinweisbox .text_container .text ul {
      margin: 0;
      padding: 0;
      padding-left: 1rem; }
  .hinweisbox .text_container span.text {
    padding: 0; }
  .hinweisbox .text_container .headline-icon:before {
    content: attr(data-icon);
    font-family: "Font Awesome 5 Free";
    font-weight: 900; }
  .hinweisbox .text_container .headline-icon + span.text {
    margin-left: .5rem;
    padding: 0; }
  .hinweisbox .text_container.align--center .headline {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    top: auto;
    margin: 0;
    position: relative; }
  .hinweisbox .text_container.align--right .headline {
    left: auto;
    right: 0;
    margin-right: 1rem;
    margin-left: 0; }

.hinweisbox.success .text_container .headline, .hinweisbox.warning .text_container .headline, .hinweisbox.alert .text_container .headline {
  position: relative;
  top: auto;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  padding-bottom: 0;
  padding-top: .5rem; }

.rsce_bgimage[class*="color--"] .hinweisbox .text_container, .rsce_bgimage.gradient .hinweisbox .text_container {
  border-color: #FFF; }
  .rsce_bgimage[class*="color--"] .hinweisbox .text_container .headline, .rsce_bgimage.gradient .hinweisbox .text_container .headline {
    background: none;
    position: relative;
    top: auto;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    padding-bottom: 0; }

.leaflet-container {
  overflow: hidden !important; }

.leaflet-pane,
.leaflet-top {
  z-index: 1 !important; }

.jobposting .hide {
  display: none; }

.jobposting .hinweisbox {
  margin: 2rem 0; }
  .jobposting .hinweisbox .text_container, .jobposting .hinweisbox .text {
    height: 100%;
    color: #656464 !important;
    font-weight: normal; }
  .jobposting .hinweisbox .text_container {
    padding: .75rem 1rem; }
  .jobposting .hinweisbox .headline h3 {
    margin: 0; }

.mitarbeiter .image_container {
  margin-bottom: 1rem; }
  .mitarbeiter .image_container img {
    margin-left: 0; }

.mitarbeiter .text_container .name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: .5rem;
  display: block; }

.scrollToTop {
  position: fixed;
  bottom: 80px;
  right: 1rem;
  -webkit-transform: translateX(120px);
  -ms-transform: translateX(120px);
  transform: translateX(120px);
  width: 50px;
  height: 50px;
  text-align: center;
  cursor: pointer;
  z-index: 1999;
  background: rgba(255, 255, 255, 0.85);
  -webkit-box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.25);
  border-radius: 100%;
  -webkit-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  font-size: .8rem;
  line-height: 50px; }
  .scrollToTop.active {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: all .6s ease-in-out;
    -o-transition: all .6s ease-in-out;
    transition: all .6s ease-in-out; }
  .scrollToTop:hover, .scrollToTop:active, .scrollToTop:focus {
    bottom: 75px;
    -webkit-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    color: #004f91; }

@media screen and (max-width: 47.9375em) {
  body.cookiebar-active .scrollToTop {
    bottom: 155px; } }

/*
&lt;div class="scrollToTop"&gt;
&lt;i class="fa fa-chevron-up"&gt;&lt;/i&gt;
&lt;/div&gt;
*/
/**** COOKIEBAR *****/
.cookiebar {
  background: #f5d400;
  padding-top: 0;
  border-top: 2px solid white;
  padding-bottom: 0;
  height: 40px;
  font-size: .743rem;
  z-index: 1000;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease; }
  .cookiebar a, .cookiebar a:visited, .cookiebar a:active {
    background: #001849;
    text-decoration: none;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    color: #FFF;
    margin-right: 1.5em;
    padding: 0 12px;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    cursor: pointer; }
    .cookiebar a:hover, .cookiebar a:visited:hover, .cookiebar a:active:hover {
      opacity: .7;
      -webkit-transition: all .3s ease;
      -o-transition: all .3s ease;
      transition: all .3s ease; }
    .cookiebar a:active, .cookiebar a:visited:active, .cookiebar a:active:active {
      opacity: .7;
      -webkit-transition: all .3s ease;
      -o-transition: all .3s ease;
      transition: all .3s ease; }
  .cookiebar #cookiebar-text {
    margin-right: 0; }
  .cookiebar button {
    height: 40px;
    line-height: 20px;
    background: #FFF;
    color: #f5d400;
    font-weight: normal;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease; }
    .cookiebar button:hover {
      opacity: .88;
      -webkit-transition: all .3s ease;
      -o-transition: all .3s ease;
      transition: all .3s ease; }
    .cookiebar button.ga {
      margin-right: 1em;
      background: #4b4b4b;
      text-decoration: none;
      font-weight: 500; }
      .cookiebar button.ga:hover {
        background: #7e7e7e; }
  @media screen and (max-width: 1279px) {
    .cookiebar {
      padding-bottom: 10px;
      padding-top: 10px;
      height: auto; }
      .cookiebar #cookiebar-text {
        width: 100%;
        display: block;
        margin-bottom: 10px; } }
  @media screen and (max-width: 58.6875em) {
    .cookiebar #cookiebar-text {
      display: inline-block; }
    .cookiebar a, .cookiebar a:visited, .cookiebar a:active {
      display: inline-block; }
    .cookiebar button {
      display: inline; } }
  @media screen and (max-width: 34.3125em) {
    .cookiebar #cookiebar-text span {
      display: block; }
    .cookiebar a, .cookiebar a:visited, .cookiebar a:active {
      display: inline-block;
      width: auto; }
    .cookiebar button {
      display: inline-block;
      width: auto; } }

.overlay_container &gt; .inside {
  max-width: 62em;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 1.5rem 2rem;
  position: relative; }

.overlay {
  -webkit-transform: translateY(-1000%);
  -ms-transform: translateY(-1000%);
  transform: translateY(-1000%);
  opacity: 0;
  -webkit-transition: opacity .3s;
  -o-transition: opacity .3s;
  transition: opacity .3s;
  background: rgba(0, 79, 145, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }
  .overlay.active {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    z-index: 99999; }
    .overlay.active .close--overlay {
      cursor: pointer;
      opacity: 1; }

.overlay_container {
  width: 100%;
  overflow-y: auto;
  padding: 4rem 0;
  max-height: 100%; }
  .overlay_container &gt; .inside {
    background: #FFF;
    max-width: 62em;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 1.5rem 2rem;
    position: relative; }

.close--overlay {
  display: block;
  position: absolute;
  right: 2rem;
  top: .5rem;
  color: #FFF;
  font-size: 2rem;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease; }
  .close--overlay:hover {
    cursor: pointer;
    opacity: .6; }

.anfrage-form .overlay_container &gt; .inside {
  max-width: 80%; }
  @media screen and (min-width: 1921px) {
    .anfrage-form .overlay_container &gt; .inside {
      max-width: 62em;
      width: 100%;
      margin-left: auto;
      margin-right: auto; } }

.euf_overlay {
  z-index: 9999; }
  .euf_overlay .euf_overlay__content {
    max-width: 600px; }
    .euf_overlay .euf_overlay__content .euf_overlay__close {
      font-size: 30px;
      top: -13px; }

.rsce_bgimage.loader-active:before {
  z-index: 101; }

.loader {
  opacity: 1;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #004f91;
  top: 0;
  left: 0;
  z-index: 4;
  background-size: 600% 600%;
  -webkit-animation: gradAnim 16s cubic-bezier(0.82, 0.78, 0.19, 0.96) infinite;
  animation: gradAnim 16s cubic-bezier(0.82, 0.78, 0.19, 0.96) infinite;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }
  .loader.loaded {
    opacity: 0;
    z-index: -1; }

@-webkit-keyframes gradAnim {
  0% {
    background-position: 0% 51%; }
  50% {
    background-position: 100% 50%; }
  100% {
    background-position: 0% 51%; } }

@keyframes gradAnim {
  0% {
    background-position: 0% 51%; }
  50% {
    background-position: 100% 50%; }
  100% {
    background-position: 0% 51%; } }

.loader-inner {
  display: block;
  height: 64px;
  width: 64px;
  -webkit-animation: loader-2-1 3s linear infinite;
  animation: loader-2-1 3s linear infinite;
  margin-top: -15%; }

@-webkit-keyframes loader-2-1 {
  0% {
    -webkit-transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg); } }

@keyframes loader-2-1 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

.loader-inner span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  height: 64px;
  width: 64px;
  clip: rect(32px, 64px, 64px, 0);
  -webkit-animation: loader-2-2 1.5s cubic-bezier(0.77, 0, 0.175, 1) infinite;
  animation: loader-2-2 1.5s cubic-bezier(0.77, 0, 0.175, 1) infinite; }

@-webkit-keyframes loader-2-2 {
  0% {
    -webkit-transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg); } }

@keyframes loader-2-2 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

.loader-inner span::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  height: 64px;
  width: 64px;
  border: 3px solid transparent;
  border-top: 3px solid #FFF;
  border-radius: 50%;
  -webkit-animation: loader-2-3 1.5s cubic-bezier(0.77, 0, 0.175, 1) infinite;
  animation: loader-2-3 1.5s cubic-bezier(0.77, 0, 0.175, 1) infinite; }

@-webkit-keyframes loader-2-3 {
  0% {
    -webkit-transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg); } }

@keyframes loader-2-3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

.loader-inner span::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  height: 64px;
  width: 64px;
  border: 3px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%; }

/*
  	&lt;div class="loader"&gt;
		&lt;div class="wavy-loader"&gt;
		  &lt;span&gt;&lt;/span&gt;
		  &lt;span&gt;&lt;/span&gt;
		  &lt;span&gt;&lt;/span&gt;
		  &lt;span&gt;&lt;/span&gt;
		  &lt;span&gt;&lt;/span&gt;
		&lt;/div&gt;
	&lt;/div&gt;
  */
.mod_logo {
  height: 100px;
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
  @media screen and (max-width: 47.9375em) {
    .mod_logo {
      height: 90px;
      max-width: 120px; } }
  @media screen and (max-width: 34.3125em) {
    .mod_logo {
      height: 75px; } }

.mod_sidebar {
  position: absolute;
  top: 200px;
  right: 0;
  z-index: 99;
  height: 50vh;
  /*********************
        CLOSE BUTTONS
    *********************/
  /*********************
        SECTION CONTAINER
    *********************/
  /*********************
        SECTION BUTTONS
    *********************/ }
  @media screen and (min-width: 1921px) {
    .mod_sidebar {
      top: 280px; } }
  .mod_sidebar.stick-it {
    position: fixed;
    top: -8%;
    -webkit-transform: translateY(50%);
    -ms-transform: translateY(50%);
    transform: translateY(50%); }
  .mod_sidebar.active .sidebar-button {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease; }
  .mod_sidebar.active .sidebar-button:nth-of-type(2) {
    -webkit-transform: translate(100%, 100%);
    -ms-transform: translate(100%, 100%);
    transform: translate(100%, 100%); }
  .mod_sidebar.active .sidebar-button:nth-of-type(3) {
    -webkit-transform: translate(100%, 200%);
    -ms-transform: translate(100%, 200%);
    transform: translate(100%, 200%); }
  .mod_sidebar .sidebar-button--close {
    display: block;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    width: 30px;
    height: 30px;
    text-align: center;
    cursor: pointer;
    border-radius: 100%;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease; }
    .mod_sidebar .sidebar-button--close:before {
      font-family: 'Font Awesome 5 Free';
      line-height: 30px;
      content: "\f00d";
      color: #004f91;
      -webkit-transition: all .3s ease;
      -o-transition: all .3s ease;
      transition: all .3s ease;
      font-weight: 900; }
    .mod_sidebar .sidebar-button--close:hover {
      background: #001849; }
      .mod_sidebar .sidebar-button--close:hover:before {
        color: #f5f5f5;
        -webkit-transition: all .3s ease;
        -o-transition: all .3s ease;
        transition: all .3s ease; }
  .mod_sidebar .sidebar--infos {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    display: block;
    width: 380px;
    position: absolute;
    right: 0;
    padding: 1rem;
    background: #FFF;
    z-index: 99;
    -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.25);
    opacity: 0; }
    .mod_sidebar .sidebar--infos.active {
      -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
      transform: translateX(0);
      -webkit-transition: all .3s ease;
      -o-transition: all .3s ease;
      transition: all .3s ease;
      opacity: 1; }
    .mod_sidebar .sidebar--infos.mail {
      top: 120px; }
    .mod_sidebar .sidebar--infos.share {
      top: 240px; }
    .mod_sidebar .sidebar--infos .ce_accordion.ce_text {
      margin: .5rem 0; }
      .mod_sidebar .sidebar--infos .ce_accordion.ce_text .toggler {
        padding: 0;
        color: inherit;
        background: none;
        font-size: 1rem;
        font-weight: bold;
        border: 0;
        text-align: left; }
      .mod_sidebar .sidebar--infos .ce_accordion.ce_text .accordion {
        color: inherit; }
  .mod_sidebar .sidebar-button {
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    background: #004f91;
    cursor: pointer;
    width: 80px;
    height: 120px;
    position: absolute;
    right: 0;
    z-index: 101; }
    .mod_sidebar .sidebar-button:after {
      display: block;
      content: "";
      width: 90%;
      margin: 0 auto;
      height: 1px;
      background: rgba(255, 255, 255, 0.6); }
    @media screen and (max-width: 58.6875em) {
      .mod_sidebar .sidebar-button {
        height: 80px; } }
    @media screen and (max-width: 47.9375em) {
      .mod_sidebar .sidebar-button {
        height: 60px; } }
    .mod_sidebar .sidebar-button .inner {
      top: 50%;
      position: absolute;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      left: 50%; }
      @media screen and (max-width: 47.9375em) {
        .mod_sidebar .sidebar-button .inner {
          top: 45%; } }
    .mod_sidebar .sidebar-button span,
    .mod_sidebar .sidebar-button i.fa {
      display: block;
      color: #FFF;
      text-transform: uppercase;
      text-align: center;
      font-size: .65rem;
      line-height: 1.2; }
    .mod_sidebar .sidebar-button i.fa {
      font-size: 1.2rem;
      margin-bottom: .5rem; }
    .mod_sidebar .sidebar-button:hover {
      background: #004f91; }
  .mod_sidebar .sidebar-button:nth-of-type(1) i.fa {
    font-size: 1.4rem; }
  .mod_sidebar .sidebar-button:nth-of-type(1):after {
    content: none; }
  @media screen and (min-width: 58.75em) {
    .mod_sidebar .sidebar-button:nth-of-type(2) {
      -webkit-transform: translate(0, 100%);
      -ms-transform: translate(0, 100%);
      transform: translate(0, 100%); }
    .mod_sidebar .sidebar-button:nth-of-type(3) {
      -webkit-transform: translate(0, 200%);
      -ms-transform: translate(0, 200%);
      transform: translate(0, 200%);
      border-bottom: 0; } }
  @media screen and (max-width: 58.6875em) {
    .mod_sidebar {
      position: fixed;
      top: auto;
      bottom: 0;
      left: 0;
      width: 100%;
      height: auto;
      -webkit-transform: translate(0);
      -ms-transform: translate(0);
      transform: translate(0); }
      .mod_sidebar.stick-it {
        top: auto;
        -webkit-transform: translate(0);
        -ms-transform: translate(0);
        transform: translate(0); }
      .mod_sidebar .sidebar-button {
        width: 33.333%;
        -webkit-transform: translate(0);
        -ms-transform: translate(0);
        transform: translate(0);
        position: relative;
        right: auto;
        display: block;
        float: left; }
        .mod_sidebar .sidebar-button:after {
          content: none; }
      .mod_sidebar.active .sidebar-button {
        -webkit-transform: translateY(100%);
        -ms-transform: translateY(100%);
        transform: translateY(100%); }
      .mod_sidebar .sidebar--infos {
        -webkit-transform: translateY(100%);
        -ms-transform: translateY(100%);
        transform: translateY(100%);
        right: auto;
        left: 0;
        width: 100%;
        bottom: 0;
        top: auto !important; } }

.person {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 1rem 0; }
  .person .image_container {
    -webkit-box-flex: 6;
    -ms-flex: 6;
    flex: 6;
    margin-right: 1rem; }
    .person .image_container img {
      height: auto; }
  .person .text_container {
    -webkit-box-flex: 7;
    -ms-flex: 7;
    flex: 7; }
    .person .text_container p, .person .text_container .name {
      margin-bottom: 0;
      font-size: 0.85rem; }
    .person .text_container .name {
      font-size: 1rem; }
    .person .text_container .person-block {
      margin-bottom: 1rem;
      font-weight: bold; }

.mod_pageImage {
  margin-top: 100px; }
  @media screen and (max-width: 47.9375em) {
    .mod_pageImage {
      margin-top: 90px; } }
  @media screen and (max-width: 34.3125em) {
    .mod_pageImage {
      margin-top: 75px; } }
  .mod_pageImage figcaption {
    width: auto;
    top: 75%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    left: 0;
    color: #FFF;
    font-weight: 500;
    text-align: left;
    font-size: 2.2vw;
    line-height: 1.25;
    z-index: 10;
    text-transform: uppercase; }
    @media screen and (max-width: 58.6875em) {
      .mod_pageImage figcaption {
        font-size: 3vw;
        max-width: 100vw;
        padding: 2vw 3vw 2vw 0; } }
    .mod_pageImage figcaption p {
      margin: 0;
      background: #004f91;
      padding: .25rem 1rem .25rem 4rem;
      display: block;
      width: -webkit-fit-content;
      width: -moz-fit-content;
      width: fit-content;
      text-shadow: 0 1px 4px #000; }
  .mod_pageImage img {
    width: 100%; }

#main .sharebuttons ul.theme {
  margin-left: 0;
  padding-top: .5rem; }
  #main .sharebuttons ul.theme li {
    margin: .25rem .5rem; }
    #main .sharebuttons ul.theme li:first-of-type {
      margin-left: 0; }
    #main .sharebuttons ul.theme li:last-of-type {
      margin-right: 0; }

[data-aos][data-aos][data-aos-duration="50"], body[data-aos-duration="50"] [data-aos] {
  -webkit-transition-duration: 50ms;
  -o-transition-duration: 50ms;
  transition-duration: 50ms; }

[data-aos][data-aos][data-aos-delay="50"], body[data-aos-delay="50"] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="50"].aos-animate, body[data-aos-delay="50"] [data-aos].aos-animate {
  -webkit-transition-delay: 50ms;
  -o-transition-delay: 50ms;
  transition-delay: 50ms; }

[data-aos][data-aos][data-aos-duration="100"], body[data-aos-duration="100"] [data-aos] {
  -webkit-transition-duration: .1s;
  -o-transition-duration: .1s;
  transition-duration: .1s; }

[data-aos][data-aos][data-aos-delay="100"], body[data-aos-delay="100"] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="100"].aos-animate, body[data-aos-delay="100"] [data-aos].aos-animate {
  -webkit-transition-delay: .1s;
  -o-transition-delay: .1s;
  transition-delay: .1s; }

[data-aos][data-aos][data-aos-duration="150"], body[data-aos-duration="150"] [data-aos] {
  -webkit-transition-duration: .15s;
  -o-transition-duration: .15s;
  transition-duration: .15s; }

[data-aos][data-aos][data-aos-delay="150"], body[data-aos-delay="150"] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="150"].aos-animate, body[data-aos-delay="150"] [data-aos].aos-animate {
  -webkit-transition-delay: .15s;
  -o-transition-delay: .15s;
  transition-delay: .15s; }

[data-aos][data-aos][data-aos-duration="200"], body[data-aos-duration="200"] [data-aos] {
  -webkit-transition-duration: .2s;
  -o-transition-duration: .2s;
  transition-duration: .2s; }

[data-aos][data-aos][data-aos-delay="200"], body[data-aos-delay="200"] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="200"].aos-animate, body[data-aos-delay="200"] [data-aos].aos-animate {
  -webkit-transition-delay: .2s;
  -o-transition-delay: .2s;
  transition-delay: .2s; }

[data-aos][data-aos][data-aos-duration="250"], body[data-aos-duration="250"] [data-aos] {
  -webkit-transition-duration: .25s;
  -o-transition-duration: .25s;
  transition-duration: .25s; }

[data-aos][data-aos][data-aos-delay="250"], body[data-aos-delay="250"] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="250"].aos-animate, body[data-aos-delay="250"] [data-aos].aos-animate {
  -webkit-transition-delay: .25s;
  -o-transition-delay: .25s;
  transition-delay: .25s; }

[data-aos][data-aos][data-aos-duration="300"], body[data-aos-duration="300"] [data-aos] {
  -webkit-transition-duration: .3s;
  -o-transition-duration: .3s;
  transition-duration: .3s; }

[data-aos][data-aos][data-aos-delay="300"], body[data-aos-delay="300"] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="300"].aos-animate, body[data-aos-delay="300"] [data-aos].aos-animate {
  -webkit-transition-delay: .3s;
  -o-transition-delay: .3s;
  transition-delay: .3s; }

[data-aos][data-aos][data-aos-duration="350"], body[data-aos-duration="350"] [data-aos] {
  -webkit-transition-duration: .35s;
  -o-transition-duration: .35s;
  transition-duration: .35s; }

[data-aos][data-aos][data-aos-delay="350"], body[data-aos-delay="350"] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="350"].aos-animate, body[data-aos-delay="350"] [data-aos].aos-animate {
  -webkit-transition-delay: .35s;
  -o-transition-delay: .35s;
  transition-delay: .35s; }

[data-aos][data-aos][data-aos-duration="400"], body[data-aos-duration="400"] [data-aos] {
  -webkit-transition-duration: .4s;
  -o-transition-duration: .4s;
  transition-duration: .4s; }

[data-aos][data-aos][data-aos-delay="400"], body[data-aos-delay="400"] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="400"].aos-animate, body[data-aos-delay="400"] [data-aos].aos-animate {
  -webkit-transition-delay: .4s;
  -o-transition-delay: .4s;
  transition-delay: .4s; }

[data-aos][data-aos][data-aos-duration="450"], body[data-aos-duration="450"] [data-aos] {
  -webkit-transition-duration: .45s;
  -o-transition-duration: .45s;
  transition-duration: .45s; }

[data-aos][data-aos][data-aos-delay="450"], body[data-aos-delay="450"] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="450"].aos-animate, body[data-aos-delay="450"] [data-aos].aos-animate {
  -webkit-transition-delay: .45s;
  -o-transition-delay: .45s;
  transition-delay: .45s; }

[data-aos][data-aos][data-aos-duration="500"], body[data-aos-duration="500"] [data-aos] {
  -webkit-transition-duration: .5s;
  -o-transition-duration: .5s;
  transition-duration: .5s; }

[data-aos][data-aos][data-aos-delay="500"], body[data-aos-delay="500"] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="500"].aos-animate, body[data-aos-delay="500"] [data-aos].aos-animate {
  -webkit-transition-delay: .5s;
  -o-transition-delay: .5s;
  transition-delay: .5s; }

[data-aos][data-aos][data-aos-duration="550"], body[data-aos-duration="550"] [data-aos] {
  -webkit-transition-duration: .55s;
  -o-transition-duration: .55s;
  transition-duration: .55s; }

[data-aos][data-aos][data-aos-delay="550"], body[data-aos-delay="550"] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="550"].aos-animate, body[data-aos-delay="550"] [data-aos].aos-animate {
  -webkit-transition-delay: .55s;
  -o-transition-delay: .55s;
  transition-delay: .55s; }

[data-aos][data-aos][data-aos-duration="600"], body[data-aos-duration="600"] [data-aos] {
  -webkit-transition-duration: .6s;
  -o-transition-duration: .6s;
  transition-duration: .6s; }

[data-aos][data-aos][data-aos-delay="600"], body[data-aos-delay="600"] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="600"].aos-animate, body[data-aos-delay="600"] [data-aos].aos-animate {
  -webkit-transition-delay: .6s;
  -o-transition-delay: .6s;
  transition-delay: .6s; }

[data-aos][data-aos][data-aos-duration="650"], body[data-aos-duration="650"] [data-aos] {
  -webkit-transition-duration: .65s;
  -o-transition-duration: .65s;
  transition-duration: .65s; }

[data-aos][data-aos][data-aos-delay="650"], body[data-aos-delay="650"] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="650"].aos-animate, body[data-aos-delay="650"] [data-aos].aos-animate {
  -webkit-transition-delay: .65s;
  -o-transition-delay: .65s;
  transition-delay: .65s; }

[data-aos][data-aos][data-aos-duration="700"], body[data-aos-duration="700"] [data-aos] {
  -webkit-transition-duration: .7s;
  -o-transition-duration: .7s;
  transition-duration: .7s; }

[data-aos][data-aos][data-aos-delay="700"], body[data-aos-delay="700"] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="700"].aos-animate, body[data-aos-delay="700"] [data-aos].aos-animate {
  -webkit-transition-delay: .7s;
  -o-transition-delay: .7s;
  transition-delay: .7s; }

[data-aos][data-aos][data-aos-duration="750"], body[data-aos-duration="750"] [data-aos] {
  -webkit-transition-duration: .75s;
  -o-transition-duration: .75s;
  transition-duration: .75s; }

[data-aos][data-aos][data-aos-delay="750"], body[data-aos-delay="750"] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="750"].aos-animate, body[data-aos-delay="750"] [data-aos].aos-animate {
  -webkit-transition-delay: .75s;
  -o-transition-delay: .75s;
  transition-delay: .75s; }

[data-aos][data-aos][data-aos-duration="800"], body[data-aos-duration="800"] [data-aos] {
  -webkit-transition-duration: .8s;
  -o-transition-duration: .8s;
  transition-duration: .8s; }

[data-aos][data-aos][data-aos-delay="800"], body[data-aos-delay="800"] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="800"].aos-animate, body[data-aos-delay="800"] [data-aos].aos-animate {
  -webkit-transition-delay: .8s;
  -o-transition-delay: .8s;
  transition-delay: .8s; }

[data-aos][data-aos][data-aos-duration="850"], body[data-aos-duration="850"] [data-aos] {
  -webkit-transition-duration: .85s;
  -o-transition-duration: .85s;
  transition-duration: .85s; }

[data-aos][data-aos][data-aos-delay="850"], body[data-aos-delay="850"] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="850"].aos-animate, body[data-aos-delay="850"] [data-aos].aos-animate {
  -webkit-transition-delay: .85s;
  -o-transition-delay: .85s;
  transition-delay: .85s; }

[data-aos][data-aos][data-aos-duration="900"], body[data-aos-duration="900"] [data-aos] {
  -webkit-transition-duration: .9s;
  -o-transition-duration: .9s;
  transition-duration: .9s; }

[data-aos][data-aos][data-aos-delay="900"], body[data-aos-delay="900"] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="900"].aos-animate, body[data-aos-delay="900"] [data-aos].aos-animate {
  -webkit-transition-delay: .9s;
  -o-transition-delay: .9s;
  transition-delay: .9s; }

[data-aos][data-aos][data-aos-duration="950"], body[data-aos-duration="950"] [data-aos] {
  -webkit-transition-duration: .95s;
  -o-transition-duration: .95s;
  transition-duration: .95s; }

[data-aos][data-aos][data-aos-delay="950"], body[data-aos-delay="950"] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="950"].aos-animate, body[data-aos-delay="950"] [data-aos].aos-animate {
  -webkit-transition-delay: .95s;
  -o-transition-delay: .95s;
  transition-delay: .95s; }

[data-aos][data-aos][data-aos-duration="1000"], body[data-aos-duration="1000"] [data-aos] {
  -webkit-transition-duration: 1s;
  -o-transition-duration: 1s;
  transition-duration: 1s; }

[data-aos][data-aos][data-aos-delay="1000"], body[data-aos-delay="1000"] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="1000"].aos-animate, body[data-aos-delay="1000"] [data-aos].aos-animate {
  -webkit-transition-delay: 1s;
  -o-transition-delay: 1s;
  transition-delay: 1s; }

[data-aos][data-aos][data-aos-duration="1050"], body[data-aos-duration="1050"] [data-aos] {
  -webkit-transition-duration: 1.05s;
  -o-transition-duration: 1.05s;
  transition-duration: 1.05s; }

[data-aos][data-aos][data-aos-delay="1050"], body[data-aos-delay="1050"] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="1050"].aos-animate, body[data-aos-delay="1050"] [data-aos].aos-animate {
  -webkit-transition-delay: 1.05s;
  -o-transition-delay: 1.05s;
  transition-delay: 1.05s; }

[data-aos][data-aos][data-aos-duration="1100"], body[data-aos-duration="1100"] [data-aos] {
  -webkit-transition-duration: 1.1s;
  -o-transition-duration: 1.1s;
  transition-duration: 1.1s; }

[data-aos][data-aos][data-aos-delay="1100"], body[data-aos-delay="1100"] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="1100"].aos-animate, body[data-aos-delay="1100"] [data-aos].aos-animate {
  -webkit-transition-delay: 1.1s;
  -o-transition-delay: 1.1s;
  transition-delay: 1.1s; }

[data-aos][data-aos][data-aos-duration="1150"], body[data-aos-duration="1150"] [data-aos] {
  -webkit-transition-duration: 1.15s;
  -o-transition-duration: 1.15s;
  transition-duration: 1.15s; }

[data-aos][data-aos][data-aos-delay="1150"], body[data-aos-delay="1150"] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="1150"].aos-animate, body[data-aos-delay="1150"] [data-aos].aos-animate {
  -webkit-transition-delay: 1.15s;
  -o-transition-delay: 1.15s;
  transition-delay: 1.15s; }

[data-aos][data-aos][data-aos-duration="1200"], body[data-aos-duration="1200"] [data-aos] {
  -webkit-transition-duration: 1.2s;
  -o-transition-duration: 1.2s;
  transition-duration: 1.2s; }

[data-aos][data-aos][data-aos-delay="1200"], body[data-aos-delay="1200"] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="1200"].aos-animate, body[data-aos-delay="1200"] [data-aos].aos-animate {
  -webkit-transition-delay: 1.2s;
  -o-transition-delay: 1.2s;
  transition-delay: 1.2s; }

[data-aos][data-aos][data-aos-duration="1250"], body[data-aos-duration="1250"] [data-aos] {
  -webkit-transition-duration: 1.25s;
  -o-transition-duration: 1.25s;
  transition-duration: 1.25s; }

[data-aos][data-aos][data-aos-delay="1250"], body[data-aos-delay="1250"] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="1250"].aos-animate, body[data-aos-delay="1250"] [data-aos].aos-animate {
  -webkit-transition-delay: 1.25s;
  -o-transition-delay: 1.25s;
  transition-delay: 1.25s; }

[data-aos][data-aos][data-aos-duration="1300"], body[data-aos-duration="1300"] [data-aos] {
  -webkit-transition-duration: 1.3s;
  -o-transition-duration: 1.3s;
  transition-duration: 1.3s; }

[data-aos][data-aos][data-aos-delay="1300"], body[data-aos-delay="1300"] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="1300"].aos-animate, body[data-aos-delay="1300"] [data-aos].aos-animate {
  -webkit-transition-delay: 1.3s;
  -o-transition-delay: 1.3s;
  transition-delay: 1.3s; }

[data-aos][data-aos][data-aos-duration="1350"], body[data-aos-duration="1350"] [data-aos] {
  -webkit-transition-duration: 1.35s;
  -o-transition-duration: 1.35s;
  transition-duration: 1.35s; }

[data-aos][data-aos][data-aos-delay="1350"], body[data-aos-delay="1350"] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="1350"].aos-animate, body[data-aos-delay="1350"] [data-aos].aos-animate {
  -webkit-transition-delay: 1.35s;
  -o-transition-delay: 1.35s;
  transition-delay: 1.35s; }

[data-aos][data-aos][data-aos-duration="1400"], body[data-aos-duration="1400"] [data-aos] {
  -webkit-transition-duration: 1.4s;
  -o-transition-duration: 1.4s;
  transition-duration: 1.4s; }

[data-aos][data-aos][data-aos-delay="1400"], body[data-aos-delay="1400"] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="1400"].aos-animate, body[data-aos-delay="1400"] [data-aos].aos-animate {
  -webkit-transition-delay: 1.4s;
  -o-transition-delay: 1.4s;
  transition-delay: 1.4s; }

[data-aos][data-aos][data-aos-duration="1450"], body[data-aos-duration="1450"] [data-aos] {
  -webkit-transition-duration: 1.45s;
  -o-transition-duration: 1.45s;
  transition-duration: 1.45s; }

[data-aos][data-aos][data-aos-delay="1450"], body[data-aos-delay="1450"] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="1450"].aos-animate, body[data-aos-delay="1450"] [data-aos].aos-animate {
  -webkit-transition-delay: 1.45s;
  -o-transition-delay: 1.45s;
  transition-delay: 1.45s; }

[data-aos][data-aos][data-aos-duration="1500"], body[data-aos-duration="1500"] [data-aos] {
  -webkit-transition-duration: 1.5s;
  -o-transition-duration: 1.5s;
  transition-duration: 1.5s; }

[data-aos][data-aos][data-aos-delay="1500"], body[data-aos-delay="1500"] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="1500"].aos-animate, body[data-aos-delay="1500"] [data-aos].aos-animate {
  -webkit-transition-delay: 1.5s;
  -o-transition-delay: 1.5s;
  transition-delay: 1.5s; }

[data-aos][data-aos][data-aos-duration="1550"], body[data-aos-duration="1550"] [data-aos] {
  -webkit-transition-duration: 1.55s;
  -o-transition-duration: 1.55s;
  transition-duration: 1.55s; }

[data-aos][data-aos][data-aos-delay="1550"], body[data-aos-delay="1550"] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="1550"].aos-animate, body[data-aos-delay="1550"] [data-aos].aos-animate {
  -webkit-transition-delay: 1.55s;
  -o-transition-delay: 1.55s;
  transition-delay: 1.55s; }

[data-aos][data-aos][data-aos-duration="1600"], body[data-aos-duration="1600"] [data-aos] {
  -webkit-transition-duration: 1.6s;
  -o-transition-duration: 1.6s;
  transition-duration: 1.6s; }

[data-aos][data-aos][data-aos-delay="1600"], body[data-aos-delay="1600"] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="1600"].aos-animate, body[data-aos-delay="1600"] [data-aos].aos-animate {
  -webkit-transition-delay: 1.6s;
  -o-transition-delay: 1.6s;
  transition-delay: 1.6s; }

[data-aos][data-aos][data-aos-duration="1650"], body[data-aos-duration="1650"] [data-aos] {
  -webkit-transition-duration: 1.65s;
  -o-transition-duration: 1.65s;
  transition-duration: 1.65s; }

[data-aos][data-aos][data-aos-delay="1650"], body[data-aos-delay="1650"] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="1650"].aos-animate, body[data-aos-delay="1650"] [data-aos].aos-animate {
  -webkit-transition-delay: 1.65s;
  -o-transition-delay: 1.65s;
  transition-delay: 1.65s; }

[data-aos][data-aos][data-aos-duration="1700"], body[data-aos-duration="1700"] [data-aos] {
  -webkit-transition-duration: 1.7s;
  -o-transition-duration: 1.7s;
  transition-duration: 1.7s; }

[data-aos][data-aos][data-aos-delay="1700"], body[data-aos-delay="1700"] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="1700"].aos-animate, body[data-aos-delay="1700"] [data-aos].aos-animate {
  -webkit-transition-delay: 1.7s;
  -o-transition-delay: 1.7s;
  transition-delay: 1.7s; }

[data-aos][data-aos][data-aos-duration="1750"], body[data-aos-duration="1750"] [data-aos] {
  -webkit-transition-duration: 1.75s;
  -o-transition-duration: 1.75s;
  transition-duration: 1.75s; }

[data-aos][data-aos][data-aos-delay="1750"], body[data-aos-delay="1750"] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="1750"].aos-animate, body[data-aos-delay="1750"] [data-aos].aos-animate {
  -webkit-transition-delay: 1.75s;
  -o-transition-delay: 1.75s;
  transition-delay: 1.75s; }

[data-aos][data-aos][data-aos-duration="1800"], body[data-aos-duration="1800"] [data-aos] {
  -webkit-transition-duration: 1.8s;
  -o-transition-duration: 1.8s;
  transition-duration: 1.8s; }

[data-aos][data-aos][data-aos-delay="1800"], body[data-aos-delay="1800"] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="1800"].aos-animate, body[data-aos-delay="1800"] [data-aos].aos-animate {
  -webkit-transition-delay: 1.8s;
  -o-transition-delay: 1.8s;
  transition-delay: 1.8s; }

[data-aos][data-aos][data-aos-duration="1850"], body[data-aos-duration="1850"] [data-aos] {
  -webkit-transition-duration: 1.85s;
  -o-transition-duration: 1.85s;
  transition-duration: 1.85s; }

[data-aos][data-aos][data-aos-delay="1850"], body[data-aos-delay="1850"] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="1850"].aos-animate, body[data-aos-delay="1850"] [data-aos].aos-animate {
  -webkit-transition-delay: 1.85s;
  -o-transition-delay: 1.85s;
  transition-delay: 1.85s; }

[data-aos][data-aos][data-aos-duration="1900"], body[data-aos-duration="1900"] [data-aos] {
  -webkit-transition-duration: 1.9s;
  -o-transition-duration: 1.9s;
  transition-duration: 1.9s; }

[data-aos][data-aos][data-aos-delay="1900"], body[data-aos-delay="1900"] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="1900"].aos-animate, body[data-aos-delay="1900"] [data-aos].aos-animate {
  -webkit-transition-delay: 1.9s;
  -o-transition-delay: 1.9s;
  transition-delay: 1.9s; }

[data-aos][data-aos][data-aos-duration="1950"], body[data-aos-duration="1950"] [data-aos] {
  -webkit-transition-duration: 1.95s;
  -o-transition-duration: 1.95s;
  transition-duration: 1.95s; }

[data-aos][data-aos][data-aos-delay="1950"], body[data-aos-delay="1950"] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="1950"].aos-animate, body[data-aos-delay="1950"] [data-aos].aos-animate {
  -webkit-transition-delay: 1.95s;
  -o-transition-delay: 1.95s;
  transition-delay: 1.95s; }

[data-aos][data-aos][data-aos-duration="2000"], body[data-aos-duration="2000"] [data-aos] {
  -webkit-transition-duration: 2s;
  -o-transition-duration: 2s;
  transition-duration: 2s; }

[data-aos][data-aos][data-aos-delay="2000"], body[data-aos-delay="2000"] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="2000"].aos-animate, body[data-aos-delay="2000"] [data-aos].aos-animate {
  -webkit-transition-delay: 2s;
  -o-transition-delay: 2s;
  transition-delay: 2s; }

[data-aos][data-aos][data-aos-duration="2050"], body[data-aos-duration="2050"] [data-aos] {
  -webkit-transition-duration: 2.05s;
  -o-transition-duration: 2.05s;
  transition-duration: 2.05s; }

[data-aos][data-aos][data-aos-delay="2050"], body[data-aos-delay="2050"] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="2050"].aos-animate, body[data-aos-delay="2050"] [data-aos].aos-animate {
  -webkit-transition-delay: 2.05s;
  -o-transition-delay: 2.05s;
  transition-delay: 2.05s; }

[data-aos][data-aos][data-aos-duration="2100"], body[data-aos-duration="2100"] [data-aos] {
  -webkit-transition-duration: 2.1s;
  -o-transition-duration: 2.1s;
  transition-duration: 2.1s; }

[data-aos][data-aos][data-aos-delay="2100"], body[data-aos-delay="2100"] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="2100"].aos-animate, body[data-aos-delay="2100"] [data-aos].aos-animate {
  -webkit-transition-delay: 2.1s;
  -o-transition-delay: 2.1s;
  transition-delay: 2.1s; }

[data-aos][data-aos][data-aos-duration="2150"], body[data-aos-duration="2150"] [data-aos] {
  -webkit-transition-duration: 2.15s;
  -o-transition-duration: 2.15s;
  transition-duration: 2.15s; }

[data-aos][data-aos][data-aos-delay="2150"], body[data-aos-delay="2150"] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="2150"].aos-animate, body[data-aos-delay="2150"] [data-aos].aos-animate {
  -webkit-transition-delay: 2.15s;
  -o-transition-delay: 2.15s;
  transition-delay: 2.15s; }

[data-aos][data-aos][data-aos-duration="2200"], body[data-aos-duration="2200"] [data-aos] {
  -webkit-transition-duration: 2.2s;
  -o-transition-duration: 2.2s;
  transition-duration: 2.2s; }

[data-aos][data-aos][data-aos-delay="2200"], body[data-aos-delay="2200"] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="2200"].aos-animate, body[data-aos-delay="2200"] [data-aos].aos-animate {
  -webkit-transition-delay: 2.2s;
  -o-transition-delay: 2.2s;
  transition-delay: 2.2s; }

[data-aos][data-aos][data-aos-duration="2250"], body[data-aos-duration="2250"] [data-aos] {
  -webkit-transition-duration: 2.25s;
  -o-transition-duration: 2.25s;
  transition-duration: 2.25s; }

[data-aos][data-aos][data-aos-delay="2250"], body[data-aos-delay="2250"] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="2250"].aos-animate, body[data-aos-delay="2250"] [data-aos].aos-animate {
  -webkit-transition-delay: 2.25s;
  -o-transition-delay: 2.25s;
  transition-delay: 2.25s; }

[data-aos][data-aos][data-aos-duration="2300"], body[data-aos-duration="2300"] [data-aos] {
  -webkit-transition-duration: 2.3s;
  -o-transition-duration: 2.3s;
  transition-duration: 2.3s; }

[data-aos][data-aos][data-aos-delay="2300"], body[data-aos-delay="2300"] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="2300"].aos-animate, body[data-aos-delay="2300"] [data-aos].aos-animate {
  -webkit-transition-delay: 2.3s;
  -o-transition-delay: 2.3s;
  transition-delay: 2.3s; }

[data-aos][data-aos][data-aos-duration="2350"], body[data-aos-duration="2350"] [data-aos] {
  -webkit-transition-duration: 2.35s;
  -o-transition-duration: 2.35s;
  transition-duration: 2.35s; }

[data-aos][data-aos][data-aos-delay="2350"], body[data-aos-delay="2350"] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="2350"].aos-animate, body[data-aos-delay="2350"] [data-aos].aos-animate {
  -webkit-transition-delay: 2.35s;
  -o-transition-delay: 2.35s;
  transition-delay: 2.35s; }

[data-aos][data-aos][data-aos-duration="2400"], body[data-aos-duration="2400"] [data-aos] {
  -webkit-transition-duration: 2.4s;
  -o-transition-duration: 2.4s;
  transition-duration: 2.4s; }

[data-aos][data-aos][data-aos-delay="2400"], body[data-aos-delay="2400"] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="2400"].aos-animate, body[data-aos-delay="2400"] [data-aos].aos-animate {
  -webkit-transition-delay: 2.4s;
  -o-transition-delay: 2.4s;
  transition-delay: 2.4s; }

[data-aos][data-aos][data-aos-duration="2450"], body[data-aos-duration="2450"] [data-aos] {
  -webkit-transition-duration: 2.45s;
  -o-transition-duration: 2.45s;
  transition-duration: 2.45s; }

[data-aos][data-aos][data-aos-delay="2450"], body[data-aos-delay="2450"] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="2450"].aos-animate, body[data-aos-delay="2450"] [data-aos].aos-animate {
  -webkit-transition-delay: 2.45s;
  -o-transition-delay: 2.45s;
  transition-delay: 2.45s; }

[data-aos][data-aos][data-aos-duration="2500"], body[data-aos-duration="2500"] [data-aos] {
  -webkit-transition-duration: 2.5s;
  -o-transition-duration: 2.5s;
  transition-duration: 2.5s; }

[data-aos][data-aos][data-aos-delay="2500"], body[data-aos-delay="2500"] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="2500"].aos-animate, body[data-aos-delay="2500"] [data-aos].aos-animate {
  -webkit-transition-delay: 2.5s;
  -o-transition-delay: 2.5s;
  transition-delay: 2.5s; }

[data-aos][data-aos][data-aos-duration="2550"], body[data-aos-duration="2550"] [data-aos] {
  -webkit-transition-duration: 2.55s;
  -o-transition-duration: 2.55s;
  transition-duration: 2.55s; }

[data-aos][data-aos][data-aos-delay="2550"], body[data-aos-delay="2550"] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="2550"].aos-animate, body[data-aos-delay="2550"] [data-aos].aos-animate {
  -webkit-transition-delay: 2.55s;
  -o-transition-delay: 2.55s;
  transition-delay: 2.55s; }

[data-aos][data-aos][data-aos-duration="2600"], body[data-aos-duration="2600"] [data-aos] {
  -webkit-transition-duration: 2.6s;
  -o-transition-duration: 2.6s;
  transition-duration: 2.6s; }

[data-aos][data-aos][data-aos-delay="2600"], body[data-aos-delay="2600"] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="2600"].aos-animate, body[data-aos-delay="2600"] [data-aos].aos-animate {
  -webkit-transition-delay: 2.6s;
  -o-transition-delay: 2.6s;
  transition-delay: 2.6s; }

[data-aos][data-aos][data-aos-duration="2650"], body[data-aos-duration="2650"] [data-aos] {
  -webkit-transition-duration: 2.65s;
  -o-transition-duration: 2.65s;
  transition-duration: 2.65s; }

[data-aos][data-aos][data-aos-delay="2650"], body[data-aos-delay="2650"] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="2650"].aos-animate, body[data-aos-delay="2650"] [data-aos].aos-animate {
  -webkit-transition-delay: 2.65s;
  -o-transition-delay: 2.65s;
  transition-delay: 2.65s; }

[data-aos][data-aos][data-aos-duration="2700"], body[data-aos-duration="2700"] [data-aos] {
  -webkit-transition-duration: 2.7s;
  -o-transition-duration: 2.7s;
  transition-duration: 2.7s; }

[data-aos][data-aos][data-aos-delay="2700"], body[data-aos-delay="2700"] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="2700"].aos-animate, body[data-aos-delay="2700"] [data-aos].aos-animate {
  -webkit-transition-delay: 2.7s;
  -o-transition-delay: 2.7s;
  transition-delay: 2.7s; }

[data-aos][data-aos][data-aos-duration="2750"], body[data-aos-duration="2750"] [data-aos] {
  -webkit-transition-duration: 2.75s;
  -o-transition-duration: 2.75s;
  transition-duration: 2.75s; }

[data-aos][data-aos][data-aos-delay="2750"], body[data-aos-delay="2750"] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="2750"].aos-animate, body[data-aos-delay="2750"] [data-aos].aos-animate {
  -webkit-transition-delay: 2.75s;
  -o-transition-delay: 2.75s;
  transition-delay: 2.75s; }

[data-aos][data-aos][data-aos-duration="2800"], body[data-aos-duration="2800"] [data-aos] {
  -webkit-transition-duration: 2.8s;
  -o-transition-duration: 2.8s;
  transition-duration: 2.8s; }

[data-aos][data-aos][data-aos-delay="2800"], body[data-aos-delay="2800"] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="2800"].aos-animate, body[data-aos-delay="2800"] [data-aos].aos-animate {
  -webkit-transition-delay: 2.8s;
  -o-transition-delay: 2.8s;
  transition-delay: 2.8s; }

[data-aos][data-aos][data-aos-duration="2850"], body[data-aos-duration="2850"] [data-aos] {
  -webkit-transition-duration: 2.85s;
  -o-transition-duration: 2.85s;
  transition-duration: 2.85s; }

[data-aos][data-aos][data-aos-delay="2850"], body[data-aos-delay="2850"] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="2850"].aos-animate, body[data-aos-delay="2850"] [data-aos].aos-animate {
  -webkit-transition-delay: 2.85s;
  -o-transition-delay: 2.85s;
  transition-delay: 2.85s; }

[data-aos][data-aos][data-aos-duration="2900"], body[data-aos-duration="2900"] [data-aos] {
  -webkit-transition-duration: 2.9s;
  -o-transition-duration: 2.9s;
  transition-duration: 2.9s; }

[data-aos][data-aos][data-aos-delay="2900"], body[data-aos-delay="2900"] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="2900"].aos-animate, body[data-aos-delay="2900"] [data-aos].aos-animate {
  -webkit-transition-delay: 2.9s;
  -o-transition-delay: 2.9s;
  transition-delay: 2.9s; }

[data-aos][data-aos][data-aos-duration="2950"], body[data-aos-duration="2950"] [data-aos] {
  -webkit-transition-duration: 2.95s;
  -o-transition-duration: 2.95s;
  transition-duration: 2.95s; }

[data-aos][data-aos][data-aos-delay="2950"], body[data-aos-delay="2950"] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="2950"].aos-animate, body[data-aos-delay="2950"] [data-aos].aos-animate {
  -webkit-transition-delay: 2.95s;
  -o-transition-delay: 2.95s;
  transition-delay: 2.95s; }

[data-aos][data-aos][data-aos-duration="3000"], body[data-aos-duration="3000"] [data-aos] {
  -webkit-transition-duration: 3s;
  -o-transition-duration: 3s;
  transition-duration: 3s; }

[data-aos][data-aos][data-aos-delay="3000"], body[data-aos-delay="3000"] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="3000"].aos-animate, body[data-aos-delay="3000"] [data-aos].aos-animate {
  -webkit-transition-delay: 3s;
  -o-transition-delay: 3s;
  transition-delay: 3s; }

[data-aos][data-aos][data-aos-delay="4000"], body[data-aos-delay="4000"] [data-aos] {
  -webkit-transition-delay: 0;
  -o-transition-delay: 0;
  transition-delay: 0; }

[data-aos][data-aos][data-aos-delay="4000"].aos-animate, body[data-aos-delay="4000"] [data-aos].aos-animate {
  -webkit-transition-delay: 3s;
  -o-transition-delay: 3s;
  transition-delay: 3s; }

[data-aos][data-aos][data-aos-easing=linear], body[data-aos-easing=linear] [data-aos] {
  -webkit-transition-timing-function: cubic-bezier(0.25, 0.25, 0.75, 0.75);
  -o-transition-timing-function: cubic-bezier(0.25, 0.25, 0.75, 0.75);
  transition-timing-function: cubic-bezier(0.25, 0.25, 0.75, 0.75); }

[data-aos][data-aos][data-aos-easing=ease], body[data-aos-easing=ease] [data-aos] {
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease; }

[data-aos][data-aos][data-aos-easing=ease-in], body[data-aos-easing=ease-in] [data-aos] {
  -webkit-transition-timing-function: ease-in;
  -o-transition-timing-function: ease-in;
  transition-timing-function: ease-in; }

[data-aos][data-aos][data-aos-easing=ease-out], body[data-aos-easing=ease-out] [data-aos] {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out; }

[data-aos][data-aos][data-aos-easing=ease-in-out], body[data-aos-easing=ease-in-out] [data-aos] {
  -webkit-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out; }

[data-aos][data-aos][data-aos-easing=ease-in-back], body[data-aos-easing=ease-in-back] [data-aos] {
  -webkit-transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
  -o-transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
  transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045); }

[data-aos][data-aos][data-aos-easing=ease-out-back], body[data-aos-easing=ease-out-back] [data-aos] {
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275); }

[data-aos][data-aos][data-aos-easing=ease-in-out-back], body[data-aos-easing=ease-in-out-back] [data-aos] {
  -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -o-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }

[data-aos][data-aos][data-aos-easing=ease-in-sine], body[data-aos-easing=ease-in-sine] [data-aos] {
  -webkit-transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
  -o-transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
  transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715); }

[data-aos][data-aos][data-aos-easing=ease-out-sine], body[data-aos-easing=ease-out-sine] [data-aos] {
  -webkit-transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
  -o-transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
  transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1); }

[data-aos][data-aos][data-aos-easing=ease-in-out-sine], body[data-aos-easing=ease-in-out-sine] [data-aos] {
  -webkit-transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  -o-transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95); }

[data-aos][data-aos][data-aos-easing=ease-in-quad], body[data-aos-easing=ease-in-quad] [data-aos] {
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53); }

[data-aos][data-aos][data-aos-easing=ease-out-quad], body[data-aos-easing=ease-out-quad] [data-aos] {
  -webkit-transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94); }

[data-aos][data-aos][data-aos-easing=ease-in-out-quad], body[data-aos-easing=ease-in-out-quad] [data-aos] {
  -webkit-transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -o-transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955); }

[data-aos][data-aos][data-aos-easing=ease-in-cubic], body[data-aos-easing=ease-in-cubic] [data-aos] {
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53); }

[data-aos][data-aos][data-aos-easing=ease-out-cubic], body[data-aos-easing=ease-out-cubic] [data-aos] {
  -webkit-transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94); }

[data-aos][data-aos][data-aos-easing=ease-in-out-cubic], body[data-aos-easing=ease-in-out-cubic] [data-aos] {
  -webkit-transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -o-transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955); }

[data-aos][data-aos][data-aos-easing=ease-in-quart], body[data-aos-easing=ease-in-quart] [data-aos] {
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -o-transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53); }

[data-aos][data-aos][data-aos-easing=ease-out-quart], body[data-aos-easing=ease-out-quart] [data-aos] {
  -webkit-transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94); }

[data-aos][data-aos][data-aos-easing=ease-in-out-quart], body[data-aos-easing=ease-in-out-quart] [data-aos] {
  -webkit-transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -o-transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955); }

[data-aos^=fade][data-aos^=fade] {
  opacity: 0;
  -webkit-transition-property: opacity,-webkit-transform;
  transition-property: opacity,-webkit-transform;
  -o-transition-property: opacity,transform;
  transition-property: opacity,transform;
  transition-property: opacity,transform,-webkit-transform; }

[data-aos^=fade][data-aos^=fade].aos-animate {
  opacity: 1;
  -webkit-transform: translateZ(0);
  transform: translateZ(0); }

[data-aos=fade-up] {
  -webkit-transform: translate3d(0, 100px, 0);
  transform: translate3d(0, 100px, 0); }

[data-aos=fade-down] {
  -webkit-transform: translate3d(0, -100px, 0);
  transform: translate3d(0, -100px, 0); }

[data-aos=fade-right] {
  -webkit-transform: translate3d(-100px, 0, 0);
  transform: translate3d(-100px, 0, 0); }

[data-aos=fade-left] {
  -webkit-transform: translate3d(100px, 0, 0);
  transform: translate3d(100px, 0, 0); }

[data-aos=fade-up-right] {
  -webkit-transform: translate3d(-100px, 100px, 0);
  transform: translate3d(-100px, 100px, 0); }

[data-aos=fade-up-left] {
  -webkit-transform: translate3d(100px, 100px, 0);
  transform: translate3d(100px, 100px, 0); }

[data-aos=fade-down-right] {
  -webkit-transform: translate3d(-100px, -100px, 0);
  transform: translate3d(-100px, -100px, 0); }

[data-aos=fade-down-left] {
  -webkit-transform: translate3d(100px, -100px, 0);
  transform: translate3d(100px, -100px, 0); }

[data-aos^=zoom][data-aos^=zoom] {
  opacity: 0;
  -webkit-transition-property: opacity,-webkit-transform;
  transition-property: opacity,-webkit-transform;
  -o-transition-property: opacity,transform;
  transition-property: opacity,transform;
  transition-property: opacity,transform,-webkit-transform; }

[data-aos^=zoom][data-aos^=zoom].aos-animate {
  opacity: 1;
  -webkit-transform: translateZ(0) scale(1);
  transform: translateZ(0) scale(1); }

[data-aos=zoom-in] {
  -webkit-transform: scale(0.6);
  -ms-transform: scale(0.6);
  transform: scale(0.6); }

[data-aos=zoom-in-up] {
  -webkit-transform: translate3d(0, 100px, 0) scale(0.6);
  transform: translate3d(0, 100px, 0) scale(0.6); }

[data-aos=zoom-in-down] {
  -webkit-transform: translate3d(0, -100px, 0) scale(0.6);
  transform: translate3d(0, -100px, 0) scale(0.6); }

[data-aos=zoom-in-right] {
  -webkit-transform: translate3d(-100px, 0, 0) scale(0.6);
  transform: translate3d(-100px, 0, 0) scale(0.6); }

[data-aos=zoom-in-left] {
  -webkit-transform: translate3d(100px, 0, 0) scale(0.6);
  transform: translate3d(100px, 0, 0) scale(0.6); }

[data-aos=zoom-out] {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2); }

[data-aos=zoom-out-up] {
  -webkit-transform: translate3d(0, 100px, 0) scale(1.2);
  transform: translate3d(0, 100px, 0) scale(1.2); }

[data-aos=zoom-out-down] {
  -webkit-transform: translate3d(0, -100px, 0) scale(1.2);
  transform: translate3d(0, -100px, 0) scale(1.2); }

[data-aos=zoom-out-right] {
  -webkit-transform: translate3d(-100px, 0, 0) scale(1.2);
  transform: translate3d(-100px, 0, 0) scale(1.2); }

[data-aos=zoom-out-left] {
  -webkit-transform: translate3d(100px, 0, 0) scale(1.2);
  transform: translate3d(100px, 0, 0) scale(1.2); }

[data-aos^=slide][data-aos^=slide] {
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform; }

[data-aos^=slide][data-aos^=slide].aos-animate {
  -webkit-transform: translateZ(0);
  transform: translateZ(0); }

[data-aos=slide-up] {
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0); }

[data-aos=slide-down] {
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0); }

[data-aos=slide-right] {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0); }

[data-aos=slide-left] {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0); }

[data-aos^=flip][data-aos^=flip] {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform; }

[data-aos=flip-left] {
  -webkit-transform: perspective(2500px) rotateY(-100deg);
  transform: perspective(2500px) rotateY(-100deg); }

[data-aos=flip-left].aos-animate {
  -webkit-transform: perspective(2500px) rotateY(0);
  transform: perspective(2500px) rotateY(0); }

[data-aos=flip-right] {
  -webkit-transform: perspective(2500px) rotateY(100deg);
  transform: perspective(2500px) rotateY(100deg); }

[data-aos=flip-right].aos-animate {
  -webkit-transform: perspective(2500px) rotateY(0);
  transform: perspective(2500px) rotateY(0); }

[data-aos=flip-up] {
  -webkit-transform: perspective(2500px) rotateX(-100deg);
  transform: perspective(2500px) rotateX(-100deg); }

[data-aos=flip-up].aos-animate {
  -webkit-transform: perspective(2500px) rotateX(0);
  transform: perspective(2500px) rotateX(0); }

[data-aos=flip-down] {
  -webkit-transform: perspective(2500px) rotateX(100deg);
  transform: perspective(2500px) rotateX(100deg); }

[data-aos=flip-down].aos-animate {
  -webkit-transform: perspective(2500px) rotateX(0);
  transform: perspective(2500px) rotateX(0); }

/* 
CHEATSHEET
https://linearicons.com/free 
*/
@font-face {
  font-family: 'Linearicons-Free';
  src: url("/files/default/fonts/lnr/Linearicons-Free.eot?w118d");
  src: url("/files/default/fonts/lnr/Linearicons-Free.eot?#iefixw118d") format("embedded-opentype"), url("/files/default/fonts/lnr/Linearicons-Free.woff2?w118d") format("woff2"), url("/files/default/fonts/lnr/Linearicons-Free.woff?w118d") format("woff"), url("/files/default/fonts/lnr/Linearicons-Free.ttf?w118d") format("truetype"), url("/files/default/fonts/lnr/Linearicons-Free.svg?w118d#Linearicons-Free") format("svg");
  font-weight: normal;
  font-style: normal; }

.lnr {
  font-family: 'Linearicons-Free';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }
  .lnr.bold {
    font-weight: 900; }

.lnr-home:before {
  content: "\e800"; }

.lnr-apartment:before {
  content: "\e801"; }

.lnr-pencil:before {
  content: "\e802"; }

.lnr-magic-wand:before {
  content: "\e803"; }

.lnr-drop:before {
  content: "\e804"; }

.lnr-lighter:before {
  content: "\e805"; }

.lnr-poop:before {
  content: "\e806"; }

.lnr-sun:before {
  content: "\e807"; }

.lnr-moon:before {
  content: "\e808"; }

.lnr-cloud:before {
  content: "\e809"; }

.lnr-cloud-upload:before {
  content: "\e80a"; }

.lnr-cloud-download:before {
  content: "\e80b"; }

.lnr-cloud-sync:before {
  content: "\e80c"; }

.lnr-cloud-check:before {
  content: "\e80d"; }

.lnr-database:before {
  content: "\e80e"; }

.lnr-lock:before {
  content: "\e80f"; }

.lnr-cog:before {
  content: "\e810"; }

.lnr-trash:before {
  content: "\e811"; }

.lnr-dice:before {
  content: "\e812"; }

.lnr-heart:before {
  content: "\e813"; }

.lnr-star:before {
  content: "\e814"; }

.lnr-star-half:before {
  content: "\e815"; }

.lnr-star-empty:before {
  content: "\e816"; }

.lnr-flag:before {
  content: "\e817"; }

.lnr-envelope:before {
  content: "\e818"; }

.lnr-paperclip:before {
  content: "\e819"; }

.lnr-inbox:before {
  content: "\e81a"; }

.lnr-eye:before {
  content: "\e81b"; }

.lnr-printer:before {
  content: "\e81c"; }

.lnr-file-empty:before {
  content: "\e81d"; }

.lnr-file-add:before {
  content: "\e81e"; }

.lnr-enter:before {
  content: "\e81f"; }

.lnr-exit:before {
  content: "\e820"; }

.lnr-graduation-hat:before {
  content: "\e821"; }

.lnr-license:before {
  content: "\e822"; }

.lnr-music-note:before {
  content: "\e823"; }

.lnr-film-play:before {
  content: "\e824"; }

.lnr-camera-video:before {
  content: "\e825"; }

.lnr-camera:before {
  content: "\e826"; }

.lnr-picture:before {
  content: "\e827"; }

.lnr-book:before {
  content: "\e828"; }

.lnr-bookmark:before {
  content: "\e829"; }

.lnr-user:before {
  content: "\e82a"; }

.lnr-users:before {
  content: "\e82b"; }

.lnr-shirt:before {
  content: "\e82c"; }

.lnr-store:before {
  content: "\e82d"; }

.lnr-cart:before {
  content: "\e82e"; }

.lnr-tag:before {
  content: "\e82f"; }

.lnr-phone-handset:before {
  content: "\e830"; }

.lnr-phone:before {
  content: "\e831"; }

.lnr-pushpin:before {
  content: "\e832"; }

.lnr-map-marker:before {
  content: "\e833"; }

.lnr-map:before {
  content: "\e834"; }

.lnr-location:before {
  content: "\e835"; }

.lnr-calendar-full:before {
  content: "\e836"; }

.lnr-keyboard:before {
  content: "\e837"; }

.lnr-spell-check:before {
  content: "\e838"; }

.lnr-screen:before {
  content: "\e839"; }

.lnr-smartphone:before {
  content: "\e83a"; }

.lnr-tablet:before {
  content: "\e83b"; }

.lnr-laptop:before {
  content: "\e83c"; }

.lnr-laptop-phone:before {
  content: "\e83d"; }

.lnr-power-switch:before {
  content: "\e83e"; }

.lnr-bubble:before {
  content: "\e83f"; }

.lnr-heart-pulse:before {
  content: "\e840"; }

.lnr-construction:before {
  content: "\e841"; }

.lnr-pie-chart:before {
  content: "\e842"; }

.lnr-chart-bars:before {
  content: "\e843"; }

.lnr-gift:before {
  content: "\e844"; }

.lnr-diamond:before {
  content: "\e845"; }

.lnr-linearicons:before {
  content: "\e846"; }

.lnr-dinner:before {
  content: "\e847"; }

.lnr-coffee-cup:before {
  content: "\e848"; }

.lnr-leaf:before {
  content: "\e849"; }

.lnr-paw:before {
  content: "\e84a"; }

.lnr-rocket:before {
  content: "\e84b"; }

.lnr-briefcase:before {
  content: "\e84c"; }

.lnr-bus:before {
  content: "\e84d"; }

.lnr-car:before {
  content: "\e84e"; }

.lnr-train:before {
  content: "\e84f"; }

.lnr-bicycle:before {
  content: "\e850"; }

.lnr-wheelchair:before {
  content: "\e851"; }

.lnr-select:before {
  content: "\e852"; }

.lnr-earth:before {
  content: "\e853"; }

.lnr-smile:before {
  content: "\e854"; }

.lnr-sad:before {
  content: "\e855"; }

.lnr-neutral:before {
  content: "\e856"; }

.lnr-mustache:before {
  content: "\e857"; }

.lnr-alarm:before {
  content: "\e858"; }

.lnr-bullhorn:before {
  content: "\e859"; }

.lnr-volume-high:before {
  content: "\e85a"; }

.lnr-volume-medium:before {
  content: "\e85b"; }

.lnr-volume-low:before {
  content: "\e85c"; }

.lnr-volume:before {
  content: "\e85d"; }

.lnr-mic:before {
  content: "\e85e"; }

.lnr-hourglass:before {
  content: "\e85f"; }

.lnr-undo:before {
  content: "\e860"; }

.lnr-redo:before {
  content: "\e861"; }

.lnr-sync:before {
  content: "\e862"; }

.lnr-history:before {
  content: "\e863"; }

.lnr-clock:before {
  content: "\e864"; }

.lnr-download:before {
  content: "\e865"; }

.lnr-upload:before {
  content: "\e866"; }

.lnr-enter-down:before {
  content: "\e867"; }

.lnr-exit-up:before {
  content: "\e868"; }

.lnr-bug:before {
  content: "\e869"; }

.lnr-code:before {
  content: "\e86a"; }

.lnr-link:before {
  content: "\e86b"; }

.lnr-unlink:before {
  content: "\e86c"; }

.lnr-thumbs-up:before {
  content: "\e86d"; }

.lnr-thumbs-down:before {
  content: "\e86e"; }

.lnr-magnifier:before {
  content: "\e86f"; }

.lnr-cross:before {
  content: "\e870"; }

.lnr-menu:before {
  content: "\e871"; }

.lnr-list:before {
  content: "\e872"; }

.lnr-chevron-up:before {
  content: "\e873"; }

.lnr-chevron-down:before {
  content: "\e874"; }

.lnr-chevron-left:before {
  content: "\e875"; }

.lnr-chevron-right:before {
  content: "\e876"; }

.lnr-arrow-up:before {
  content: "\e877"; }

.lnr-arrow-down:before {
  content: "\e878"; }

.lnr-arrow-left:before {
  content: "\e879"; }

.lnr-arrow-right:before {
  content: "\e87a"; }

.lnr-move:before {
  content: "\e87b"; }

.lnr-warning:before {
  content: "\e87c"; }

.lnr-question-circle:before {
  content: "\e87d"; }

.lnr-menu-circle:before {
  content: "\e87e"; }

.lnr-checkmark-circle:before {
  content: "\e87f"; }

.lnr-cross-circle:before {
  content: "\e880"; }

.lnr-plus-circle:before {
  content: "\e881"; }

.lnr-circle-minus:before {
  content: "\e882"; }

.lnr-arrow-up-circle:before {
  content: "\e883"; }

.lnr-arrow-down-circle:before {
  content: "\e884"; }

.lnr-arrow-left-circle:before {
  content: "\e885"; }

.lnr-arrow-right-circle:before {
  content: "\e886"; }

.lnr-chevron-up-circle:before {
  content: "\e887"; }

.lnr-chevron-down-circle:before {
  content: "\e888"; }

.lnr-chevron-left-circle:before {
  content: "\e889"; }

.lnr-chevron-right-circle:before {
  content: "\e88a"; }

.lnr-crop:before {
  content: "\e88b"; }

.lnr-frame-expand:before {
  content: "\e88c"; }

.lnr-frame-contract:before {
  content: "\e88d"; }

.lnr-layers:before {
  content: "\e88e"; }

.lnr-funnel:before {
  content: "\e88f"; }

.lnr-text-format:before {
  content: "\e890"; }

.lnr-text-format-remove:before {
  content: "\e891"; }

.lnr-text-size:before {
  content: "\e892"; }

.lnr-bold:before {
  content: "\e893"; }

.lnr-italic:before {
  content: "\e894"; }

.lnr-underline:before {
  content: "\e895"; }

.lnr-strikethrough:before {
  content: "\e896"; }

.lnr-highlight:before {
  content: "\e897"; }

.lnr-text-align-left:before {
  content: "\e898"; }

.lnr-text-align-center:before {
  content: "\e899"; }

.lnr-text-align-right:before {
  content: "\e89a"; }

.lnr-text-align-justify:before {
  content: "\e89b"; }

.lnr-line-spacing:before {
  content: "\e89c"; }

.lnr-indent-increase:before {
  content: "\e89d"; }

.lnr-indent-decrease:before {
  content: "\e89e"; }

.lnr-pilcrow:before {
  content: "\e89f"; }

.lnr-direction-ltr:before {
  content: "\e8a0"; }

.lnr-direction-rtl:before {
  content: "\e8a1"; }

.lnr-page-break:before {
  content: "\e8a2"; }

.lnr-sort-alpha-asc:before {
  content: "\e8a3"; }

.lnr-sort-amount-asc:before {
  content: "\e8a4"; }

.lnr-hand:before {
  content: "\e8a5"; }

.lnr-pointer-up:before {
  content: "\e8a6"; }

.lnr-pointer-right:before {
  content: "\e8a7"; }

.lnr-pointer-down:before {
  content: "\e8a8"; }

.lnr-pointer-left:before {
  content: "\e8a9"; }

/*!
 * Font Awesome Free 5.10.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
.fa, .fab, .fad, .fal, .far, .fas {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1; }

.fa-lg {
  font-size: 1.33333em;
  line-height: .75em;
  vertical-align: -.0667em; }

.fa-xs {
  font-size: .75em; }

.fa-sm {
  font-size: .875em; }

.fa-1x {
  font-size: 1em; }

.fa-2x {
  font-size: 2em; }

.fa-3x {
  font-size: 3em; }

.fa-4x {
  font-size: 4em; }

.fa-5x {
  font-size: 5em; }

.fa-6x {
  font-size: 6em; }

.fa-7x {
  font-size: 7em; }

.fa-8x {
  font-size: 8em; }

.fa-9x {
  font-size: 9em; }

.fa-10x {
  font-size: 10em; }

.fa-fw {
  text-align: center;
  width: 1.25em; }

.fa-ul {
  list-style-type: none;
  margin-left: 2.5em;
  padding-left: 0; }

.fa-ul &gt; li {
  position: relative; }

.fa-li {
  left: -2em;
  position: absolute;
  text-align: center;
  width: 2em;
  line-height: inherit; }

.fa-border {
  border: .08em solid #eee;
  border-radius: .1em;
  padding: .2em .25em .15em; }

.fa-pull-left {
  float: left; }

.fa-pull-right {
  float: right; }

.fa.fa-pull-left, .fab.fa-pull-left, .fal.fa-pull-left, .far.fa-pull-left, .fas.fa-pull-left {
  margin-right: .3em; }

.fa.fa-pull-right, .fab.fa-pull-right, .fal.fa-pull-right, .far.fa-pull-right, .fas.fa-pull-right {
  margin-left: .3em; }

.fa-spin {
  -webkit-animation: fa-spin 2s linear infinite;
  animation: fa-spin 2s linear infinite; }

.fa-pulse {
  -webkit-animation: fa-spin 1s steps(8) infinite;
  animation: fa-spin 1s steps(8) infinite; }

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn); } }

@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn); } }

.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg); }

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg); }

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg); }

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  transform: scaleX(-1); }

.fa-flip-vertical {
  -webkit-transform: scaleY(-1);
  -ms-transform: scaleY(-1);
  transform: scaleY(-1); }

.fa-flip-both, .fa-flip-horizontal.fa-flip-vertical, .fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; }

.fa-flip-both, .fa-flip-horizontal.fa-flip-vertical {
  -webkit-transform: scale(-1);
  -ms-transform: scale(-1);
  transform: scale(-1); }

:root .fa-flip-both, :root .fa-flip-horizontal, :root .fa-flip-vertical, :root .fa-rotate-90, :root .fa-rotate-180, :root .fa-rotate-270 {
  -webkit-filter: none;
  filter: none; }

.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em; }

.fa-stack-1x, .fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%; }

.fa-stack-1x {
  line-height: inherit; }

.fa-stack-2x {
  font-size: 2em; }

.fa-inverse {
  color: #fff; }

.fa-500px:before {
  content: "\f26e"; }

.fa-accessible-icon:before {
  content: "\f368"; }

.fa-accusoft:before {
  content: "\f369"; }

.fa-acquisitions-incorporated:before {
  content: "\f6af"; }

.fa-ad:before {
  content: "\f641"; }

.fa-address-book:before {
  content: "\f2b9"; }

.fa-address-card:before {
  content: "\f2bb"; }

.fa-adjust:before {
  content: "\f042"; }

.fa-adn:before {
  content: "\f170"; }

.fa-adobe:before {
  content: "\f778"; }

.fa-adversal:before {
  content: "\f36a"; }

.fa-affiliatetheme:before {
  content: "\f36b"; }

.fa-air-freshener:before {
  content: "\f5d0"; }

.fa-airbnb:before {
  content: "\f834"; }

.fa-algolia:before {
  content: "\f36c"; }

.fa-align-center:before {
  content: "\f037"; }

.fa-align-justify:before {
  content: "\f039"; }

.fa-align-left:before {
  content: "\f036"; }

.fa-align-right:before {
  content: "\f038"; }

.fa-alipay:before {
  content: "\f642"; }

.fa-allergies:before {
  content: "\f461"; }

.fa-amazon:before {
  content: "\f270"; }

.fa-amazon-pay:before {
  content: "\f42c"; }

.fa-ambulance:before {
  content: "\f0f9"; }

.fa-american-sign-language-interpreting:before {
  content: "\f2a3"; }

.fa-amilia:before {
  content: "\f36d"; }

.fa-anchor:before {
  content: "\f13d"; }

.fa-android:before {
  content: "\f17b"; }

.fa-angellist:before {
  content: "\f209"; }

.fa-angle-double-down:before {
  content: "\f103"; }

.fa-angle-double-left:before {
  content: "\f100"; }

.fa-angle-double-right:before {
  content: "\f101"; }

.fa-angle-double-up:before {
  content: "\f102"; }

.fa-angle-down:before {
  content: "\f107"; }

.fa-angle-left:before {
  content: "\f104"; }

.fa-angle-right:before {
  content: "\f105"; }

.fa-angle-up:before {
  content: "\f106"; }

.fa-angry:before {
  content: "\f556"; }

.fa-angrycreative:before {
  content: "\f36e"; }

.fa-angular:before {
  content: "\f420"; }

.fa-ankh:before {
  content: "\f644"; }

.fa-app-store:before {
  content: "\f36f"; }

.fa-app-store-ios:before {
  content: "\f370"; }

.fa-apper:before {
  content: "\f371"; }

.fa-apple:before {
  content: "\f179"; }

.fa-apple-alt:before {
  content: "\f5d1"; }

.fa-apple-pay:before {
  content: "\f415"; }

.fa-archive:before {
  content: "\f187"; }

.fa-archway:before {
  content: "\f557"; }

.fa-arrow-alt-circle-down:before {
  content: "\f358"; }

.fa-arrow-alt-circle-left:before {
  content: "\f359"; }

.fa-arrow-alt-circle-right:before {
  content: "\f35a"; }

.fa-arrow-alt-circle-up:before {
  content: "\f35b"; }

.fa-arrow-circle-down:before {
  content: "\f0ab"; }

.fa-arrow-circle-left:before {
  content: "\f0a8"; }

.fa-arrow-circle-right:before {
  content: "\f0a9"; }

.fa-arrow-circle-up:before {
  content: "\f0aa"; }

.fa-arrow-down:before {
  content: "\f063"; }

.fa-arrow-left:before {
  content: "\f060"; }

.fa-arrow-right:before {
  content: "\f061"; }

.fa-arrow-up:before {
  content: "\f062"; }

.fa-arrows-alt:before {
  content: "\f0b2"; }

.fa-arrows-alt-h:before {
  content: "\f337"; }

.fa-arrows-alt-v:before {
  content: "\f338"; }

.fa-artstation:before {
  content: "\f77a"; }

.fa-assistive-listening-systems:before {
  content: "\f2a2"; }

.fa-asterisk:before {
  content: "\f069"; }

.fa-asymmetrik:before {
  content: "\f372"; }

.fa-at:before {
  content: "\f1fa"; }

.fa-atlas:before {
  content: "\f558"; }

.fa-atlassian:before {
  content: "\f77b"; }

.fa-atom:before {
  content: "\f5d2"; }

.fa-audible:before {
  content: "\f373"; }

.fa-audio-description:before {
  content: "\f29e"; }

.fa-autoprefixer:before {
  content: "\f41c"; }

.fa-avianex:before {
  content: "\f374"; }

.fa-aviato:before {
  content: "\f421"; }

.fa-award:before {
  content: "\f559"; }

.fa-aws:before {
  content: "\f375"; }

.fa-baby:before {
  content: "\f77c"; }

.fa-baby-carriage:before {
  content: "\f77d"; }

.fa-backspace:before {
  content: "\f55a"; }

.fa-backward:before {
  content: "\f04a"; }

.fa-bacon:before {
  content: "\f7e5"; }

.fa-balance-scale:before {
  content: "\f24e"; }

.fa-balance-scale-left:before {
  content: "\f515"; }

.fa-balance-scale-right:before {
  content: "\f516"; }

.fa-ban:before {
  content: "\f05e"; }

.fa-band-aid:before {
  content: "\f462"; }

.fa-bandcamp:before {
  content: "\f2d5"; }

.fa-barcode:before {
  content: "\f02a"; }

.fa-bars:before {
  content: "\f0c9"; }

.fa-baseball-ball:before {
  content: "\f433"; }

.fa-basketball-ball:before {
  content: "\f434"; }

.fa-bath:before {
  content: "\f2cd"; }

.fa-battery-empty:before {
  content: "\f244"; }

.fa-battery-full:before {
  content: "\f240"; }

.fa-battery-half:before {
  content: "\f242"; }

.fa-battery-quarter:before {
  content: "\f243"; }

.fa-battery-three-quarters:before {
  content: "\f241"; }

.fa-battle-net:before {
  content: "\f835"; }

.fa-bed:before {
  content: "\f236"; }

.fa-beer:before {
  content: "\f0fc"; }

.fa-behance:before {
  content: "\f1b4"; }

.fa-behance-square:before {
  content: "\f1b5"; }

.fa-bell:before {
  content: "\f0f3"; }

.fa-bell-slash:before {
  content: "\f1f6"; }

.fa-bezier-curve:before {
  content: "\f55b"; }

.fa-bible:before {
  content: "\f647"; }

.fa-bicycle:before {
  content: "\f206"; }

.fa-biking:before {
  content: "\f84a"; }

.fa-bimobject:before {
  content: "\f378"; }

.fa-binoculars:before {
  content: "\f1e5"; }

.fa-biohazard:before {
  content: "\f780"; }

.fa-birthday-cake:before {
  content: "\f1fd"; }

.fa-bitbucket:before {
  content: "\f171"; }

.fa-bitcoin:before {
  content: "\f379"; }

.fa-bity:before {
  content: "\f37a"; }

.fa-black-tie:before {
  content: "\f27e"; }

.fa-blackberry:before {
  content: "\f37b"; }

.fa-blender:before {
  content: "\f517"; }

.fa-blender-phone:before {
  content: "\f6b6"; }

.fa-blind:before {
  content: "\f29d"; }

.fa-blog:before {
  content: "\f781"; }

.fa-blogger:before {
  content: "\f37c"; }

.fa-blogger-b:before {
  content: "\f37d"; }

.fa-bluetooth:before {
  content: "\f293"; }

.fa-bluetooth-b:before {
  content: "\f294"; }

.fa-bold:before {
  content: "\f032"; }

.fa-bolt:before {
  content: "\f0e7"; }

.fa-bomb:before {
  content: "\f1e2"; }

.fa-bone:before {
  content: "\f5d7"; }

.fa-bong:before {
  content: "\f55c"; }

.fa-book:before {
  content: "\f02d"; }

.fa-book-dead:before {
  content: "\f6b7"; }

.fa-book-medical:before {
  content: "\f7e6"; }

.fa-book-open:before {
  content: "\f518"; }

.fa-book-reader:before {
  content: "\f5da"; }

.fa-bookmark:before {
  content: "\f02e"; }

.fa-bootstrap:before {
  content: "\f836"; }

.fa-border-all:before {
  content: "\f84c"; }

.fa-border-none:before {
  content: "\f850"; }

.fa-border-style:before {
  content: "\f853"; }

.fa-bowling-ball:before {
  content: "\f436"; }

.fa-box:before {
  content: "\f466"; }

.fa-box-open:before {
  content: "\f49e"; }

.fa-boxes:before {
  content: "\f468"; }

.fa-braille:before {
  content: "\f2a1"; }

.fa-brain:before {
  content: "\f5dc"; }

.fa-bread-slice:before {
  content: "\f7ec"; }

.fa-briefcase:before {
  content: "\f0b1"; }

.fa-briefcase-medical:before {
  content: "\f469"; }

.fa-broadcast-tower:before {
  content: "\f519"; }

.fa-broom:before {
  content: "\f51a"; }

.fa-brush:before {
  content: "\f55d"; }

.fa-btc:before {
  content: "\f15a"; }

.fa-buffer:before {
  content: "\f837"; }

.fa-bug:before {
  content: "\f188"; }

.fa-building:before {
  content: "\f1ad"; }

.fa-bullhorn:before {
  content: "\f0a1"; }

.fa-bullseye:before {
  content: "\f140"; }

.fa-burn:before {
  content: "\f46a"; }

.fa-buromobelexperte:before {
  content: "\f37f"; }

.fa-bus:before {
  content: "\f207"; }

.fa-bus-alt:before {
  content: "\f55e"; }

.fa-business-time:before {
  content: "\f64a"; }

.fa-buysellads:before {
  content: "\f20d"; }

.fa-calculator:before {
  content: "\f1ec"; }

.fa-calendar:before {
  content: "\f133"; }

.fa-calendar-alt:before {
  content: "\f073"; }

.fa-calendar-check:before {
  content: "\f274"; }

.fa-calendar-day:before {
  content: "\f783"; }

.fa-calendar-minus:before {
  content: "\f272"; }

.fa-calendar-plus:before {
  content: "\f271"; }

.fa-calendar-times:before {
  content: "\f273"; }

.fa-calendar-week:before {
  content: "\f784"; }

.fa-camera:before {
  content: "\f030"; }

.fa-camera-retro:before {
  content: "\f083"; }

.fa-campground:before {
  content: "\f6bb"; }

.fa-canadian-maple-leaf:before {
  content: "\f785"; }

.fa-candy-cane:before {
  content: "\f786"; }

.fa-cannabis:before {
  content: "\f55f"; }

.fa-capsules:before {
  content: "\f46b"; }

.fa-car:before {
  content: "\f1b9"; }

.fa-car-alt:before {
  content: "\f5de"; }

.fa-car-battery:before {
  content: "\f5df"; }

.fa-car-crash:before {
  content: "\f5e1"; }

.fa-car-side:before {
  content: "\f5e4"; }

.fa-caret-down:before {
  content: "\f0d7"; }

.fa-caret-left:before {
  content: "\f0d9"; }

.fa-caret-right:before {
  content: "\f0da"; }

.fa-caret-square-down:before {
  content: "\f150"; }

.fa-caret-square-left:before {
  content: "\f191"; }

.fa-caret-square-right:before {
  content: "\f152"; }

.fa-caret-square-up:before {
  content: "\f151"; }

.fa-caret-up:before {
  content: "\f0d8"; }

.fa-carrot:before {
  content: "\f787"; }

.fa-cart-arrow-down:before {
  content: "\f218"; }

.fa-cart-plus:before {
  content: "\f217"; }

.fa-cash-register:before {
  content: "\f788"; }

.fa-cat:before {
  content: "\f6be"; }

.fa-cc-amazon-pay:before {
  content: "\f42d"; }

.fa-cc-amex:before {
  content: "\f1f3"; }

.fa-cc-apple-pay:before {
  content: "\f416"; }

.fa-cc-diners-club:before {
  content: "\f24c"; }

.fa-cc-discover:before {
  content: "\f1f2"; }

.fa-cc-jcb:before {
  content: "\f24b"; }

.fa-cc-mastercard:before {
  content: "\f1f1"; }

.fa-cc-paypal:before {
  content: "\f1f4"; }

.fa-cc-stripe:before {
  content: "\f1f5"; }

.fa-cc-visa:before {
  content: "\f1f0"; }

.fa-centercode:before {
  content: "\f380"; }

.fa-centos:before {
  content: "\f789"; }

.fa-certificate:before {
  content: "\f0a3"; }

.fa-chair:before {
  content: "\f6c0"; }

.fa-chalkboard:before {
  content: "\f51b"; }

.fa-chalkboard-teacher:before {
  content: "\f51c"; }

.fa-charging-station:before {
  content: "\f5e7"; }

.fa-chart-area:before {
  content: "\f1fe"; }

.fa-chart-bar:before {
  content: "\f080"; }

.fa-chart-line:before {
  content: "\f201"; }

.fa-chart-pie:before {
  content: "\f200"; }

.fa-check:before {
  content: "\f00c"; }

.fa-check-circle:before {
  content: "\f058"; }

.fa-check-double:before {
  content: "\f560"; }

.fa-check-square:before {
  content: "\f14a"; }

.fa-cheese:before {
  content: "\f7ef"; }

.fa-chess:before {
  content: "\f439"; }

.fa-chess-bishop:before {
  content: "\f43a"; }

.fa-chess-board:before {
  content: "\f43c"; }

.fa-chess-king:before {
  content: "\f43f"; }

.fa-chess-knight:before {
  content: "\f441"; }

.fa-chess-pawn:before {
  content: "\f443"; }

.fa-chess-queen:before {
  content: "\f445"; }

.fa-chess-rook:before {
  content: "\f447"; }

.fa-chevron-circle-down:before {
  content: "\f13a"; }

.fa-chevron-circle-left:before {
  content: "\f137"; }

.fa-chevron-circle-right:before {
  content: "\f138"; }

.fa-chevron-circle-up:before {
  content: "\f139"; }

.fa-chevron-down:before {
  content: "\f078"; }

.fa-chevron-left:before {
  content: "\f053"; }

.fa-chevron-right:before {
  content: "\f054"; }

.fa-chevron-up:before {
  content: "\f077"; }

.fa-child:before {
  content: "\f1ae"; }

.fa-chrome:before {
  content: "\f268"; }

.fa-chromecast:before {
  content: "\f838"; }

.fa-church:before {
  content: "\f51d"; }

.fa-circle:before {
  content: "\f111"; }

.fa-circle-notch:before {
  content: "\f1ce"; }

.fa-city:before {
  content: "\f64f"; }

.fa-clinic-medical:before {
  content: "\f7f2"; }

.fa-clipboard:before {
  content: "\f328"; }

.fa-clipboard-check:before {
  content: "\f46c"; }

.fa-clipboard-list:before {
  content: "\f46d"; }

.fa-clock:before {
  content: "\f017"; }

.fa-clone:before {
  content: "\f24d"; }

.fa-closed-captioning:before {
  content: "\f20a"; }

.fa-cloud:before {
  content: "\f0c2"; }

.fa-cloud-download-alt:before {
  content: "\f381"; }

.fa-cloud-meatball:before {
  content: "\f73b"; }

.fa-cloud-moon:before {
  content: "\f6c3"; }

.fa-cloud-moon-rain:before {
  content: "\f73c"; }

.fa-cloud-rain:before {
  content: "\f73d"; }

.fa-cloud-showers-heavy:before {
  content: "\f740"; }

.fa-cloud-sun:before {
  content: "\f6c4"; }

.fa-cloud-sun-rain:before {
  content: "\f743"; }

.fa-cloud-upload-alt:before {
  content: "\f382"; }

.fa-cloudscale:before {
  content: "\f383"; }

.fa-cloudsmith:before {
  content: "\f384"; }

.fa-cloudversify:before {
  content: "\f385"; }

.fa-cocktail:before {
  content: "\f561"; }

.fa-code:before {
  content: "\f121"; }

.fa-code-branch:before {
  content: "\f126"; }

.fa-codepen:before {
  content: "\f1cb"; }

.fa-codiepie:before {
  content: "\f284"; }

.fa-coffee:before {
  content: "\f0f4"; }

.fa-cog:before {
  content: "\f013"; }

.fa-cogs:before {
  content: "\f085"; }

.fa-coins:before {
  content: "\f51e"; }

.fa-columns:before {
  content: "\f0db"; }

.fa-comment:before {
  content: "\f075"; }

.fa-comment-alt:before {
  content: "\f27a"; }

.fa-comment-dollar:before {
  content: "\f651"; }

.fa-comment-dots:before {
  content: "\f4ad"; }

.fa-comment-medical:before {
  content: "\f7f5"; }

.fa-comment-slash:before {
  content: "\f4b3"; }

.fa-comments:before {
  content: "\f086"; }

.fa-comments-dollar:before {
  content: "\f653"; }

.fa-compact-disc:before {
  content: "\f51f"; }

.fa-compass:before {
  content: "\f14e"; }

.fa-compress:before {
  content: "\f066"; }

.fa-compress-arrows-alt:before {
  content: "\f78c"; }

.fa-concierge-bell:before {
  content: "\f562"; }

.fa-confluence:before {
  content: "\f78d"; }

.fa-connectdevelop:before {
  content: "\f20e"; }

.fa-contao:before {
  content: "\f26d"; }

.fa-cookie:before {
  content: "\f563"; }

.fa-cookie-bite:before {
  content: "\f564"; }

.fa-copy:before {
  content: "\f0c5"; }

.fa-copyright:before {
  content: "\f1f9"; }

.fa-cotton-bureau:before {
  content: "\f89e"; }

.fa-couch:before {
  content: "\f4b8"; }

.fa-cpanel:before {
  content: "\f388"; }

.fa-creative-commons:before {
  content: "\f25e"; }

.fa-creative-commons-by:before {
  content: "\f4e7"; }

.fa-creative-commons-nc:before {
  content: "\f4e8"; }

.fa-creative-commons-nc-eu:before {
  content: "\f4e9"; }

.fa-creative-commons-nc-jp:before {
  content: "\f4ea"; }

.fa-creative-commons-nd:before {
  content: "\f4eb"; }

.fa-creative-commons-pd:before {
  content: "\f4ec"; }

.fa-creative-commons-pd-alt:before {
  content: "\f4ed"; }

.fa-creative-commons-remix:before {
  content: "\f4ee"; }

.fa-creative-commons-sa:before {
  content: "\f4ef"; }

.fa-creative-commons-sampling:before {
  content: "\f4f0"; }

.fa-creative-commons-sampling-plus:before {
  content: "\f4f1"; }

.fa-creative-commons-share:before {
  content: "\f4f2"; }

.fa-creative-commons-zero:before {
  content: "\f4f3"; }

.fa-credit-card:before {
  content: "\f09d"; }

.fa-critical-role:before {
  content: "\f6c9"; }

.fa-crop:before {
  content: "\f125"; }

.fa-crop-alt:before {
  content: "\f565"; }

.fa-cross:before {
  content: "\f654"; }

.fa-crosshairs:before {
  content: "\f05b"; }

.fa-crow:before {
  content: "\f520"; }

.fa-crown:before {
  content: "\f521"; }

.fa-crutch:before {
  content: "\f7f7"; }

.fa-css3:before {
  content: "\f13c"; }

.fa-css3-alt:before {
  content: "\f38b"; }

.fa-cube:before {
  content: "\f1b2"; }

.fa-cubes:before {
  content: "\f1b3"; }

.fa-cut:before {
  content: "\f0c4"; }

.fa-cuttlefish:before {
  content: "\f38c"; }

.fa-d-and-d:before {
  content: "\f38d"; }

.fa-d-and-d-beyond:before {
  content: "\f6ca"; }

.fa-dashcube:before {
  content: "\f210"; }

.fa-database:before {
  content: "\f1c0"; }

.fa-deaf:before {
  content: "\f2a4"; }

.fa-delicious:before {
  content: "\f1a5"; }

.fa-democrat:before {
  content: "\f747"; }

.fa-deploydog:before {
  content: "\f38e"; }

.fa-deskpro:before {
  content: "\f38f"; }

.fa-desktop:before {
  content: "\f108"; }

.fa-dev:before {
  content: "\f6cc"; }

.fa-deviantart:before {
  content: "\f1bd"; }

.fa-dharmachakra:before {
  content: "\f655"; }

.fa-dhl:before {
  content: "\f790"; }

.fa-diagnoses:before {
  content: "\f470"; }

.fa-diaspora:before {
  content: "\f791"; }

.fa-dice:before {
  content: "\f522"; }

.fa-dice-d20:before {
  content: "\f6cf"; }

.fa-dice-d6:before {
  content: "\f6d1"; }

.fa-dice-five:before {
  content: "\f523"; }

.fa-dice-four:before {
  content: "\f524"; }

.fa-dice-one:before {
  content: "\f525"; }

.fa-dice-six:before {
  content: "\f526"; }

.fa-dice-three:before {
  content: "\f527"; }

.fa-dice-two:before {
  content: "\f528"; }

.fa-digg:before {
  content: "\f1a6"; }

.fa-digital-ocean:before {
  content: "\f391"; }

.fa-digital-tachograph:before {
  content: "\f566"; }

.fa-directions:before {
  content: "\f5eb"; }

.fa-discord:before {
  content: "\f392"; }

.fa-discourse:before {
  content: "\f393"; }

.fa-divide:before {
  content: "\f529"; }

.fa-dizzy:before {
  content: "\f567"; }

.fa-dna:before {
  content: "\f471"; }

.fa-dochub:before {
  content: "\f394"; }

.fa-docker:before {
  content: "\f395"; }

.fa-dog:before {
  content: "\f6d3"; }

.fa-dollar-sign:before {
  content: "\f155"; }

.fa-dolly:before {
  content: "\f472"; }

.fa-dolly-flatbed:before {
  content: "\f474"; }

.fa-donate:before {
  content: "\f4b9"; }

.fa-door-closed:before {
  content: "\f52a"; }

.fa-door-open:before {
  content: "\f52b"; }

.fa-dot-circle:before {
  content: "\f192"; }

.fa-dove:before {
  content: "\f4ba"; }

.fa-download:before {
  content: "\f019"; }

.fa-draft2digital:before {
  content: "\f396"; }

.fa-drafting-compass:before {
  content: "\f568"; }

.fa-dragon:before {
  content: "\f6d5"; }

.fa-draw-polygon:before {
  content: "\f5ee"; }

.fa-dribbble:before {
  content: "\f17d"; }

.fa-dribbble-square:before {
  content: "\f397"; }

.fa-dropbox:before {
  content: "\f16b"; }

.fa-drum:before {
  content: "\f569"; }

.fa-drum-steelpan:before {
  content: "\f56a"; }

.fa-drumstick-bite:before {
  content: "\f6d7"; }

.fa-drupal:before {
  content: "\f1a9"; }

.fa-dumbbell:before {
  content: "\f44b"; }

.fa-dumpster:before {
  content: "\f793"; }

.fa-dumpster-fire:before {
  content: "\f794"; }

.fa-dungeon:before {
  content: "\f6d9"; }

.fa-dyalog:before {
  content: "\f399"; }

.fa-earlybirds:before {
  content: "\f39a"; }

.fa-ebay:before {
  content: "\f4f4"; }

.fa-edge:before {
  content: "\f282"; }

.fa-edit:before {
  content: "\f044"; }

.fa-egg:before {
  content: "\f7fb"; }

.fa-eject:before {
  content: "\f052"; }

.fa-elementor:before {
  content: "\f430"; }

.fa-ellipsis-h:before {
  content: "\f141"; }

.fa-ellipsis-v:before {
  content: "\f142"; }

.fa-ello:before {
  content: "\f5f1"; }

.fa-ember:before {
  content: "\f423"; }

.fa-empire:before {
  content: "\f1d1"; }

.fa-envelope:before {
  content: "\f0e0"; }

.fa-envelope-open:before {
  content: "\f2b6"; }

.fa-envelope-open-text:before {
  content: "\f658"; }

.fa-envelope-square:before {
  content: "\f199"; }

.fa-envira:before {
  content: "\f299"; }

.fa-equals:before {
  content: "\f52c"; }

.fa-eraser:before {
  content: "\f12d"; }

.fa-erlang:before {
  content: "\f39d"; }

.fa-ethereum:before {
  content: "\f42e"; }

.fa-ethernet:before {
  content: "\f796"; }

.fa-etsy:before {
  content: "\f2d7"; }

.fa-euro-sign:before {
  content: "\f153"; }

.fa-evernote:before {
  content: "\f839"; }

.fa-exchange-alt:before {
  content: "\f362"; }

.fa-exclamation:before {
  content: "\f12a"; }

.fa-exclamation-circle:before {
  content: "\f06a"; }

.fa-exclamation-triangle:before {
  content: "\f071"; }

.fa-expand:before {
  content: "\f065"; }

.fa-expand-arrows-alt:before {
  content: "\f31e"; }

.fa-expeditedssl:before {
  content: "\f23e"; }

.fa-external-link-alt:before {
  content: "\f35d"; }

.fa-external-link-square-alt:before {
  content: "\f360"; }

.fa-eye:before {
  content: "\f06e"; }

.fa-eye-dropper:before {
  content: "\f1fb"; }

.fa-eye-slash:before {
  content: "\f070"; }

.fa-facebook:before {
  content: "\f09a"; }

.fa-facebook-f:before {
  content: "\f39e"; }

.fa-facebook-messenger:before {
  content: "\f39f"; }

.fa-facebook-square:before {
  content: "\f082"; }

.fa-fan:before {
  content: "\f863"; }

.fa-fantasy-flight-games:before {
  content: "\f6dc"; }

.fa-fast-backward:before {
  content: "\f049"; }

.fa-fast-forward:before {
  content: "\f050"; }

.fa-fax:before {
  content: "\f1ac"; }

.fa-feather:before {
  content: "\f52d"; }

.fa-feather-alt:before {
  content: "\f56b"; }

.fa-fedex:before {
  content: "\f797"; }

.fa-fedora:before {
  content: "\f798"; }

.fa-female:before {
  content: "\f182"; }

.fa-fighter-jet:before {
  content: "\f0fb"; }

.fa-figma:before {
  content: "\f799"; }

.fa-file:before {
  content: "\f15b"; }

.fa-file-alt:before {
  content: "\f15c"; }

.fa-file-archive:before {
  content: "\f1c6"; }

.fa-file-audio:before {
  content: "\f1c7"; }

.fa-file-code:before {
  content: "\f1c9"; }

.fa-file-contract:before {
  content: "\f56c"; }

.fa-file-csv:before {
  content: "\f6dd"; }

.fa-file-download:before {
  content: "\f56d"; }

.fa-file-excel:before {
  content: "\f1c3"; }

.fa-file-export:before {
  content: "\f56e"; }

.fa-file-image:before {
  content: "\f1c5"; }

.fa-file-import:before {
  content: "\f56f"; }

.fa-file-invoice:before {
  content: "\f570"; }

.fa-file-invoice-dollar:before {
  content: "\f571"; }

.fa-file-medical:before {
  content: "\f477"; }

.fa-file-medical-alt:before {
  content: "\f478"; }

.fa-file-pdf:before {
  content: "\f1c1"; }

.fa-file-powerpoint:before {
  content: "\f1c4"; }

.fa-file-prescription:before {
  content: "\f572"; }

.fa-file-signature:before {
  content: "\f573"; }

.fa-file-upload:before {
  content: "\f574"; }

.fa-file-video:before {
  content: "\f1c8"; }

.fa-file-word:before {
  content: "\f1c2"; }

.fa-fill:before {
  content: "\f575"; }

.fa-fill-drip:before {
  content: "\f576"; }

.fa-film:before {
  content: "\f008"; }

.fa-filter:before {
  content: "\f0b0"; }

.fa-fingerprint:before {
  content: "\f577"; }

.fa-fire:before {
  content: "\f06d"; }

.fa-fire-alt:before {
  content: "\f7e4"; }

.fa-fire-extinguisher:before {
  content: "\f134"; }

.fa-firefox:before {
  content: "\f269"; }

.fa-first-aid:before {
  content: "\f479"; }

.fa-first-order:before {
  content: "\f2b0"; }

.fa-first-order-alt:before {
  content: "\f50a"; }

.fa-firstdraft:before {
  content: "\f3a1"; }

.fa-fish:before {
  content: "\f578"; }

.fa-fist-raised:before {
  content: "\f6de"; }

.fa-flag:before {
  content: "\f024"; }

.fa-flag-checkered:before {
  content: "\f11e"; }

.fa-flag-usa:before {
  content: "\f74d"; }

.fa-flask:before {
  content: "\f0c3"; }

.fa-flickr:before {
  content: "\f16e"; }

.fa-flipboard:before {
  content: "\f44d"; }

.fa-flushed:before {
  content: "\f579"; }

.fa-fly:before {
  content: "\f417"; }

.fa-folder:before {
  content: "\f07b"; }

.fa-folder-minus:before {
  content: "\f65d"; }

.fa-folder-open:before {
  content: "\f07c"; }

.fa-folder-plus:before {
  content: "\f65e"; }

.fa-font:before {
  content: "\f031"; }

.fa-font-awesome:before {
  content: "\f2b4"; }

.fa-font-awesome-alt:before {
  content: "\f35c"; }

.fa-font-awesome-flag:before {
  content: "\f425"; }

.fa-font-awesome-logo-full:before {
  content: "\f4e6"; }

.fa-fonticons:before {
  content: "\f280"; }

.fa-fonticons-fi:before {
  content: "\f3a2"; }

.fa-football-ball:before {
  content: "\f44e"; }

.fa-fort-awesome:before {
  content: "\f286"; }

.fa-fort-awesome-alt:before {
  content: "\f3a3"; }

.fa-forumbee:before {
  content: "\f211"; }

.fa-forward:before {
  content: "\f04e"; }

.fa-foursquare:before {
  content: "\f180"; }

.fa-free-code-camp:before {
  content: "\f2c5"; }

.fa-freebsd:before {
  content: "\f3a4"; }

.fa-frog:before {
  content: "\f52e"; }

.fa-frown:before {
  content: "\f119"; }

.fa-frown-open:before {
  content: "\f57a"; }

.fa-fulcrum:before {
  content: "\f50b"; }

.fa-funnel-dollar:before {
  content: "\f662"; }

.fa-futbol:before {
  content: "\f1e3"; }

.fa-galactic-republic:before {
  content: "\f50c"; }

.fa-galactic-senate:before {
  content: "\f50d"; }

.fa-gamepad:before {
  content: "\f11b"; }

.fa-gas-pump:before {
  content: "\f52f"; }

.fa-gavel:before {
  content: "\f0e3"; }

.fa-gem:before {
  content: "\f3a5"; }

.fa-genderless:before {
  content: "\f22d"; }

.fa-get-pocket:before {
  content: "\f265"; }

.fa-gg:before {
  content: "\f260"; }

.fa-gg-circle:before {
  content: "\f261"; }

.fa-ghost:before {
  content: "\f6e2"; }

.fa-gift:before {
  content: "\f06b"; }

.fa-gifts:before {
  content: "\f79c"; }

.fa-git:before {
  content: "\f1d3"; }

.fa-git-alt:before {
  content: "\f841"; }

.fa-git-square:before {
  content: "\f1d2"; }

.fa-github:before {
  content: "\f09b"; }

.fa-github-alt:before {
  content: "\f113"; }

.fa-github-square:before {
  content: "\f092"; }

.fa-gitkraken:before {
  content: "\f3a6"; }

.fa-gitlab:before {
  content: "\f296"; }

.fa-gitter:before {
  content: "\f426"; }

.fa-glass-cheers:before {
  content: "\f79f"; }

.fa-glass-martini:before {
  content: "\f000"; }

.fa-glass-martini-alt:before {
  content: "\f57b"; }

.fa-glass-whiskey:before {
  content: "\f7a0"; }

.fa-glasses:before {
  content: "\f530"; }

.fa-glide:before {
  content: "\f2a5"; }

.fa-glide-g:before {
  content: "\f2a6"; }

.fa-globe:before {
  content: "\f0ac"; }

.fa-globe-africa:before {
  content: "\f57c"; }

.fa-globe-americas:before {
  content: "\f57d"; }

.fa-globe-asia:before {
  content: "\f57e"; }

.fa-globe-europe:before {
  content: "\f7a2"; }

.fa-gofore:before {
  content: "\f3a7"; }

.fa-golf-ball:before {
  content: "\f450"; }

.fa-goodreads:before {
  content: "\f3a8"; }

.fa-goodreads-g:before {
  content: "\f3a9"; }

.fa-google:before {
  content: "\f1a0"; }

.fa-google-drive:before {
  content: "\f3aa"; }

.fa-google-play:before {
  content: "\f3ab"; }

.fa-google-plus:before {
  content: "\f2b3"; }

.fa-google-plus-g:before {
  content: "\f0d5"; }

.fa-google-plus-square:before {
  content: "\f0d4"; }

.fa-google-wallet:before {
  content: "\f1ee"; }

.fa-gopuram:before {
  content: "\f664"; }

.fa-graduation-cap:before {
  content: "\f19d"; }

.fa-gratipay:before {
  content: "\f184"; }

.fa-grav:before {
  content: "\f2d6"; }

.fa-greater-than:before {
  content: "\f531"; }

.fa-greater-than-equal:before {
  content: "\f532"; }

.fa-grimace:before {
  content: "\f57f"; }

.fa-grin:before {
  content: "\f580"; }

.fa-grin-alt:before {
  content: "\f581"; }

.fa-grin-beam:before {
  content: "\f582"; }

.fa-grin-beam-sweat:before {
  content: "\f583"; }

.fa-grin-hearts:before {
  content: "\f584"; }

.fa-grin-squint:before {
  content: "\f585"; }

.fa-grin-squint-tears:before {
  content: "\f586"; }

.fa-grin-stars:before {
  content: "\f587"; }

.fa-grin-tears:before {
  content: "\f588"; }

.fa-grin-tongue:before {
  content: "\f589"; }

.fa-grin-tongue-squint:before {
  content: "\f58a"; }

.fa-grin-tongue-wink:before {
  content: "\f58b"; }

.fa-grin-wink:before {
  content: "\f58c"; }

.fa-grip-horizontal:before {
  content: "\f58d"; }

.fa-grip-lines:before {
  content: "\f7a4"; }

.fa-grip-lines-vertical:before {
  content: "\f7a5"; }

.fa-grip-vertical:before {
  content: "\f58e"; }

.fa-gripfire:before {
  content: "\f3ac"; }

.fa-grunt:before {
  content: "\f3ad"; }

.fa-guitar:before {
  content: "\f7a6"; }

.fa-gulp:before {
  content: "\f3ae"; }

.fa-h-square:before {
  content: "\f0fd"; }

.fa-hacker-news:before {
  content: "\f1d4"; }

.fa-hacker-news-square:before {
  content: "\f3af"; }

.fa-hackerrank:before {
  content: "\f5f7"; }

.fa-hamburger:before {
  content: "\f805"; }

.fa-hammer:before {
  content: "\f6e3"; }

.fa-hamsa:before {
  content: "\f665"; }

.fa-hand-holding:before {
  content: "\f4bd"; }

.fa-hand-holding-heart:before {
  content: "\f4be"; }

.fa-hand-holding-usd:before {
  content: "\f4c0"; }

.fa-hand-lizard:before {
  content: "\f258"; }

.fa-hand-middle-finger:before {
  content: "\f806"; }

.fa-hand-paper:before {
  content: "\f256"; }

.fa-hand-peace:before {
  content: "\f25b"; }

.fa-hand-point-down:before {
  content: "\f0a7"; }

.fa-hand-point-left:before {
  content: "\f0a5"; }

.fa-hand-point-right:before {
  content: "\f0a4"; }

.fa-hand-point-up:before {
  content: "\f0a6"; }

.fa-hand-pointer:before {
  content: "\f25a"; }

.fa-hand-rock:before {
  content: "\f255"; }

.fa-hand-scissors:before {
  content: "\f257"; }

.fa-hand-spock:before {
  content: "\f259"; }

.fa-hands:before {
  content: "\f4c2"; }

.fa-hands-helping:before {
  content: "\f4c4"; }

.fa-handshake:before {
  content: "\f2b5"; }

.fa-hanukiah:before {
  content: "\f6e6"; }

.fa-hard-hat:before {
  content: "\f807"; }

.fa-hashtag:before {
  content: "\f292"; }

.fa-hat-wizard:before {
  content: "\f6e8"; }

.fa-haykal:before {
  content: "\f666"; }

.fa-hdd:before {
  content: "\f0a0"; }

.fa-heading:before {
  content: "\f1dc"; }

.fa-headphones:before {
  content: "\f025"; }

.fa-headphones-alt:before {
  content: "\f58f"; }

.fa-headset:before {
  content: "\f590"; }

.fa-heart:before {
  content: "\f004"; }

.fa-heart-broken:before {
  content: "\f7a9"; }

.fa-heartbeat:before {
  content: "\f21e"; }

.fa-helicopter:before {
  content: "\f533"; }

.fa-highlighter:before {
  content: "\f591"; }

.fa-hiking:before {
  content: "\f6ec"; }

.fa-hippo:before {
  content: "\f6ed"; }

.fa-hips:before {
  content: "\f452"; }

.fa-hire-a-helper:before {
  content: "\f3b0"; }

.fa-history:before {
  content: "\f1da"; }

.fa-hockey-puck:before {
  content: "\f453"; }

.fa-holly-berry:before {
  content: "\f7aa"; }

.fa-home:before {
  content: "\f015"; }

.fa-hooli:before {
  content: "\f427"; }

.fa-hornbill:before {
  content: "\f592"; }

.fa-horse:before {
  content: "\f6f0"; }

.fa-horse-head:before {
  content: "\f7ab"; }

.fa-hospital:before {
  content: "\f0f8"; }

.fa-hospital-alt:before {
  content: "\f47d"; }

.fa-hospital-symbol:before {
  content: "\f47e"; }

.fa-hot-tub:before {
  content: "\f593"; }

.fa-hotdog:before {
  content: "\f80f"; }

.fa-hotel:before {
  content: "\f594"; }

.fa-hotjar:before {
  content: "\f3b1"; }

.fa-hourglass:before {
  content: "\f254"; }

.fa-hourglass-end:before {
  content: "\f253"; }

.fa-hourglass-half:before {
  content: "\f252"; }

.fa-hourglass-start:before {
  content: "\f251"; }

.fa-house-damage:before {
  content: "\f6f1"; }

.fa-houzz:before {
  content: "\f27c"; }

.fa-hryvnia:before {
  content: "\f6f2"; }

.fa-html5:before {
  content: "\f13b"; }

.fa-hubspot:before {
  content: "\f3b2"; }

.fa-i-cursor:before {
  content: "\f246"; }

.fa-ice-cream:before {
  content: "\f810"; }

.fa-icicles:before {
  content: "\f7ad"; }

.fa-icons:before {
  content: "\f86d"; }

.fa-id-badge:before {
  content: "\f2c1"; }

.fa-id-card:before {
  content: "\f2c2"; }

.fa-id-card-alt:before {
  content: "\f47f"; }

.fa-igloo:before {
  content: "\f7ae"; }

.fa-image:before {
  content: "\f03e"; }

.fa-images:before {
  content: "\f302"; }

.fa-imdb:before {
  content: "\f2d8"; }

.fa-inbox:before {
  content: "\f01c"; }

.fa-indent:before {
  content: "\f03c"; }

.fa-industry:before {
  content: "\f275"; }

.fa-infinity:before {
  content: "\f534"; }

.fa-info:before {
  content: "\f129"; }

.fa-info-circle:before {
  content: "\f05a"; }

.fa-instagram:before {
  content: "\f16d"; }

.fa-intercom:before {
  content: "\f7af"; }

.fa-internet-explorer:before {
  content: "\f26b"; }

.fa-invision:before {
  content: "\f7b0"; }

.fa-ioxhost:before {
  content: "\f208"; }

.fa-italic:before {
  content: "\f033"; }

.fa-itch-io:before {
  content: "\f83a"; }

.fa-itunes:before {
  content: "\f3b4"; }

.fa-itunes-note:before {
  content: "\f3b5"; }

.fa-java:before {
  content: "\f4e4"; }

.fa-jedi:before {
  content: "\f669"; }

.fa-jedi-order:before {
  content: "\f50e"; }

.fa-jenkins:before {
  content: "\f3b6"; }

.fa-jira:before {
  content: "\f7b1"; }

.fa-joget:before {
  content: "\f3b7"; }

.fa-joint:before {
  content: "\f595"; }

.fa-joomla:before {
  content: "\f1aa"; }

.fa-journal-whills:before {
  content: "\f66a"; }

.fa-js:before {
  content: "\f3b8"; }

.fa-js-square:before {
  content: "\f3b9"; }

.fa-jsfiddle:before {
  content: "\f1cc"; }

.fa-kaaba:before {
  content: "\f66b"; }

.fa-kaggle:before {
  content: "\f5fa"; }

.fa-key:before {
  content: "\f084"; }

.fa-keybase:before {
  content: "\f4f5"; }

.fa-keyboard:before {
  content: "\f11c"; }

.fa-keycdn:before {
  content: "\f3ba"; }

.fa-khanda:before {
  content: "\f66d"; }

.fa-kickstarter:before {
  content: "\f3bb"; }

.fa-kickstarter-k:before {
  content: "\f3bc"; }

.fa-kiss:before {
  content: "\f596"; }

.fa-kiss-beam:before {
  content: "\f597"; }

.fa-kiss-wink-heart:before {
  content: "\f598"; }

.fa-kiwi-bird:before {
  content: "\f535"; }

.fa-korvue:before {
  content: "\f42f"; }

.fa-landmark:before {
  content: "\f66f"; }

.fa-language:before {
  content: "\f1ab"; }

.fa-laptop:before {
  content: "\f109"; }

.fa-laptop-code:before {
  content: "\f5fc"; }

.fa-laptop-medical:before {
  content: "\f812"; }

.fa-laravel:before {
  content: "\f3bd"; }

.fa-lastfm:before {
  content: "\f202"; }

.fa-lastfm-square:before {
  content: "\f203"; }

.fa-laugh:before {
  content: "\f599"; }

.fa-laugh-beam:before {
  content: "\f59a"; }

.fa-laugh-squint:before {
  content: "\f59b"; }

.fa-laugh-wink:before {
  content: "\f59c"; }

.fa-layer-group:before {
  content: "\f5fd"; }

.fa-leaf:before {
  content: "\f06c"; }

.fa-leanpub:before {
  content: "\f212"; }

.fa-lemon:before {
  content: "\f094"; }

.fa-less:before {
  content: "\f41d"; }

.fa-less-than:before {
  content: "\f536"; }

.fa-less-than-equal:before {
  content: "\f537"; }

.fa-level-down-alt:before {
  content: "\f3be"; }

.fa-level-up-alt:before {
  content: "\f3bf"; }

.fa-life-ring:before {
  content: "\f1cd"; }

.fa-lightbulb:before {
  content: "\f0eb"; }

.fa-line:before {
  content: "\f3c0"; }

.fa-link:before {
  content: "\f0c1"; }

.fa-linkedin:before {
  content: "\f08c"; }

.fa-linkedin-in:before {
  content: "\f0e1"; }

.fa-linode:before {
  content: "\f2b8"; }

.fa-linux:before {
  content: "\f17c"; }

.fa-lira-sign:before {
  content: "\f195"; }

.fa-list:before {
  content: "\f03a"; }

.fa-list-alt:before {
  content: "\f022"; }

.fa-list-ol:before {
  content: "\f0cb"; }

.fa-list-ul:before {
  content: "\f0ca"; }

.fa-location-arrow:before {
  content: "\f124"; }

.fa-lock:before {
  content: "\f023"; }

.fa-lock-open:before {
  content: "\f3c1"; }

.fa-long-arrow-alt-down:before {
  content: "\f309"; }

.fa-long-arrow-alt-left:before {
  content: "\f30a"; }

.fa-long-arrow-alt-right:before {
  content: "\f30b"; }

.fa-long-arrow-alt-up:before {
  content: "\f30c"; }

.fa-low-vision:before {
  content: "\f2a8"; }

.fa-luggage-cart:before {
  content: "\f59d"; }

.fa-lyft:before {
  content: "\f3c3"; }

.fa-magento:before {
  content: "\f3c4"; }

.fa-magic:before {
  content: "\f0d0"; }

.fa-magnet:before {
  content: "\f076"; }

.fa-mail-bulk:before {
  content: "\f674"; }

.fa-mailchimp:before {
  content: "\f59e"; }

.fa-male:before {
  content: "\f183"; }

.fa-mandalorian:before {
  content: "\f50f"; }

.fa-map:before {
  content: "\f279"; }

.fa-map-marked:before {
  content: "\f59f"; }

.fa-map-marked-alt:before {
  content: "\f5a0"; }

.fa-map-marker:before {
  content: "\f041"; }

.fa-map-marker-alt:before {
  content: "\f3c5"; }

.fa-map-pin:before {
  content: "\f276"; }

.fa-map-signs:before {
  content: "\f277"; }

.fa-markdown:before {
  content: "\f60f"; }

.fa-marker:before {
  content: "\f5a1"; }

.fa-mars:before {
  content: "\f222"; }

.fa-mars-double:before {
  content: "\f227"; }

.fa-mars-stroke:before {
  content: "\f229"; }

.fa-mars-stroke-h:before {
  content: "\f22b"; }

.fa-mars-stroke-v:before {
  content: "\f22a"; }

.fa-mask:before {
  content: "\f6fa"; }

.fa-mastodon:before {
  content: "\f4f6"; }

.fa-maxcdn:before {
  content: "\f136"; }

.fa-medal:before {
  content: "\f5a2"; }

.fa-medapps:before {
  content: "\f3c6"; }

.fa-medium:before {
  content: "\f23a"; }

.fa-medium-m:before {
  content: "\f3c7"; }

.fa-medkit:before {
  content: "\f0fa"; }

.fa-medrt:before {
  content: "\f3c8"; }

.fa-meetup:before {
  content: "\f2e0"; }

.fa-megaport:before {
  content: "\f5a3"; }

.fa-meh:before {
  content: "\f11a"; }

.fa-meh-blank:before {
  content: "\f5a4"; }

.fa-meh-rolling-eyes:before {
  content: "\f5a5"; }

.fa-memory:before {
  content: "\f538"; }

.fa-mendeley:before {
  content: "\f7b3"; }

.fa-menorah:before {
  content: "\f676"; }

.fa-mercury:before {
  content: "\f223"; }

.fa-meteor:before {
  content: "\f753"; }

.fa-microchip:before {
  content: "\f2db"; }

.fa-microphone:before {
  content: "\f130"; }

.fa-microphone-alt:before {
  content: "\f3c9"; }

.fa-microphone-alt-slash:before {
  content: "\f539"; }

.fa-microphone-slash:before {
  content: "\f131"; }

.fa-microscope:before {
  content: "\f610"; }

.fa-microsoft:before {
  content: "\f3ca"; }

.fa-minus:before {
  content: "\f068"; }

.fa-minus-circle:before {
  content: "\f056"; }

.fa-minus-square:before {
  content: "\f146"; }

.fa-mitten:before {
  content: "\f7b5"; }

.fa-mix:before {
  content: "\f3cb"; }

.fa-mixcloud:before {
  content: "\f289"; }

.fa-mizuni:before {
  content: "\f3cc"; }

.fa-mobile:before {
  content: "\f10b"; }

.fa-mobile-alt:before {
  content: "\f3cd"; }

.fa-modx:before {
  content: "\f285"; }

.fa-monero:before {
  content: "\f3d0"; }

.fa-money-bill:before {
  content: "\f0d6"; }

.fa-money-bill-alt:before {
  content: "\f3d1"; }

.fa-money-bill-wave:before {
  content: "\f53a"; }

.fa-money-bill-wave-alt:before {
  content: "\f53b"; }

.fa-money-check:before {
  content: "\f53c"; }

.fa-money-check-alt:before {
  content: "\f53d"; }

.fa-monument:before {
  content: "\f5a6"; }

.fa-moon:before {
  content: "\f186"; }

.fa-mortar-pestle:before {
  content: "\f5a7"; }

.fa-mosque:before {
  content: "\f678"; }

.fa-motorcycle:before {
  content: "\f21c"; }

.fa-mountain:before {
  content: "\f6fc"; }

.fa-mouse-pointer:before {
  content: "\f245"; }

.fa-mug-hot:before {
  content: "\f7b6"; }

.fa-music:before {
  content: "\f001"; }

.fa-napster:before {
  content: "\f3d2"; }

.fa-neos:before {
  content: "\f612"; }

.fa-network-wired:before {
  content: "\f6ff"; }

.fa-neuter:before {
  content: "\f22c"; }

.fa-newspaper:before {
  content: "\f1ea"; }

.fa-nimblr:before {
  content: "\f5a8"; }

.fa-node:before {
  content: "\f419"; }

.fa-node-js:before {
  content: "\f3d3"; }

.fa-not-equal:before {
  content: "\f53e"; }

.fa-notes-medical:before {
  content: "\f481"; }

.fa-npm:before {
  content: "\f3d4"; }

.fa-ns8:before {
  content: "\f3d5"; }

.fa-nutritionix:before {
  content: "\f3d6"; }

.fa-object-group:before {
  content: "\f247"; }

.fa-object-ungroup:before {
  content: "\f248"; }

.fa-odnoklassniki:before {
  content: "\f263"; }

.fa-odnoklassniki-square:before {
  content: "\f264"; }

.fa-oil-can:before {
  content: "\f613"; }

.fa-old-republic:before {
  content: "\f510"; }

.fa-om:before {
  content: "\f679"; }

.fa-opencart:before {
  content: "\f23d"; }

.fa-openid:before {
  content: "\f19b"; }

.fa-opera:before {
  content: "\f26a"; }

.fa-optin-monster:before {
  content: "\f23c"; }

.fa-osi:before {
  content: "\f41a"; }

.fa-otter:before {
  content: "\f700"; }

.fa-outdent:before {
  content: "\f03b"; }

.fa-page4:before {
  content: "\f3d7"; }

.fa-pagelines:before {
  content: "\f18c"; }

.fa-pager:before {
  content: "\f815"; }

.fa-paint-brush:before {
  content: "\f1fc"; }

.fa-paint-roller:before {
  content: "\f5aa"; }

.fa-palette:before {
  content: "\f53f"; }

.fa-palfed:before {
  content: "\f3d8"; }

.fa-pallet:before {
  content: "\f482"; }

.fa-paper-plane:before {
  content: "\f1d8"; }

.fa-paperclip:before {
  content: "\f0c6"; }

.fa-parachute-box:before {
  content: "\f4cd"; }

.fa-paragraph:before {
  content: "\f1dd"; }

.fa-parking:before {
  content: "\f540"; }

.fa-passport:before {
  content: "\f5ab"; }

.fa-pastafarianism:before {
  content: "\f67b"; }

.fa-paste:before {
  content: "\f0ea"; }

.fa-patreon:before {
  content: "\f3d9"; }

.fa-pause:before {
  content: "\f04c"; }

.fa-pause-circle:before {
  content: "\f28b"; }

.fa-paw:before {
  content: "\f1b0"; }

.fa-paypal:before {
  content: "\f1ed"; }

.fa-peace:before {
  content: "\f67c"; }

.fa-pen:before {
  content: "\f304"; }

.fa-pen-alt:before {
  content: "\f305"; }

.fa-pen-fancy:before {
  content: "\f5ac"; }

.fa-pen-nib:before {
  content: "\f5ad"; }

.fa-pen-square:before {
  content: "\f14b"; }

.fa-pencil-alt:before {
  content: "\f303"; }

.fa-pencil-ruler:before {
  content: "\f5ae"; }

.fa-penny-arcade:before {
  content: "\f704"; }

.fa-people-carry:before {
  content: "\f4ce"; }

.fa-pepper-hot:before {
  content: "\f816"; }

.fa-percent:before {
  content: "\f295"; }

.fa-percentage:before {
  content: "\f541"; }

.fa-periscope:before {
  content: "\f3da"; }

.fa-person-booth:before {
  content: "\f756"; }

.fa-phabricator:before {
  content: "\f3db"; }

.fa-phoenix-framework:before {
  content: "\f3dc"; }

.fa-phoenix-squadron:before {
  content: "\f511"; }

.fa-phone:before {
  content: "\f095"; }

.fa-phone-alt:before {
  content: "\f879"; }

.fa-phone-slash:before {
  content: "\f3dd"; }

.fa-phone-square:before {
  content: "\f098"; }

.fa-phone-square-alt:before {
  content: "\f87b"; }

.fa-phone-volume:before {
  content: "\f2a0"; }

.fa-photo-video:before {
  content: "\f87c"; }

.fa-php:before {
  content: "\f457"; }

.fa-pied-piper:before {
  content: "\f2ae"; }

.fa-pied-piper-alt:before {
  content: "\f1a8"; }

.fa-pied-piper-hat:before {
  content: "\f4e5"; }

.fa-pied-piper-pp:before {
  content: "\f1a7"; }

.fa-piggy-bank:before {
  content: "\f4d3"; }

.fa-pills:before {
  content: "\f484"; }

.fa-pinterest:before {
  content: "\f0d2"; }

.fa-pinterest-p:before {
  content: "\f231"; }

.fa-pinterest-square:before {
  content: "\f0d3"; }

.fa-pizza-slice:before {
  content: "\f818"; }

.fa-place-of-worship:before {
  content: "\f67f"; }

.fa-plane:before {
  content: "\f072"; }

.fa-plane-arrival:before {
  content: "\f5af"; }

.fa-plane-departure:before {
  content: "\f5b0"; }

.fa-play:before {
  content: "\f04b"; }

.fa-play-circle:before {
  content: "\f144"; }

.fa-playstation:before {
  content: "\f3df"; }

.fa-plug:before {
  content: "\f1e6"; }

.fa-plus:before {
  content: "\f067"; }

.fa-plus-circle:before {
  content: "\f055"; }

.fa-plus-square:before {
  content: "\f0fe"; }

.fa-podcast:before {
  content: "\f2ce"; }

.fa-poll:before {
  content: "\f681"; }

.fa-poll-h:before {
  content: "\f682"; }

.fa-poo:before {
  content: "\f2fe"; }

.fa-poo-storm:before {
  content: "\f75a"; }

.fa-poop:before {
  content: "\f619"; }

.fa-portrait:before {
  content: "\f3e0"; }

.fa-pound-sign:before {
  content: "\f154"; }

.fa-power-off:before {
  content: "\f011"; }

.fa-pray:before {
  content: "\f683"; }

.fa-praying-hands:before {
  content: "\f684"; }

.fa-prescription:before {
  content: "\f5b1"; }

.fa-prescription-bottle:before {
  content: "\f485"; }

.fa-prescription-bottle-alt:before {
  content: "\f486"; }

.fa-print:before {
  content: "\f02f"; }

.fa-procedures:before {
  content: "\f487"; }

.fa-product-hunt:before {
  content: "\f288"; }

.fa-project-diagram:before {
  content: "\f542"; }

.fa-pushed:before {
  content: "\f3e1"; }

.fa-puzzle-piece:before {
  content: "\f12e"; }

.fa-python:before {
  content: "\f3e2"; }

.fa-qq:before {
  content: "\f1d6"; }

.fa-qrcode:before {
  content: "\f029"; }

.fa-question:before {
  content: "\f128"; }

.fa-question-circle:before {
  content: "\f059"; }

.fa-quidditch:before {
  content: "\f458"; }

.fa-quinscape:before {
  content: "\f459"; }

.fa-quora:before {
  content: "\f2c4"; }

.fa-quote-left:before {
  content: "\f10d"; }

.fa-quote-right:before {
  content: "\f10e"; }

.fa-quran:before {
  content: "\f687"; }

.fa-r-project:before {
  content: "\f4f7"; }

.fa-radiation:before {
  content: "\f7b9"; }

.fa-radiation-alt:before {
  content: "\f7ba"; }

.fa-rainbow:before {
  content: "\f75b"; }

.fa-random:before {
  content: "\f074"; }

.fa-raspberry-pi:before {
  content: "\f7bb"; }

.fa-ravelry:before {
  content: "\f2d9"; }

.fa-react:before {
  content: "\f41b"; }

.fa-reacteurope:before {
  content: "\f75d"; }

.fa-readme:before {
  content: "\f4d5"; }

.fa-rebel:before {
  content: "\f1d0"; }

.fa-receipt:before {
  content: "\f543"; }

.fa-recycle:before {
  content: "\f1b8"; }

.fa-red-river:before {
  content: "\f3e3"; }

.fa-reddit:before {
  content: "\f1a1"; }

.fa-reddit-alien:before {
  content: "\f281"; }

.fa-reddit-square:before {
  content: "\f1a2"; }

.fa-redhat:before {
  content: "\f7bc"; }

.fa-redo:before {
  content: "\f01e"; }

.fa-redo-alt:before {
  content: "\f2f9"; }

.fa-registered:before {
  content: "\f25d"; }

.fa-remove-format:before {
  content: "\f87d"; }

.fa-renren:before {
  content: "\f18b"; }

.fa-reply:before {
  content: "\f3e5"; }

.fa-reply-all:before {
  content: "\f122"; }

.fa-replyd:before {
  content: "\f3e6"; }

.fa-republican:before {
  content: "\f75e"; }

.fa-researchgate:before {
  content: "\f4f8"; }

.fa-resolving:before {
  content: "\f3e7"; }

.fa-restroom:before {
  content: "\f7bd"; }

.fa-retweet:before {
  content: "\f079"; }

.fa-rev:before {
  content: "\f5b2"; }

.fa-ribbon:before {
  content: "\f4d6"; }

.fa-ring:before {
  content: "\f70b"; }

.fa-road:before {
  content: "\f018"; }

.fa-robot:before {
  content: "\f544"; }

.fa-rocket:before {
  content: "\f135"; }

.fa-rocketchat:before {
  content: "\f3e8"; }

.fa-rockrms:before {
  content: "\f3e9"; }

.fa-route:before {
  content: "\f4d7"; }

.fa-rss:before {
  content: "\f09e"; }

.fa-rss-square:before {
  content: "\f143"; }

.fa-ruble-sign:before {
  content: "\f158"; }

.fa-ruler:before {
  content: "\f545"; }

.fa-ruler-combined:before {
  content: "\f546"; }

.fa-ruler-horizontal:before {
  content: "\f547"; }

.fa-ruler-vertical:before {
  content: "\f548"; }

.fa-running:before {
  content: "\f70c"; }

.fa-rupee-sign:before {
  content: "\f156"; }

.fa-sad-cry:before {
  content: "\f5b3"; }

.fa-sad-tear:before {
  content: "\f5b4"; }

.fa-safari:before {
  content: "\f267"; }

.fa-salesforce:before {
  content: "\f83b"; }

.fa-sass:before {
  content: "\f41e"; }

.fa-satellite:before {
  content: "\f7bf"; }

.fa-satellite-dish:before {
  content: "\f7c0"; }

.fa-save:before {
  content: "\f0c7"; }

.fa-schlix:before {
  content: "\f3ea"; }

.fa-school:before {
  content: "\f549"; }

.fa-screwdriver:before {
  content: "\f54a"; }

.fa-scribd:before {
  content: "\f28a"; }

.fa-scroll:before {
  content: "\f70e"; }

.fa-sd-card:before {
  content: "\f7c2"; }

.fa-search:before {
  content: "\f002"; }

.fa-search-dollar:before {
  content: "\f688"; }

.fa-search-location:before {
  content: "\f689"; }

.fa-search-minus:before {
  content: "\f010"; }

.fa-search-plus:before {
  content: "\f00e"; }

.fa-searchengin:before {
  content: "\f3eb"; }

.fa-seedling:before {
  content: "\f4d8"; }

.fa-sellcast:before {
  content: "\f2da"; }

.fa-sellsy:before {
  content: "\f213"; }

.fa-server:before {
  content: "\f233"; }

.fa-servicestack:before {
  content: "\f3ec"; }

.fa-shapes:before {
  content: "\f61f"; }

.fa-share:before {
  content: "\f064"; }

.fa-share-alt:before {
  content: "\f1e0"; }

.fa-share-alt-square:before {
  content: "\f1e1"; }

.fa-share-square:before {
  content: "\f14d"; }

.fa-shekel-sign:before {
  content: "\f20b"; }

.fa-shield-alt:before {
  content: "\f3ed"; }

.fa-ship:before {
  content: "\f21a"; }

.fa-shipping-fast:before {
  content: "\f48b"; }

.fa-shirtsinbulk:before {
  content: "\f214"; }

.fa-shoe-prints:before {
  content: "\f54b"; }

.fa-shopping-bag:before {
  content: "\f290"; }

.fa-shopping-basket:before {
  content: "\f291"; }

.fa-shopping-cart:before {
  content: "\f07a"; }

.fa-shopware:before {
  content: "\f5b5"; }

.fa-shower:before {
  content: "\f2cc"; }

.fa-shuttle-van:before {
  content: "\f5b6"; }

.fa-sign:before {
  content: "\f4d9"; }

.fa-sign-in-alt:before {
  content: "\f2f6"; }

.fa-sign-language:before {
  content: "\f2a7"; }

.fa-sign-out-alt:before {
  content: "\f2f5"; }

.fa-signal:before {
  content: "\f012"; }

.fa-signature:before {
  content: "\f5b7"; }

.fa-sim-card:before {
  content: "\f7c4"; }

.fa-simplybuilt:before {
  content: "\f215"; }

.fa-sistrix:before {
  content: "\f3ee"; }

.fa-sitemap:before {
  content: "\f0e8"; }

.fa-sith:before {
  content: "\f512"; }

.fa-skating:before {
  content: "\f7c5"; }

.fa-sketch:before {
  content: "\f7c6"; }

.fa-skiing:before {
  content: "\f7c9"; }

.fa-skiing-nordic:before {
  content: "\f7ca"; }

.fa-skull:before {
  content: "\f54c"; }

.fa-skull-crossbones:before {
  content: "\f714"; }

.fa-skyatlas:before {
  content: "\f216"; }

.fa-skype:before {
  content: "\f17e"; }

.fa-slack:before {
  content: "\f198"; }

.fa-slack-hash:before {
  content: "\f3ef"; }

.fa-slash:before {
  content: "\f715"; }

.fa-sleigh:before {
  content: "\f7cc"; }

.fa-sliders-h:before {
  content: "\f1de"; }

.fa-slideshare:before {
  content: "\f1e7"; }

.fa-smile:before {
  content: "\f118"; }

.fa-smile-beam:before {
  content: "\f5b8"; }

.fa-smile-wink:before {
  content: "\f4da"; }

.fa-smog:before {
  content: "\f75f"; }

.fa-smoking:before {
  content: "\f48d"; }

.fa-smoking-ban:before {
  content: "\f54d"; }

.fa-sms:before {
  content: "\f7cd"; }

.fa-snapchat:before {
  content: "\f2ab"; }

.fa-snapchat-ghost:before {
  content: "\f2ac"; }

.fa-snapchat-square:before {
  content: "\f2ad"; }

.fa-snowboarding:before {
  content: "\f7ce"; }

.fa-snowflake:before {
  content: "\f2dc"; }

.fa-snowman:before {
  content: "\f7d0"; }

.fa-snowplow:before {
  content: "\f7d2"; }

.fa-socks:before {
  content: "\f696"; }

.fa-solar-panel:before {
  content: "\f5ba"; }

.fa-sort:before {
  content: "\f0dc"; }

.fa-sort-alpha-down:before {
  content: "\f15d"; }

.fa-sort-alpha-down-alt:before {
  content: "\f881"; }

.fa-sort-alpha-up:before {
  content: "\f15e"; }

.fa-sort-alpha-up-alt:before {
  content: "\f882"; }

.fa-sort-amount-down:before {
  content: "\f160"; }

.fa-sort-amount-down-alt:before {
  content: "\f884"; }

.fa-sort-amount-up:before {
  content: "\f161"; }

.fa-sort-amount-up-alt:before {
  content: "\f885"; }

.fa-sort-down:before {
  content: "\f0dd"; }

.fa-sort-numeric-down:before {
  content: "\f162"; }

.fa-sort-numeric-down-alt:before {
  content: "\f886"; }

.fa-sort-numeric-up:before {
  content: "\f163"; }

.fa-sort-numeric-up-alt:before {
  content: "\f887"; }

.fa-sort-up:before {
  content: "\f0de"; }

.fa-soundcloud:before {
  content: "\f1be"; }

.fa-sourcetree:before {
  content: "\f7d3"; }

.fa-spa:before {
  content: "\f5bb"; }

.fa-space-shuttle:before {
  content: "\f197"; }

.fa-speakap:before {
  content: "\f3f3"; }

.fa-speaker-deck:before {
  content: "\f83c"; }

.fa-spell-check:before {
  content: "\f891"; }

.fa-spider:before {
  content: "\f717"; }

.fa-spinner:before {
  content: "\f110"; }

.fa-splotch:before {
  content: "\f5bc"; }

.fa-spotify:before {
  content: "\f1bc"; }

.fa-spray-can:before {
  content: "\f5bd"; }

.fa-square:before {
  content: "\f0c8"; }

.fa-square-full:before {
  content: "\f45c"; }

.fa-square-root-alt:before {
  content: "\f698"; }

.fa-squarespace:before {
  content: "\f5be"; }

.fa-stack-exchange:before {
  content: "\f18d"; }

.fa-stack-overflow:before {
  content: "\f16c"; }

.fa-stackpath:before {
  content: "\f842"; }

.fa-stamp:before {
  content: "\f5bf"; }

.fa-star:before {
  content: "\f005"; }

.fa-star-and-crescent:before {
  content: "\f699"; }

.fa-star-half:before {
  content: "\f089"; }

.fa-star-half-alt:before {
  content: "\f5c0"; }

.fa-star-of-david:before {
  content: "\f69a"; }

.fa-star-of-life:before {
  content: "\f621"; }

.fa-staylinked:before {
  content: "\f3f5"; }

.fa-steam:before {
  content: "\f1b6"; }

.fa-steam-square:before {
  content: "\f1b7"; }

.fa-steam-symbol:before {
  content: "\f3f6"; }

.fa-step-backward:before {
  content: "\f048"; }

.fa-step-forward:before {
  content: "\f051"; }

.fa-stethoscope:before {
  content: "\f0f1"; }

.fa-sticker-mule:before {
  content: "\f3f7"; }

.fa-sticky-note:before {
  content: "\f249"; }

.fa-stop:before {
  content: "\f04d"; }

.fa-stop-circle:before {
  content: "\f28d"; }

.fa-stopwatch:before {
  content: "\f2f2"; }

.fa-store:before {
  content: "\f54e"; }

.fa-store-alt:before {
  content: "\f54f"; }

.fa-strava:before {
  content: "\f428"; }

.fa-stream:before {
  content: "\f550"; }

.fa-street-view:before {
  content: "\f21d"; }

.fa-strikethrough:before {
  content: "\f0cc"; }

.fa-stripe:before {
  content: "\f429"; }

.fa-stripe-s:before {
  content: "\f42a"; }

.fa-stroopwafel:before {
  content: "\f551"; }

.fa-studiovinari:before {
  content: "\f3f8"; }

.fa-stumbleupon:before {
  content: "\f1a4"; }

.fa-stumbleupon-circle:before {
  content: "\f1a3"; }

.fa-subscript:before {
  content: "\f12c"; }

.fa-subway:before {
  content: "\f239"; }

.fa-suitcase:before {
  content: "\f0f2"; }

.fa-suitcase-rolling:before {
  content: "\f5c1"; }

.fa-sun:before {
  content: "\f185"; }

.fa-superpowers:before {
  content: "\f2dd"; }

.fa-superscript:before {
  content: "\f12b"; }

.fa-supple:before {
  content: "\f3f9"; }

.fa-surprise:before {
  content: "\f5c2"; }

.fa-suse:before {
  content: "\f7d6"; }

.fa-swatchbook:before {
  content: "\f5c3"; }

.fa-swimmer:before {
  content: "\f5c4"; }

.fa-swimming-pool:before {
  content: "\f5c5"; }

.fa-symfony:before {
  content: "\f83d"; }

.fa-synagogue:before {
  content: "\f69b"; }

.fa-sync:before {
  content: "\f021"; }

.fa-sync-alt:before {
  content: "\f2f1"; }

.fa-syringe:before {
  content: "\f48e"; }

.fa-table:before {
  content: "\f0ce"; }

.fa-table-tennis:before {
  content: "\f45d"; }

.fa-tablet:before {
  content: "\f10a"; }

.fa-tablet-alt:before {
  content: "\f3fa"; }

.fa-tablets:before {
  content: "\f490"; }

.fa-tachometer-alt:before {
  content: "\f3fd"; }

.fa-tag:before {
  content: "\f02b"; }

.fa-tags:before {
  content: "\f02c"; }

.fa-tape:before {
  content: "\f4db"; }

.fa-tasks:before {
  content: "\f0ae"; }

.fa-taxi:before {
  content: "\f1ba"; }

.fa-teamspeak:before {
  content: "\f4f9"; }

.fa-teeth:before {
  content: "\f62e"; }

.fa-teeth-open:before {
  content: "\f62f"; }

.fa-telegram:before {
  content: "\f2c6"; }

.fa-telegram-plane:before {
  content: "\f3fe"; }

.fa-temperature-high:before {
  content: "\f769"; }

.fa-temperature-low:before {
  content: "\f76b"; }

.fa-tencent-weibo:before {
  content: "\f1d5"; }

.fa-tenge:before {
  content: "\f7d7"; }

.fa-terminal:before {
  content: "\f120"; }

.fa-text-height:before {
  content: "\f034"; }

.fa-text-width:before {
  content: "\f035"; }

.fa-th:before {
  content: "\f00a"; }

.fa-th-large:before {
  content: "\f009"; }

.fa-th-list:before {
  content: "\f00b"; }

.fa-the-red-yeti:before {
  content: "\f69d"; }

.fa-theater-masks:before {
  content: "\f630"; }

.fa-themeco:before {
  content: "\f5c6"; }

.fa-themeisle:before {
  content: "\f2b2"; }

.fa-thermometer:before {
  content: "\f491"; }

.fa-thermometer-empty:before {
  content: "\f2cb"; }

.fa-thermometer-full:before {
  content: "\f2c7"; }

.fa-thermometer-half:before {
  content: "\f2c9"; }

.fa-thermometer-quarter:before {
  content: "\f2ca"; }

.fa-thermometer-three-quarters:before {
  content: "\f2c8"; }

.fa-think-peaks:before {
  content: "\f731"; }

.fa-thumbs-down:before {
  content: "\f165"; }

.fa-thumbs-up:before {
  content: "\f164"; }

.fa-thumbtack:before {
  content: "\f08d"; }

.fa-ticket-alt:before {
  content: "\f3ff"; }

.fa-times:before {
  content: "\f00d"; }

.fa-times-circle:before {
  content: "\f057"; }

.fa-tint:before {
  content: "\f043"; }

.fa-tint-slash:before {
  content: "\f5c7"; }

.fa-tired:before {
  content: "\f5c8"; }

.fa-toggle-off:before {
  content: "\f204"; }

.fa-toggle-on:before {
  content: "\f205"; }

.fa-toilet:before {
  content: "\f7d8"; }

.fa-toilet-paper:before {
  content: "\f71e"; }

.fa-toolbox:before {
  content: "\f552"; }

.fa-tools:before {
  content: "\f7d9"; }

.fa-tooth:before {
  content: "\f5c9"; }

.fa-torah:before {
  content: "\f6a0"; }

.fa-torii-gate:before {
  content: "\f6a1"; }

.fa-tractor:before {
  content: "\f722"; }

.fa-trade-federation:before {
  content: "\f513"; }

.fa-trademark:before {
  content: "\f25c"; }

.fa-traffic-light:before {
  content: "\f637"; }

.fa-train:before {
  content: "\f238"; }

.fa-tram:before {
  content: "\f7da"; }

.fa-transgender:before {
  content: "\f224"; }

.fa-transgender-alt:before {
  content: "\f225"; }

.fa-trash:before {
  content: "\f1f8"; }

.fa-trash-alt:before {
  content: "\f2ed"; }

.fa-trash-restore:before {
  content: "\f829"; }

.fa-trash-restore-alt:before {
  content: "\f82a"; }

.fa-tree:before {
  content: "\f1bb"; }

.fa-trello:before {
  content: "\f181"; }

.fa-tripadvisor:before {
  content: "\f262"; }

.fa-trophy:before {
  content: "\f091"; }

.fa-truck:before {
  content: "\f0d1"; }

.fa-truck-loading:before {
  content: "\f4de"; }

.fa-truck-monster:before {
  content: "\f63b"; }

.fa-truck-moving:before {
  content: "\f4df"; }

.fa-truck-pickup:before {
  content: "\f63c"; }

.fa-tshirt:before {
  content: "\f553"; }

.fa-tty:before {
  content: "\f1e4"; }

.fa-tumblr:before {
  content: "\f173"; }

.fa-tumblr-square:before {
  content: "\f174"; }

.fa-tv:before {
  content: "\f26c"; }

.fa-twitch:before {
  content: "\f1e8"; }

.fa-twitter:before {
  content: "\f099"; }

.fa-twitter-square:before {
  content: "\f081"; }

.fa-typo3:before {
  content: "\f42b"; }

.fa-uber:before {
  content: "\f402"; }

.fa-ubuntu:before {
  content: "\f7df"; }

.fa-uikit:before {
  content: "\f403"; }

.fa-umbrella:before {
  content: "\f0e9"; }

.fa-umbrella-beach:before {
  content: "\f5ca"; }

.fa-underline:before {
  content: "\f0cd"; }

.fa-undo:before {
  content: "\f0e2"; }

.fa-undo-alt:before {
  content: "\f2ea"; }

.fa-uniregistry:before {
  content: "\f404"; }

.fa-universal-access:before {
  content: "\f29a"; }

.fa-university:before {
  content: "\f19c"; }

.fa-unlink:before {
  content: "\f127"; }

.fa-unlock:before {
  content: "\f09c"; }

.fa-unlock-alt:before {
  content: "\f13e"; }

.fa-untappd:before {
  content: "\f405"; }

.fa-upload:before {
  content: "\f093"; }

.fa-ups:before {
  content: "\f7e0"; }

.fa-usb:before {
  content: "\f287"; }

.fa-user:before {
  content: "\f007"; }

.fa-user-alt:before {
  content: "\f406"; }

.fa-user-alt-slash:before {
  content: "\f4fa"; }

.fa-user-astronaut:before {
  content: "\f4fb"; }

.fa-user-check:before {
  content: "\f4fc"; }

.fa-user-circle:before {
  content: "\f2bd"; }

.fa-user-clock:before {
  content: "\f4fd"; }

.fa-user-cog:before {
  content: "\f4fe"; }

.fa-user-edit:before {
  content: "\f4ff"; }

.fa-user-friends:before {
  content: "\f500"; }

.fa-user-graduate:before {
  content: "\f501"; }

.fa-user-injured:before {
  content: "\f728"; }

.fa-user-lock:before {
  content: "\f502"; }

.fa-user-md:before {
  content: "\f0f0"; }

.fa-user-minus:before {
  content: "\f503"; }

.fa-user-ninja:before {
  content: "\f504"; }

.fa-user-nurse:before {
  content: "\f82f"; }

.fa-user-plus:before {
  content: "\f234"; }

.fa-user-secret:before {
  content: "\f21b"; }

.fa-user-shield:before {
  content: "\f505"; }

.fa-user-slash:before {
  content: "\f506"; }

.fa-user-tag:before {
  content: "\f507"; }

.fa-user-tie:before {
  content: "\f508"; }

.fa-user-times:before {
  content: "\f235"; }

.fa-users:before {
  content: "\f0c0"; }

.fa-users-cog:before {
  content: "\f509"; }

.fa-usps:before {
  content: "\f7e1"; }

.fa-ussunnah:before {
  content: "\f407"; }

.fa-utensil-spoon:before {
  content: "\f2e5"; }

.fa-utensils:before {
  content: "\f2e7"; }

.fa-vaadin:before {
  content: "\f408"; }

.fa-vector-square:before {
  content: "\f5cb"; }

.fa-venus:before {
  content: "\f221"; }

.fa-venus-double:before {
  content: "\f226"; }

.fa-venus-mars:before {
  content: "\f228"; }

.fa-viacoin:before {
  content: "\f237"; }

.fa-viadeo:before {
  content: "\f2a9"; }

.fa-viadeo-square:before {
  content: "\f2aa"; }

.fa-vial:before {
  content: "\f492"; }

.fa-vials:before {
  content: "\f493"; }

.fa-viber:before {
  content: "\f409"; }

.fa-video:before {
  content: "\f03d"; }

.fa-video-slash:before {
  content: "\f4e2"; }

.fa-vihara:before {
  content: "\f6a7"; }

.fa-vimeo:before {
  content: "\f40a"; }

.fa-vimeo-square:before {
  content: "\f194"; }

.fa-vimeo-v:before {
  content: "\f27d"; }

.fa-vine:before {
  content: "\f1ca"; }

.fa-vk:before {
  content: "\f189"; }

.fa-vnv:before {
  content: "\f40b"; }

.fa-voicemail:before {
  content: "\f897"; }

.fa-volleyball-ball:before {
  content: "\f45f"; }

.fa-volume-down:before {
  content: "\f027"; }

.fa-volume-mute:before {
  content: "\f6a9"; }

.fa-volume-off:before {
  content: "\f026"; }

.fa-volume-up:before {
  content: "\f028"; }

.fa-vote-yea:before {
  content: "\f772"; }

.fa-vr-cardboard:before {
  content: "\f729"; }

.fa-vuejs:before {
  content: "\f41f"; }

.fa-walking:before {
  content: "\f554"; }

.fa-wallet:before {
  content: "\f555"; }

.fa-warehouse:before {
  content: "\f494"; }

.fa-water:before {
  content: "\f773"; }

.fa-wave-square:before {
  content: "\f83e"; }

.fa-waze:before {
  content: "\f83f"; }

.fa-weebly:before {
  content: "\f5cc"; }

.fa-weibo:before {
  content: "\f18a"; }

.fa-weight:before {
  content: "\f496"; }

.fa-weight-hanging:before {
  content: "\f5cd"; }

.fa-weixin:before {
  content: "\f1d7"; }

.fa-whatsapp:before {
  content: "\f232"; }

.fa-whatsapp-square:before {
  content: "\f40c"; }

.fa-wheelchair:before {
  content: "\f193"; }

.fa-whmcs:before {
  content: "\f40d"; }

.fa-wifi:before {
  content: "\f1eb"; }

.fa-wikipedia-w:before {
  content: "\f266"; }

.fa-wind:before {
  content: "\f72e"; }

.fa-window-close:before {
  content: "\f410"; }

.fa-window-maximize:before {
  content: "\f2d0"; }

.fa-window-minimize:before {
  content: "\f2d1"; }

.fa-window-restore:before {
  content: "\f2d2"; }

.fa-windows:before {
  content: "\f17a"; }

.fa-wine-bottle:before {
  content: "\f72f"; }

.fa-wine-glass:before {
  content: "\f4e3"; }

.fa-wine-glass-alt:before {
  content: "\f5ce"; }

.fa-wix:before {
  content: "\f5cf"; }

.fa-wizards-of-the-coast:before {
  content: "\f730"; }

.fa-wolf-pack-battalion:before {
  content: "\f514"; }

.fa-won-sign:before {
  content: "\f159"; }

.fa-wordpress:before {
  content: "\f19a"; }

.fa-wordpress-simple:before {
  content: "\f411"; }

.fa-wpbeginner:before {
  content: "\f297"; }

.fa-wpexplorer:before {
  content: "\f2de"; }

.fa-wpforms:before {
  content: "\f298"; }

.fa-wpressr:before {
  content: "\f3e4"; }

.fa-wrench:before {
  content: "\f0ad"; }

.fa-x-ray:before {
  content: "\f497"; }

.fa-xbox:before {
  content: "\f412"; }

.fa-xing:before {
  content: "\f168"; }

.fa-xing-square:before {
  content: "\f169"; }

.fa-y-combinator:before {
  content: "\f23b"; }

.fa-yahoo:before {
  content: "\f19e"; }

.fa-yammer:before {
  content: "\f840"; }

.fa-yandex:before {
  content: "\f413"; }

.fa-yandex-international:before {
  content: "\f414"; }

.fa-yarn:before {
  content: "\f7e3"; }

.fa-yelp:before {
  content: "\f1e9"; }

.fa-yen-sign:before {
  content: "\f157"; }

.fa-yin-yang:before {
  content: "\f6ad"; }

.fa-yoast:before {
  content: "\f2b1"; }

.fa-youtube:before {
  content: "\f167"; }

.fa-youtube-square:before {
  content: "\f431"; }

.fa-zhihu:before {
  content: "\f63f"; }

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

.sr-only-focusable:active, .sr-only-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto; }

/**
 * Lightcase - jQuery Plugin
 * The smart and flexible Lightbox Plugin.
 *
 * @author		Cornel Boppart &lt;cornel@bopp-art.com&gt;
 * @copyright	Author
 *
 * @version		2.5.0 (11/03/2018)
 */
/**
 * Lightcase settings
 *
 * Note: Override default settings for your project without touching this source code by simply
 * defining those variables within a SASS map called '$lightcase-custom'.
 *
 * // Example usage
 * $lightcase-custom: (
 *   'breakpoint': 768px
 * );
 */
@font-face {
  font-family: 'lightcase';
  src: url("/files/default/fonts/lightcase/lightcase.eot?55356177");
  src: url("/files/default/fonts/lightcase/lightcase.eot?55356177#iefix") format("embedded-opentype"), url("/files/default/fonts/lightcase/lightcase.woff?55356177") format("woff"), url("/files/default/fonts/lightcase/lightcase.ttf?55356177") format("truetype"), url("/files/default/fonts/lightcase/lightcase.svg?55356177#lightcase") format("svg");
  font-weight: normal;
  font-style: normal; }

/* line 12, ../scss/components/fonts/_font-lightcase.scss */
[class*='lightcase-icon-']:before {
  font-family: 'lightcase', sans-serif;
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  text-align: center;
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ }

/* Codes */
/* line 35, ../scss/components/fonts/_font-lightcase.scss */
.lightcase-icon-play:before {
  content: '\e800'; }

/* line 36, ../scss/components/fonts/_font-lightcase.scss */
.lightcase-icon-pause:before {
  content: '\e801'; }

/* line 37, ../scss/components/fonts/_font-lightcase.scss */
.lightcase-icon-close:before {
  content: '\e802'; }

/* line 38, ../scss/components/fonts/_font-lightcase.scss */
.lightcase-icon-prev:before {
  content: '\e803'; }

/* line 39, ../scss/components/fonts/_font-lightcase.scss */
.lightcase-icon-next:before {
  content: '\e804'; }

/* line 40, ../scss/components/fonts/_font-lightcase.scss */
.lightcase-icon-spin:before {
  content: '\e805'; }

/**
   * Mixin providing icon defaults to be used on top of font-lightcase.
   *
   * Example usage:
   * @include icon(#e9e9e9)
   */
/**
   * Mixin providing icon defaults including a hover status to be used
   * on top of font-lightcase.
   *
   * Example usage:
   * @include icon-hover(#e9e9e9, #fff)
   */
/**
   * Provides natural content overflow behavior and scrolling support
   * even so for touch devices.
   *
   * Example usage:
   * @include overflow()
   */
/**
   * Neutralizes/resets dimensions including width, height, position as well as margins,
   * paddings and styles. Used to enforce a neutral and unstyled look and behavoir!
   *
   * Example usage:
   * @include clear(true)
   *
   * @param boolean $important
   */
@-webkit-keyframes lightcase-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }

@keyframes lightcase-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }

/* line 1, ../scss/components/modules/_case.scss */
#lightcase-case {
  display: none;
  position: fixed;
  z-index: 2002;
  top: 50%;
  left: 50%;
  font-family: arial, sans-serif;
  font-size: 13px;
  line-height: 1.5;
  text-align: left;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5); }

@media screen and (max-width: 640px) {
  /* line 16, ../scss/components/modules/_case.scss */
  html[data-lc-type=inline] #lightcase-case, html[data-lc-type=ajax] #lightcase-case {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    margin: 0 !important;
    padding: 55px 0 70px 0;
    width: 100% !important;
    height: 100% !important;
    overflow: auto !important; } }

@media screen and (min-width: 641px) {
  /* line 4, ../scss/components/modules/_content.scss */
  html:not([data-lc-type=error]) #lightcase-content {
    position: relative;
    z-index: 1;
    text-shadow: none;
    background-color: #fff;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    -o-box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    -webkit-backface-visibility: hidden; } }

@media screen and (min-width: 641px) {
  /* line 23, ../scss/components/modules/_content.scss */
  html[data-lc-type=image] #lightcase-content, html[data-lc-type=video] #lightcase-content {
    background-color: #333; } }

/* line 31, ../scss/components/modules/_content.scss */
html[data-lc-type=inline] #lightcase-content, html[data-lc-type=ajax] #lightcase-content, html[data-lc-type=error] #lightcase-content {
  -webkit-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none; }

@media screen and (max-width: 640px) {
  /* line 31, ../scss/components/modules/_content.scss */
  html[data-lc-type=inline] #lightcase-content, html[data-lc-type=ajax] #lightcase-content, html[data-lc-type=error] #lightcase-content {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important; } }

/* line 43, ../scss/components/modules/_content.scss */
html[data-lc-type=inline] #lightcase-content .lightcase-contentInner, html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner, html[data-lc-type=error] #lightcase-content .lightcase-contentInner {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box; }

@media screen and (max-width: 640px) {
  /* line 43, ../scss/components/modules/_content.scss */
  html[data-lc-type=inline] #lightcase-content .lightcase-contentInner, html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner, html[data-lc-type=error] #lightcase-content .lightcase-contentInner {
    padding: 15px; }
  /* line 52, ../scss/components/modules/_content.scss */
  html[data-lc-type=inline] #lightcase-content .lightcase-contentInner, html[data-lc-type=inline] #lightcase-content .lightcase-contentInner &gt; *, html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner, html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner &gt; *, html[data-lc-type=error] #lightcase-content .lightcase-contentInner, html[data-lc-type=error] #lightcase-content .lightcase-contentInner &gt; * {
    width: 100% !important;
    max-width: none !important; }
  /* line 59, ../scss/components/modules/_content.scss */
  html[data-lc-type=inline] #lightcase-content .lightcase-contentInner &gt; *:not(iframe), html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner &gt; *:not(iframe), html[data-lc-type=error] #lightcase-content .lightcase-contentInner &gt; *:not(iframe) {
    height: auto !important;
    max-height: none !important; } }

@media screen and (max-width: 640px) {
  /* line 70, ../scss/components/modules/_content.scss */
  html.lightcase-isMobileDevice[data-lc-type=iframe] #lightcase-content .lightcase-contentInner iframe {
    overflow: auto;
    -webkit-overflow-scrolling: touch; } }

@media screen and (max-width: 640px) and (min-width: 641px) {
  /* line 74, ../scss/components/modules/_content.scss */
  html[data-lc-type=image] #lightcase-content .lightcase-contentInner, html[data-lc-type=video] #lightcase-content .lightcase-contentInner {
    line-height: 0.75; } }

/* line 82, ../scss/components/modules/_content.scss */
html[data-lc-type=image] #lightcase-content .lightcase-contentInner {
  position: relative;
  overflow: hidden !important; }

@media screen and (max-width: 640px) {
  /* line 91, ../scss/components/modules/_content.scss */
  html[data-lc-type=inline] #lightcase-content .lightcase-contentInner .lightcase-inlineWrap, html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner .lightcase-inlineWrap, html[data-lc-type=error] #lightcase-content .lightcase-contentInner .lightcase-inlineWrap {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important; } }

@media screen and (min-width: 641px) {
  /* line 100, ../scss/components/modules/_content.scss */
  html:not([data-lc-type=error]) #lightcase-content .lightcase-contentInner .lightcase-inlineWrap {
    padding: 30px;
    overflow: auto;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box; } }

@media screen and (max-width: 640px) {
  /* line 117, ../scss/components/modules/_content.scss */
  #lightcase-content h1, #lightcase-content h2, #lightcase-content h3, #lightcase-content h4, #lightcase-content h5, #lightcase-content h6, #lightcase-content p {
    color: #aaa; } }

@media screen and (min-width: 641px) {
  /* line 117, ../scss/components/modules/_content.scss */
  #lightcase-content h1, #lightcase-content h2, #lightcase-content h3, #lightcase-content h4, #lightcase-content h5, #lightcase-content h6, #lightcase-content p {
    color: #333; } }

/* line 3, ../scss/components/modules/_error.scss */
#lightcase-case p.lightcase-error {
  margin: 0;
  font-size: 17px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  color: #aaa; }

@media screen and (max-width: 640px) {
  /* line 3, ../scss/components/modules/_error.scss */
  #lightcase-case p.lightcase-error {
    padding: 30px 0; } }

@media screen and (min-width: 641px) {
  /* line 3, ../scss/components/modules/_error.scss */
  #lightcase-case p.lightcase-error {
    padding: 0; } }

/* line 4, ../scss/components/modules/_global.scss */
.lightcase-open body {
  overflow: hidden; }

/* line 8, ../scss/components/modules/_global.scss */
.lightcase-isMobileDevice .lightcase-open body {
  max-width: 100%;
  max-height: 100%; }

/* line 1, ../scss/components/modules/_info.scss */
#lightcase-info {
  position: absolute;
  padding-top: 15px; }

/* line 9, ../scss/components/modules/_info.scss */
#lightcase-info #lightcase-title,
#lightcase-info #lightcase-caption {
  margin: 0;
  padding: 0;
  line-height: 1.5;
  font-weight: normal;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis; }

/* line 19, ../scss/components/modules/_info.scss */
#lightcase-info #lightcase-title {
  font-size: 17px;
  color: #aaa; }

@media screen and (max-width: 640px) {
  /* line 19, ../scss/components/modules/_info.scss */
  #lightcase-info #lightcase-title {
    position: fixed;
    top: 10px;
    left: 0;
    max-width: 87.5%;
    padding: 5px 15px;
    background: #333; } }

/* line 33, ../scss/components/modules/_info.scss */
#lightcase-info #lightcase-caption {
  clear: both;
  font-size: 13px;
  color: #aaa; }

/* line 39, ../scss/components/modules/_info.scss */
#lightcase-info #lightcase-sequenceInfo {
  font-size: 11px;
  color: #aaa; }

@media screen and (max-width: 640px) {
  /* line 45, ../scss/components/modules/_info.scss */
  .lightcase-fullScreenMode #lightcase-info {
    padding-left: 15px;
    padding-right: 15px; }
  /* line 51, ../scss/components/modules/_info.scss */
  html:not([data-lc-type=image]):not([data-lc-type=video]):not([data-lc-type=flash]):not([data-lc-type=error]) #lightcase-info {
    position: static; } }

/* line 1, ../scss/components/modules/_loading.scss */
#lightcase-loading {
  position: fixed;
  z-index: 9999;
  width: 1.123em;
  height: auto;
  font-size: 38px;
  line-height: 1;
  text-align: center;
  text-shadow: none;
  position: fixed;
  z-index: 2001;
  top: 50%;
  left: 50%;
  margin-top: -0.5em;
  margin-left: -0.5em;
  opacity: 1;
  font-size: 32px;
  text-shadow: 0 0 15px #fff;
  -moz-transform-origin: 50% 53%;
  -webkit-animation: lightcase-spin 0.5s infinite linear;
  animation: lightcase-spin 0.5s infinite linear; }

/* line 20, ../scss/components/mixins/_presets.scss */
#lightcase-loading, #lightcase-loading:focus {
  text-decoration: none;
  color: #fff;
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: color, opacity, ease-in-out 0.25s;
  -o-transition: color, opacity, ease-in-out 0.25s;
  transition: color, opacity, ease-in-out 0.25s; }

/* line 32, ../scss/components/mixins/_presets.scss */
#lightcase-loading &gt; span {
  display: inline-block;
  text-indent: -9999px; }

/* line 2, ../scss/components/modules/_navigation.scss */
a[class*='lightcase-icon-'] {
  position: fixed;
  z-index: 9999;
  width: 1.123em;
  height: auto;
  font-size: 38px;
  line-height: 1;
  text-align: center;
  text-shadow: none;
  outline: none;
  cursor: pointer; }

/* line 20, ../scss/components/mixins/_presets.scss */
a[class*='lightcase-icon-'], a[class*='lightcase-icon-']:focus {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: color, opacity, ease-in-out 0.25s;
  -o-transition: color, opacity, ease-in-out 0.25s;
  transition: color, opacity, ease-in-out 0.25s; }

/* line 32, ../scss/components/mixins/_presets.scss */
a[class*='lightcase-icon-'] &gt; span {
  display: inline-block;
  text-indent: -9999px; }

/* line 49, ../scss/components/mixins/_presets.scss */
a[class*='lightcase-icon-']:hover {
  color: white;
  text-shadow: 0 0 15px white; }

/* line 10, ../scss/components/modules/_navigation.scss */
.lightcase-isMobileDevice a[class*='lightcase-icon-']:hover {
  color: #aaa;
  text-shadow: none; }

/* line 17, ../scss/components/modules/_navigation.scss */
a[class*='lightcase-icon-'].lightcase-icon-close {
  position: fixed;
  top: 15px;
  right: 15px;
  bottom: auto;
  margin: 0;
  opacity: 0;
  outline: none; }

/* line 28, ../scss/components/modules/_navigation.scss */
a[class*='lightcase-icon-'].lightcase-icon-prev {
  left: 15px; }

/* line 33, ../scss/components/modules/_navigation.scss */
a[class*='lightcase-icon-'].lightcase-icon-next {
  right: 15px; }

/* line 38, ../scss/components/modules/_navigation.scss */
a[class*='lightcase-icon-'].lightcase-icon-pause, a[class*='lightcase-icon-'].lightcase-icon-play {
  left: 50%;
  margin-left: -0.5em; }

@media screen and (min-width: 641px) {
  /* line 38, ../scss/components/modules/_navigation.scss */
  a[class*='lightcase-icon-'].lightcase-icon-pause, a[class*='lightcase-icon-'].lightcase-icon-play {
    opacity: 0; } }

@media screen and (max-width: 640px) {
  /* line 2, ../scss/components/modules/_navigation.scss */
  a[class*='lightcase-icon-'] {
    bottom: 15px;
    font-size: 24px; } }

@media screen and (min-width: 641px) {
  /* line 2, ../scss/components/modules/_navigation.scss */
  a[class*='lightcase-icon-'] {
    bottom: 50%;
    margin-bottom: -0.5em; }
  /* line 57, ../scss/components/modules/_navigation.scss */
  a[class*='lightcase-icon-']:hover, #lightcase-case:hover ~ a[class*='lightcase-icon-'] {
    opacity: 1; } }

/* line 1, ../scss/components/modules/_overlay.scss */
#lightcase-overlay {
  display: none;
  width: 100%;
  min-height: 100%;
  position: fixed;
  z-index: 2000;
  top: -9999px;
  bottom: -9999px;
  left: 0;
  background: #333; }

@media screen and (max-width: 640px) {
  /* line 1, ../scss/components/modules/_overlay.scss */
  #lightcase-overlay {
    opacity: 1 !important; } }

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  font: inherit;
  display: inline-block;
  overflow: visible;
  margin: 0;
  padding: 15px;
  cursor: pointer;
  -webkit-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-transition-duration: .15s;
  -o-transition-duration: .15s;
  transition-duration: .15s;
  -webkit-transition-property: opacity,-webkit-filter;
  transition-property: opacity,-webkit-filter;
  -o-transition-property: opacity,filter;
  transition-property: opacity,filter;
  transition-property: opacity,filter,-webkit-filter;
  text-transform: none;
  color: inherit;
  border: 0;
  background-color: transparent; }

.hamburger.is-active:hover, .hamburger:hover {
  opacity: .7; }

.hamburger.is-active .hamburger-inner, .hamburger.is-active .hamburger-inner:after, .hamburger.is-active .hamburger-inner:before {
  background-color: #000; }

.hamburger-box {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 24px; }

.hamburger-inner {
  top: 50%;
  display: block;
  margin-top: -2px; }

.hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
  position: absolute;
  width: 40px;
  height: 4px;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transition-duration: .15s;
  -o-transition-duration: .15s;
  transition-duration: .15s;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  border-radius: 4px;
  background-color: #000; }

.hamburger-inner:after, .hamburger-inner:before {
  display: block;
  content: ""; }

.hamburger-inner:before {
  top: -10px; }

.hamburger-inner:after {
  bottom: -10px; }

.hamburger--3dx .hamburger-box {
  -webkit-perspective: 80px;
  perspective: 80px; }

.hamburger--3dx .hamburger-inner {
  -webkit-transition: background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s, -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s, -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s, -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dx .hamburger-inner:after, .hamburger--3dx .hamburger-inner:before {
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
  transition: -webkit-transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
  -o-transition: transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
  transition: transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
  transition: transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s, -webkit-transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s; }

.hamburger--3dx.is-active .hamburger-inner {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  background-color: transparent !important; }

.hamburger--3dx.is-active .hamburger-inner:before {
  -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
  transform: translate3d(0, 10px, 0) rotate(45deg); }

.hamburger--3dx.is-active .hamburger-inner:after {
  -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
  transform: translate3d(0, -10px, 0) rotate(-45deg); }

.hamburger--3dx-r .hamburger-box {
  -webkit-perspective: 80px;
  perspective: 80px; }

.hamburger--3dx-r .hamburger-inner {
  -webkit-transition: background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s, -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s, -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s, -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dx-r .hamburger-inner:after, .hamburger--3dx-r .hamburger-inner:before {
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
  transition: -webkit-transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
  -o-transition: transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
  transition: transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
  transition: transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s, -webkit-transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s; }

.hamburger--3dx-r.is-active .hamburger-inner {
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
  background-color: transparent !important; }

.hamburger--3dx-r.is-active .hamburger-inner:before {
  -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
  transform: translate3d(0, 10px, 0) rotate(45deg); }

.hamburger--3dx-r.is-active .hamburger-inner:after {
  -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
  transform: translate3d(0, -10px, 0) rotate(-45deg); }

.hamburger--3dy .hamburger-box {
  -webkit-perspective: 80px;
  perspective: 80px; }

.hamburger--3dy .hamburger-inner {
  -webkit-transition: background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s, -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s, -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s, -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dy .hamburger-inner:after, .hamburger--3dy .hamburger-inner:before {
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
  transition: -webkit-transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
  -o-transition: transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
  transition: transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
  transition: transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s, -webkit-transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s; }

.hamburger--3dy.is-active .hamburger-inner {
  -webkit-transform: rotateX(-180deg);
  transform: rotateX(-180deg);
  background-color: transparent !important; }

.hamburger--3dy.is-active .hamburger-inner:before {
  -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
  transform: translate3d(0, 10px, 0) rotate(45deg); }

.hamburger--3dy.is-active .hamburger-inner:after {
  -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
  transform: translate3d(0, -10px, 0) rotate(-45deg); }

.hamburger--3dy-r .hamburger-box {
  -webkit-perspective: 80px;
  perspective: 80px; }

.hamburger--3dy-r .hamburger-inner {
  -webkit-transition: background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s, -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s, -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s, -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dy-r .hamburger-inner:after, .hamburger--3dy-r .hamburger-inner:before {
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
  transition: -webkit-transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
  -o-transition: transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
  transition: transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
  transition: transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s, -webkit-transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s; }

.hamburger--3dy-r.is-active .hamburger-inner {
  -webkit-transform: rotateX(180deg);
  transform: rotateX(180deg);
  background-color: transparent !important; }

.hamburger--3dy-r.is-active .hamburger-inner:before {
  -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
  transform: translate3d(0, 10px, 0) rotate(45deg); }

.hamburger--3dy-r.is-active .hamburger-inner:after {
  -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
  transform: translate3d(0, -10px, 0) rotate(-45deg); }

.hamburger--3dxy .hamburger-box {
  -webkit-perspective: 80px;
  perspective: 80px; }

.hamburger--3dxy .hamburger-inner {
  -webkit-transition: background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s, -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s, -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s, -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dxy .hamburger-inner:after, .hamburger--3dxy .hamburger-inner:before {
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
  transition: -webkit-transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
  -o-transition: transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
  transition: transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
  transition: transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s, -webkit-transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s; }

.hamburger--3dxy.is-active .hamburger-inner {
  -webkit-transform: rotateX(180deg) rotateY(180deg);
  transform: rotateX(180deg) rotateY(180deg);
  background-color: transparent !important; }

.hamburger--3dxy.is-active .hamburger-inner:before {
  -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
  transform: translate3d(0, 10px, 0) rotate(45deg); }

.hamburger--3dxy.is-active .hamburger-inner:after {
  -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
  transform: translate3d(0, -10px, 0) rotate(-45deg); }

.hamburger--3dxy-r .hamburger-box {
  -webkit-perspective: 80px;
  perspective: 80px; }

.hamburger--3dxy-r .hamburger-inner {
  -webkit-transition: background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s, -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s, -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s, -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1); }

.hamburger--3dxy-r .hamburger-inner:after, .hamburger--3dxy-r .hamburger-inner:before {
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
  transition: -webkit-transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
  -o-transition: transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
  transition: transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
  transition: transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s, -webkit-transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s; }

.hamburger--3dxy-r.is-active .hamburger-inner {
  -webkit-transform: rotateX(180deg) rotateY(180deg) rotate(-180deg);
  transform: rotateX(180deg) rotateY(180deg) rotate(-180deg);
  background-color: transparent !important; }

.hamburger--3dxy-r.is-active .hamburger-inner:before {
  -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
  transform: translate3d(0, 10px, 0) rotate(45deg); }

.hamburger--3dxy-r.is-active .hamburger-inner:after {
  -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
  transform: translate3d(0, -10px, 0) rotate(-45deg); }

.hamburger--arrow.is-active .hamburger-inner:before {
  -webkit-transform: translate3d(-8px, 0, 0) rotate(-45deg) scaleX(0.7);
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scaleX(0.7); }

.hamburger--arrow.is-active .hamburger-inner:after {
  -webkit-transform: translate3d(-8px, 0, 0) rotate(45deg) scaleX(0.7);
  transform: translate3d(-8px, 0, 0) rotate(45deg) scaleX(0.7); }

.hamburger--arrow-r.is-active .hamburger-inner:before {
  -webkit-transform: translate3d(8px, 0, 0) rotate(45deg) scaleX(0.7);
  transform: translate3d(8px, 0, 0) rotate(45deg) scaleX(0.7); }

.hamburger--arrow-r.is-active .hamburger-inner:after {
  -webkit-transform: translate3d(8px, 0, 0) rotate(-45deg) scaleX(0.7);
  transform: translate3d(8px, 0, 0) rotate(-45deg) scaleX(0.7); }

.hamburger--arrowalt .hamburger-inner:before {
  -webkit-transition: top 0.1s ease 0.1s, -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: top 0.1s ease 0.1s, -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: top 0.1s ease 0.1s, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: top 0.1s ease 0.1s, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: top 0.1s ease 0.1s, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt .hamburger-inner:after {
  -webkit-transition: bottom 0.1s ease 0.1s, -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: bottom 0.1s ease 0.1s, -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: bottom 0.1s ease 0.1s, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: bottom 0.1s ease 0.1s, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: bottom 0.1s ease 0.1s, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt.is-active .hamburger-inner:before {
  top: 0;
  -webkit-transition: top 0.1s ease, -webkit-transform 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.1s;
  transition: top 0.1s ease, -webkit-transform 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.1s;
  -o-transition: top 0.1s ease, transform 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.1s;
  transition: top 0.1s ease, transform 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.1s;
  transition: top 0.1s ease, transform 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.1s, -webkit-transform 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.1s;
  -webkit-transform: translate3d(-8px, -10px, 0) rotate(-45deg) scaleX(0.7);
  transform: translate3d(-8px, -10px, 0) rotate(-45deg) scaleX(0.7); }

.hamburger--arrowalt.is-active .hamburger-inner:after {
  bottom: 0;
  -webkit-transition: bottom 0.1s ease, -webkit-transform 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.1s;
  transition: bottom 0.1s ease, -webkit-transform 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.1s;
  -o-transition: bottom 0.1s ease, transform 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.1s;
  transition: bottom 0.1s ease, transform 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.1s;
  transition: bottom 0.1s ease, transform 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.1s, -webkit-transform 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.1s;
  -webkit-transform: translate3d(-8px, 10px, 0) rotate(45deg) scaleX(0.7);
  transform: translate3d(-8px, 10px, 0) rotate(45deg) scaleX(0.7); }

.hamburger--arrowalt-r .hamburger-inner:before {
  -webkit-transition: top 0.1s ease 0.1s, -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: top 0.1s ease 0.1s, -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: top 0.1s ease 0.1s, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: top 0.1s ease 0.1s, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: top 0.1s ease 0.1s, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt-r .hamburger-inner:after {
  -webkit-transition: bottom 0.1s ease 0.1s, -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: bottom 0.1s ease 0.1s, -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: bottom 0.1s ease 0.1s, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: bottom 0.1s ease 0.1s, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: bottom 0.1s ease 0.1s, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }

.hamburger--arrowalt-r.is-active .hamburger-inner:before {
  top: 0;
  -webkit-transition: top 0.1s ease, -webkit-transform 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.1s;
  transition: top 0.1s ease, -webkit-transform 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.1s;
  -o-transition: top 0.1s ease, transform 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.1s;
  transition: top 0.1s ease, transform 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.1s;
  transition: top 0.1s ease, transform 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.1s, -webkit-transform 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.1s;
  -webkit-transform: translate3d(8px, -10px, 0) rotate(45deg) scaleX(0.7);
  transform: translate3d(8px, -10px, 0) rotate(45deg) scaleX(0.7); }

.hamburger--arrowalt-r.is-active .hamburger-inner:after {
  bottom: 0;
  -webkit-transition: bottom 0.1s ease, -webkit-transform 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.1s;
  transition: bottom 0.1s ease, -webkit-transform 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.1s;
  -o-transition: bottom 0.1s ease, transform 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.1s;
  transition: bottom 0.1s ease, transform 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.1s;
  transition: bottom 0.1s ease, transform 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.1s, -webkit-transform 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.1s;
  -webkit-transform: translate3d(8px, 10px, 0) rotate(-45deg) scaleX(0.7);
  transform: translate3d(8px, 10px, 0) rotate(-45deg) scaleX(0.7); }

.hamburger--arrowturn.is-active .hamburger-inner {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg); }

.hamburger--arrowturn.is-active .hamburger-inner:before {
  -webkit-transform: translate3d(8px, 0, 0) rotate(45deg) scaleX(0.7);
  transform: translate3d(8px, 0, 0) rotate(45deg) scaleX(0.7); }

.hamburger--arrowturn.is-active .hamburger-inner:after {
  -webkit-transform: translate3d(8px, 0, 0) rotate(-45deg) scaleX(0.7);
  transform: translate3d(8px, 0, 0) rotate(-45deg) scaleX(0.7); }

.hamburger--arrowturn-r.is-active .hamburger-inner {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg); }

.hamburger--arrowturn-r.is-active .hamburger-inner:before {
  -webkit-transform: translate3d(-8px, 0, 0) rotate(-45deg) scaleX(0.7);
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scaleX(0.7); }

.hamburger--arrowturn-r.is-active .hamburger-inner:after {
  -webkit-transform: translate3d(-8px, 0, 0) rotate(45deg) scaleX(0.7);
  transform: translate3d(-8px, 0, 0) rotate(45deg) scaleX(0.7); }

.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner:after, .hamburger--boring .hamburger-inner:before {
  -webkit-transition-property: none;
  -o-transition-property: none;
  transition-property: none; }

.hamburger--boring.is-active .hamburger-inner {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg); }

.hamburger--boring.is-active .hamburger-inner:before {
  top: 0;
  opacity: 0; }

.hamburger--boring.is-active .hamburger-inner:after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg); }

.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  -webkit-transition-delay: .13s;
  -o-transition-delay: .13s;
  transition-delay: .13s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -webkit-transition-duration: .13s;
  -o-transition-duration: .13s;
  transition-duration: .13s; }

.hamburger--collapse .hamburger-inner:after {
  top: -20px;
  -webkit-transition: top 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, opacity 0.1s linear;
  -o-transition: top 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, opacity 0.1s linear;
  transition: top 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, opacity 0.1s linear; }

.hamburger--collapse .hamburger-inner:before {
  -webkit-transition: top 0.12s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: top 0.12s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--collapse.is-active .hamburger-inner {
  -webkit-transition-delay: .22s;
  -o-transition-delay: .22s;
  transition-delay: .22s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
  transform: translate3d(0, -10px, 0) rotate(-45deg); }

.hamburger--collapse.is-active .hamburger-inner:after {
  top: 0;
  -webkit-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s linear 0.22s;
  -o-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s linear 0.22s;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s linear 0.22s;
  opacity: 0; }

.hamburger--collapse.is-active .hamburger-inner:before {
  top: 0;
  -webkit-transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.16s, -webkit-transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s;
  transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.16s, -webkit-transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s;
  -o-transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.16s, transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s;
  transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.16s, transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s;
  transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.16s, transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s, -webkit-transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg); }

.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  -webkit-transition-delay: .13s;
  -o-transition-delay: .13s;
  transition-delay: .13s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -webkit-transition-duration: .13s;
  -o-transition-duration: .13s;
  transition-duration: .13s; }

.hamburger--collapse-r .hamburger-inner:after {
  top: -20px;
  -webkit-transition: top 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, opacity 0.1s linear;
  -o-transition: top 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, opacity 0.1s linear;
  transition: top 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, opacity 0.1s linear; }

.hamburger--collapse-r .hamburger-inner:before {
  -webkit-transition: top 0.12s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: top 0.12s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--collapse-r.is-active .hamburger-inner {
  -webkit-transition-delay: .22s;
  -o-transition-delay: .22s;
  transition-delay: .22s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: translate3d(0, -10px, 0) rotate(45deg);
  transform: translate3d(0, -10px, 0) rotate(45deg); }

.hamburger--collapse-r.is-active .hamburger-inner:after {
  top: 0;
  -webkit-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s linear 0.22s;
  -o-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s linear 0.22s;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s linear 0.22s;
  opacity: 0; }

.hamburger--collapse-r.is-active .hamburger-inner:before {
  top: 0;
  -webkit-transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.16s, -webkit-transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s;
  transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.16s, -webkit-transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s;
  -o-transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.16s, transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s;
  transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.16s, transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s;
  transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.16s, transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s, -webkit-transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg); }

.hamburger--elastic .hamburger-inner {
  top: 2px;
  -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -o-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -webkit-transition-duration: .275s;
  -o-transition-duration: .275s;
  transition-duration: .275s; }

.hamburger--elastic .hamburger-inner:before {
  top: 10px;
  -webkit-transition: opacity .125s ease .275s;
  -o-transition: opacity .125s ease .275s;
  transition: opacity .125s ease .275s; }

.hamburger--elastic .hamburger-inner:after {
  top: 20px;
  -webkit-transition: -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -o-transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55), -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.hamburger--elastic.is-active .hamburger-inner {
  -webkit-transition-delay: 75ms;
  -o-transition-delay: 75ms;
  transition-delay: 75ms;
  -webkit-transform: translate3d(0, 10px, 0) rotate(135deg);
  transform: translate3d(0, 10px, 0) rotate(135deg); }

.hamburger--elastic.is-active .hamburger-inner:before {
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
  opacity: 0; }

.hamburger--elastic.is-active .hamburger-inner:after {
  -webkit-transition-delay: 75ms;
  -o-transition-delay: 75ms;
  transition-delay: 75ms;
  -webkit-transform: translate3d(0, -20px, 0) rotate(-270deg);
  transform: translate3d(0, -20px, 0) rotate(-270deg); }

.hamburger--elastic-r .hamburger-inner {
  top: 2px;
  -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -o-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -webkit-transition-duration: .275s;
  -o-transition-duration: .275s;
  transition-duration: .275s; }

.hamburger--elastic-r .hamburger-inner:before {
  top: 10px;
  -webkit-transition: opacity .125s ease .275s;
  -o-transition: opacity .125s ease .275s;
  transition: opacity .125s ease .275s; }

.hamburger--elastic-r .hamburger-inner:after {
  top: 20px;
  -webkit-transition: -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -o-transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55), -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.hamburger--elastic-r.is-active .hamburger-inner {
  -webkit-transition-delay: 75ms;
  -o-transition-delay: 75ms;
  transition-delay: 75ms;
  -webkit-transform: translate3d(0, 10px, 0) rotate(-135deg);
  transform: translate3d(0, 10px, 0) rotate(-135deg); }

.hamburger--elastic-r.is-active .hamburger-inner:before {
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
  opacity: 0; }

.hamburger--elastic-r.is-active .hamburger-inner:after {
  -webkit-transition-delay: 75ms;
  -o-transition-delay: 75ms;
  transition-delay: 75ms;
  -webkit-transform: translate3d(0, -20px, 0) rotate(270deg);
  transform: translate3d(0, -20px, 0) rotate(270deg); }

.hamburger--emphatic {
  overflow: hidden; }

.hamburger--emphatic .hamburger-inner {
  -webkit-transition: background-color .125s ease-in .175s;
  -o-transition: background-color .125s ease-in .175s;
  transition: background-color .125s ease-in .175s; }

.hamburger--emphatic .hamburger-inner:before {
  left: 0;
  -webkit-transition: top 0.05s linear 0.125s, left 0.125s ease-in 0.175s, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: top 0.05s linear 0.125s, left 0.125s ease-in 0.175s, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  -o-transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s linear 0.125s, left 0.125s ease-in 0.175s;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s linear 0.125s, left 0.125s ease-in 0.175s;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s linear 0.125s, left 0.125s ease-in 0.175s, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335); }

.hamburger--emphatic .hamburger-inner:after {
  top: 10px;
  right: 0;
  -webkit-transition: top 0.05s linear 0.125s, right 0.125s ease-in 0.175s, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: top 0.05s linear 0.125s, right 0.125s ease-in 0.175s, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  -o-transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s linear 0.125s, right 0.125s ease-in 0.175s;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s linear 0.125s, right 0.125s ease-in 0.175s;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s linear 0.125s, right 0.125s ease-in 0.175s, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335); }

.hamburger--emphatic.is-active .hamburger-inner {
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  background-color: transparent !important; }

.hamburger--emphatic.is-active .hamburger-inner:before {
  top: -80px;
  left: -80px;
  -webkit-transition: left 0.125s ease-out, top 0.05s linear 0.125s, -webkit-transform 0.125s cubic-bezier(0.075, 0.82, 0.165, 1) 0.175s;
  transition: left 0.125s ease-out, top 0.05s linear 0.125s, -webkit-transform 0.125s cubic-bezier(0.075, 0.82, 0.165, 1) 0.175s;
  -o-transition: left 0.125s ease-out, top 0.05s linear 0.125s, transform 0.125s cubic-bezier(0.075, 0.82, 0.165, 1) 0.175s;
  transition: left 0.125s ease-out, top 0.05s linear 0.125s, transform 0.125s cubic-bezier(0.075, 0.82, 0.165, 1) 0.175s;
  transition: left 0.125s ease-out, top 0.05s linear 0.125s, transform 0.125s cubic-bezier(0.075, 0.82, 0.165, 1) 0.175s, -webkit-transform 0.125s cubic-bezier(0.075, 0.82, 0.165, 1) 0.175s;
  -webkit-transform: translate3d(80px, 80px, 0) rotate(45deg);
  transform: translate3d(80px, 80px, 0) rotate(45deg); }

.hamburger--emphatic.is-active .hamburger-inner:after {
  top: -80px;
  right: -80px;
  -webkit-transition: right 0.125s ease-out, top 0.05s linear 0.125s, -webkit-transform 0.125s cubic-bezier(0.075, 0.82, 0.165, 1) 0.175s;
  transition: right 0.125s ease-out, top 0.05s linear 0.125s, -webkit-transform 0.125s cubic-bezier(0.075, 0.82, 0.165, 1) 0.175s;
  -o-transition: right 0.125s ease-out, top 0.05s linear 0.125s, transform 0.125s cubic-bezier(0.075, 0.82, 0.165, 1) 0.175s;
  transition: right 0.125s ease-out, top 0.05s linear 0.125s, transform 0.125s cubic-bezier(0.075, 0.82, 0.165, 1) 0.175s;
  transition: right 0.125s ease-out, top 0.05s linear 0.125s, transform 0.125s cubic-bezier(0.075, 0.82, 0.165, 1) 0.175s, -webkit-transform 0.125s cubic-bezier(0.075, 0.82, 0.165, 1) 0.175s;
  -webkit-transform: translate3d(-80px, 80px, 0) rotate(-45deg);
  transform: translate3d(-80px, 80px, 0) rotate(-45deg); }

.hamburger--emphatic-r {
  overflow: hidden; }

.hamburger--emphatic-r .hamburger-inner {
  -webkit-transition: background-color .125s ease-in .175s;
  -o-transition: background-color .125s ease-in .175s;
  transition: background-color .125s ease-in .175s; }

.hamburger--emphatic-r .hamburger-inner:before {
  left: 0;
  -webkit-transition: top 0.05s linear 0.125s, left 0.125s ease-in 0.175s, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: top 0.05s linear 0.125s, left 0.125s ease-in 0.175s, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  -o-transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s linear 0.125s, left 0.125s ease-in 0.175s;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s linear 0.125s, left 0.125s ease-in 0.175s;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s linear 0.125s, left 0.125s ease-in 0.175s, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335); }

.hamburger--emphatic-r .hamburger-inner:after {
  top: 10px;
  right: 0;
  -webkit-transition: top 0.05s linear 0.125s, right 0.125s ease-in 0.175s, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: top 0.05s linear 0.125s, right 0.125s ease-in 0.175s, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  -o-transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s linear 0.125s, right 0.125s ease-in 0.175s;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s linear 0.125s, right 0.125s ease-in 0.175s;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s linear 0.125s, right 0.125s ease-in 0.175s, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335); }

.hamburger--emphatic-r.is-active .hamburger-inner {
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  background-color: transparent !important; }

.hamburger--emphatic-r.is-active .hamburger-inner:before {
  top: 80px;
  left: -80px;
  -webkit-transition: left 0.125s ease-out, top 0.05s linear 0.125s, -webkit-transform 0.125s cubic-bezier(0.075, 0.82, 0.165, 1) 0.175s;
  transition: left 0.125s ease-out, top 0.05s linear 0.125s, -webkit-transform 0.125s cubic-bezier(0.075, 0.82, 0.165, 1) 0.175s;
  -o-transition: left 0.125s ease-out, top 0.05s linear 0.125s, transform 0.125s cubic-bezier(0.075, 0.82, 0.165, 1) 0.175s;
  transition: left 0.125s ease-out, top 0.05s linear 0.125s, transform 0.125s cubic-bezier(0.075, 0.82, 0.165, 1) 0.175s;
  transition: left 0.125s ease-out, top 0.05s linear 0.125s, transform 0.125s cubic-bezier(0.075, 0.82, 0.165, 1) 0.175s, -webkit-transform 0.125s cubic-bezier(0.075, 0.82, 0.165, 1) 0.175s;
  -webkit-transform: translate3d(80px, -80px, 0) rotate(-45deg);
  transform: translate3d(80px, -80px, 0) rotate(-45deg); }

.hamburger--emphatic-r.is-active .hamburger-inner:after {
  top: 80px;
  right: -80px;
  -webkit-transition: right 0.125s ease-out, top 0.05s linear 0.125s, -webkit-transform 0.125s cubic-bezier(0.075, 0.82, 0.165, 1) 0.175s;
  transition: right 0.125s ease-out, top 0.05s linear 0.125s, -webkit-transform 0.125s cubic-bezier(0.075, 0.82, 0.165, 1) 0.175s;
  -o-transition: right 0.125s ease-out, top 0.05s linear 0.125s, transform 0.125s cubic-bezier(0.075, 0.82, 0.165, 1) 0.175s;
  transition: right 0.125s ease-out, top 0.05s linear 0.125s, transform 0.125s cubic-bezier(0.075, 0.82, 0.165, 1) 0.175s;
  transition: right 0.125s ease-out, top 0.05s linear 0.125s, transform 0.125s cubic-bezier(0.075, 0.82, 0.165, 1) 0.175s, -webkit-transform 0.125s cubic-bezier(0.075, 0.82, 0.165, 1) 0.175s;
  -webkit-transform: translate3d(-80px, -80px, 0) rotate(45deg);
  transform: translate3d(-80px, -80px, 0) rotate(45deg); }

.hamburger--minus .hamburger-inner:after, .hamburger--minus .hamburger-inner:before {
  -webkit-transition: bottom .08s ease-out 0s,top .08s ease-out 0s,opacity 0s linear;
  -o-transition: bottom .08s ease-out 0s,top .08s ease-out 0s,opacity 0s linear;
  transition: bottom .08s ease-out 0s,top .08s ease-out 0s,opacity 0s linear; }

.hamburger--minus.is-active .hamburger-inner:after, .hamburger--minus.is-active .hamburger-inner:before {
  -webkit-transition: bottom .08s ease-out,top .08s ease-out,opacity 0s linear .08s;
  -o-transition: bottom .08s ease-out,top .08s ease-out,opacity 0s linear .08s;
  transition: bottom .08s ease-out,top .08s ease-out,opacity 0s linear .08s;
  opacity: 0; }

.hamburger--minus.is-active .hamburger-inner:before {
  top: 0; }

.hamburger--minus.is-active .hamburger-inner:after {
  bottom: 0; }

.hamburger--slider .hamburger-inner {
  top: 2px; }

.hamburger--slider .hamburger-inner:before {
  top: 10px;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transition-duration: .15s;
  -o-transition-duration: .15s;
  transition-duration: .15s;
  -webkit-transition-property: opacity,-webkit-transform;
  transition-property: opacity,-webkit-transform;
  -o-transition-property: transform,opacity;
  transition-property: transform,opacity;
  transition-property: transform,opacity,-webkit-transform; }

.hamburger--slider .hamburger-inner:after {
  top: 20px; }

.hamburger--slider.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
  transform: translate3d(0, 10px, 0) rotate(45deg); }

.hamburger--slider.is-active .hamburger-inner:before {
  -webkit-transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
  transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
  opacity: 0; }

.hamburger--slider.is-active .hamburger-inner:after {
  -webkit-transform: translate3d(0, -20px, 0) rotate(-90deg);
  transform: translate3d(0, -20px, 0) rotate(-90deg); }

.hamburger--slider-r .hamburger-inner {
  top: 2px; }

.hamburger--slider-r .hamburger-inner:before {
  top: 10px;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transition-duration: .15s;
  -o-transition-duration: .15s;
  transition-duration: .15s;
  -webkit-transition-property: opacity,-webkit-transform;
  transition-property: opacity,-webkit-transform;
  -o-transition-property: transform,opacity;
  transition-property: transform,opacity;
  transition-property: transform,opacity,-webkit-transform; }

.hamburger--slider-r .hamburger-inner:after {
  top: 20px; }

.hamburger--slider-r.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, 10px, 0) rotate(-45deg);
  transform: translate3d(0, 10px, 0) rotate(-45deg); }

.hamburger--slider-r.is-active .hamburger-inner:before {
  -webkit-transform: rotate(45deg) translate3d(5.71429px, -6px, 0);
  transform: rotate(45deg) translate3d(5.71429px, -6px, 0);
  opacity: 0; }

.hamburger--slider-r.is-active .hamburger-inner:after {
  -webkit-transform: translate3d(0, -20px, 0) rotate(90deg);
  transform: translate3d(0, -20px, 0) rotate(90deg); }

.hamburger--spin .hamburger-inner {
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -webkit-transition-duration: .22s;
  -o-transition-duration: .22s;
  transition-duration: .22s; }

.hamburger--spin .hamburger-inner:before {
  -webkit-transition: top .1s ease-in .25s,opacity .1s ease-in;
  -o-transition: top .1s ease-in .25s,opacity .1s ease-in;
  transition: top .1s ease-in .25s,opacity .1s ease-in; }

.hamburger--spin .hamburger-inner:after {
  -webkit-transition: bottom 0.1s ease-in 0.25s, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s ease-in 0.25s, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: bottom 0.1s ease-in 0.25s, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s ease-in 0.25s, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s ease-in 0.25s, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spin.is-active .hamburger-inner {
  -webkit-transition-delay: .12s;
  -o-transition-delay: .12s;
  transition-delay: .12s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg); }

.hamburger--spin.is-active .hamburger-inner:before {
  top: 0;
  -webkit-transition: top .1s ease-out,opacity .1s ease-out .12s;
  -o-transition: top .1s ease-out,opacity .1s ease-out .12s;
  transition: top .1s ease-out,opacity .1s ease-out .12s;
  opacity: 0; }

.hamburger--spin.is-active .hamburger-inner:after {
  bottom: 0;
  -webkit-transition: bottom 0.1s ease-out, -webkit-transform 0.22s cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
  transition: bottom 0.1s ease-out, -webkit-transform 0.22s cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
  -o-transition: bottom 0.1s ease-out, transform 0.22s cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
  transition: bottom 0.1s ease-out, transform 0.22s cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
  transition: bottom 0.1s ease-out, transform 0.22s cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s, -webkit-transform 0.22s cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg); }

.hamburger--spin-r .hamburger-inner {
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -webkit-transition-duration: .22s;
  -o-transition-duration: .22s;
  transition-duration: .22s; }

.hamburger--spin-r .hamburger-inner:before {
  -webkit-transition: top .1s ease-in .25s,opacity .1s ease-in;
  -o-transition: top .1s ease-in .25s,opacity .1s ease-in;
  transition: top .1s ease-in .25s,opacity .1s ease-in; }

.hamburger--spin-r .hamburger-inner:after {
  -webkit-transition: bottom 0.1s ease-in 0.25s, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s ease-in 0.25s, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: bottom 0.1s ease-in 0.25s, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s ease-in 0.25s, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s ease-in 0.25s, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spin-r.is-active .hamburger-inner {
  -webkit-transition-delay: .12s;
  -o-transition-delay: .12s;
  transition-delay: .12s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: rotate(-225deg);
  -ms-transform: rotate(-225deg);
  transform: rotate(-225deg); }

.hamburger--spin-r.is-active .hamburger-inner:before {
  top: 0;
  -webkit-transition: top .1s ease-out,opacity .1s ease-out .12s;
  -o-transition: top .1s ease-out,opacity .1s ease-out .12s;
  transition: top .1s ease-out,opacity .1s ease-out .12s;
  opacity: 0; }

.hamburger--spin-r.is-active .hamburger-inner:after {
  bottom: 0;
  -webkit-transition: bottom 0.1s ease-out, -webkit-transform 0.22s cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
  transition: bottom 0.1s ease-out, -webkit-transform 0.22s cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
  -o-transition: bottom 0.1s ease-out, transform 0.22s cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
  transition: bottom 0.1s ease-out, transform 0.22s cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
  transition: bottom 0.1s ease-out, transform 0.22s cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s, -webkit-transform 0.22s cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg); }

.hamburger--spring .hamburger-inner {
  top: 2px;
  -webkit-transition: background-color 0s linear .13s;
  -o-transition: background-color 0s linear .13s;
  transition: background-color 0s linear .13s; }

.hamburger--spring .hamburger-inner:before {
  top: 10px;
  -webkit-transition: top 0.1s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: top 0.1s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spring .hamburger-inner:after {
  top: 20px;
  -webkit-transition: top 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: top 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spring.is-active .hamburger-inner {
  -webkit-transition-delay: .22s;
  -o-transition-delay: .22s;
  transition-delay: .22s;
  background-color: transparent !important; }

.hamburger--spring.is-active .hamburger-inner:before {
  top: 0;
  -webkit-transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.15s, -webkit-transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
  transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.15s, -webkit-transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
  -o-transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.15s, transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
  transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.15s, transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
  transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.15s, transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s, -webkit-transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
  -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
  transform: translate3d(0, 10px, 0) rotate(45deg); }

.hamburger--spring.is-active .hamburger-inner:after {
  top: 0;
  -webkit-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
  -o-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s, -webkit-transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
  -webkit-transform: translate3d(0, 10px, 0) rotate(-45deg);
  transform: translate3d(0, 10px, 0) rotate(-45deg); }

.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -webkit-transition-duration: .13s;
  -o-transition-duration: .13s;
  transition-duration: .13s; }

.hamburger--spring-r .hamburger-inner:after {
  top: -20px;
  -webkit-transition: top 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, opacity 0s linear;
  -o-transition: top 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, opacity 0s linear;
  transition: top 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, opacity 0s linear; }

.hamburger--spring-r .hamburger-inner:before {
  -webkit-transition: top 0.1s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: top 0.1s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--spring-r.is-active .hamburger-inner {
  -webkit-transition-delay: .22s;
  -o-transition-delay: .22s;
  transition-delay: .22s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
  transform: translate3d(0, -10px, 0) rotate(-45deg); }

.hamburger--spring-r.is-active .hamburger-inner:after {
  top: 0;
  -webkit-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s linear 0.22s;
  -o-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s linear 0.22s;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s linear 0.22s;
  opacity: 0; }

.hamburger--spring-r.is-active .hamburger-inner:before {
  top: 0;
  -webkit-transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.15s, -webkit-transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
  transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.15s, -webkit-transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
  -o-transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.15s, transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
  transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.15s, transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
  transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.15s, transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s, -webkit-transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg); }

.hamburger--stand .hamburger-inner {
  -webkit-transition: background-color 0s linear 75ms, -webkit-transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0.15s;
  transition: background-color 0s linear 75ms, -webkit-transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0.15s;
  -o-transition: transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0.15s, background-color 0s linear 75ms;
  transition: transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0.15s, background-color 0s linear 75ms;
  transition: transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0.15s, background-color 0s linear 75ms, -webkit-transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0.15s; }

.hamburger--stand .hamburger-inner:before {
  -webkit-transition: top 75ms ease-in 75ms, -webkit-transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s;
  transition: top 75ms ease-in 75ms, -webkit-transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s;
  -o-transition: top 75ms ease-in 75ms, transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s;
  transition: top 75ms ease-in 75ms, transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s;
  transition: top 75ms ease-in 75ms, transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s, -webkit-transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s; }

.hamburger--stand .hamburger-inner:after {
  -webkit-transition: bottom 75ms ease-in 75ms, -webkit-transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s;
  transition: bottom 75ms ease-in 75ms, -webkit-transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s;
  -o-transition: bottom 75ms ease-in 75ms, transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s;
  transition: bottom 75ms ease-in 75ms, transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s;
  transition: bottom 75ms ease-in 75ms, transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s, -webkit-transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s; }

.hamburger--stand.is-active .hamburger-inner {
  -webkit-transition: background-color 0s linear 0.15s, -webkit-transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition: background-color 0s linear 0.15s, -webkit-transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  -o-transition: transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0s, background-color 0s linear 0.15s;
  transition: transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0s, background-color 0s linear 0.15s;
  transition: transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0s, background-color 0s linear 0.15s, -webkit-transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  background-color: transparent !important; }

.hamburger--stand.is-active .hamburger-inner:before {
  top: 0;
  -webkit-transition: top 75ms ease-out 0.1s, -webkit-transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s;
  transition: top 75ms ease-out 0.1s, -webkit-transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s;
  -o-transition: top 75ms ease-out 0.1s, transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s;
  transition: top 75ms ease-out 0.1s, transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s;
  transition: top 75ms ease-out 0.1s, transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s, -webkit-transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg); }

.hamburger--stand.is-active .hamburger-inner:after {
  bottom: 0;
  -webkit-transition: bottom 75ms ease-out 0.1s, -webkit-transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s;
  transition: bottom 75ms ease-out 0.1s, -webkit-transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s;
  -o-transition: bottom 75ms ease-out 0.1s, transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s;
  transition: bottom 75ms ease-out 0.1s, transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s;
  transition: bottom 75ms ease-out 0.1s, transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s, -webkit-transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg); }

.hamburger--stand-r .hamburger-inner {
  -webkit-transition: background-color 0s linear 75ms, -webkit-transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0.15s;
  transition: background-color 0s linear 75ms, -webkit-transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0.15s;
  -o-transition: transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0.15s, background-color 0s linear 75ms;
  transition: transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0.15s, background-color 0s linear 75ms;
  transition: transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0.15s, background-color 0s linear 75ms, -webkit-transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0.15s; }

.hamburger--stand-r .hamburger-inner:before {
  -webkit-transition: top 75ms ease-in 75ms, -webkit-transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s;
  transition: top 75ms ease-in 75ms, -webkit-transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s;
  -o-transition: top 75ms ease-in 75ms, transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s;
  transition: top 75ms ease-in 75ms, transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s;
  transition: top 75ms ease-in 75ms, transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s, -webkit-transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s; }

.hamburger--stand-r .hamburger-inner:after {
  -webkit-transition: bottom 75ms ease-in 75ms, -webkit-transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s;
  transition: bottom 75ms ease-in 75ms, -webkit-transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s;
  -o-transition: bottom 75ms ease-in 75ms, transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s;
  transition: bottom 75ms ease-in 75ms, transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s;
  transition: bottom 75ms ease-in 75ms, transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s, -webkit-transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s; }

.hamburger--stand-r.is-active .hamburger-inner {
  -webkit-transition: background-color 0s linear 0.15s, -webkit-transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition: background-color 0s linear 0.15s, -webkit-transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  -o-transition: transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0s, background-color 0s linear 0.15s;
  transition: transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0s, background-color 0s linear 0.15s;
  transition: transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0s, background-color 0s linear 0.15s, -webkit-transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  background-color: transparent !important; }

.hamburger--stand-r.is-active .hamburger-inner:before {
  top: 0;
  -webkit-transition: top 75ms ease-out 0.1s, -webkit-transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s;
  transition: top 75ms ease-out 0.1s, -webkit-transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s;
  -o-transition: top 75ms ease-out 0.1s, transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s;
  transition: top 75ms ease-out 0.1s, transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s;
  transition: top 75ms ease-out 0.1s, transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s, -webkit-transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg); }

.hamburger--stand-r.is-active .hamburger-inner:after {
  bottom: 0;
  -webkit-transition: bottom 75ms ease-out 0.1s, -webkit-transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s;
  transition: bottom 75ms ease-out 0.1s, -webkit-transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s;
  -o-transition: bottom 75ms ease-out 0.1s, transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s;
  transition: bottom 75ms ease-out 0.1s, transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s;
  transition: bottom 75ms ease-out 0.1s, transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s, -webkit-transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg); }

.hamburger--squeeze .hamburger-inner {
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -webkit-transition-duration: 75ms;
  -o-transition-duration: 75ms;
  transition-duration: 75ms; }

.hamburger--squeeze .hamburger-inner:before {
  -webkit-transition: top 75ms ease .12s,opacity 75ms ease;
  -o-transition: top 75ms ease .12s,opacity 75ms ease;
  transition: top 75ms ease .12s,opacity 75ms ease; }

.hamburger--squeeze .hamburger-inner:after {
  -webkit-transition: bottom 75ms ease 0.12s, -webkit-transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 75ms ease 0.12s, -webkit-transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition: bottom 75ms ease 0.12s, transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 75ms ease 0.12s, transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 75ms ease 0.12s, transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--squeeze.is-active .hamburger-inner {
  -webkit-transition-delay: .12s;
  -o-transition-delay: .12s;
  transition-delay: .12s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg); }

.hamburger--squeeze.is-active .hamburger-inner:before {
  top: 0;
  -webkit-transition: top 75ms ease,opacity 75ms ease .12s;
  -o-transition: top 75ms ease,opacity 75ms ease .12s;
  transition: top 75ms ease,opacity 75ms ease .12s;
  opacity: 0; }

.hamburger--squeeze.is-active .hamburger-inner:after {
  bottom: 0;
  -webkit-transition: bottom 75ms ease, -webkit-transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
  transition: bottom 75ms ease, -webkit-transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
  -o-transition: bottom 75ms ease, transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
  transition: bottom 75ms ease, transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
  transition: bottom 75ms ease, transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s, -webkit-transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg); }

.hamburger--vortex .hamburger-inner {
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition-duration: .2s;
  -o-transition-duration: .2s;
  transition-duration: .2s; }

.hamburger--vortex .hamburger-inner:after, .hamburger--vortex .hamburger-inner:before {
  -webkit-transition-delay: .1s;
  -o-transition-delay: .1s;
  transition-delay: .1s;
  -webkit-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-transition-duration: 0s;
  -o-transition-duration: 0s;
  transition-duration: 0s; }

.hamburger--vortex .hamburger-inner:before {
  -webkit-transition-property: top,opacity;
  -o-transition-property: top,opacity;
  transition-property: top,opacity; }

.hamburger--vortex .hamburger-inner:after {
  -webkit-transition-property: bottom,-webkit-transform;
  transition-property: bottom,-webkit-transform;
  -o-transition-property: bottom,transform;
  transition-property: bottom,transform;
  transition-property: bottom,transform,-webkit-transform; }

.hamburger--vortex.is-active .hamburger-inner {
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transform: rotate(765deg);
  -ms-transform: rotate(765deg);
  transform: rotate(765deg); }

.hamburger--vortex.is-active .hamburger-inner:after, .hamburger--vortex.is-active .hamburger-inner:before {
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s; }

.hamburger--vortex.is-active .hamburger-inner:before {
  top: 0;
  opacity: 0; }

.hamburger--vortex.is-active .hamburger-inner:after {
  bottom: 0;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg); }

.hamburger--vortex-r .hamburger-inner {
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition-duration: .2s;
  -o-transition-duration: .2s;
  transition-duration: .2s; }

.hamburger--vortex-r .hamburger-inner:after, .hamburger--vortex-r .hamburger-inner:before {
  -webkit-transition-delay: .1s;
  -o-transition-delay: .1s;
  transition-delay: .1s;
  -webkit-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-transition-duration: 0s;
  -o-transition-duration: 0s;
  transition-duration: 0s; }

.hamburger--vortex-r .hamburger-inner:before {
  -webkit-transition-property: top,opacity;
  -o-transition-property: top,opacity;
  transition-property: top,opacity; }

.hamburger--vortex-r .hamburger-inner:after {
  -webkit-transition-property: bottom,-webkit-transform;
  transition-property: bottom,-webkit-transform;
  -o-transition-property: bottom,transform;
  transition-property: bottom,transform;
  transition-property: bottom,transform,-webkit-transform; }

.hamburger--vortex-r.is-active .hamburger-inner {
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transform: rotate(-765deg);
  -ms-transform: rotate(-765deg);
  transform: rotate(-765deg); }

.hamburger--vortex-r.is-active .hamburger-inner:after, .hamburger--vortex-r.is-active .hamburger-inner:before {
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s; }

.hamburger--vortex-r.is-active .hamburger-inner:before {
  top: 0;
  opacity: 0; }

.hamburger--vortex-r.is-active .hamburger-inner:after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg); }

body.orange {
  /************************
        HEADER                                     
    ************************/
  /************************
        Loader                                     
    ************************/
  /************************
        Scroll to top                                     
    ************************/
  /************************
        FORMULARE
    ************************/
  /************************
        Article Background                                     
    ************************/
  /************************
        BANNER                                     
    ************************/
  /************************
        Search                                     
    ************************/
  /************************
        NAVIGATIONS                                     
    ************************/
  /************************
        Type                    
    ************************/
  /************************
        DOWNLOADS                                     
    ************************/
  /***********************************
        RSCE DOWNLOAD PDF
    ***********************************/
  /************************
        Kacheln                                     
    ************************/
  /************************
        TABLES                                     
    ************************/
  /************************
        Sidebar                    
    ************************/
  /************************
        NEWS
    ************************/
  /************************
        pagination                                     
    ************************/
  /************************
        Akkordeons                                     
    ************************/
  /************************
        Call To Action                                     
    ************************/ }
  body.orange ::-moz-selection {
    background: #f39200;
    /* WebKit/Blink Browsers */
    color: #FFF; }
  body.orange ::selection {
    background: #f39200;
    /* WebKit/Blink Browsers */
    color: #FFF; }
  body.orange ::-moz-selection {
    background: #f39200;
    /* WebKit/Blink Browsers */
    color: #FFF; }
  body.orange::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 10px rgba(101, 100, 100, 0.15);
    box-shadow: inset 0 0 10px rgba(101, 100, 100, 0.15); }
  body.orange::-webkit-scrollbar-thumb {
    background-image: -webkit-gradient(linear, left bottom, left top, from(#f39200), to(#f25500));
    background-image: linear-gradient(0deg, #f39200, #f25500); }
  body.orange [id="preheader"] {
    background: #f25500; }
  body.orange .search-button {
    color: #656464; }
    body.orange .search-button:hover {
      color: #f25500; }
  body.orange .loader {
    background-color: #f25500;
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #f25500), to(#f39200));
    background-image: -o-linear-gradient(left, #f25500 0, #f39200);
    background-image: linear-gradient(to right, #f25500 0, #f39200); }
  body.orange .scrollToTop:hover, body.orange .scrollToTop:active, body.orange .scrollToTop:focus {
    color: #f39200; }
  body.orange .overlay {
    background: rgba(243, 146, 0, 0.9); }
  body.orange .widget input, body.orange .widget select, body.orange .widget textarea {
    border-color: #f25500; }
    body.orange .widget input:focus, body.orange .widget select:focus, body.orange .widget textarea:focus {
      border-color: #f39200; }
  body.orange .widget button {
    border-color: #f25500;
    color: #f25500; }
    body.orange .widget button:hover {
      background: #f25500;
      color: #FFF; }
  body.orange .widget-checkbox input[type="radio"]:focus + label::before,
  body.orange .widget-checkbox input[type="checkbox"]:focus + label::before, body.orange .widget-radio input[type="radio"]:focus + label::before,
  body.orange .widget-radio input[type="checkbox"]:focus + label::before {
    outline: #f25500; }
  body.orange .widget-radio label::after {
    border-radius: 100%;
    background: #f25500; }
  body.orange .widget-radio label::before {
    border-radius: 100%;
    border-color: #f25500; }
  body.orange .widget-checkbox label::before,
  body.orange .widget-checkbox label::after {
    border-color: #f25500; }
  body.orange .rsce_bgimage.gradient {
    background: -o-linear-gradient(330deg, #f39200, #f25500);
    background: linear-gradient(120deg, #f39200, #f25500); }
  body.orange .rsce_bgimage.color--light-grey {
    background: #f5f5f5; }
  body.orange .rsce_bgimage.color--primary {
    background: #f39200; }
  body.orange .rsce_bgimage.color--mark {
    background: #f25500; }
  body.orange .rsce_bgimage.color--highlight {
    background: #f5d400; }
    body.orange .rsce_bgimage.color--highlight .hinweisbox .text_container {
      border-color: #004f91; }
      body.orange .rsce_bgimage.color--highlight .hinweisbox .text_container * {
        color: #004f91; }
  body.orange.ie #main .mod_article.first:after, body.orange.trident #main .mod_article.first:after {
    content: none;
    display: none; }
  body.orange.ie #main &gt; .inside, body.orange.trident #main &gt; .inside {
    background: none; }
  body.orange .mod_pageImage figcaption,
  body.orange .mod_pageImage .rsts-caption,
  body.orange .mod_rocksolid_slider figcaption,
  body.orange .mod_rocksolid_slider .rsts-caption {
    background: rgba(242, 85, 0, 0.7); }
  body.orange .mod_search input {
    border-color: #f25500; }
    body.orange .mod_search input:focus {
      border-color: #f39200; }
  body.orange .mod_search .widget-submit button.submit {
    color: #f25500;
    background-color: transparent; }
    body.orange .mod_search .widget-submit button.submit:hover {
      color: #f39200;
      background-color: transparent; }
  body.orange .mod_search h3,
  body.orange .mod_search h3 a {
    color: #f39200; }
  body.orange #search-overlay {
    background-color: rgba(243, 146, 0, 0.9); }
  body.orange .nav a, body.orange .nav a:visited, body.orange .nav a:active, body.orange .nav strong, body.orange .nav strong.active, body.orange .nav strong.trail, body.orange .nav a.trail {
    color: #656464; }
    body.orange .nav a:after, body.orange .nav a:visited:after, body.orange .nav a:active:after, body.orange .nav strong:after, body.orange .nav strong.active:after, body.orange .nav strong.trail:after, body.orange .nav a.trail:after {
      background: #f39200; }
    body.orange .nav a:hover, body.orange .nav a:visited:hover, body.orange .nav a:active:hover, body.orange .nav strong:hover, body.orange .nav strong.active:hover, body.orange .nav strong.trail:hover, body.orange .nav a.trail:hover {
      color: #f25500; }
  body.orange .nav strong, body.orange .nav strong.active, body.orange .nav strong.trail, body.orange .nav a.trail {
    color: #f25500; }
    body.orange .nav strong:after, body.orange .nav strong.active:after, body.orange .nav strong.trail:after, body.orange .nav a.trail:after {
      background: #f25500; }
  body.orange .nav .level_2 li a, body.orange .nav .level_2 li a:visited, body.orange .nav .level_2 li a:active, body.orange .nav .level_2 li strong, body.orange .nav .level_2 li strong.active, body.orange .nav .level_2 li strong.trail, body.orange .nav .level_2 li a.trail {
    color: #656464;
    background: rgba(245, 245, 245, 0.8); }
    body.orange .nav .level_2 li a:before, body.orange .nav .level_2 li a:visited:before, body.orange .nav .level_2 li a:active:before, body.orange .nav .level_2 li strong:before, body.orange .nav .level_2 li strong.active:before, body.orange .nav .level_2 li strong.trail:before, body.orange .nav .level_2 li a.trail:before {
      background: #f25500; }
    body.orange .nav .level_2 li a:hover, body.orange .nav .level_2 li a:visited:hover, body.orange .nav .level_2 li a:active:hover, body.orange .nav .level_2 li strong:hover, body.orange .nav .level_2 li strong.active:hover, body.orange .nav .level_2 li strong.trail:hover, body.orange .nav .level_2 li a.trail:hover {
      color: #f25500; }
  body.orange .nav .level_2 li strong, body.orange .nav .level_2 li strong.active, body.orange .nav .level_2 li strong.trail, body.orange .nav .level_2 li a.trail {
    color: #f25500; }
    body.orange .nav .level_2 li strong:before, body.orange .nav .level_2 li strong.active:before, body.orange .nav .level_2 li strong.trail:before, body.orange .nav .level_2 li a.trail:before {
      background: #f25500; }
  body.orange .nav--footer strong, body.orange .nav--footer strong.active, body.orange .nav--footer strong.trail, body.orange .nav--footer a.trail {
    color: #FFF; }
    body.orange .nav--footer strong:hover, body.orange .nav--footer strong.active:hover, body.orange .nav--footer strong.trail:hover, body.orange .nav--footer a.trail:hover {
      color: #FFF; }
  body.orange .ham .line {
    stroke: #f39200; }
  body.orange .mod_mobile_menu .mobile_menu_trigger span.text {
    color: #f39200; }
  body.orange .mod_rocksolid_slider .rsts-nav-bullets ul li a {
    background: #f5f5f5; }
    body.orange .mod_rocksolid_slider .rsts-nav-bullets ul li a.active, body.orange .mod_rocksolid_slider .rsts-nav-bullets ul li a:hover {
      background: #f5d400; }
  body.orange .mobile_menu .toggle-submenu.active {
    color: #f39200; }
  body.orange .mobile_menu .mod_navigation ul li.opened, body.orange .mobile_menu .mod_navigation ul li.trail.opened, body.orange .mobile_menu .mod_navigation ul li.active, body.orange .mobile_menu .mod_navigation ul li.trail {
    border-color: #f39200; }
    body.orange .mobile_menu .mod_navigation ul li.opened a, body.orange .mobile_menu .mod_navigation ul li.opened a:visited, body.orange .mobile_menu .mod_navigation ul li.opened a:active, body.orange .mobile_menu .mod_navigation ul li.opened strong, body.orange .mobile_menu .mod_navigation ul li.trail.opened a, body.orange .mobile_menu .mod_navigation ul li.trail.opened a:visited, body.orange .mobile_menu .mod_navigation ul li.trail.opened a:active, body.orange .mobile_menu .mod_navigation ul li.trail.opened strong, body.orange .mobile_menu .mod_navigation ul li.active a, body.orange .mobile_menu .mod_navigation ul li.active a:visited, body.orange .mobile_menu .mod_navigation ul li.active a:active, body.orange .mobile_menu .mod_navigation ul li.active strong, body.orange .mobile_menu .mod_navigation ul li.trail a, body.orange .mobile_menu .mod_navigation ul li.trail a:visited, body.orange .mobile_menu .mod_navigation ul li.trail a:active, body.orange .mobile_menu .mod_navigation ul li.trail strong {
      color: #f39200; }
      body.orange .mobile_menu .mod_navigation ul li.opened a &gt; span, body.orange .mobile_menu .mod_navigation ul li.opened a:visited &gt; span, body.orange .mobile_menu .mod_navigation ul li.opened a:active &gt; span, body.orange .mobile_menu .mod_navigation ul li.opened strong &gt; span, body.orange .mobile_menu .mod_navigation ul li.trail.opened a &gt; span, body.orange .mobile_menu .mod_navigation ul li.trail.opened a:visited &gt; span, body.orange .mobile_menu .mod_navigation ul li.trail.opened a:active &gt; span, body.orange .mobile_menu .mod_navigation ul li.trail.opened strong &gt; span, body.orange .mobile_menu .mod_navigation ul li.active a &gt; span, body.orange .mobile_menu .mod_navigation ul li.active a:visited &gt; span, body.orange .mobile_menu .mod_navigation ul li.active a:active &gt; span, body.orange .mobile_menu .mod_navigation ul li.active strong &gt; span, body.orange .mobile_menu .mod_navigation ul li.trail a &gt; span, body.orange .mobile_menu .mod_navigation ul li.trail a:visited &gt; span, body.orange .mobile_menu .mod_navigation ul li.trail a:active &gt; span, body.orange .mobile_menu .mod_navigation ul li.trail strong &gt; span {
        color: #f39200; }
  body.orange p a, body.orange p a:visited, body.orange p a:active {
    color: #f39200; }
  body.orange .person .text_container .name {
    color: #f39200; }
  body.orange .rsce_bgimage:not(.colored) .ce_rsce_headline_advanced h1, body.orange .rsce_bgimage:not(.colored) .ce_rsce_headline_advanced h2, body.orange .rsce_bgimage:not(.colored) .ce_rsce_headline_advanced h3, body.orange .rsce_bgimage:not(.colored) .ce_rsce_headline_advanced h4, body.orange .rsce_bgimage:not(.colored) .ce_rsce_headline_advanced h5, body.orange .rsce_bgimage:not(.colored) .ce_rsce_headline_advanced h6,
  body.orange .rsce_bgimage:not(.colored) .ce_rsce_text_advanced h1,
  body.orange .rsce_bgimage:not(.colored) .ce_rsce_text_advanced h2,
  body.orange .rsce_bgimage:not(.colored) .ce_rsce_text_advanced h3,
  body.orange .rsce_bgimage:not(.colored) .ce_rsce_text_advanced h4,
  body.orange .rsce_bgimage:not(.colored) .ce_rsce_text_advanced h5,
  body.orange .rsce_bgimage:not(.colored) .ce_rsce_text_advanced h6 {
    color: #656464; }
  body.orange .rsce_bgimage:not(.colored) .ce_rsce_headline_advanced .headline--sub,
  body.orange .rsce_bgimage:not(.colored) .ce_rsce_headline_advanced .headline-accent,
  body.orange .rsce_bgimage:not(.colored) .ce_rsce_text_advanced .headline--sub,
  body.orange .rsce_bgimage:not(.colored) .ce_rsce_text_advanced .headline-accent {
    color: #f25500; }
  body.orange h1, body.orange h2, body.orange h3, body.orange h4, body.orange h5, body.orange h6 {
    color: #656464; }
    body.orange h1 p, body.orange h2 p, body.orange h3 p, body.orange h4 p, body.orange h5 p, body.orange h6 p {
      color: #f25500; }
  body.orange .hinweisbox .text_container {
    border-color: #f25500;
    color: #f25500; }
    body.orange .hinweisbox .text_container .headline {
      background: #f25500;
      color: #FFF; }
      body.orange .hinweisbox .text_container .headline h1, body.orange .hinweisbox .text_container .headline h2, body.orange .hinweisbox .text_container .headline h3, body.orange .hinweisbox .text_container .headline h4, body.orange .hinweisbox .text_container .headline h5, body.orange .hinweisbox .text_container .headline h6 {
        color: #FFF; }
  body.orange .hinweisbox.secondary .text_container {
    border-color: #f39200;
    color: #f39200; }
    body.orange .hinweisbox.secondary .text_container .headline {
      background: #f39200;
      color: #FFF; }
      body.orange .hinweisbox.secondary .text_container .headline h1, body.orange .hinweisbox.secondary .text_container .headline h2, body.orange .hinweisbox.secondary .text_container .headline h3, body.orange .hinweisbox.secondary .text_container .headline h4, body.orange .hinweisbox.secondary .text_container .headline h5, body.orange .hinweisbox.secondary .text_container .headline h6 {
        color: #FFF; }
  body.orange .ce_downloads a {
    color: #f39200; }
    body.orange .ce_downloads a:hover {
      color: #f25500; }
  body.orange .ce_download a {
    color: #f39200; }
    body.orange .ce_download a:before {
      color: #f39200; }
    body.orange .ce_download a:hover {
      color: #FFF;
      background: #f39200; }
      body.orange .ce_download a:hover:before {
        border-color: #FFF;
        background: #f39200;
        color: #FFF; }
  body.orange .ce_rsce_pdf_image .image_container {
    background: #f39200; }
  body.orange .ce_rsce_pdf_image .download-element {
    border-color: #f39200; }
    body.orange .ce_rsce_pdf_image .download-element a:before {
      color: #f39200; }
  body.orange .ce_rsce_pdf_image:hover .download-element {
    border-color: #f25500; }
    body.orange .ce_rsce_pdf_image:hover .download-element a:before {
      color: #f25500; }
  body.orange .rsce_bgimage.colored .ce_rsce_pdf_image .download-element {
    border-color: #f39200;
    color: #f39200; }
  body.orange .rsce_bgimage.colored .ce_rsce_pdf_image:hover .download-element {
    border-color: #f25500;
    color: #f25500; }
  body.orange .rsce_bgimage.colored .ce_download a {
    color: #FFF;
    background: rgba(101, 100, 100, 0.25); }
    body.orange .rsce_bgimage.colored .ce_download a:before {
      color: #FFF;
      border-color: rgba(101, 100, 100, 0.25);
      background: #f39200; }
    body.orange .rsce_bgimage.colored .ce_download a:hover {
      background: rgba(101, 100, 100, 0.45); }
      body.orange .rsce_bgimage.colored .ce_download a:hover:before {
        border-color: rgba(101, 100, 100, 0.45);
        background: #a76400; }
  body.orange #main .ce_rsce_kachel .item .text_container h3.ce_headline {
    background: rgba(243, 146, 0, 0.67); }
  body.orange #main .ce_rsce_kachel .item .text_container .inner_text {
    color: #f39200; }
  body.orange table th {
    background: #f25500; }
  body.orange table td {
    background: rgba(242, 85, 0, 0.25); }
  @media screen and (max-width: 47.9375em) {
    body.orange table tbody tr:nth-child(2n+2) td {
      background: rgba(242, 85, 0, 0.4); } }
  body.orange .mod_sidebar .sidebar--infos {
    background: white; }
  body.orange .mod_sidebar .kontakt--button,
  body.orange .mod_sidebar .times--button,
  body.orange .mod_sidebar .preise--button {
    background: rgba(243, 146, 0, 0.93); }
    body.orange .mod_sidebar .kontakt--button:hover,
    body.orange .mod_sidebar .times--button:hover,
    body.orange .mod_sidebar .preise--button:hover {
      background: #f39200; }
  body.orange .mod_sidebar .kontakt--close:before,
  body.orange .mod_sidebar .times--close:before,
  body.orange .mod_sidebar .preise--close:before {
    color: #f39200; }
  body.orange .mod_sidebar .kontakt--close:hover,
  body.orange .mod_sidebar .times--close:hover,
  body.orange .mod_sidebar .preise--close:hover {
    background: #f39200; }
    body.orange .mod_sidebar .kontakt--close:hover:before,
    body.orange .mod_sidebar .times--close:hover:before,
    body.orange .mod_sidebar .preise--close:hover:before {
      color: #f5f5f5; }
  body.orange .mod_sidebar .ce_accordion.ce_text .toggler:hover {
    color: #f25500; }
  body.orange .mod_newslist .layout_latest .image_holder .info,
  body.orange .mod_newslist .layout_latest p.more a {
    background: #f39200; }
  body.orange .mod_newslist .layout_latest:hover .image_holder .info,
  body.orange .mod_newslist .layout_latest:hover p.more a {
    background: #f25500; }
  body.orange .mod_newslist .layout_simple .inner {
    background: white;
    color: #f39200; }
  body.orange .mod_newslist .layout_simple:hover .inner, body.orange .mod_newslist .layout_simple:focus .inner, body.orange .mod_newslist .layout_simple:active .inner {
    background: #f39200;
    color: #FFF; }
  body.orange .mod_newscategories ul li strong span {
    background: #f39200; }
  body.orange .mod_newscategories ul li a span {
    background: white; }
    body.orange .mod_newscategories ul li a span:hover {
      background: #f39200; }
  body.orange .pagination ul li strong,
  body.orange .pagination ul li a {
    border-color: #f25500;
    color: #f25500; }
  body.orange .pagination ul li strong {
    border-color: #656464;
    color: #656464; }
  body.orange .ce_accordion .toggler {
    background: #f39200; }
  body.orange .rsce_bgimage.colored .ce_accordion .toggler {
    background: none;
    color: #FFF; }
  body.orange .calltoaction.bg-default a, body.orange .calltoaction.bg-default a:visited, body.orange .calltoaction.bg-default a:active {
    background: #f39200; }
  body.orange .calltoaction.hover-bg-default a:hover {
    background: #f39200; }
  body.orange .calltoaction.hover-bg-default.button--boxed a {
    border-color: #f39200; }
  body.orange .calltoaction.bg-mark a, body.orange .calltoaction.bg-mark a:visited, body.orange .calltoaction.bg-mark a:active {
    background: #f25500; }
  body.orange .calltoaction.hover-bg-mark a:hover {
    background: #f25500; }
  body.orange .calltoaction.hover-bg-mark.button--boxed a {
    border-color: #f25500; }
  body.orange .calltoaction.hover-bg-white a:hover {
    background: #FFF; }
  body.orange .calltoaction.hover-bg-white.button--boxed a {
    border-color: #FFF; }
  body.orange .calltoaction.color-default a, body.orange .calltoaction.color-default a:visited, body.orange .calltoaction.color-default a:active {
    color: #f39200; }
  body.orange .calltoaction.color-default.button--boxed a {
    border-color: #f39200; }
  body.orange .calltoaction.color-default.button--default a {
    border-color: transparent; }
  body.orange .calltoaction.hover-color-default a:hover {
    color: #f39200; }
  body.orange .calltoaction.color-mark a, body.orange .calltoaction.color-mark a:visited, body.orange .calltoaction.color-mark a:active {
    color: #f25500; }
  body.orange .calltoaction.color-mark.button--boxed a {
    border-color: #f25500; }
  body.orange .calltoaction.color-mark.button--default a {
    border-color: transparent; }
  body.orange .calltoaction.hover-color-mark a:hover {
    color: #f25500; }
  body.orange #main .nav--pageteaser ul.pt_overview li .text_container .title {
    color: #f39200; }
  body.orange #main .nav--pageteaser ul.pt_overview li a:after {
    background: -o-linear-gradient(330deg, #f39200, #f39200 25%, #f25500);
    background: linear-gradient(120deg, #f39200, #f39200 25%, #f25500); }
  body.orange #main .nav--pageteaser ul.pt_subpage li .text_container .title,
  body.orange #main .nav--pageteaser ul.pt_subpage li .text_container .text {
    background: -o-linear-gradient(330deg, rgba(243, 146, 0, 0.92), rgba(242, 85, 0, 0.92));
    background: linear-gradient(120deg, rgba(243, 146, 0, 0.92), rgba(242, 85, 0, 0.92)); }
  body.orange #main .nav--pageteaser ul.pt_subpage li .text_container .text {
    background: rgba(255, 255, 255, 0.79);
    color: #333; }
  body.orange #main .nav--pageteaser ul.pt_subpage li.active .text_container {
    background: -o-linear-gradient(330deg, rgba(243, 146, 0, 0.92), rgba(242, 85, 0, 0.92));
    background: linear-gradient(120deg, rgba(243, 146, 0, 0.92), rgba(242, 85, 0, 0.92)); }
    body.orange #main .nav--pageteaser ul.pt_subpage li.active .text_container .title {
      background: none;
      color: #FFF; }
  @media screen and (max-width: 1279px) {
    body.orange #main .nav--pageteaser ul.pt_subpage li .text_container .title,
    body.orange #main .nav--pageteaser ul.pt_subpage li .text_container .text {
      background: none; }
    body.orange #main .nav--pageteaser ul.pt_subpage li .text_container .title {
      color: #f39200; }
    body.orange #main .nav--pageteaser ul.pt_subpage li div &gt; a:after {
      background: -o-linear-gradient(330deg, #f39200, #f39200 25%, #f25500);
      background: linear-gradient(120deg, #f39200, #f39200 25%, #f25500); } }
  body.orange #main .nav--pageteaser.pt_overview ul.pt_subpage li .text_container .title,
  body.orange #main .nav--pageteaser.pt_overview ul.pt_subpage li .text_container .text {
    background: none; }
  body.orange #main .nav--pageteaser.pt_overview ul.pt_subpage li .text_container .title {
    color: #f39200; }
  body.orange #main .nav--pageteaser.pt_overview ul.pt_subpage li div &gt; a:after {
    background: -o-linear-gradient(330deg, #f39200, #f39200 25%, #f25500);
    background: linear-gradient(120deg, #f39200, #f39200 25%, #f25500); }
  body.orange .hamburger .hamburger-inner {
    background-color: #f39200; }
    body.orange .hamburger .hamburger-inner:before, body.orange .hamburger .hamburger-inner:after {
      background-color: #f39200; }
  body.orange .mod_sidebar {
    /*********************
            CLOSE BUTTONS
        *********************/
    /*********************
            SECTION BUTTONS
        *********************/ }
    body.orange .mod_sidebar .sidebar-button--close:before {
      color: #f39200; }
    body.orange .mod_sidebar .sidebar-button--close:hover {
      background: #f25500; }
    body.orange .mod_sidebar .sidebar-button {
      background: #f39200; }
      body.orange .mod_sidebar .sidebar-button:hover {
        background: #f25500; }
  body.orange .anfrage-formular .widget-text input, body.orange .anfrage-formular .widget-text textarea,
  body.orange .anfrage-formular .widget-textarea input,
  body.orange .anfrage-formular .widget-textarea textarea {
    border-color: #656464; }
    body.orange .anfrage-formular .widget-text input:focus, body.orange .anfrage-formular .widget-text textarea:focus,
    body.orange .anfrage-formular .widget-textarea input:focus,
    body.orange .anfrage-formular .widget-textarea textarea:focus {
      border-color: #f25500; }

/* 
!                _                                _ 
!  _   _  _ __  (_)__   __ ___  _ __  ___   __ _ | |
! | | | || '_ \ | |\ \ / // _ \| '__|/ __| / _` || |
! | |_| || | | || | \ V /|  __/| |   \__ \| (_| || |
!  \__,_||_| |_||_|  \_/  \___||_|   |___/ \__,_||_|
!
*/
body.default #main &gt; .inside {
  background-color: #FFF; }

body.default .nav--preheader li.showMobileNav {
  display: inline-block; }
  body.default .nav--preheader li.showMobileNav a, body.default .nav--preheader li.showMobileNav a:visited, body.default .nav--preheader li.showMobileNav a:active, body.default .nav--preheader li.showMobileNav strong, body.default .nav--preheader li.showMobileNav strong.trail, body.default .nav--preheader li.showMobileNav a.trail, body.default .nav--preheader li.showMobileNav strong.active {
    color: #FFF; }

body.default .rsce_bgimage.colored .ce_rsce_text_advanced .headline--sub {
  color: rgba(255, 255, 255, 0.75); }

body.default .rsce_bgimage.colored .person .text_container .name {
  color: #FFF; }

body.default .rsce_bgimage.colored .widget input, body.default .rsce_bgimage.colored .widget select, body.default .rsce_bgimage.colored .widget textarea {
  border-color: rgba(255, 255, 255, 0.75);
  background: none; }
  body.default .rsce_bgimage.colored .widget input:focus, body.default .rsce_bgimage.colored .widget select:focus, body.default .rsce_bgimage.colored .widget textarea:focus {
    border-color: #FFF; }
  body.default .rsce_bgimage.colored .widget input::-webkit-input-placeholder, body.default .rsce_bgimage.colored .widget select::-webkit-input-placeholder, body.default .rsce_bgimage.colored .widget textarea::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.75); }
  body.default .rsce_bgimage.colored .widget input::-moz-placeholder, body.default .rsce_bgimage.colored .widget select::-moz-placeholder, body.default .rsce_bgimage.colored .widget textarea::-moz-placeholder {
    color: rgba(255, 255, 255, 0.75); }
  body.default .rsce_bgimage.colored .widget input:-ms-input-placeholder, body.default .rsce_bgimage.colored .widget select:-ms-input-placeholder, body.default .rsce_bgimage.colored .widget textarea:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.75); }
  body.default .rsce_bgimage.colored .widget input::-ms-input-placeholder, body.default .rsce_bgimage.colored .widget select::-ms-input-placeholder, body.default .rsce_bgimage.colored .widget textarea::-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.75); }
  body.default .rsce_bgimage.colored .widget input::placeholder, body.default .rsce_bgimage.colored .widget select::placeholder, body.default .rsce_bgimage.colored .widget textarea::placeholder {
    color: rgba(255, 255, 255, 0.75); }

body.default .rsce_bgimage.colored .widget button {
  border-color: #FFF;
  color: #FFF; }
  body.default .rsce_bgimage.colored .widget button:hover {
    background: #FFF;
    color: #656464; }

body.default .rsce_bgimage.colored .widget option {
  color: #656464; }

body.default .rsce_bgimage.colored .widget-checkbox input[type="radio"]:focus + label::before,
body.default .rsce_bgimage.colored .widget-checkbox input[type="checkbox"]:focus + label::before, body.default .rsce_bgimage.colored .widget-radio input[type="radio"]:focus + label::before,
body.default .rsce_bgimage.colored .widget-radio input[type="checkbox"]:focus + label::before {
  outline: #FFF; }

body.default .rsce_bgimage.colored .widget-radio label::after {
  border-radius: 100%;
  background: #FFF; }

body.default .rsce_bgimage.colored .widget-radio label::before {
  border-radius: 100%;
  border-color: #FFF; }

body.default .rsce_bgimage.colored .widget-checkbox label::before,
body.default .rsce_bgimage.colored .widget-checkbox label::after {
  border-color: #FFF; }

body.default .rsce_bgimage.colored .pagination ul li strong,
body.default .rsce_bgimage.colored .pagination ul li a {
  border-color: #FFF;
  color: #FFF; }

body.default .rsce_bgimage.colored .pagination ul li strong {
  color: #656464;
  background: #FFF; }

body.default .rsce_bgimage.colored .ce_downloads a {
  color: #FFF; }
  body.default .rsce_bgimage.colored .ce_downloads a:hover {
    color: #FFF; }

body.default #preheader .social-media-icons a, body.default #preheader .social-media-icons a:visited, body.default #preheader .social-media-icons a:active {
  color: #FFF; }

body.default .hinweisbox.warning .text_container {
  border-color: #f5c6cb;
  color: #721c24;
  background-color: #f8d7da;
  border-width: 1px; }
  body.default .hinweisbox.warning .text_container .headline {
    color: #721c24; }

body.default .hinweisbox.alert .text_container {
  border-color: #ffeeba;
  color: #856404;
  background-color: #fff3cd;
  border-width: 1px; }
  body.default .hinweisbox.alert .text_container .headline {
    color: #856404; }

body.default .hinweisbox.success .text_container {
  border-color: #c3e6cb;
  color: #155724;
  background-color: #d4edda;
  border-width: 1px; }
  body.default .hinweisbox.success .text_container .headline {
    color: #155724; }

body.default .hinweisbox.warning .text_container .headline, body.default .hinweisbox.alert .text_container .headline, body.default .hinweisbox.success .text_container .headline {
  background: none; }

body.default .rsce_bgimage.colored table td {
  border-right: 0; }

@media screen and (max-width: 47.9375em) {
  body.default table td {
    border-right: 0; } }

#windowTemplateVars {
  width: 50%;
  overflow: visible;
  position: fixed;
  top: 0;
  right: 0;
  background: #eee;
  height: 100%;
  z-index: 1000000;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  -o-transition: transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease; }
  #windowTemplateVars pre {
    padding: 0; }
  #windowTemplateVars .toggleTemplateVars {
    position: absolute;
    top: 50%;
    -webkit-transform: translate(-100%, -50%);
    -ms-transform: translate(-100%, -50%);
    transform: translate(-100%, -50%);
    left: 0;
    background: #EEE;
    width: 50px;
    height: 50px;
    text-align: center; }
    #windowTemplateVars .toggleTemplateVars:before {
      content: "&lt;&lt;";
      line-height: 50px;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      -webkit-transition: -webkit-transform .3s ease;
      transition: -webkit-transform .3s ease;
      -o-transition: transform .3s ease;
      transition: transform .3s ease;
      transition: transform .3s ease, -webkit-transform .3s ease; }
  #windowTemplateVars.active {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }
    #windowTemplateVars.active .toggleTemplateVars:before {
      -webkit-transform: scaleX(-1);
      -ms-transform: scaleX(-1);
      transform: scaleX(-1); }
  #windowTemplateVars .inner {
    overflow-y: scroll;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: block;
    padding: 1rem 2rem; }

/*# sourceMappingURL=https://seilschaft.de/files/default//maps/default.css.map */
</pre></body></html>