@charset "UTF-8";
/**
 * Funktion und Map für einheitliche z-index Werte
 *
 * Diese Funktion wird zur Vereinheitlichung der z-index Werte genutzt, damit keine willkürlichen Zahlen wie 99999987
 * oder ähnliches Zahlenwirrwarr genutzt werden.
 *
 * @param {string|int} $z-layers - Map aller z-index Werte
 *
 * @return {undefined}
 */
/**
 * Function zur Erstellung von Transitions
 *
 * Gibt die Werte für das Attribut "transition" aus.
 * In der $transitionMap dürfen nur folgende Attribute enthalten sein:
 * duration - Dauer der Transition - Standardwert: .25s
 * delay - Verzögerung der Transition - Standardwert: false
 * timing-function - Timing-function - Standardwert: ease
 *
 * @link https://github.com/NikFlip/transition-mixin
 * @param $transitionMap - Kann / Darf folgende Werte enthalten: duration, delay (false oder Sekunden), timing-function
 * @param: $transitionStylesMap - Map mit den properties, die transitioned werden
 *
 */
/*
 * Mixin zur Erstellung der Newsletter Column Paddings
 *
 * Berechnet die Column-Padding-Werte (Rechts + Links) anhand des Column und des Komponenten Paddings.
 *
 * @param {Map}  $columns  Map mit den Columns
 * @param {Number} $gap Der Abstand zwischen 2 Columns
 * @param {List,Number} $text__padding Eine Liste mit Padding Werten oder ein einzelner Padding Wert
 */
/*
 * Mixin zum Extrahieren von Eigenschaften aus einer Map anhand einer Eigenschaftenliste
 *
 * Die übergebene Eigenschaftenliste wird durch laufen und prüft ob die Eigenschaft
 * in der übergebenen Map vorhanden ist. Sofern vorhanden, wird die Eigenschaft und
 * deren Wert in eine neue Map Extrahiert. Die dadurch neu entstehende Map wird zurück gegeben
 *
 * @param {Map}  $nc_button  Map mit Eigenschaften und Werten
 * @param {List} $properties Eine Liste mit Eigenschaften
 * @return {Map}
 */
/*
  * Mixin zur Ausgabe der Newsltter-Button-Attribute
  *
  * Die übergebenen Maps werden zu einer Map zusammengefügt.
  * Die Custom Map erweitert / überschreibt die Basic Map. Die Attribute werden ausgegeben.
  *
  * @param {String} $style            Welcher Style soll ausgegeben werden? td oder content
  * @param {Map}    $nc_button_basic  Map für Button Attribute - Standard
  * @param {Map}    $nc_button_custom Map für Button Attribute - Individualisierung
 */
/*
  * Mixin zur Ausgabe der Navigationspunkt-Attribute
  *
  * Die übergebenen Maps werden zu einer Map zusammengefügt.
  * Die Custom Map erweitert / überschreibt die Basic Map. Die Attribute werden ausgegeben.
  * Es kann in den Maps ein Attribut "nc-icon" übergeben werden, welches eine Map enthalten muss.
  * Sofern vorhanden, wird das nc_icon mixin für die Ausgabe der Icons mit den beiden nc-icon Maps
  * aufgerufen.
  *
  * @param: $nc_navigation-item_basic Map für Navigationspunkt Attribute - Standard
  * @param: $nc_navigation-item_custom Map für Navigationspunkt Attribute - Individualisierung - optional
 */
/**
 * Überprüft ob in der übergebenen Map alle Attribute entfernt wurden, die mit "nc-" beginnen.
 *
 * Die Funktion sollte immer aufgerufen werden, bevor die Werte einer Map als CSS ausgegeben werden,
 * um sicher zu stellen, dass keine internen Attribute mehr vorhanden sind.
 *
 * @param $nc_map
 * @return boolean
 */
/*
  * Mixin zur Erstellung der Icon-CSS Anweisungen inkl. before / after etc.
  *
  * Die übergebenen Maps werden zusammengefügt und die CSS-Anweisungen für ein Icon
  * wird ausgegeben. Die Custom Map überschreibt / erweitert die Basic Map.
  * Über ein Attribut "nc-position" in den Maps muss die Position des Icons bestimmt werden.
  * Sollten beide übergebenen Maps leer sein, wird nichts ausgegeben.
  *
  * Gültige Werte für "nc-position" sind:
  * both - Ausgabe des Icon vor und hinter dem Element
  * before - Ausgabe des Icon vor dem Element
  * after - Ausgabe des Icon nach dem Element
  * none - Keine Ausgabe des Icon
  * Standard-Wert, wenn nicht explizit angegeben: false (Fehler)
  *
  * Über ein Attribut "nc-margin" kann der Abstand des Icon zum Element bestimmt werden.
  * Je nach Position des Icons wird der Abstand automatisch nach links bzw. rechts gesetzt.
  * Als Wert muss eine Pixel-Angabe übergeben werden, wie z.B. : "20px".
  * Standardwert, wenn nicht explizit angegeben: 10px
  *
  *
  * @param: $nc_icon_basic Map für Icon - Standard
  * @param: $nc_icon_custom Map für Icon - Individualisierung
 */
/**
 * Ermittelt die angegebene Seite (top/bottom/left/right) anhand der übergebenen Liste.
 *
 * @example Ermittelt die `bottom` Eigenschaft einer Shorthand-Eigenschaft-Liste
 * $shorthandPadding: 5px 8px 4px;
 * nc_extract-shorthand-side-spacing($shorthandPadding, bottom)
 * // return: 4px;
 *
 * @param {List|Number} $val  Liste mit shorthand properties (z.B. 1px 2px 3px)
 * @param {Keyword} $side     Welcher Wert soll zurück geben werden. Muss "top", "right", "bottom", oder "left" sein.
 *
 * @returns {Number} Ein einzelner Wert anhand von "$val" und "$side".
 */
/**
 * Gibt die kontrastreichere der beiden übergebenen Farben in Relation zur Hintergrundfarbe zurück
 *
 * Es wird ein Kontrast für die beiden übergebenen Farben in Relation zur übergebenen
 * Hintergrundfarbe berechnet. Die kontrastreichere Farbe wird zurückgegeben.
 * Einfluss auf den Schwellenwert bei der Kontrastberechnung kann man über
 * die Variable $nc_theme__color_contrast-factor nehmen.
 * Der contrast-factor sollte ungefähr zwischen 0 und 2 liegen.
 * Je höher der contrast-factor, desto eher wird die helle Farbe gewählt.
 * Je niedriger der contrast-factor, desto eher wird die dunkle Farbe gewählt.
 * Der Kontrast wird nach folgender Formel berechnet:
 * ((Red value X 299) + (Green value X 587) + (Blue value X 114)) / 1000
 *
 * @link https://codepen.io/davidhalford/pen/wlDxL
 * @link http://www.webmasterworld.com/r.cgi?f=88&d=9769&url=http://www.w3.org/TR/AERT#color-contrast
 *
 * @param $background-color - Hintergrundfarbe
 * @param $color_light Helle Farbe (für dunkle Hintergründe)
 * @param $color_dark Dunkle Farbe (für helle Hintergründe)
 */
/*
  * Mixin zur Ausgabe der Button-Attribute
  *
  * Die übergebenen Maps werden zu einer Map zusammengefügt.
  * Die Custom Map erweitert / überschreibt die Basic Map. Die Attribute werden ausgegeben.
  * Es kann in den Maps ein Attribut "nc-icon" übergeben werden, welches eine Map enthalten muss.
  * Sofern vorhanden, wird das nc_icon mixin für die Ausgabe der Icons mit den beiden nc-icon Maps
  * aufgerufen.
  *
  * @param: $nc_button_basic Map für Button Attribute - Standard
  * @param: $nc_button_custom Map für Button Attribute - Individualisierung
 */
/* open-sans-300 - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/open-sans-v18-latin-300.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../fonts/open-sans-v18-latin-300.eot?#iefix") format("embedded-opentype"), url("../fonts/open-sans-v18-latin-300.woff2") format("woff2"), url("../fonts/open-sans-v18-latin-300.woff") format("woff"), url("../fonts/open-sans-v18-latin-300.ttf") format("truetype"), url("../fonts/open-sans-v18-latin-300.svg#OpenSans") format("svg");
  /* Legacy iOS */ }

/* open-sans-regular - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/open-sans-v18-latin-regular.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../fonts/open-sans-v18-latin-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/open-sans-v18-latin-regular.woff2") format("woff2"), url("../fonts/open-sans-v18-latin-regular.woff") format("woff"), url("../fonts/open-sans-v18-latin-regular.ttf") format("truetype"), url("../fonts/open-sans-v18-latin-regular.svg#OpenSans") format("svg");
  /* Legacy iOS */ }

/* open-sans-600 - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/open-sans-v18-latin-600.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../fonts/open-sans-v18-latin-600.eot?#iefix") format("embedded-opentype"), url("../fonts/open-sans-v18-latin-600.woff2") format("woff2"), url("../fonts/open-sans-v18-latin-600.woff") format("woff"), url("../fonts/open-sans-v18-latin-600.ttf") format("truetype"), url("../fonts/open-sans-v18-latin-600.svg#OpenSans") format("svg");
  /* Legacy iOS */ }

/* open-sans-700 - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/open-sans-v18-latin-700.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../fonts/open-sans-v18-latin-700.eot?#iefix") format("embedded-opentype"), url("../fonts/open-sans-v18-latin-700.woff2") format("woff2"), url("../fonts/open-sans-v18-latin-700.woff") format("woff"), url("../fonts/open-sans-v18-latin-700.ttf") format("truetype"), url("../fonts/open-sans-v18-latin-700.svg#OpenSans") format("svg");
  /* Legacy iOS */ }

/* open-sans-800 - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/open-sans-v18-latin-800.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../fonts/open-sans-v18-latin-800.eot?#iefix") format("embedded-opentype"), url("../fonts/open-sans-v18-latin-800.woff2") format("woff2"), url("../fonts/open-sans-v18-latin-800.woff") format("woff"), url("../fonts/open-sans-v18-latin-800.ttf") format("truetype"), url("../fonts/open-sans-v18-latin-800.svg#OpenSans") format("svg");
  /* Legacy iOS */ }

/* mukta-200 - latin */
@font-face {
  font-family: 'Mukta';
  font-style: normal;
  font-weight: 200;
  src: url("../fonts/mukta-v7-latin-200.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../fonts/mukta-v7-latin-200.eot?#iefix") format("embedded-opentype"), url("../fonts/mukta-v7-latin-200.woff2") format("woff2"), url("../fonts/mukta-v7-latin-200.woff") format("woff"), url("../fonts/mukta-v7-latin-200.ttf") format("truetype"), url("../fonts/mukta-v7-latin-200.svg#Mukta") format("svg");
  /* Legacy iOS */ }

/* mukta-300 - latin */
@font-face {
  font-family: 'Mukta';
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/mukta-v7-latin-300.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../fonts/mukta-v7-latin-300.eot?#iefix") format("embedded-opentype"), url("../fonts/mukta-v7-latin-300.woff2") format("woff2"), url("../fonts/mukta-v7-latin-300.woff") format("woff"), url("../fonts/mukta-v7-latin-300.ttf") format("truetype"), url("../fonts/mukta-v7-latin-300.svg#Mukta") format("svg");
  /* Legacy iOS */ }

/* mukta-regular - latin */
@font-face {
  font-family: 'Mukta';
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/mukta-v7-latin-regular.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../fonts/mukta-v7-latin-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/mukta-v7-latin-regular.woff2") format("woff2"), url("../fonts/mukta-v7-latin-regular.woff") format("woff"), url("../fonts/mukta-v7-latin-regular.ttf") format("truetype"), url("../fonts/mukta-v7-latin-regular.svg#Mukta") format("svg");
  /* Legacy iOS */ }

/* mukta-500 - latin */
@font-face {
  font-family: 'Mukta';
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/mukta-v7-latin-500.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../fonts/mukta-v7-latin-500.eot?#iefix") format("embedded-opentype"), url("../fonts/mukta-v7-latin-500.woff2") format("woff2"), url("../fonts/mukta-v7-latin-500.woff") format("woff"), url("../fonts/mukta-v7-latin-500.ttf") format("truetype"), url("../fonts/mukta-v7-latin-500.svg#Mukta") format("svg");
  /* Legacy iOS */ }

/* mukta-600 - latin */
@font-face {
  font-family: 'Mukta';
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/mukta-v7-latin-600.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../fonts/mukta-v7-latin-600.eot?#iefix") format("embedded-opentype"), url("../fonts/mukta-v7-latin-600.woff2") format("woff2"), url("../fonts/mukta-v7-latin-600.woff") format("woff"), url("../fonts/mukta-v7-latin-600.ttf") format("truetype"), url("../fonts/mukta-v7-latin-600.svg#Mukta") format("svg");
  /* Legacy iOS */ }

/* mukta-700 - latin */
@font-face {
  font-family: 'Mukta';
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/mukta-v7-latin-700.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../fonts/mukta-v7-latin-700.eot?#iefix") format("embedded-opentype"), url("../fonts/mukta-v7-latin-700.woff2") format("woff2"), url("../fonts/mukta-v7-latin-700.woff") format("woff"), url("../fonts/mukta-v7-latin-700.ttf") format("truetype"), url("../fonts/mukta-v7-latin-700.svg#Mukta") format("svg");
  /* Legacy iOS */ }

/* mukta-800 - latin */
@font-face {
  font-family: 'Mukta';
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/mukta-v7-latin-800.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../fonts/mukta-v7-latin-800.eot?#iefix") format("embedded-opentype"), url("../fonts/mukta-v7-latin-800.woff2") format("woff2"), url("../fonts/mukta-v7-latin-800.woff") format("woff"), url("../fonts/mukta-v7-latin-800.ttf") format("truetype"), url("../fonts/mukta-v7-latin-800.svg#Mukta") format("svg");
  /* Legacy iOS */ }

/* =================================================================================================== HEADER ======= */
/* =================================================================================================== SLIDER ======= */
/* =============================================================================================== QUICKLINKS ======= */
/* ===== LABEL ===== */
/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

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

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

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main {
  /* 1 */
  display: block; }

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

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

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

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

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

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

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

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

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

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

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

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

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

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

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

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

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

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

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

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

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

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0; }

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

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

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

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

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

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

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

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

/**
 * 1. Correct the different padding for dates and times
 */
input[type="date"], input[type="time"], input[type="datetime-local"], input[type="month"] {
  line-height: 1.5; }

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

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

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

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

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

/** ============================================ CUSTOM ================================================ */
/* HTML */
html {
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important; }

:focus {
  outline: none; }

::-moz-focus-inner {
  border: 0; }

/** BUTTON **/
.btn {
  text-transform: none;
  white-space: normal;
  font-size: inherit;
  line-height: inherit; }

p {
  margin: 0 0 10px; }

/** NAVIGATION **/
.navigation {
  margin: 0;
  padding: 0;
  list-style-type: none; }
  .navigation li {
    position: relative; }
    .navigation li a {
      display: block; }

/** Vertikale Zentrierung der direkten Kind-Elemente
 */
.vertical-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

/** Vertikale Positionierung am Boden der direkten Kind-Elemente
 */
.vertical-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end; }

/**
Visible für Flex
 */
.visible-xs-flex,
.visible-sm-flex,
.visible-md-flex,
.visible-lg-flex {
  display: none; }

/** Suchen Baustein Abstände zurücksetzen **/
.search-input {
  padding-left: 15px; }

.Lucene_Search form .row, .moduleTextSearch form .row {
  margin: 0; }
  .Lucene_Search form .row .search-input, .moduleTextSearch form .row .search-input {
    padding-right: 15px;
    padding-left: 0; }

.Lucene_Search form .row, .moduleTextSearch form .row {
  margin: 0; }
  .Lucene_Search form .row .search-btn, .moduleTextSearch form .row .search-btn {
    padding-left: 0;
    padding-right: 0; }

.Lucene_SearchSmall form .row {
  margin: 0; }
  .Lucene_SearchSmall form .row .search-input {
    padding-right: 15px;
    padding-left: 0; }
  .Lucene_SearchSmall form .row .search-btn {
    padding-left: 0;
    padding-right: 0; }

.articleSearchSmall .search-input {
  padding-right: 15px; }

.articleSearchSmall .search-btn {
  padding-left: 15px; }

.search-btn .btn-primary, .search-btn .btn {
  margin-top: 0;
  padding: 8px 10px; }

.mobile-nav div.mobile-nav-search .search-input {
  padding-right: 15px; }

/**
CSS Safari Browserhack - Teasermanager
 */
@media not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-appearance: none) and (display: flow-root) {
    .Special_ChangingContents .row:before, .Special_ChangingContents .row:after {
      display: none; } } }

@media (max-width: 767px) {
  .visible-xs-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important; } }

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important; } }

@media (min-width: 1200px) {
  .visible-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important; } }

.module-style__match-height .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  .module-style__match-height .row:after, .module-style__match-height .row:before {
    display: none; }
  .module-style__match-height .row > [class*='col-'] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    -ms-flex-direction: column; }
    .module-style__match-height .row > [class*='col-'] > * {
      -webkit-box-flex: 1;
          -ms-flex-positive: 1;
              flex-grow: 1; }

.editor-style__counterup {
  font-size: 1.90625rem;
  font-weight: 600;
  color: #c00016; }

.editor-style__wordmark {
  background: #c00016;
  color: #fff;
  padding: 2px 7px; }

.module-style__border-radius .module-content-block {
  border-radius: 0; }
  .module-style__border-radius .module-content-block .thumbnail {
    border-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0; }
    .module-style__border-radius .module-content-block .thumbnail img {
      border-radius: 0;
      border-bottom-left-radius: 0;
      border-bottom-right-radius: 0; }

.module-style__box-shadow .module-content-block {
  -webkit-box-shadow: 0 0.7px 1.3px rgba(0, 0, 0, 0.05), 0 1.6px 3.2px rgba(0, 0, 0, 0.066), 0 3px 6px rgba(0, 0, 0, 0.062), 0 5.4px 10.7px rgba(0, 0, 0, 0.06), 0 10px 20.1px rgba(0, 0, 0, 0.02), 0 24px 48px rgba(0, 0, 0, 0.014);
          box-shadow: 0 0.7px 1.3px rgba(0, 0, 0, 0.05), 0 1.6px 3.2px rgba(0, 0, 0, 0.066), 0 3px 6px rgba(0, 0, 0, 0.062), 0 5.4px 10.7px rgba(0, 0, 0, 0.06), 0 10px 20.1px rgba(0, 0, 0, 0.02), 0 24px 48px rgba(0, 0, 0, 0.014);
  -webkit-transition: -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1); }
  .module-style__box-shadow .module-content-block:hover {
    -webkit-transition: -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
    transition: -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
    transition: box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
    transition: box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
    -webkit-box-shadow: 0 1.8px 12.2px rgba(0, 0, 0, 0.1), 0 4.4px 21.5px rgba(0, 0, 0, 0.072), 0 8.3px 27.6px rgba(0, 0, 0, 0.06), 0 14.7px 30.7px rgba(0, 0, 0, 0.05), 0 27.6px 32.1px rgba(0, 0, 0, 0.04), 0 66px 48px rgba(0, 0, 0, 0.028);
            box-shadow: 0 1.8px 12.2px rgba(0, 0, 0, 0.1), 0 4.4px 21.5px rgba(0, 0, 0, 0.072), 0 8.3px 27.6px rgba(0, 0, 0, 0.06), 0 14.7px 30.7px rgba(0, 0, 0, 0.05), 0 27.6px 32.1px rgba(0, 0, 0, 0.04), 0 66px 48px rgba(0, 0, 0, 0.028); }

.module-style__box-shadow.Special_ChangingContents .category-elements > .category-element {
  overflow: visible; }

.module-style__box-shadow.Special_ChangingContents .category-elements .module-content-block {
  padding: 25px; }

.module-style__box-white .module-content-block {
  background: #fff;
  padding: 25px; }

.module-style__box-white.Special_ChangingContents .category-elements .module-content-block {
  padding: 25px; }

.module-style__headline-center .headline1, .module-style__headline-center .headline2, .module-style__headline-center .headline3, .module-style__headline-center .headline4 {
  text-align: center; }

.module-style__list-icon .text-wrapper ul {
  margin: 0;
  padding: 0;
  list-style-type: none; }
  .module-style__list-icon .text-wrapper ul li:before {
    content: "";
    font: normal normal normal 14px/1 FontAwesome;
    display: inline-block;
    font-style: normal;
    font-weight: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    margin-right: 10px; }
  .module-style__list-icon .text-wrapper ul li:after {
    content: none; }

.pagination > li {
  display: inline-block;
  float: left;
  margin-right: 2px; }
  .pagination > li > span {
    padding: 5px 10px;
    font-size: 0.9rem;
    display: block; }
  .pagination > li > a {
    display: block;
    font-size: 0.9rem;
    padding: 5px 10px;
    background-color: #c00016;
    color: #fff;
    border-radius: 0;
    -webkit-transition: background-color 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
    transition: background-color 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1); }
    .pagination > li > a:hover, .pagination > li > a:focus {
      background-color: #8d0010;
      color: #fff;
      -webkit-transition: background-color 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
      transition: background-color 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1); }
  .pagination > li.disabled > span {
    background-color: #c5c7c8;
    border: 1px solid #FFF;
    color: #444;
    border-radius: 0;
    opacity: 0.1; }
    .pagination > li.disabled > span:hover, .pagination > li.disabled > span:focus {
      background-color: #c5c7c8;
      border: 1px solid #FFF;
      color: #444;
      opacity: 0.1; }
  .pagination > li.active > span {
    background-color: #c5c7c8;
    border: 1px solid #c5c7c8;
    color: #444;
    border-radius: 0;
    -webkit-transition: background-color 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
    transition: background-color 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1); }
    .pagination > li.active > span:hover, .pagination > li.active > span:focus {
      background-color: #abaeaf;
      color: #fff;
      -webkit-transition: background-color 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
      transition: background-color 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1); }
  .pagination > li > a[rel~="first"], .pagination > li > a[rel~="prev"], .pagination > li > a[rel~="last"], .pagination > li > a[rel~="next"] {
    background-color: #c5c7c8;
    color: #444;
    border-radius: 0;
    opacity: 0.3; }
  .pagination > li:last-child {
    margin-right: 0; }

.pagination .amphiicon {
  font-size: 0.9rem; }

.module-style__remove-image-margin .module-content-block {
  padding: 25px; }
  .module-style__remove-image-margin .module-content-block .thumbnail {
    margin: -25px -25px 25px -25px; }

.module-style__remove-image-margin.Special_ChangingContents .category-elements .module-content-block {
  padding: 25px; }
  .module-style__remove-image-margin.Special_ChangingContents .category-elements .module-content-block .headline-wrapper + .thumbnail {
    margin: 25px -25px 25px -25px; }

@media (min-width: 768px) and (max-width: 991px) {
  .shine-from-top-right.template-headline-on-image .module-content-block > div:nth-child(2) .text-wrapper p {
    -webkit-line-clamp: 1;
    margin-bottom: 5px; } }

@media (min-width: 768px) and (max-width: 991px) {
  .shine-from-top-right.template-headline-on-image .module-content-block > div:nth-child(2) .text-wrapper p {
    -webkit-line-clamp: 1;
    margin-bottom: 5px; } }

.module-style__text-white {
  color: #fff; }
  .module-style__text-white .headline1, .module-style__text-white .headline2, .module-style__text-white .headline3, .module-style__text-white .headline4, .module-style__text-white .text-wrapper, .module-style__text-white .thumbnail .caption p {
    color: #fff; }
  .module-style__text-white a {
    color: #fff; }
    .module-style__text-white a:visited, .module-style__text-white a:focus, .module-style__text-white a:active, .module-style__text-white a:hover {
      opacity: 0.8;
      color: #fff; }
  .module-style__text-white .reservation-general-description div.checkbox {
    background: rgba(0, 0, 0, 0.2);
    border: 0px; }
  .module-style__text-white .module-content-block .headline1, .module-style__text-white .module-content-block .headline2, .module-style__text-white .module-content-block .headline3, .module-style__text-white .module-content-block .headline4, .module-style__text-white .module-content-block .text-wrapper, .module-style__text-white .gallery-carousel-caption .headline1, .module-style__text-white .gallery-carousel-caption .headline2, .module-style__text-white .gallery-carousel-caption .headline3, .module-style__text-white .gallery-carousel-caption .headline4, .module-style__text-white .gallery-carousel-caption .text-wrapper, .module-style__text-white * .headline1, .module-style__text-white * .headline2, .module-style__text-white * .headline3, .module-style__text-white * .headline4, .module-style__text-white * .text-wrapper {
    color: #fff; }
    .module-style__text-white .module-content-block .headline1 a, .module-style__text-white .module-content-block .headline2 a, .module-style__text-white .module-content-block .headline3 a, .module-style__text-white .module-content-block .headline4 a, .module-style__text-white .module-content-block .text-wrapper a, .module-style__text-white .gallery-carousel-caption .headline1 a, .module-style__text-white .gallery-carousel-caption .headline2 a, .module-style__text-white .gallery-carousel-caption .headline3 a, .module-style__text-white .gallery-carousel-caption .headline4 a, .module-style__text-white .gallery-carousel-caption .text-wrapper a, .module-style__text-white * .headline1 a, .module-style__text-white * .headline2 a, .module-style__text-white * .headline3 a, .module-style__text-white * .headline4 a, .module-style__text-white * .text-wrapper a {
      color: #fff; }
      .module-style__text-white .module-content-block .headline1 a:visited, .module-style__text-white .module-content-block .headline1 a:focus, .module-style__text-white .module-content-block .headline1 a:active, .module-style__text-white .module-content-block .headline1 a:hover, .module-style__text-white .module-content-block .headline2 a:visited, .module-style__text-white .module-content-block .headline2 a:focus, .module-style__text-white .module-content-block .headline2 a:active, .module-style__text-white .module-content-block .headline2 a:hover, .module-style__text-white .module-content-block .headline3 a:visited, .module-style__text-white .module-content-block .headline3 a:focus, .module-style__text-white .module-content-block .headline3 a:active, .module-style__text-white .module-content-block .headline3 a:hover, .module-style__text-white .module-content-block .headline4 a:visited, .module-style__text-white .module-content-block .headline4 a:focus, .module-style__text-white .module-content-block .headline4 a:active, .module-style__text-white .module-content-block .headline4 a:hover, .module-style__text-white .module-content-block .text-wrapper a:visited, .module-style__text-white .module-content-block .text-wrapper a:focus, .module-style__text-white .module-content-block .text-wrapper a:active, .module-style__text-white .module-content-block .text-wrapper a:hover, .module-style__text-white .gallery-carousel-caption .headline1 a:visited, .module-style__text-white .gallery-carousel-caption .headline1 a:focus, .module-style__text-white .gallery-carousel-caption .headline1 a:active, .module-style__text-white .gallery-carousel-caption .headline1 a:hover, .module-style__text-white .gallery-carousel-caption .headline2 a:visited, .module-style__text-white .gallery-carousel-caption .headline2 a:focus, .module-style__text-white .gallery-carousel-caption .headline2 a:active, .module-style__text-white .gallery-carousel-caption .headline2 a:hover, .module-style__text-white .gallery-carousel-caption .headline3 a:visited, .module-style__text-white .gallery-carousel-caption .headline3 a:focus, .module-style__text-white .gallery-carousel-caption .headline3 a:active, .module-style__text-white .gallery-carousel-caption .headline3 a:hover, .module-style__text-white .gallery-carousel-caption .headline4 a:visited, .module-style__text-white .gallery-carousel-caption .headline4 a:focus, .module-style__text-white .gallery-carousel-caption .headline4 a:active, .module-style__text-white .gallery-carousel-caption .headline4 a:hover, .module-style__text-white .gallery-carousel-caption .text-wrapper a:visited, .module-style__text-white .gallery-carousel-caption .text-wrapper a:focus, .module-style__text-white .gallery-carousel-caption .text-wrapper a:active, .module-style__text-white .gallery-carousel-caption .text-wrapper a:hover, .module-style__text-white * .headline1 a:visited, .module-style__text-white * .headline1 a:focus, .module-style__text-white * .headline1 a:active, .module-style__text-white * .headline1 a:hover, .module-style__text-white * .headline2 a:visited, .module-style__text-white * .headline2 a:focus, .module-style__text-white * .headline2 a:active, .module-style__text-white * .headline2 a:hover, .module-style__text-white * .headline3 a:visited, .module-style__text-white * .headline3 a:focus, .module-style__text-white * .headline3 a:active, .module-style__text-white * .headline3 a:hover, .module-style__text-white * .headline4 a:visited, .module-style__text-white * .headline4 a:focus, .module-style__text-white * .headline4 a:active, .module-style__text-white * .headline4 a:hover, .module-style__text-white * .text-wrapper a:visited, .module-style__text-white * .text-wrapper a:focus, .module-style__text-white * .text-wrapper a:active, .module-style__text-white * .text-wrapper a:hover {
        opacity: 0.8; }
  .module-style__text-white hr, .module-style__text-white .table > thead > tr > th, .module-style__text-white .table > thead > tr > td, .module-style__text-white .table > tbody > tr > th, .module-style__text-white .table > tbody > tr > td, .module-style__text-white .table > tfoot > tr > th, .module-style__text-white .table > tfoot > tr > td,
  .module-style__text-white .Form_Reservation .reservation-formular, .module-style__text-white .faq-question-inner, .module-style__text-white .faq-content, .module-style__text-white .date-list dt, .module-style__text-white .date-list,
  .module-style__text-white .module-content-block, .module-style__text-white .reservation-object, .module-style__text-white .reservation-formular, .module-style__text-white .reservation-captcha, .module-style__text-white .form-horizontal .module-content-block {
    border-color: rgba(255, 255, 255, 0.3); }
  .module-style__text-white .table-hover > tbody > tr:hover, .module-style__text-white .table > thead:first-child > tr:first-child > th, .module-style__text-white .table > thead > tr > td.info, .module-style__text-white .table > thead > tr > th.info, .module-style__text-white .table > thead > tr.info > td, .module-style__text-white .table > thead > tr.info > th, .module-style__text-white .table > tbody > tr > td.info, .module-style__text-white .table > tbody > tr > th.info, .module-style__text-white .table > tbody > tr.info > td, .module-style__text-white .table > tbody > tr.info > th, .module-style__text-white .table > tfoot > tr > td.info, .module-style__text-white .table > tfoot > tr > th.info, .module-style__text-white .table > tfoot > tr.info > td, .module-style__text-white .table > tfoot > tr.info > th {
    background: rgba(0, 0, 0, 0.2); }
  .module-style__text-white .faq-question.active a, .module-style__text-white .faq-question.active a:hover, .module-style__text-white .faq-question a:hover, .module-style__text-white .date-list dt.active, .module-style__text-white .date-list dt.active:hover, .module-style__text-white .date-list dt:hover {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0)));
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%); }

.footer .module-style__text-white a {
  color: #fff; }
  .footer .module-style__text-white a:visited, .footer .module-style__text-white a:focus, .footer .module-style__text-white a:active, .footer .module-style__text-white a:hover {
    opacity: 0.8;
    color: #fff; }

.image-left-right-special {
  margin-bottom: 0; }
  .image-left-right-special .thumbnail {
    margin-bottom: 0; }

.image-left-special .col-sm-6:first-child {
  padding-right: 0; }

.image-left-special .col-sm-6:last-child {
  padding: 0 60px; }

.image-right-special .col-sm-6:first-child {
  padding: 0 60px; }

.image-right-special .col-sm-6:last-child {
  padding-left: 0; }

@media (max-width: 991px) {
  .image-left-special .col-sm-6:last-child {
    padding: 0 30px; }
  .image-right-special .col-sm-6:first-child {
    padding: 0 30px; } }

.module-style__fadeinleft .module-content-block, .module-style__fadeinright .module-content-block, .module-style__fadeinup .module-content-block, .module-style__fadeindown .module-content-block, .module-style__fadein .module-content-block {
  opacity: 0; }

.module-style__truncate-content span.readmore, .module-style__truncate-content span.readless {
  display: block; }

.module-style__truncate-content.module-style__no-readmore .text-wrapper > *:last-child:after {
  content: "..."; }

.module-style__truncate-content.module-style__no-readmore span.readmore {
  display: none; }

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.navbar-toggle {
  background: transparent; }

.hamburger {
  padding: 0 15px;
  display: inline-block;
  cursor: pointer;
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible; }
  .hamburger:hover {
    opacity: 0.7; }
  .hamburger.hamburger_animation.is-active .hamburger-inner, .hamburger.hamburger_animation.is-active .hamburger-inner::before, .hamburger.hamburger_animation.is-active .hamburger-inner::after {
    background-color: #fff; }

.hamburger-box {
  width: 40px;
  height: 21px;
  display: block;
  position: relative; }

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: 2px; }
  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 40px;
    height: 3px;
    background-color: #666666;
    border-radius: 0px;
    position: absolute;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.15s;
            transition-duration: 0.15s;
    -webkit-transition-timing-function: ease;
            transition-timing-function: ease; }
  .hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block; }
  .hamburger-inner::before {
    top: -9px; }
  .hamburger-inner::after {
    bottom: -9px; }

/*
   * Vortex Reverse
   */
.hamburger--vortex-r .hamburger-inner, .hamburger_animation .hamburger-inner {
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after, .hamburger_animation .hamburger-inner::before, .hamburger_animation .hamburger-inner::after {
    -webkit-transition-duration: 0s;
            transition-duration: 0s;
    -webkit-transition-delay: 0.1s;
            transition-delay: 0.1s;
    -webkit-transition-timing-function: linear;
            transition-timing-function: linear; }
  .hamburger--vortex-r .hamburger-inner::before, .hamburger_animation .hamburger-inner::before {
    -webkit-transition-property: top, opacity;
    transition-property: top, opacity; }
  .hamburger--vortex-r .hamburger-inner::after, .hamburger_animation .hamburger-inner::after {
    -webkit-transition-property: bottom, -webkit-transform;
    transition-property: bottom, -webkit-transform;
    transition-property: bottom, transform;
    transition-property: bottom, transform, -webkit-transform; }

.hamburger--vortex-r.is-active .hamburger-inner, .hamburger_animation.is-active .hamburger-inner {
  -webkit-transform: rotate(-765deg);
          transform: rotate(-765deg);
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after, .hamburger_animation.is-active .hamburger-inner::before, .hamburger_animation.is-active .hamburger-inner::after {
    -webkit-transition-delay: 0s;
            transition-delay: 0s; }
  .hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger_animation.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--vortex-r.is-active .hamburger-inner::after, .hamburger_animation.is-active .hamburger-inner::after {
    bottom: 0;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg); }

.navigation-responsive-wrapper-top {
  background-color: transparent;
  max-width: 100%;
  height: auto;
  text-align: center;
  margin: 0 auto;
  display: block;
  padding: 25px 60px; }
  .navigation-responsive-wrapper-top a {
    display: inline-block; }
  .navigation-responsive-wrapper-top svg {
    width: 100%;
    max-width: 100%; }

.navigation-responsive-wrapper-bottom {
  padding: 25px 15px; }
  .navigation-responsive-wrapper-bottom .amphiicon {
    position: inherit;
    top: auto;
    text-align: center;
    padding: 8px 0;
    background: transparent;
    color: #fff;
    width: 27px;
    height: 27px;
    margin: 0 10px 5px 0;
    font-size: 12px;
    border-radius: 40px; }
    .navigation-responsive-wrapper-bottom .amphiicon:before {
      position: relative;
      left: 2px; }

header {
  display: contents; }

.header {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: 800; }

_:-ms-fullscreen, :root header {
  display: block; }

.slider {
  overflow: hidden; }

.slider:after {
  font-size: 5px;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  position: absolute;
  top: calc(50% - 15px);
  left: 50%;
  text-indent: -9999em;
  -webkit-animation: slider-spinner_dot-line 3s infinite ease-in;
          animation: slider-spinner_dot-line 3s infinite ease-in; }

@-webkit-keyframes slider-spinner_dot-line {
  0%, 90%, 100% {
    -webkit-box-shadow: 6em 0 0 1em #444, 2em 0 0 -1em #444, -2em 0 0 -1em #444, -6em 0 0 -1em #444, -10em 0 0 -1em #444;
            box-shadow: 6em 0 0 1em #444, 2em 0 0 -1em #444, -2em 0 0 -1em #444, -6em 0 0 -1em #444, -10em 0 0 -1em #444; }
  10%, 80% {
    -webkit-box-shadow: 6em 0 0 -1em #444, 2em 0 0 1em #444, -2em 0 0 -1em #444, -6em 0 0 -1em #444, -10em 0 0 -1em #444;
            box-shadow: 6em 0 0 -1em #444, 2em 0 0 1em #444, -2em 0 0 -1em #444, -6em 0 0 -1em #444, -10em 0 0 -1em #444; }
  20%, 70% {
    -webkit-box-shadow: 6em 0 0 -1em #444, 2em 0 0 -1em #444, -2em 0 0 1em #444, -6em 0 0 -1em #444, -10em 0 0 -1em #444;
            box-shadow: 6em 0 0 -1em #444, 2em 0 0 -1em #444, -2em 0 0 1em #444, -6em 0 0 -1em #444, -10em 0 0 -1em #444; }
  30%, 60% {
    -webkit-box-shadow: 6em 0 0 -1em #444, 2em 0 0 -1em #444, -2em 0 0 -1em #444, -6em 0 0 1em #444, -10em 0 0 -1em #444;
            box-shadow: 6em 0 0 -1em #444, 2em 0 0 -1em #444, -2em 0 0 -1em #444, -6em 0 0 1em #444, -10em 0 0 -1em #444; }
  40%, 50% {
    -webkit-box-shadow: 6em 0 0 -1em #444, 2em 0 0 -1em #444, -2em 0 0 -1em #444, -6em 0 0 -1em #444, -10em 0 0 1em #444;
            box-shadow: 6em 0 0 -1em #444, 2em 0 0 -1em #444, -2em 0 0 -1em #444, -6em 0 0 -1em #444, -10em 0 0 1em #444; } }

@keyframes slider-spinner_dot-line {
  0%, 90%, 100% {
    -webkit-box-shadow: 6em 0 0 1em #444, 2em 0 0 -1em #444, -2em 0 0 -1em #444, -6em 0 0 -1em #444, -10em 0 0 -1em #444;
            box-shadow: 6em 0 0 1em #444, 2em 0 0 -1em #444, -2em 0 0 -1em #444, -6em 0 0 -1em #444, -10em 0 0 -1em #444; }
  10%, 80% {
    -webkit-box-shadow: 6em 0 0 -1em #444, 2em 0 0 1em #444, -2em 0 0 -1em #444, -6em 0 0 -1em #444, -10em 0 0 -1em #444;
            box-shadow: 6em 0 0 -1em #444, 2em 0 0 1em #444, -2em 0 0 -1em #444, -6em 0 0 -1em #444, -10em 0 0 -1em #444; }
  20%, 70% {
    -webkit-box-shadow: 6em 0 0 -1em #444, 2em 0 0 -1em #444, -2em 0 0 1em #444, -6em 0 0 -1em #444, -10em 0 0 -1em #444;
            box-shadow: 6em 0 0 -1em #444, 2em 0 0 -1em #444, -2em 0 0 1em #444, -6em 0 0 -1em #444, -10em 0 0 -1em #444; }
  30%, 60% {
    -webkit-box-shadow: 6em 0 0 -1em #444, 2em 0 0 -1em #444, -2em 0 0 -1em #444, -6em 0 0 1em #444, -10em 0 0 -1em #444;
            box-shadow: 6em 0 0 -1em #444, 2em 0 0 -1em #444, -2em 0 0 -1em #444, -6em 0 0 1em #444, -10em 0 0 -1em #444; }
  40%, 50% {
    -webkit-box-shadow: 6em 0 0 -1em #444, 2em 0 0 -1em #444, -2em 0 0 -1em #444, -6em 0 0 -1em #444, -10em 0 0 1em #444;
            box-shadow: 6em 0 0 -1em #444, 2em 0 0 -1em #444, -2em 0 0 -1em #444, -6em 0 0 -1em #444, -10em 0 0 1em #444; } }

.slider {
  z-index: 100; }
  .slider:after {
    content: '';
    display: table;
    z-index: -1; }

.content {
  position: relative; }
  .content:nth-child(even) {
    background-color: whitesmoke; }
  .content .content_content-background-inner {
    padding: 60px 0 30px 0; }
  .content .amphi-slideshow .owl-nav div span {
    color: #c00016;
    text-shadow: none; }
  .content .amphi-slideshow .owl-dots {
    bottom: 0; }
    .content .amphi-slideshow .owl-dots .owl-dot span {
      -webkit-box-shadow: none;
              box-shadow: none;
      border: 2px solid #c00016; }
    .content .amphi-slideshow .owl-dots .owl-dot.active span {
      background-color: #c00016;
      border: 2px solid #c00016; }
  .content .content_sidebar_nav {
    margin-bottom: 25px; }
    .content .content_sidebar_nav .navigation > li span > a {
      font-size: 1rem;
      font-weight: 600;
      color: #666666;
      padding: 10px 15px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
      letter-spacing: 0.2px;
      line-height: 1.5; }
      .content .content_sidebar_nav .navigation > li span > a:before {
        content: "";
        font: normal normal normal 14px/1 FontAwesome;
        display: inline-block;
        font-style: normal;
        font-weight: normal;
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        -webkit-transform: translate(0, 0);
                transform: translate(0, 0);
        margin-right: 10px; }
      .content .content_sidebar_nav .navigation > li span > a:after {
        content: none; }
    .content .content_sidebar_nav .navigation > li.active > span > a {
      color: #c00016; }
    .content .content_sidebar_nav .navigation > li:hover > span > a, .content .content_sidebar_nav .navigation > li.hover > span > a {
      color: #c00016; }
    .content .content_sidebar_nav .navigation > li:hover.active > span > a, .content .content_sidebar_nav .navigation > li.hover.active > span > a {
      color: #c00016; }
    .content .content_sidebar_nav .navigation > li:last-child > span > a {
      border-bottom: none; }
    .content .content_sidebar_nav .navigation > li ul li span > a {
      font-weight: 400;
      padding-left: 30px; }
    .content .content_sidebar_nav .navigation > li ul li.active > span > a {
      color: #c00016; }
    .content .content_sidebar_nav .navigation > li ul li:hover > span > a, .content .content_sidebar_nav .navigation > li ul li.hover > span > a {
      color: #c00016; }
    .content .content_sidebar_nav .navigation > li ul li:hover.active > span > a, .content .content_sidebar_nav .navigation > li ul li.hover.active > span > a {
      color: #c00016; }
    .content .content_sidebar_nav .navigation > li ul li ul li span > a {
      padding-left: 45px; }
    .content .content_sidebar_nav .navigation > li ul li ul li.active > span > a {
      color: #c00016; }
    .content .content_sidebar_nav .navigation > li ul li ul li:hover > span > a, .content .content_sidebar_nav .navigation > li ul li ul li.hover > span > a {
      color: #c00016; }
    .content .content_sidebar_nav .navigation > li ul li ul li:hover.active > span > a, .content .content_sidebar_nav .navigation > li ul li ul li.hover.active > span > a {
      color: #c00016; }
    .content .content_sidebar_nav .navigation > li ul li ul li ul li span > a {
      padding-left: 60px; }
    .content .content_sidebar_nav .navigation > li ul li ul li ul li.active > span > a {
      color: #c00016; }
    .content .content_sidebar_nav .navigation > li ul li ul li ul li:hover > span > a, .content .content_sidebar_nav .navigation > li ul li ul li ul li.hover > span > a {
      color: #c00016; }
    .content .content_sidebar_nav .navigation > li ul li ul li ul li:hover.active > span > a, .content .content_sidebar_nav .navigation > li ul li ul li ul li.hover.active > span > a {
      color: #c00016; }

#editMode .content .navigation.level-2 li a.editButton {
  top: 16px;
  left: -2px; }

#editMode .content .navigation.level-2 li .level-3 li a.editButton {
  top: 16px;
  left: 15px; }

#editMode .content .navigation.level-2 li .level-3 li .level-4 li a.editButton {
  top: 16px;
  left: 25px; }

@media (max-width: 767px) {
  .content .content_content-background-inner {
    padding: 40px 0 10px 0; } }

/* FOOTER ADDON TOP */
.footer-addon-top {
  padding: 0; }
  .footer-addon-top .footer-addon-top_background-inner {
    padding: 60px 0 30px 0; }

.footer-addon-top__breadcrumb {
  background-color: #ededed;
  font-size: 0.9rem; }
  .footer-addon-top__breadcrumb .breadcrumb_inner .breadcrumb_icon {
    display: inline-block;
    margin-right: 5px; }
    .footer-addon-top__breadcrumb .breadcrumb_inner .breadcrumb_icon:empty {
      display: none; }
  .footer-addon-top__breadcrumb .breadcrumb_inner .breadcrumb_text {
    margin-right: 5px;
    display: inline-block; }
    .footer-addon-top__breadcrumb .breadcrumb_inner .breadcrumb_text:empty {
      display: none; }
  .footer-addon-top__breadcrumb .breadcrumb_inner .breadcrumbs {
    display: inline-block; }
    .footer-addon-top__breadcrumb .breadcrumb_inner .breadcrumbs .breadcrumb {
      background: none;
      margin: 0;
      padding: 20px 0; }
      .footer-addon-top__breadcrumb .breadcrumb_inner .breadcrumbs .breadcrumb > li + li:before {
        color: #666666; }

.footer-addon-top_six-col-single-content-areas .footer-addon-top_inner {
  margin-bottom: 30px; }

/* FOOTER ADDON BOTTOM */
.footer-addon-bottom {
  background: #fff;
  color: #444;
  font-size: 0.98438rem;
  padding: 30px 0; }
  .footer-addon-bottom .footer-addon-bottom_inner {
    padding: 30px 0; }
    .footer-addon-bottom .footer-addon-bottom_inner .text-wrapper p {
      padding: 0;
      margin: 0; }
    .footer-addon-bottom .footer-addon-bottom_inner .text-wrapper a {
      color: #c00016; }
      .footer-addon-bottom .footer-addon-bottom_inner .text-wrapper a:hover, .footer-addon-bottom .footer-addon-bottom_inner .text-wrapper a:focus, .footer-addon-bottom .footer-addon-bottom_inner .text-wrapper a:active {
        color: #c5c7c8; }

@media (max-width: 767px) {
  .footer-addon-bottom .footer-addon-bottom_inner {
    padding: 15px 0; } }

/* FOOTER */
.footer {
  padding: 0; }
  .footer .footer_background-inner {
    padding: 60px 0 30px 0; }
  .footer a {
    text-decoration: underline; }
    .footer a:hover {
      color: #c5c7c8;
      opacity: 1;
      text-decoration: none; }
  .footer a.btn-default, .footer .btn-default,
  .footer a.btn-primary, .footer .btn-primary,
  .footer a.btn-custom, .footer .btn-custom {
    color: #444;
    background-color: #c5c7c8;
    border: 1px solid #c5c7c8; }
    .footer a.btn-default:hover, .footer a.btn-default:focus, .footer a.btn-default:active, .footer a.btn-default.active, .footer .btn-default:hover, .footer .btn-default:focus, .footer .btn-default:active, .footer .btn-default.active,
    .footer a.btn-primary:hover,
    .footer a.btn-primary:focus,
    .footer a.btn-primary:active,
    .footer a.btn-primary.active, .footer .btn-primary:hover, .footer .btn-primary:focus, .footer .btn-primary:active, .footer .btn-primary.active,
    .footer a.btn-custom:hover,
    .footer a.btn-custom:focus,
    .footer a.btn-custom:active,
    .footer a.btn-custom.active, .footer .btn-custom:hover, .footer .btn-custom:focus, .footer .btn-custom:active, .footer .btn-custom.active {
      color: #fff;
      background-color: #abaeaf;
      border: 1px solid #abaeaf; }

@media (max-width: 767px) {
  .footer .footer_background-inner {
    padding: 40px 0 10px 0; } }

.footer__six-col-single-content-areas .footer_inner {
  margin-bottom: 30px; }

/*HEADER ADDON TOP */
.header-addon-top {
  background-color: #c00016;
  font-size: 14px;
  color: #fff;
  padding: 10px 0; }
  .header-addon-top .text-wrapper p {
    padding: 0;
    margin: 0; }
  .header-addon-top a {
    color: #fff; }
    .header-addon-top a:hover {
      color: #fff;
      opacity: 0.7; }
  .header-addon-top .amphiicon {
    position: inherit;
    top: auto;
    text-align: center;
    padding: 8px 0;
    background-color: #fff;
    color: #666666;
    width: 27px;
    height: 27px;
    margin: 0 6px;
    font-size: 12px;
    border-radius: 40px; }

/* HEADER ADDON BOTTOM */
.header-addon-bottom {
  padding: 0; }
  .header-addon-bottom .header-addon-bottom_inner {
    padding: 10px 0; }
    .header-addon-bottom .header-addon-bottom_inner .text-wrapper p {
      padding: 0;
      margin: 0; }

.header-addon-bottom__breadcrumb {
  background-color: #ededed;
  font-size: 0.9rem; }
  .header-addon-bottom__breadcrumb .breadcrumb_inner {
    padding: 10px 0; }
    .header-addon-bottom__breadcrumb .breadcrumb_inner .breadcrumb_icon {
      display: inline-block;
      margin-right: 5px; }
      .header-addon-bottom__breadcrumb .breadcrumb_inner .breadcrumb_icon:empty {
        display: none; }
    .header-addon-bottom__breadcrumb .breadcrumb_inner .breadcrumb_text {
      margin-right: 5px;
      display: inline-block; }
      .header-addon-bottom__breadcrumb .breadcrumb_inner .breadcrumb_text:empty {
        display: none; }
    .header-addon-bottom__breadcrumb .breadcrumb_inner .breadcrumbs {
      display: inline-block; }
      .header-addon-bottom__breadcrumb .breadcrumb_inner .breadcrumbs .breadcrumb {
        background: none;
        margin: 0;
        padding: 0; }
        .header-addon-bottom__breadcrumb .breadcrumb_inner .breadcrumbs .breadcrumb > li + li:before {
          color: #666666; }

/* HEADER */
.header {
  background: transparent;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  -webkit-box-shadow: none;
          box-shadow: none; }
  .header .header_content {
    -webkit-transition: font-size 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
    transition: font-size 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1); }
    .header .header_content .amphiicon {
      color: #c00016;
      margin: 0 5px 0 0; }
  .header .logo {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .header .logo a {
      display: inline-block; }
    .header .logo img, .header .logo svg {
      width: 100%;
      max-width: 100%;
      -webkit-transition: max-width 0.5s cubic-bezier(0.55, 0, 0.1, 1), width 0.5s cubic-bezier(0.55, 0, 0.1, 1);
      transition: max-width 0.5s cubic-bezier(0.55, 0, 0.1, 1), width 0.5s cubic-bezier(0.55, 0, 0.1, 1); }
  .header.fixed .logo img, .header.fixed .logo svg {
    max-width: 75%;
    -webkit-transition: max-width 0.5s cubic-bezier(0.55, 0, 0.1, 1), width 0.5s cubic-bezier(0.55, 0, 0.1, 1);
    transition: max-width 0.5s cubic-bezier(0.55, 0, 0.1, 1), width 0.5s cubic-bezier(0.55, 0, 0.1, 1); }
  .header .top-nav .navbar {
    min-height: auto;
    padding: 15px 0; }
  .header .top-nav .navigation > li {
    display: inline-block; }
    .header .top-nav .navigation > li span > a {
      font-family: "Open Sans", sans-serif;
      font-size: 1.125rem;
      font-weight: 400;
      color: #666666;
      text-transform: uppercase;
      padding: 35px 20px;
      line-height: 1;
      background: rgba(192, 0, 22, 0);
      -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1);
      transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1); }
    .header .top-nav .navigation > li.active > span > a {
      color: #FFF;
      background: #c00016;
      -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1);
      transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1); }
    .header .top-nav .navigation > li:hover > span > a, .header .top-nav .navigation > li.hover > span > a {
      color: #FFF;
      background: #c00016;
      -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1);
      transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1); }
    .header .top-nav .navigation > li:hover.active > span > a, .header .top-nav .navigation > li.hover.active > span > a {
      color: #FFF;
      background: #c00016;
      -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1);
      transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1); }
    .header .top-nav .navigation > li:hover > ul, .header .top-nav .navigation > li.hover > ul {
      opacity: 1;
      visibility: visible;
      -webkit-transition: opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1);
      transition: opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1); }
    .header .top-nav .navigation > li.nav-inactive, .header .top-nav .navigation > li.navInactive {
      opacity: 1;
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=100)";
      filter: alpha(opacity=100); }
      .header .top-nav .navigation > li.nav-inactive a, .header .top-nav .navigation > li.navInactive a {
        opacity: 0.5;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=50)";
        filter: alpha(opacity=50);
        zoom: 1; }
    .header .top-nav .navigation > li > ul {
      border-top: 5px solid #c5c7c8; }
    .header .top-nav .navigation > li ul {
      position: absolute;
      opacity: 0;
      visibility: hidden;
      background: #fff;
      top: 100%;
      z-index: 800;
      min-width: 250px;
      text-align: left;
      padding: 10px;
      -webkit-transition: opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1);
      transition: opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1);
      left: 0;
      -webkit-box-shadow: 0 0.7px 1.3px rgba(0, 0, 0, 0.05), 0 1.6px 3.2px rgba(0, 0, 0, 0.066), 0 3px 6px rgba(0, 0, 0, 0.062), 0 5.4px 10.7px rgba(0, 0, 0, 0.06), 0 10px 20.1px rgba(0, 0, 0, 0.02), 0 24px 48px rgba(0, 0, 0, 0.014);
              box-shadow: 0 0.7px 1.3px rgba(0, 0, 0, 0.05), 0 1.6px 3.2px rgba(0, 0, 0, 0.066), 0 3px 6px rgba(0, 0, 0, 0.062), 0 5.4px 10.7px rgba(0, 0, 0, 0.06), 0 10px 20.1px rgba(0, 0, 0, 0.02), 0 24px 48px rgba(0, 0, 0, 0.014);
      max-height: 70vh;
      overflow: scroll;
      -ms-overflow-style: none;
      scrollbar-width: none; }
      .header .top-nav .navigation > li ul::-webkit-scrollbar {
        display: none; }
      .header .top-nav .navigation > li ul.position-right {
        right: 0;
        left: auto; }
      .header .top-nav .navigation > li ul li {
        display: block; }
        .header .top-nav .navigation > li ul li span > a {
          font-size: 0.875rem;
          font-weight: 600;
          color: #666666;
          padding: 10px 15px;
          border-bottom: 1px solid rgba(0, 0, 0, 0.1);
          letter-spacing: 0.2px;
          line-height: 1.5;
          white-space: nowrap;
          text-transform: uppercase; }
          .header .top-nav .navigation > li ul li span > a:before {
            content: "";
            font: normal normal normal 14px/1 FontAwesome;
            display: inline-block;
            font-style: normal;
            font-weight: normal;
            text-rendering: auto;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            -webkit-transform: translate(0, 0);
                    transform: translate(0, 0);
            margin-right: 10px; }
          .header .top-nav .navigation > li ul li span > a:after {
            content: none; }
        .header .top-nav .navigation > li ul li.active > span > a {
          color: #c00016;
          background: none; }
        .header .top-nav .navigation > li ul li:hover > span > a, .header .top-nav .navigation > li ul li.hover > span > a {
          color: #c00016;
          background: none; }
        .header .top-nav .navigation > li ul li:hover.active > span > a, .header .top-nav .navigation > li ul li.hover.active > span > a {
          color: #c00016;
          background: none; }
        .header .top-nav .navigation > li ul li:hover > ul, .header .top-nav .navigation > li ul li.hover > ul {
          opacity: 1;
          visibility: visible;
          -webkit-transition: opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1);
          transition: opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1); }
        .header .top-nav .navigation > li ul li:last-child > span > a {
          border-bottom: none; }
        .header .top-nav .navigation > li ul li > ul {
          z-index: 400;
          min-width: 220px;
          left: 100%;
          top: 0; }

/* EDIT MODE */
#editMode header .header .logo > .singleContentAreaEdit {
  position: absolute;
  margin: 0;
  top: -2px; }
  #editMode header .header .logo > .singleContentAreaEdit img {
    max-width: 100%; }

#editMode header .header .top-nav .navigation.level-1 li > span {
  position: static; }
  #editMode header .header .top-nav .navigation.level-1 li > span > a.editButton {
    top: 16px;
    left: -5px; }
    #editMode header .header .top-nav .navigation.level-1 li > span > a.editButton:before, #editMode header .header .top-nav .navigation.level-1 li > span > a.editButton:after {
      content: none; }

#editMode header .header .top-nav .navigation.level-1 li .level-2 li > span > a.editButton {
  top: 14px;
  left: -3px; }

/* MEDIA QUERIES */
@media screen and (max-width: 1269px) {
  .header .top-nav .navigation > li > span > a {
    padding: 10px; } }

@media screen and (max-width: 1199px) {
  .header .top-nav .navigation > li > span > a {
    font-size: 16px;
    padding: 10px 8px; } }

@media screen and (max-width: 1061px) {
  .header .top-nav .navigation > li > span > a {
    font-size: 15px; } }

.header__logo-center-nav-bottom-center {
  text-align: center; }
  .header__logo-center-nav-bottom-center .logo-wrapper {
    padding: 25px 0;
    background-color: transparent; }
    .header__logo-center-nav-bottom-center .logo-wrapper .logo {
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; }
      .header__logo-center-nav-bottom-center .logo-wrapper .logo a img {
        margin: 0 auto; }
  .header__logo-center-nav-bottom-center .top-nav {
    background-color: transparent; }
    .header__logo-center-nav-bottom-center .top-nav .navbar .navbar-toggle {
      float: none; }
      .header__logo-center-nav-bottom-center .top-nav .navbar .navbar-toggle .hamburger {
        padding: 0; }
    .header__logo-center-nav-bottom-center .top-nav .navigation {
      text-align: center; }

/* EDIT MODE */
#editMode .header__logo-center-nav-bottom-center .logo > .singleContentAreaEdit {
  left: -25px; }

#editMode .header__logo-center-nav-bottom-center .top-nav .navigation > li > span > a.editButton {
  left: auto; }

.header__logo-left-nav-bottom-left {
  text-align: left;
  display: block; }
  .header__logo-left-nav-bottom-left .logo-wrapper {
    padding: 25px 0;
    background-color: transparent; }
    .header__logo-left-nav-bottom-left .logo-wrapper .logo a img {
      float: left; }
    .header__logo-left-nav-bottom-left .logo-wrapper .header_content {
      font-size: 1rem; }
      .header__logo-left-nav-bottom-left .logo-wrapper .header_content p {
        margin: 0; }
  .header__logo-left-nav-bottom-left .top-nav {
    background-color: transparent; }
    .header__logo-left-nav-bottom-left .top-nav .navigation {
      text-align: left; }

/* EDIT MODE */
#editMode .header__logo-left-nav-bottom-left .logo > .singleContentAreaEdit {
  left: -25px; }

.header__logo-left-nav-right {
  padding: 25px 0; }
  .header__logo-left-nav-right .logo-wrapper .logo a img {
    float: left; }

/* EDIT MODE */
#editMode .header__logo-left-nav-right .logo > .singleContentAreaEdit {
  left: -25px; }

.header__logo-right-nav-bottom-right {
  display: block; }
  .header__logo-right-nav-bottom-right .logo-wrapper {
    padding: 25px 0;
    background-color: transparent; }
    .header__logo-right-nav-bottom-right .logo-wrapper .logo a img {
      float: right; }
    .header__logo-right-nav-bottom-right .logo-wrapper .header_content {
      font-size: 1rem; }
      .header__logo-right-nav-bottom-right .logo-wrapper .header_content p {
        margin: 0; }
  .header__logo-right-nav-bottom-right .top-nav {
    background-color: transparent; }
    .header__logo-right-nav-bottom-right .top-nav .navigation {
      text-align: right; }

/* EDIT MODE */
#editMode .header__logo-right-nav-bottom-right .logo > .singleContentAreaEdit {
  right: -25px; }

#editMode .header__logo-right-nav-bottom-right .top-nav .navigation > li > span > a.editButton {
  left: auto; }

/* MEDIA QUERIES */
@media (max-width: 991px) {
  .header__logo-right-nav-bottom-right .logo-wrapper .logo {
    float: left; } }

.header__logo-right-nav-left {
  padding: 25px 0; }
  .header__logo-right-nav-left .logo-wrapper .logo a img {
    float: right; }
  .header__logo-right-nav-left .top-nav {
    float: left; }

/* EDIT MODE */
#editMode .header__logo-right-nav-left .logo > .singleContentAreaEdit {
  right: 0; }

/* MEDIA QUERIES */
@media screen and (max-width: 1199px) {
  .header__logo-right-nav-left .top-nav {
    float: left; } }

@media screen and (max-width: 991px) {
  .header__logo-right-nav-left .logo-wrapper .logo {
    float: right; } }

.quicklinks-mobile__icons {
  position: relative;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  .quicklinks-mobile__icons ul {
    margin: 0;
    padding: 0;
    top: -14px;
    position: absolute;
    z-index: 400; }
    .quicklinks-mobile__icons ul li {
      display: inline-block;
      list-style-type: none;
      margin: 0;
      padding: 0; }
      .quicklinks-mobile__icons ul li:empty {
        display: none; }
      .quicklinks-mobile__icons ul li a .amphiicon {
        position: inherit;
        top: auto;
        text-align: center;
        padding: 8px 0;
        background-color: #c00016;
        color: #fff;
        -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background-color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
        transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background-color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
        width: 30px;
        height: 30px;
        margin: 0 6px;
        font-size: 14px;
        border-radius: 40px;
        -webkit-box-shadow: 0 0.7px 1.3px rgba(0, 0, 0, 0.05), 0 1.6px 3.2px rgba(0, 0, 0, 0.066), 0 3px 6px rgba(0, 0, 0, 0.062), 0 5.4px 10.7px rgba(0, 0, 0, 0.06), 0 10px 20.1px rgba(0, 0, 0, 0.02), 0 24px 48px rgba(0, 0, 0, 0.014);
                box-shadow: 0 0.7px 1.3px rgba(0, 0, 0, 0.05), 0 1.6px 3.2px rgba(0, 0, 0, 0.066), 0 3px 6px rgba(0, 0, 0, 0.062), 0 5.4px 10.7px rgba(0, 0, 0, 0.06), 0 10px 20.1px rgba(0, 0, 0, 0.02), 0 24px 48px rgba(0, 0, 0, 0.014); }
      .quicklinks-mobile__icons ul li a:hover .amphiicon {
        background-color: #c5c7c8; }

.quicklinks {
  position: fixed;
  top: 45%;
  z-index: 900;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: transform 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  pointer-events: none;
  list-style-type: none;
  margin: 0;
  padding: 0; }
  .quicklinks.show {
    -webkit-transform: translate(0, -45%);
            transform: translate(0, -45%); }
  .quicklinks .quicklinks_item {
    pointer-events: auto;
    position: relative;
    display: table;
    -webkit-box-shadow: 0 0.7px 1.3px rgba(0, 0, 0, 0.05), 0 1.6px 3.2px rgba(0, 0, 0, 0.066), 0 3px 6px rgba(0, 0, 0, 0.062), 0 5.4px 10.7px rgba(0, 0, 0, 0.06), 0 10px 20.1px rgba(0, 0, 0, 0.02), 0 24px 48px rgba(0, 0, 0, 0.014);
            box-shadow: 0 0.7px 1.3px rgba(0, 0, 0, 0.05), 0 1.6px 3.2px rgba(0, 0, 0, 0.066), 0 3px 6px rgba(0, 0, 0, 0.062), 0 5.4px 10.7px rgba(0, 0, 0, 0.06), 0 10px 20.1px rgba(0, 0, 0, 0.02), 0 24px 48px rgba(0, 0, 0, 0.014);
    border-radius: 0;
    clear: both;
    margin-bottom: 4px; }
    .quicklinks .quicklinks_item:hover, .quicklinks .quicklinks_item.hover {
      -webkit-transform: translateX(0);
              transform: translateX(0); }
    .quicklinks .quicklinks_item.quicklinks_box {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
      .quicklinks .quicklinks_item.quicklinks_box .quicklinks_box_label {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 45px;
        max-height: 60vh;
        overflow: hidden;
        padding: 15px 9px;
        -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
        transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
        transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1), box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
        transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1), box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
        border-radius: 0;
        background: #c00016;
        color: #fff;
        white-space: nowrap; }
        .quicklinks .quicklinks_item.quicklinks_box .quicklinks_box_label div {
          text-align: center;
          -webkit-writing-mode: vertical-rl;
              -ms-writing-mode: tb-rl;
                  writing-mode: vertical-rl;
          -webkit-transform: rotate(180deg);
                  transform: rotate(180deg); }
        .quicklinks .quicklinks_item.quicklinks_box .quicklinks_box_label a {
          color: #fff;
          -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
          transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1); }
        .quicklinks .quicklinks_item.quicklinks_box .quicklinks_box_label .amphiicon {
          margin-bottom: 5px;
          -webkit-transform: rotate(90deg);
                  transform: rotate(90deg); }
      .quicklinks .quicklinks_item.quicklinks_box .quicklinks_box_content {
        padding: 20px;
        color: #fff;
        background: #c00016;
        -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1);
        transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1);
        position: relative;
        max-width: 95vw;
        max-height: 60vh;
        overflow-y: auto; }
        .quicklinks .quicklinks_item.quicklinks_box .quicklinks_box_content .quicklinks_box_headline {
          color: #fff; }
        .quicklinks .quicklinks_item.quicklinks_box .quicklinks_box_content .text-wrapper a {
          color: #c00016; }
          .quicklinks .quicklinks_item.quicklinks_box .quicklinks_box_content .text-wrapper a:hover, .quicklinks .quicklinks_item.quicklinks_box .quicklinks_box_content .text-wrapper a:focus, .quicklinks .quicklinks_item.quicklinks_box .quicklinks_box_content .text-wrapper a:active {
            color: #74000d; }
    .quicklinks .quicklinks_item.quicklinks_icons {
      height: 52px; }
      .quicklinks .quicklinks_item.quicklinks_icons .quicklinks_icons_label {
        width: 45px;
        text-align: center;
        color: #fff;
        background: #c00016;
        -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1);
        transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1);
        border-radius: 0; }
        .quicklinks .quicklinks_item.quicklinks_icons .quicklinks_icons_label .amphiicon {
          white-space: nowrap; }
      .quicklinks .quicklinks_item.quicklinks_icons .quicklinks_icons_content {
        padding: 0 20px;
        color: #fff;
        background: #c00016;
        -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1);
        transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1);
        max-width: 95vw;
        overflow-x: auto; }
      .quicklinks .quicklinks_item.quicklinks_icons p {
        margin: 0;
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex; }
        .quicklinks .quicklinks_item.quicklinks_icons p > a {
          white-space: nowrap;
          color: #fff;
          -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
          transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1); }
      .quicklinks .quicklinks_item.quicklinks_icons a {
        display: inline-block;
        margin: 0;
        padding: 0;
        background: none;
        -webkit-box-shadow: none;
                box-shadow: none;
        border: none;
        white-space: nowrap; }
        .quicklinks .quicklinks_item.quicklinks_icons a:after, .quicklinks .quicklinks_item.quicklinks_icons a:before {
          display: none; }
        .quicklinks .quicklinks_item.quicklinks_icons a .amphiicon {
          color: #fff;
          -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
          transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1); }
      .quicklinks .quicklinks_item.quicklinks_icons .quicklinks_icons_label, .quicklinks .quicklinks_item.quicklinks_icons .quicklinks_icons_content {
        display: table-cell;
        vertical-align: middle; }
    .quicklinks .quicklinks_item:hover, .quicklinks .quicklinks_item.hover, .quicklinks .quicklinks_item:focus, .quicklinks .quicklinks_item:active, .quicklinks .quicklinks_item.active {
      -webkit-box-shadow: 0 1.8px 12.2px rgba(0, 0, 0, 0.1), 0 4.4px 21.5px rgba(0, 0, 0, 0.072), 0 8.3px 27.6px rgba(0, 0, 0, 0.06), 0 14.7px 30.7px rgba(0, 0, 0, 0.05), 0 27.6px 32.1px rgba(0, 0, 0, 0.04), 0 66px 48px rgba(0, 0, 0, 0.028);
              box-shadow: 0 1.8px 12.2px rgba(0, 0, 0, 0.1), 0 4.4px 21.5px rgba(0, 0, 0, 0.072), 0 8.3px 27.6px rgba(0, 0, 0, 0.06), 0 14.7px 30.7px rgba(0, 0, 0, 0.05), 0 27.6px 32.1px rgba(0, 0, 0, 0.04), 0 66px 48px rgba(0, 0, 0, 0.028); }
      .quicklinks .quicklinks_item:hover.quicklinks_box .quicklinks_box_label, .quicklinks .quicklinks_item.hover.quicklinks_box .quicklinks_box_label, .quicklinks .quicklinks_item:focus.quicklinks_box .quicklinks_box_label, .quicklinks .quicklinks_item:active.quicklinks_box .quicklinks_box_label, .quicklinks .quicklinks_item.active.quicklinks_box .quicklinks_box_label {
        color: #fff;
        background: #410007; }
        .quicklinks .quicklinks_item:hover.quicklinks_box .quicklinks_box_label a, .quicklinks .quicklinks_item.hover.quicklinks_box .quicklinks_box_label a, .quicklinks .quicklinks_item:focus.quicklinks_box .quicklinks_box_label a, .quicklinks .quicklinks_item:active.quicklinks_box .quicklinks_box_label a, .quicklinks .quicklinks_item.active.quicklinks_box .quicklinks_box_label a {
          color: #fff; }
      .quicklinks .quicklinks_item:hover.quicklinks_box .quicklinks_box_content, .quicklinks .quicklinks_item.hover.quicklinks_box .quicklinks_box_content, .quicklinks .quicklinks_item:focus.quicklinks_box .quicklinks_box_content, .quicklinks .quicklinks_item:active.quicklinks_box .quicklinks_box_content, .quicklinks .quicklinks_item.active.quicklinks_box .quicklinks_box_content {
        color: #fff;
        background: #74000d; }
      .quicklinks .quicklinks_item:hover.quicklinks_icons a, .quicklinks .quicklinks_item.hover.quicklinks_icons a, .quicklinks .quicklinks_item:focus.quicklinks_icons a, .quicklinks .quicklinks_item:active.quicklinks_icons a, .quicklinks .quicklinks_item.active.quicklinks_icons a {
        color: #fff; }
        .quicklinks .quicklinks_item:hover.quicklinks_icons a .amphiicon, .quicklinks .quicklinks_item.hover.quicklinks_icons a .amphiicon, .quicklinks .quicklinks_item:focus.quicklinks_icons a .amphiicon, .quicklinks .quicklinks_item:active.quicklinks_icons a .amphiicon, .quicklinks .quicklinks_item.active.quicklinks_icons a .amphiicon {
          color: #fff; }
      .quicklinks .quicklinks_item:hover.quicklinks_icons .quicklinks_icons_label, .quicklinks .quicklinks_item.hover.quicklinks_icons .quicklinks_icons_label, .quicklinks .quicklinks_item:focus.quicklinks_icons .quicklinks_icons_label, .quicklinks .quicklinks_item:active.quicklinks_icons .quicklinks_icons_label, .quicklinks .quicklinks_item.active.quicklinks_icons .quicklinks_icons_label {
        color: #fff;
        background: #410007; }
      .quicklinks .quicklinks_item:hover.quicklinks_icons .quicklinks_icons_content, .quicklinks .quicklinks_item.hover.quicklinks_icons .quicklinks_icons_content, .quicklinks .quicklinks_item:focus.quicklinks_icons .quicklinks_icons_content, .quicklinks .quicklinks_item:active.quicklinks_icons .quicklinks_icons_content, .quicklinks .quicklinks_item.active.quicklinks_icons .quicklinks_icons_content {
        color: #fff;
        background: #74000d; }

#editMode .quicklinks .quicklinks_item .singleContentAreaEdit {
  margin-right: 5px; }

#editMode .quicklinks .quicklinks_item.quicklinks_icons .quicklinks_icons_label .singleContentAreaEdit img {
  margin-bottom: 5px; }

#editMode .quicklinks .quicklinks_item.quicklinks_icons .quicklinks_icons_label .singleContentAreaEditText {
  display: none; }

#editMode .quicklinks .quicklinks_item.quicklinks_box .quicklinks_box_label .singleContentAreaEdit img {
  position: relative;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  left: -5px;
  margin-bottom: 5px; }

.quicklinks__icons-left {
  -webkit-transform: translate(-100%, -45%);
          transform: translate(-100%, -45%);
  left: 0; }
  .quicklinks__icons-left .quicklinks_item {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    left: 45px;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    -webkit-transition: left 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
    transition: left 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
    transition: transform 0.5s cubic-bezier(0.55, 0, 0.1, 1), left 0.5s cubic-bezier(0.55, 0, 0.1, 1);
    transition: transform 0.5s cubic-bezier(0.55, 0, 0.1, 1), left 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1); }
    .quicklinks__icons-left .quicklinks_item:hover, .quicklinks__icons-left .quicklinks_item.hover {
      left: 0; }
    .quicklinks__icons-left .quicklinks_item.quicklinks_box .quicklinks_box_label {
      border-top-left-radius: 0;
      border-bottom-left-radius: 0; }
    .quicklinks__icons-left .quicklinks_item.quicklinks_icons .quicklinks_icons_label {
      border-top-left-radius: 0;
      border-bottom-left-radius: 0; }

#editMode .headerEditLink {
  left: 35px; }
  @media screen and (max-width: 767px) {
    #editMode .headerEditLink {
      left: -35px; } }

#editMode .quicklinks__icons-left .quicklinks_item.quicklinks_icons .quicklinks_icons_label .singleContentAreaEdit {
  float: right; }
  #editMode .quicklinks__icons-left .quicklinks_item.quicklinks_icons .quicklinks_icons_label .singleContentAreaEdit img {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg); }

.quicklinks__icons-right {
  -webkit-transform: translate(200%, -45%);
          transform: translate(200%, -45%);
  right: 0; }
  .quicklinks__icons-right .quicklinks_item {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    float: right;
    right: 45px;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: right 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
    transition: right 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1);
    transition: transform 0.5s cubic-bezier(0.55, 0, 0.1, 1), right 0.5s cubic-bezier(0.55, 0, 0.1, 1);
    transition: transform 0.5s cubic-bezier(0.55, 0, 0.1, 1), right 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-transform 0.5s cubic-bezier(0.55, 0, 0.1, 1); }
    .quicklinks__icons-right .quicklinks_item:hover, .quicklinks__icons-right .quicklinks_item.hover {
      right: 0; }
    .quicklinks__icons-right .quicklinks_item.quicklinks_box .quicklinks_box_label {
      border-top-right-radius: 0;
      border-bottom-right-radius: 0; }
    .quicklinks__icons-right .quicklinks_item.quicklinks_icons .quicklinks_icons_label {
      border-top-right-radius: 0;
      border-bottom-right-radius: 0; }

.seo-navigation__top-right {
  position: fixed;
  top: 0;
  right: 80px;
  display: none;
  z-index: 900; }
  #editMode .seo-navigation__top-right {
    display: block; }
  .seo-navigation__top-right .seo-navigation_label {
    background: #a70013;
    color: #fff;
    padding: 5px 15px;
    font-size: 0.8rem;
    cursor: pointer;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    -webkit-box-shadow: 0 0.7px 1.3px rgba(0, 0, 0, 0.05), 0 1.6px 3.2px rgba(0, 0, 0, 0.066), 0 3px 6px rgba(0, 0, 0, 0.062), 0 5.4px 10.7px rgba(0, 0, 0, 0.06), 0 10px 20.1px rgba(0, 0, 0, 0.02), 0 24px 48px rgba(0, 0, 0, 0.014);
            box-shadow: 0 0.7px 1.3px rgba(0, 0, 0, 0.05), 0 1.6px 3.2px rgba(0, 0, 0, 0.066), 0 3px 6px rgba(0, 0, 0, 0.062), 0 5.4px 10.7px rgba(0, 0, 0, 0.06), 0 10px 20.1px rgba(0, 0, 0, 0.02), 0 24px 48px rgba(0, 0, 0, 0.014); }
  .seo-navigation__top-right .seo-navigation_wrapper {
    position: fixed;
    top: 40px;
    background: #fff;
    padding: 15px 30px;
    right: -600px;
    visibility: hidden;
    opacity: 0;
    -webkit-box-shadow: 0 0 0 4000px rgba(0, 0, 0, 0);
            box-shadow: 0 0 0 4000px rgba(0, 0, 0, 0);
    max-width: 1000px;
    border-radius: 0;
    z-index: 900;
    -webkit-transition: opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1), right 0.5s cubic-bezier(0.55, 0, 0.1, 1), visibility 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
    transition: opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1), right 0.5s cubic-bezier(0.55, 0, 0.1, 1), visibility 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
    transition: opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1), right 0.5s cubic-bezier(0.55, 0, 0.1, 1), visibility 0.5s cubic-bezier(0.55, 0, 0.1, 1), box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
    transition: opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1), right 0.5s cubic-bezier(0.55, 0, 0.1, 1), visibility 0.5s cubic-bezier(0.55, 0, 0.1, 1), box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
    margin-left: 80px; }
    .seo-navigation__top-right .seo-navigation_wrapper .seoNavigation-nav > li {
      display: inline-block; }
      .seo-navigation__top-right .seo-navigation_wrapper .seoNavigation-nav > li > span {
        position: relative; }
        .seo-navigation__top-right .seo-navigation_wrapper .seoNavigation-nav > li > span > a {
          font-family: "Mukta", sans-serif;
          font-size: 1.125rem;
          font-weight: 600;
          color: #666666;
          text-transform: uppercase;
          padding: 10px 15px;
          line-height: 1.5; }
          .seo-navigation__top-right .seo-navigation_wrapper .seoNavigation-nav > li > span > a:hover {
            color: #4d4d4d; }
          .seo-navigation__top-right .seo-navigation_wrapper .seoNavigation-nav > li > span > a.editButton {
            top: 8px;
            left: auto; }
    .seo-navigation__top-right .seo-navigation_wrapper.open {
      right: 80px;
      opacity: 1;
      visibility: visible;
      -webkit-box-shadow: 0 0 0 4000px rgba(0, 0, 0, 0.6);
              box-shadow: 0 0 0 4000px rgba(0, 0, 0, 0.6);
      -webkit-transition: opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1), right 0.5s cubic-bezier(0.55, 0, 0.1, 1), visibility 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
      transition: opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1), right 0.5s cubic-bezier(0.55, 0, 0.1, 1), visibility 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
      transition: opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1), right 0.5s cubic-bezier(0.55, 0, 0.1, 1), visibility 0.5s cubic-bezier(0.55, 0, 0.1, 1), box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
      transition: opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1), right 0.5s cubic-bezier(0.55, 0, 0.1, 1), visibility 0.5s cubic-bezier(0.55, 0, 0.1, 1), box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1); }
  .seo-navigation__top-right .seo-navigation_close-icon {
    width: 24px;
    height: 24px;
    position: absolute;
    top: -12px;
    right: -12px;
    background: #fff;
    text-align: center;
    color: #666666;
    border-radius: 40px;
    padding-top: 2px;
    -webkit-box-shadow: 0 0.7px 1.3px rgba(0, 0, 0, 0.05), 0 1.6px 3.2px rgba(0, 0, 0, 0.066), 0 3px 6px rgba(0, 0, 0, 0.062), 0 5.4px 10.7px rgba(0, 0, 0, 0.06), 0 10px 20.1px rgba(0, 0, 0, 0.02), 0 24px 48px rgba(0, 0, 0, 0.014);
            box-shadow: 0 0.7px 1.3px rgba(0, 0, 0, 0.05), 0 1.6px 3.2px rgba(0, 0, 0, 0.066), 0 3px 6px rgba(0, 0, 0, 0.062), 0 5.4px 10.7px rgba(0, 0, 0, 0.06), 0 10px 20.1px rgba(0, 0, 0, 0.02), 0 24px 48px rgba(0, 0, 0, 0.014);
    border: 1px solid #999;
    cursor: pointer;
    z-index: 900; }
    .seo-navigation__top-right .seo-navigation_close-icon:hover {
      color: gray; }

/* SLIDER ADDON BOTTOM */
.slider-addon-bottom {
  background-color: #ededed;
  font-size: 0.9rem;
  padding: 20px 0; }
  .slider-addon-bottom .text-wrapper p {
    padding: 0;
    margin: 0; }

.slider-addon-bottom__breadcrumb {
  background-color: #ededed;
  font-size: 0.9rem; }
  .slider-addon-bottom__breadcrumb .breadcrumb_inner .breadcrumb_icon {
    display: inline-block;
    margin-right: 5px; }
    .slider-addon-bottom__breadcrumb .breadcrumb_inner .breadcrumb_icon:empty {
      display: none; }
  .slider-addon-bottom__breadcrumb .breadcrumb_inner .breadcrumb_text {
    margin-right: 5px;
    display: inline-block; }
    .slider-addon-bottom__breadcrumb .breadcrumb_inner .breadcrumb_text:empty {
      display: none; }
  .slider-addon-bottom__breadcrumb .breadcrumb_inner .breadcrumbs {
    display: inline-block; }
    .slider-addon-bottom__breadcrumb .breadcrumb_inner .breadcrumbs .breadcrumb {
      background: none;
      margin: 0;
      padding: 0; }
      .slider-addon-bottom__breadcrumb .breadcrumb_inner .breadcrumbs .breadcrumb > li + li:before {
        color: #666666; }

/* SLIDER */
.slider {
  position: relative;
  background-color: #c5c7c8;
  /* Pagespeed Block */ }
  .slider.slider_big {
    min-height: 75vh; }
    .slider.slider_big .single-header, .slider.slider_big .amphi-slideshow, .slider.slider_big .amphi-no-slideshow {
      min-height: 75vh; }
      .slider.slider_big .single-header .header-img, .slider.slider_big .amphi-slideshow .header-img, .slider.slider_big .amphi-no-slideshow .header-img {
        min-height: 75vh; }
        .slider.slider_big .single-header .header-img .caption-wrapper .carousel-caption .headline1, .slider.slider_big .amphi-slideshow .header-img .caption-wrapper .carousel-caption .headline1, .slider.slider_big .amphi-no-slideshow .header-img .caption-wrapper .carousel-caption .headline1 {
          font-size: 2.2rem; }
        .slider.slider_big .single-header .header-img .caption-wrapper .carousel-caption .headline2, .slider.slider_big .amphi-slideshow .header-img .caption-wrapper .carousel-caption .headline2, .slider.slider_big .amphi-no-slideshow .header-img .caption-wrapper .carousel-caption .headline2 {
          font-size: 1.5rem; }
        .slider.slider_big .single-header .header-img .caption-wrapper .carousel-caption .text-wrapper, .slider.slider_big .amphi-slideshow .header-img .caption-wrapper .carousel-caption .text-wrapper, .slider.slider_big .amphi-no-slideshow .header-img .caption-wrapper .carousel-caption .text-wrapper {
          font-size: 1.125rem; }
  .slider.slider_small {
    min-height: 250px; }
    .slider.slider_small .single-header, .slider.slider_small .amphi-slideshow, .slider.slider_small .amphi-no-slideshow {
      min-height: 250px; }
      .slider.slider_small .single-header .header-img, .slider.slider_small .amphi-slideshow .header-img, .slider.slider_small .amphi-no-slideshow .header-img {
        min-height: 250px; }
        .slider.slider_small .single-header .header-img .caption-wrapper .carousel-caption .headline1, .slider.slider_small .amphi-slideshow .header-img .caption-wrapper .carousel-caption .headline1, .slider.slider_small .amphi-no-slideshow .header-img .caption-wrapper .carousel-caption .headline1 {
          font-size: 2.2rem; }
        .slider.slider_small .single-header .header-img .caption-wrapper .carousel-caption .headline2, .slider.slider_small .amphi-slideshow .header-img .caption-wrapper .carousel-caption .headline2, .slider.slider_small .amphi-no-slideshow .header-img .caption-wrapper .carousel-caption .headline2 {
          font-size: 1.5rem; }
        .slider.slider_small .single-header .header-img .caption-wrapper .carousel-caption .text-wrapper, .slider.slider_small .amphi-slideshow .header-img .caption-wrapper .carousel-caption .text-wrapper, .slider.slider_small .amphi-no-slideshow .header-img .caption-wrapper .carousel-caption .text-wrapper {
          font-size: 1.125rem; }
  .slider .header-img {
    height: 100%;
    width: 100%;
    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: relative; }
    .slider .header-img .caption-wrapper {
      width: auto;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      margin: 0 15px;
      position: relative;
      z-index: 100; }
      .slider .header-img .caption-wrapper .carousel-caption {
        -webkit-transition: none;
        transition: none;
        background: transparent;
        margin: 60px 0;
        padding: 0;
        display: inline-block;
        max-width: 100%;
        word-break: break-word;
        left: unset;
        right: unset;
        top: unset;
        bottom: unset;
        position: static; }
        .slider .header-img .caption-wrapper .carousel-caption .headline1 {
          color: #fff; }
          .slider .header-img .caption-wrapper .carousel-caption .headline1 a {
            color: #fff; }
            .slider .header-img .caption-wrapper .carousel-caption .headline1 a:hover {
              color: #fff; }
        .slider .header-img .caption-wrapper .carousel-caption .headline2 {
          color: #fff; }
          .slider .header-img .caption-wrapper .carousel-caption .headline2 a {
            color: #fff; }
            .slider .header-img .caption-wrapper .carousel-caption .headline2 a:hover {
              color: #fff; }
        .slider .header-img .caption-wrapper .carousel-caption .text-wrapper {
          color: #fff; }
          .slider .header-img .caption-wrapper .carousel-caption .text-wrapper p {
            margin-bottom: 0; }
    .slider .header-img:after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.3)), to(rgba(0, 0, 0, 0.4)));
      background: linear-gradient(0deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.4) 100%); }
  .slider .owl-stage {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .slider .owl-stage:after {
      content: ''; }
  .slider .owl-nav div {
    left: 60px; }
    .slider .owl-nav div.owl-next {
      right: 60px; }
  .slider .amphi-slider .single-header .header-img {
    position: relative; }
  .slider .amphi-slider .header-img {
    position: absolute; }
  .slider .amphi-slider .owl-loaded .header-img {
    position: relative; }
  .slider .amphi-slider .owl-carousel {
    display: block; }

@media (min-width: 768px) {
  .slider .header-img .caption-wrapper {
    width: 720px;
    margin: 0; }
    .slider .header-img .caption-wrapper .carousel-caption {
      padding: 0;
      max-width: 100%; }
  .slider.slider_big {
    min-height: 85vh; }
    .slider.slider_big .single-header, .slider.slider_big .amphi-slideshow, .slider.slider_big .amphi-no-slideshow {
      min-height: 85vh; }
      .slider.slider_big .single-header .header-img, .slider.slider_big .amphi-slideshow .header-img, .slider.slider_big .amphi-no-slideshow .header-img {
        min-height: 85vh; }
  .slider.slider_small {
    min-height: 250px; }
    .slider.slider_small .single-header, .slider.slider_small .amphi-slideshow, .slider.slider_small .amphi-no-slideshow {
      min-height: 250px; }
      .slider.slider_small .single-header .header-img, .slider.slider_small .amphi-slideshow .header-img, .slider.slider_small .amphi-no-slideshow .header-img {
        min-height: 250px; } }

@media (min-width: 992px) {
  .slider .header-img .caption-wrapper {
    width: 870px; }
    .slider .header-img .caption-wrapper .carousel-caption {
      max-width: 100%; }
  .slider .header-img .owl-dots {
    display: block; }
  .slider.slider_big {
    min-height: 100vh; }
    .slider.slider_big .single-header, .slider.slider_big .amphi-slideshow, .slider.slider_big .amphi-no-slideshow {
      min-height: 100vh; }
      .slider.slider_big .single-header .header-img, .slider.slider_big .amphi-slideshow .header-img, .slider.slider_big .amphi-no-slideshow .header-img {
        min-height: 100vh; }
  .slider.slider_small {
    min-height: 300px; }
    .slider.slider_small .single-header, .slider.slider_small .amphi-slideshow, .slider.slider_small .amphi-no-slideshow {
      min-height: 300px; }
      .slider.slider_small .single-header .header-img, .slider.slider_small .amphi-slideshow .header-img, .slider.slider_small .amphi-no-slideshow .header-img {
        min-height: 300px; } }

@media (min-width: 1050px) {
  .slider .owl-nav {
    display: block; } }

@media (min-width: 1062px) {
  .slider .header-img .caption-wrapper {
    width: 940px; }
  .slider .owl-nav {
    display: none; } }

@media (min-width: 1120px) {
  .slider .owl-nav {
    display: block; } }

@media (min-width: 1200px) {
  .slider .header-img .caption-wrapper {
    width: 1070px; }
  .slider .owl-nav {
    display: none; }
  .slider.slider_big {
    min-height: 100vh; }
    .slider.slider_big .single-header, .slider.slider_big .amphi-slideshow, .slider.slider_big .amphi-no-slideshow {
      min-height: 100vh; }
      .slider.slider_big .single-header .header-img, .slider.slider_big .amphi-slideshow .header-img, .slider.slider_big .amphi-no-slideshow .header-img {
        min-height: 100vh; }
  .slider.slider_small {
    min-height: 300px; }
    .slider.slider_small .single-header, .slider.slider_small .amphi-slideshow, .slider.slider_small .amphi-no-slideshow {
      min-height: 300px; }
      .slider.slider_small .single-header .header-img, .slider.slider_small .amphi-slideshow .header-img, .slider.slider_small .amphi-no-slideshow .header-img {
        min-height: 300px; } }

@media (min-width: 1250px) {
  .slider .owl-nav {
    display: block; } }

@media (min-width: 1270px) {
  .slider .header-img .caption-wrapper {
    width: 1140px; }
  .slider .owl-nav {
    display: none; } }

@media (min-width: 1320px) {
  .slider .owl-nav {
    display: block; } }

.slider__big-caption-center .header-img .caption-wrapper {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  .slider__big-caption-center .header-img .caption-wrapper .carousel-caption {
    text-align: center; }

.slider__big-caption-left .header-img .caption-wrapper {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start; }
  .slider__big-caption-left .header-img .caption-wrapper .carousel-caption {
    text-align: left; }

.slider__big-caption-right .header-img .caption-wrapper {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end; }
  .slider__big-caption-right .header-img .caption-wrapper .carousel-caption {
    text-align: right; }

.slider__small-caption-center .header-img .caption-wrapper {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  .slider__small-caption-center .header-img .caption-wrapper .carousel-caption {
    text-align: center; }

.slider__small-caption-left .header-img .caption-wrapper {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start; }
  .slider__small-caption-left .header-img .caption-wrapper .carousel-caption {
    text-align: left; }

.slider__small-caption-right .header-img .caption-wrapper {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end; }
  .slider__small-caption-right .header-img .caption-wrapper .carousel-caption {
    text-align: right; }

/* BUTTONS */
a.btn-default, .btn-default,
a.btn-primary, .btn-primary,
a.btn-custom, .btn-custom {
  color: #fff;
  background-color: #c00016;
  border: 1px solid #c00016;
  border-radius: 0;
  margin-top: 18px;
  -webkit-box-shadow: 0 0.7px 1.3px rgba(0, 0, 0, 0.05), 0 1.6px 3.2px rgba(0, 0, 0, 0.066), 0 3px 6px rgba(0, 0, 0, 0.062), 0 5.4px 10.7px rgba(0, 0, 0, 0.06), 0 10px 20.1px rgba(0, 0, 0, 0.02), 0 24px 48px rgba(0, 0, 0, 0.014);
          box-shadow: 0 0.7px 1.3px rgba(0, 0, 0, 0.05), 0 1.6px 3.2px rgba(0, 0, 0, 0.066), 0 3px 6px rgba(0, 0, 0, 0.062), 0 5.4px 10.7px rgba(0, 0, 0, 0.06), 0 10px 20.1px rgba(0, 0, 0, 0.02), 0 24px 48px rgba(0, 0, 0, 0.014);
  display: inline-block;
  font-family: "Open Sans", sans-serif;
  padding: 8px 30px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1), box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1), box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1); }
  a.btn-default:before, .btn-default:before,
  a.btn-primary:before, .btn-primary:before,
  a.btn-custom:before, .btn-custom:before {
    content: "";
    font: normal normal normal 14px/1 FontAwesome;
    display: inline-block;
    font-style: normal;
    font-weight: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    margin-right: 10px; }
  a.btn-default:after, .btn-default:after,
  a.btn-primary:after, .btn-primary:after,
  a.btn-custom:after, .btn-custom:after {
    content: none; }
  a.btn-default:hover, a.btn-default:focus, a.btn-default:active, a.btn-default.active, .btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active,
  a.btn-primary:hover,
  a.btn-primary:focus,
  a.btn-primary:active,
  a.btn-primary.active, .btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active,
  a.btn-custom:hover,
  a.btn-custom:focus,
  a.btn-custom:active,
  a.btn-custom.active, .btn-custom:hover, .btn-custom:focus, .btn-custom:active, .btn-custom.active {
    color: #fff;
    background-color: #8d0010;
    border: 1px solid #8d0010;
    -webkit-box-shadow: 0 1.8px 12.2px rgba(0, 0, 0, 0.1), 0 4.4px 21.5px rgba(0, 0, 0, 0.072), 0 8.3px 27.6px rgba(0, 0, 0, 0.06), 0 14.7px 30.7px rgba(0, 0, 0, 0.05), 0 27.6px 32.1px rgba(0, 0, 0, 0.04), 0 66px 48px rgba(0, 0, 0, 0.028);
            box-shadow: 0 1.8px 12.2px rgba(0, 0, 0, 0.1), 0 4.4px 21.5px rgba(0, 0, 0, 0.072), 0 8.3px 27.6px rgba(0, 0, 0, 0.06), 0 14.7px 30.7px rgba(0, 0, 0, 0.05), 0 27.6px 32.1px rgba(0, 0, 0, 0.04), 0 66px 48px rgba(0, 0, 0, 0.028);
    -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
    transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
    transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1), box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
    transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1), box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1); }

/* SUCH BUTTONS */
.search-btn .btn-primary:after {
  content: none; }

/* GLOSSAR BUTTONS */
.Special_Glossary .list-inline li a.btn:before, .Special_Glossary .list-inline li a.btn:after {
  display: none; }

/* ZURÜCK BUTTONS */
a.btn-back:before, .btn-back:before {
  content: "";
  font: normal normal normal 14px/1 FontAwesome;
  display: inline-block;
  font-style: normal;
  font-weight: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  margin-right: 10px; }

a.btn-back:after, .btn-back:after {
  content: none; }

/* ICON BUTTONS */
a.btn-icon:before, a.btn-icon:after, .btn-icon:before, .btn-icon:after {
  display: none; }

/* HEADLINE */
.headline1 {
  font-size: 2.2rem;
  font-family: "Open Sans", sans-serif;
  line-height: 1.2;
  margin: 0 0 10px 0;
  font-weight: 700;
  color: inherit; }

.headline2 {
  font-size: 1.5rem;
  font-family: "Open Sans", sans-serif;
  line-height: 1.2;
  margin-bottom: 10px;
  font-weight: 600;
  color: #c00016; }

.headline3 {
  font-size: 1.4625rem;
  font-family: "Open Sans", sans-serif;
  line-height: 1.2;
  margin-bottom: 10px;
  font-weight: 600;
  color: inherit; }

.headline4 {
  font-size: 1.4625rem;
  font-family: "Open Sans", sans-serif;
  line-height: 1.2;
  margin-bottom: 10px;
  font-weight: 500;
  color: inherit; }

.headline5 {
  font-size: 1.40625rem;
  font-family: "Open Sans", sans-serif;
  line-height: 1.2;
  margin-bottom: 10px;
  font-weight: 500;
  color: inherit; }

.headline6 {
  font-size: 1.125rem;
  font-family: "Open Sans", sans-serif;
  line-height: 1.2;
  margin-bottom: 10px;
  font-weight: 500;
  color: inherit; }

/* LINKS */
a {
  color: #c00016;
  text-decoration: none; }
  a, a:visited, a:focus, a:active, a:hover {
    outline: 0 none !important;
    -webkit-transition: color 0.3s cubic-bezier(0.55, 0, 0.1, 1);
    transition: color 0.3s cubic-bezier(0.55, 0, 0.1, 1); }
  a:hover, a:focus {
    color: #c5c7c8;
    text-decoration: none; }

/* MOBILE NAVIGATION */
.mobile-nav,
.mobile-nav.type-collapse {
  background: #fff; }
  .mobile-nav .level-1,
  .mobile-nav.type-collapse .level-1 {
    background: #fff; }
    .mobile-nav .level-1 > li a,
    .mobile-nav.type-collapse .level-1 > li a {
      font-family: "Open Sans", sans-serif;
      font-size: 1.125rem;
      font-weight: 600;
      color: #666666;
      text-transform: none;
      padding: 10px 15px;
      line-height: 1.5; }
    .mobile-nav .level-1 > li.active > a,
    .mobile-nav.type-collapse .level-1 > li.active > a {
      color: #c00016; }
    .mobile-nav .level-1 > li span.dropdown-toggle,
    .mobile-nav.type-collapse .level-1 > li span.dropdown-toggle {
      background-color: #fff;
      border-left-color: #d9d9d9;
      color: #444;
      width: 50px;
      height: 100%;
      padding: 10px 15px;
      line-height: 1.5; }
    .mobile-nav .level-1 > li.dropdown-entry.opened,
    .mobile-nav.type-collapse .level-1 > li.dropdown-entry.opened {
      background-color: #fff; }
      .mobile-nav .level-1 > li.dropdown-entry.opened span.dropdown-toggle,
      .mobile-nav.type-collapse .level-1 > li.dropdown-entry.opened span.dropdown-toggle {
        background-color: #fff;
        border-left-color: #d9d9d9;
        color: #444;
        width: 50px;
        height: 100%;
        padding: 10px 15px;
        line-height: 1.5; }
    .mobile-nav .level-1 > li ul li.dropdown-entry.opened,
    .mobile-nav.type-collapse .level-1 > li ul li.dropdown-entry.opened {
      background-color: #fff; }
    .mobile-nav .level-1 > li ul li a,
    .mobile-nav.type-collapse .level-1 > li ul li a {
      font-size: 1.125rem;
      font-weight: 600;
      color: #666666;
      padding: 10px 15px;
      border-bottom: none;
      letter-spacing: 0.2px;
      line-height: 1.5; }
      .mobile-nav .level-1 > li ul li a:before,
      .mobile-nav.type-collapse .level-1 > li ul li a:before {
        content: "";
        font: normal normal normal 14px/1 FontAwesome;
        display: inline-block;
        font-style: normal;
        font-weight: normal;
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        -webkit-transform: translate(0, 0);
                transform: translate(0, 0);
        margin-right: 10px; }
      .mobile-nav .level-1 > li ul li a:after,
      .mobile-nav.type-collapse .level-1 > li ul li a:after {
        content: none; }
    .mobile-nav .level-1 > li ul li.active > a,
    .mobile-nav.type-collapse .level-1 > li ul li.active > a {
      color: #c00016; }
    .mobile-nav .level-1 > li ul li ul li a,
    .mobile-nav.type-collapse .level-1 > li ul li ul li a {
      font-weight: 400;
      padding-left: 30px; }
    .mobile-nav .level-1 > li ul li ul li.active > a,
    .mobile-nav.type-collapse .level-1 > li ul li ul li.active > a {
      color: #c00016; }
    .mobile-nav .level-1 > li ul li ul li ul li a,
    .mobile-nav.type-collapse .level-1 > li ul li ul li ul li a {
      padding-left: 45px; }
    .mobile-nav .level-1 > li ul li ul li ul li.active > a,
    .mobile-nav.type-collapse .level-1 > li ul li ul li ul li.active > a {
      color: #c00016; }
    .mobile-nav .level-1 > li ul li ul li ul li ul li a,
    .mobile-nav.type-collapse .level-1 > li ul li ul li ul li ul li a {
      padding-left: 60px; }
    .mobile-nav .level-1 > li ul li ul li ul li ul li.active > a,
    .mobile-nav.type-collapse .level-1 > li ul li ul li ul li ul li.active > a {
      color: #c00016; }

/* SELECT COLOR */
::selection {
  background-color: #c00016;
  color: #fff; }

::-moz-selection {
  background-color: #c00016;
  color: #fff; }

/* BASIC HTML/BODY */
html {
  font-size: 100%;
  scroll-behavior: smooth; }

body {
  font-family: "Mukta", sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 400;
  color: #666666;
  background-color: #fff; }

/* THUMBNAILS */
.thumbnail {
  padding: 0;
  border: 0;
  background-color: transparent; }
  .thumbnail > a {
    opacity: 1;
    -webkit-transition: opacity 0.3s cubic-bezier(0.55, 0, 0.1, 1);
    transition: opacity 0.3s cubic-bezier(0.55, 0, 0.1, 1); }
    .thumbnail > a:hover {
      opacity: 0.7; }

/* ==================================================================================================== BASIC ======= */
/* =================================================================================================== HEADER ======= */
.header-addon-top {
  position: absolute;
  width: 100%;
  z-index: 400; }

.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 800;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1); }
  .header .header_content {
    color: #fff; }
  .header .hamburger {
    -webkit-transition: padding 0.5s cubic-bezier(0.55, 0, 0.1, 1);
    transition: padding 0.5s cubic-bezier(0.55, 0, 0.1, 1);
    padding: 0 15px;
    min-height: auto; }
  .header.fixed {
    position: fixed;
    top: 0 !important;
    background-color: #c00016; }
    .header.fixed .header_content {
      font-size: 0.85rem; }
    .header.fixed.logo-wrapper {
      padding: 25px 0; }
    .header.fixed .logo img {
      max-width: 75%; }
  .header .navbar {
    min-height: auto; }
    .header .navbar .navbar-toggle {
      min-height: auto; }

/* NAVIGATION RESPONSIVE WRAPPER */
.navigation-responsive-wrapper-top {
  background-color: #c00016; }

/* ==================================================================================================== SLIDER ======= */
/* ================================================================================================== CONTENT ======= */
/* =================================================================================================== FOOTER ======= */
/* ================================================================================================= EDITMODE ======= */
body#editMode .adminModuleHeaderBar div b {
  top: -7px; }

body#editMode .editButton {
  z-index: 400; }

/* ============================================================================================ MEDIA QUERIES ======= */
@media (min-width: 768px) {
  .container {
    width: 750px; } }

@media (min-width: 992px) {
  .container {
    width: 900px; } }

@media (min-width: 1062px) {
  .container {
    width: 970px; } }

@media (min-width: 1200px) {
  .container {
    width: 1100px; } }

@media (min-width: 1270px) {
  .container {
    width: 1170px; } }

@media (max-width: 1199px) {
  html {
    font-size: 95%; }
  .header .top-nav .main-nav.level-1 > li > span > a {
    font-size: 15px;
    padding: 5px 5px; } }

@media (max-width: 991px) {
  html {
    font-size: 90%; } }

@media (max-width: 767px) {
  html {
    font-size: 80%; }
  .header.logo-wrapper {
    padding: 0; } }

/* ==================================================================================================== BASIC ======= */
/* ===== CONTAINER WIDTH ===== */
@media (min-width: 1370px) {
  .container {
    width: 1270px; }
  .slider .header-img .caption-wrapper {
    width: 1240px; } }

@media (min-width: 1470px) {
  .container {
    width: 1370px; }
  .slider .header-img .caption-wrapper {
    width: 1340px; } }

@media (min-width: 1570px) {
  .container {
    width: 1470px; }
  .slider .header-img .caption-wrapper {
    width: 1440px; } }

@media (min-width: 1670px) {
  .slider .header-img .caption-wrapper {
    width: 100%;
    padding: 0 0 0 8%; } }

.content .content_content-background-inner {
  padding: 100px 0 70px 0; }

.footer .footer_background-inner {
  padding: 100px 0 70px 0; }

.footer-addon-top .footer-addon-top_background-inner {
  padding: 100px 0 70px 0; }

.headline1, .h1, h1 {
  text-transform: uppercase; }

body {
  overflow-x: hidden; }

/* =================================================================================================== HEADER ======= */
header .header.header__logo-left-nav-right {
  position: fixed;
  background: rgba(255, 255, 255, 0.95);
  padding: 0; }
  header .header.header__logo-left-nav-right .logo-wrapper {
    position: absolute;
    top: 20px; }
    header .header.header__logo-left-nav-right .logo-wrapper .logo {
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex; }
      header .header.header__logo-left-nav-right .logo-wrapper .logo a {
        display: block; }
        header .header.header__logo-left-nav-right .logo-wrapper .logo a:before {
          content: "";
          position: absolute;
          top: 68px;
          right: 280px;
          width: 1000px;
          height: 5px;
          background: #c5c7c8; }
        header .header.header__logo-left-nav-right .logo-wrapper .logo a:after {
          content: "";
          position: absolute;
          top: 68px;
          left: 240px;
          width: 2500px;
          height: 5px;
          background: #c5c7c8; }
        header .header.header__logo-left-nav-right .logo-wrapper .logo a svg {
          position: relative;
          left: -40px;
          width: 280px;
          -webkit-transition: width 0.5s cubic-bezier(0.55, 0, 0.1, 1);
          transition: width 0.5s cubic-bezier(0.55, 0, 0.1, 1); }
  header .header.header__logo-left-nav-right .top-nav .navigation.level-1 > li ul {
    max-height: 0vh;
    -webkit-transition: opacity 0.8s cubic-bezier(0.55, 0, 0.1, 1), max-height 0.8s cubic-bezier(0.55, 0, 0.1, 1);
    transition: opacity 0.8s cubic-bezier(0.55, 0, 0.1, 1), max-height 0.8s cubic-bezier(0.55, 0, 0.1, 1); }
  header .header.header__logo-left-nav-right .top-nav .navigation.level-1 > li:hover ul {
    max-height: 70vh;
    -webkit-transition: opacity 0.8s cubic-bezier(0.55, 0, 0.1, 1), max-height 0.8s cubic-bezier(0.55, 0, 0.1, 1);
    transition: opacity 0.8s cubic-bezier(0.55, 0, 0.1, 1), max-height 0.8s cubic-bezier(0.55, 0, 0.1, 1); }
  header .header.header__logo-left-nav-right.fixed .logo-wrapper .logo a svg {
    width: 280px;
    max-width: 100%;
    -webkit-transition: width 0.5s cubic-bezier(0.55, 0, 0.1, 1);
    transition: width 0.5s cubic-bezier(0.55, 0, 0.1, 1); }

/* =================================================================================================== SLIDER ======= */
.slider.slider_big .single-header, .slider.slider_big .amphi-slideshow, .slider.slider_big .amphi-no-slideshow {
  min-height: 100vh; }

.slider.slider_big .header-img {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end; }
  .slider.slider_big .header-img .caption-wrapper .carousel-caption {
    margin: 60px 0 150px 0;
    max-width: 800px;
    position: relative; }
    .slider.slider_big .header-img .caption-wrapper .carousel-caption:before {
      content: "";
      background: url(/_media/themes/1/layout/slider-caption-background-element.svg);
      background-size: contain;
      position: absolute;
      left: -220px;
      top: -245px;
      right: -50px;
      bottom: 50px;
      background-repeat: no-repeat;
      background-position: center;
      -webkit-transform: rotate(-197deg);
              transform: rotate(-197deg);
      z-index: -1;
      opacity: 0.5; }
    .slider.slider_big .header-img .caption-wrapper .carousel-caption .headline1 {
      font-size: 1.3rem;
      font-weight: 500;
      text-transform: none; }
    .slider.slider_big .header-img .caption-wrapper .carousel-caption .headline2 {
      font-size: 4rem;
      text-transform: uppercase;
      font-weight: 800;
      margin-bottom: 30px; }
  .slider.slider_big .header-img:after {
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.95)), color-stop(70%, rgba(255, 255, 255, 0.2)));
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.95) 0%, rgba(255, 255, 255, 0.2) 70%); }

.slider.slider_small .single-header, .slider.slider_small .amphi-slideshow, .slider.slider_small .amphi-no-slideshow {
  min-height: 300px; }

/* ================================================================================================== CONTENT ======= */
/* =================================================================================================== FOOTER ======= */
.footer .module-style__text-white a:visited, .footer .module-style__text-white a:focus, .footer .module-style__text-white a:active, .footer .module-style__text-white a:hover {
  opacity: 1; }

/* ====================================================================================== BAUSTEINEINSTELLUNG ======= */
.module-style__smaller-module-wrapper {
  max-width: 900px;
  margin: 0 auto 30px auto; }

.module-style__vertical-center .module-content-block > .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

.module-style__start-teaser-text-right .module-content-block .row.hidden-xs > [class*="col-"]:last-child {
  background: #FFF;
  padding: 50px;
  position: absolute;
  left: calc(50% - 80px);
  width: calc(50% + 65px); }

.module-style__start-teaser-text-right .module-content-block .row.hidden-xs > [class*="col-"] .thumbnail {
  margin: 0; }

.module-style__start-teaser-text-right .module-content-block .row.visible-xs {
  margin: 0; }
  .module-style__start-teaser-text-right .module-content-block .row.visible-xs > [class*="col-"] {
    background: rgba(255, 255, 255, 0.65);
    padding: 15px; }

.module-style__start-teaser-text-left .module-content-block .row.hidden-xs > [class*="col-"]:first-child {
  background: #FFF;
  padding: 50px;
  position: absolute;
  left: 15px;
  width: calc(50% + 80px);
  z-index: 1; }

.module-style__start-teaser-text-left .module-content-block .row.hidden-xs > [class*="col-"]:last-child {
  margin-left: 50%; }

.module-style__start-teaser-text-left .module-content-block .row.hidden-xs > [class*="col-"] .thumbnail {
  margin: 0; }

.module-style__start-teaser-text-left .module-content-block .row.visible-xs {
  margin: 0; }
  .module-style__start-teaser-text-left .module-content-block .row.visible-xs > [class*="col-"] {
    background: rgba(255, 255, 255, 0.65);
    padding: 15px; }

.module-style__contact-form-styling .form-control {
  height: 45px;
  padding: 12px 12px; }
  .module-style__contact-form-styling .form-control::-webkit-input-placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #777;
    opacity: 1;
    /* Firefox */ }
  .module-style__contact-form-styling .form-control:-ms-input-placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #777;
    opacity: 1;
    /* Firefox */ }
  .module-style__contact-form-styling .form-control::-ms-input-placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #777;
    opacity: 1;
    /* Firefox */ }
  .module-style__contact-form-styling .form-control::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #777;
    opacity: 1;
    /* Firefox */ }
  .module-style__contact-form-styling .form-control:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #777; }
  .module-style__contact-form-styling .form-control::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #777; }

.module-style__contact-form-styling .g-recaptcha > div {
  margin: 0 auto; }

.module-style__contact-form-styling .form-group:last-child {
  text-align: center; }

.module-style__fadeInUp .module-content-block {
  opacity: 0; }

/* ============================================================================ NAVIGATION RESPONSIVE WRAPPER ======= */
.navigation-responsive-wrapper-top {
  background-color: #FFF;
  padding: 25px 0; }
  .navigation-responsive-wrapper-top a {
    position: relative; }
    .navigation-responsive-wrapper-top a:before {
      content: "";
      position: absolute;
      top: 3.3rem;
      right: 170px;
      width: 800px;
      height: 0.28rem;
      background: #c5c7c8; }
    .navigation-responsive-wrapper-top a:after {
      content: "";
      position: absolute;
      top: 3.3rem;
      left: 170px;
      width: 500px;
      height: 0.28rem;
      background: #c5c7c8; }
    .navigation-responsive-wrapper-top a svg {
      width: 100%;
      max-width: 200px; }

/* ================================================================================================= EDITMODE ======= */
.subtemplate__slider__small-caption-left #editMode header .header.header__logo-left-nav-right {
  position: -webkit-sticky;
  position: sticky; }

/* ============================================================================================ MEDIA QUERIES ======= */
@media (max-width: 1369px) {
  header .header.header__logo-left-nav-right .logo-wrapper .logo a:before {
    top: 67px; }
  header .header.header__logo-left-nav-right .logo-wrapper .logo a:after {
    top: 67px;
    left: 235px; }
  .header .top-nav .navigation > li > ul {
    border-top: 4px solid #c5c7c8; } }

@media (max-width: 1269px) {
  header .header.header__logo-left-nav-right .logo-wrapper .logo a {
    position: relative;
    top: 5px; }
    header .header.header__logo-left-nav-right .logo-wrapper .logo a:before {
      top: 63px;
      height: 4px; }
    header .header.header__logo-left-nav-right .logo-wrapper .logo a:after {
      top: 63px;
      left: 215px;
      height: 4px; }
  .header .top-nav .navigation.main-nav.level-1 > li > span > a {
    padding: 35px 20px; } }

@media (max-width: 1199px) {
  header .header.header__logo-left-nav-right .logo-wrapper .logo a {
    top: 2px; }
    header .header.header__logo-left-nav-right .logo-wrapper .logo a:before {
      top: 55px;
      right: 250px; }
    header .header.header__logo-left-nav-right .logo-wrapper .logo a:after {
      top: 55px;
      left: 180px; }
  .header .top-nav .navigation.main-nav.level-1 > li > span > a {
    font-size: 1.125rem;
    padding: 30px 15px; }
  .slider.slider_big .single-header, .slider.slider_big .amphi-slideshow, .slider.slider_big .amphi-no-slideshow {
    min-height: 100vh; }
  .slider.slider_small .single-header, .slider.slider_small .amphi-slideshow, .slider.slider_small .amphi-no-slideshow {
    min-height: 300px; }
  .module-style__start-teaser-text-right .module-content-block .row.hidden-xs > [class*="col-"]:last-child {
    padding: 25px; }
  .module-style__start-teaser-text-left .module-content-block .row.hidden-xs > [class*="col-"]:first-child {
    padding: 25px; } }

@media (max-width: 1061px) {
  header .header.header__logo-left-nav-right .logo-wrapper .logo a {
    top: -5px; }
    header .header.header__logo-left-nav-right .logo-wrapper .logo a:before {
      top: 51px;
      height: 4px; }
    header .header.header__logo-left-nav-right .logo-wrapper .logo a:after {
      top: 52px;
      left: 160px;
      height: 3px; }
  .header .top-nav .navigation.main-nav.level-1 > li > span > a {
    padding: 25px 15px; } }

@media (max-width: 991px) {
  header .header.header__logo-left-nav-right .logo-wrapper .logo a {
    top: -1px; }
    header .header.header__logo-left-nav-right .logo-wrapper .logo a:before {
      top: 68px;
      right: 300px;
      height: 5px; }
    header .header.header__logo-left-nav-right .logo-wrapper .logo a:after {
      top: 68px;
      left: 220px;
      height: 5px; }
  .content .content_content-background-inner {
    padding: 40px 0 10px 0; }
  .footer .footer_background-inner {
    padding: 40px 0 10px 0; }
  .footer-addon-top .footer-addon-top_background-inner {
    padding: 40px 0 10px 0; }
  .header .top-nav .navbar {
    padding: 29px 0; }
  .slider.slider_big .single-header, .slider.slider_big .amphi-slideshow, .slider.slider_big .amphi-no-slideshow {
    min-height: 85vh; }
  .slider.slider_small .single-header, .slider.slider_small .amphi-slideshow, .slider.slider_small .amphi-no-slideshow {
    min-height: 250px; } }

@media (max-width: 767px) {
  .headline1, .h1, h1 {
    font-size: 1.55rem; }
  .headline2, .h2, h2 {
    font-size: 1.25rem; }
  header .header.header__logo-left-nav-right .logo-wrapper .logo a:before {
    display: none; }
  header .header.header__logo-left-nav-right .logo-wrapper .logo a:after {
    left: 160px;
    top: 3.79rem;
    height: 0.28rem; }
  header .header.header__logo-left-nav-right .logo-wrapper .logo a svg {
    width: 200px;
    max-width: 100%;
    left: -28px; }
  header .header.header__logo-left-nav-right .top-nav .navbar {
    padding: 20px 0; }
  header .header.header__logo-left-nav-right.fixed .logo-wrapper .logo a svg {
    width: 200px; }
  .slider.slider_big .single-header, .slider.slider_big .amphi-slideshow, .slider.slider_big .amphi-no-slideshow {
    min-height: 75vh; }
  .slider.slider_big .header-img .caption-wrapper {
    width: 100%; }
    .slider.slider_big .header-img .caption-wrapper .carousel-caption {
      margin: 130px 0 50px 0; }
      .slider.slider_big .header-img .caption-wrapper .carousel-caption .headline1 {
        font-size: 1rem; }
      .slider.slider_big .header-img .caption-wrapper .carousel-caption .headline2 {
        font-size: 2.125rem;
        margin-bottom: 10px; }
      .slider.slider_big .header-img .caption-wrapper .carousel-caption:before {
        left: -110px;
        top: -100px;
        right: -50px;
        bottom: 20px; }
  .slider.slider_small .single-header, .slider.slider_small .amphi-slideshow, .slider.slider_small .amphi-no-slideshow {
    min-height: 250px; }
  .navigation-responsive-wrapper-top a:before {
    top: 3.8rem;
    height: 0.225rem; }
  .navigation-responsive-wrapper-top a:after {
    top: 3.8rem;
    height: 0.225rem; } }

/*# sourceMappingURL=maps/custom.css.map */
