@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
 */
/*
  * Mixin zur Ausgabe der der Breakpoints
  *
  * Breakpoint Mediaquery werden erstellt und ausgegeben. $nc_breakpoint definiert den auszugebenden Breakpoint.
  * Mit dem $key setzt man die min oder max width. Zudem kann noch efiniert werden ob der orientation mode
  * berücksichtig werden soll.
  *
  * @param: $nc_breakpoint Breakpoint größe - Standard: md | sm | md | md-custom | lg | xl | xxl | xxxxl | xxxxxl
  * @param: $key min oder max widht ausgabe - Standard: min | max
  * @param: $orientation Orientation aktivieren - Standard: false | landscape | portrait
  *
 */
/*  Internet Explorer < 9
*/
@font-face {
  font-family: "InfoText";
  src: url("../fonts/InfoTextWeb.eot");
  font-display: swap;
}
@font-face {
  font-family: "InfoTextBook";
  src: url("../fonts/InfoTextWeb-Book.eot");
  font-display: swap;
}
/* WOFF-capable browsers
*/
@font-face {
  font-family: "InfoText";
  src: url("../fonts/InfoTextWeb.woff") format("woff");
  font-weight: "400";
  font-display: swap;
}
@font-face {
  font-family: "InfoTextBook";
  src: url("../fonts/InfoTextWeb-Book.woff") format("woff");
  font-weight: "500";
  font-display: swap;
}
@font-face {
  font-family: "InfoText";
  font-style: normal;
  font-display: swap;
  src: url(../fonts/InfoTextWeb.woff2) format("woff2");
  font-weight: 400;
}
@font-face {
  font-family: "InfoText";
  src: url("../fonts/InfoOTText-Semibold.eot");
  src: url("../fonts/InfoOTText-Semibold.eot?#iefix") format("embedded-opentype"), url("../fonts/InfoOTText-Semibold.woff2") format("woff2"), url("../fonts/InfoOTText-Semibold.woff") format("woff"), url("../fonts/InfoOTText-Semibold.ttf") format("truetype"), url("../fonts/InfoOTText-Semibold.svg#InfoOTText-Semibold") format("svg");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "InfoText";
  src: url("../fonts/InfoOTText-Bold.eot");
  src: url("../fonts/InfoOTText-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/InfoOTText-Bold.woff2") format("woff2"), url("../fonts/InfoOTText-Bold.woff") format("woff"), url("../fonts/InfoOTText-Bold.ttf") format("truetype"), url("../fonts/InfoOTText-Bold.svg#InfoOTText-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "InfoText";
  src: url("../fonts/InfoOTText-Medium.eot");
  src: url("../fonts/InfoOTText-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/InfoOTText-Medium.woff2") format("woff2"), url("../fonts/InfoOTText-Medium.woff") format("woff"), url("../fonts/InfoOTText-Medium.ttf") format("truetype"), url("../fonts/InfoOTText-Medium.svg#InfoOTText-Medium") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
/* ==================================================================================================== BASIC ======= */
/* ================================================================================================== BUTTONS ======= */
/* ================================================================================================ HEADLINES ======= */
/* =================================================================================================== TEASER ======= */
/* =================================================================================================== HEADER ======= */
/* =================================================================================================== SLIDER ======= */
/* ==================================================================================== BREAKPOINTS MAP WIDTH ======= */
/* ============================================================================== BREAKPOINTS CONTAINER WIDTH ======= */
/* ============================================================================== BREAKPOINTS CAPTION PADDING ======= */
/* ================================================================================= BREAKPOINT DEFAULT WIDTH ======= */
/*! 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 */
}

span[lang] {
  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;
}
img.img-responsive.lazyload {
  width: 100%;
  aspect-ratio: attr(width)/attr(height);
}

/**
 * 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 (-webkit-min-device-pixel-ratio: 0), 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;
  }
}
/* ==================================================================================================== BASIC ======= */
/* =================================================================================================== HEADER ======= */
/* ==================================================================================================== BASIC ======= */
/* ==================================================================================================== LINKS ======= */
/* ================================================================================================ HEADLINES ======= */
/* =================================================================================================== HEADER ======= */
/* =================================================================================================== SLIDER ======= */
/* ================================================================================================== CONTENT ======= */
/* =============================================================================================== MOBILE NAV ======= */
/* =================================================================================================== FOOTER ======= */
.module-style__match-height-content-gallery.Content_Gallery .slider-text-below-image.amphi-slideshow .owl-carousel .owl-stage-outer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.module-style__match-height-content-gallery.Content_Gallery .slider-text-below-image.amphi-slideshow .owl-carousel .owl-stage-outer .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.module-style__match-height-content-gallery.Content_Gallery .slider-text-below-image.amphi-slideshow .owl-carousel .owl-stage-outer .owl-stage .owl-item {
  height: 100%;
}
.module-style__match-height-content-gallery.Content_Gallery .slider-text-below-image.amphi-slideshow .owl-carousel .owl-stage-outer .owl-stage .owl-item .header-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}

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

@font-face {
  font-family: "Merriweather";
  font-style: italic;
  font-weight: 300;
  font-display: fallback;
  src: url(../fonts/Merriweather-italic-300.woff) format("woff");
  unicode-range: U+0-10FFFF;
}
@font-face {
  font-family: "Merriweather";
  font-style: italic;
  font-weight: 400;
  font-display: fallback;
  src: url(../fonts/Merriweather-italic-400.woff) format("woff");
  unicode-range: U+0-10FFFF;
}
@font-face {
  font-family: "Merriweather";
  font-style: italic;
  font-weight: 700;
  font-display: fallback;
  src: url(../fonts/Merriweather-italic-700.woff) format("woff");
  unicode-range: U+0-10FFFF;
}
@font-face {
  font-family: "Merriweather";
  font-style: italic;
  font-weight: 900;
  font-display: fallback;
  src: url(../fonts/Merriweather-italic-900.woff) format("woff");
  unicode-range: U+0-10FFFF;
}
@font-face {
  font-family: "Merriweather";
  font-style: normal;
  font-weight: 300;
  font-display: fallback;
  src: url(../fonts/Merriweather-normal-300.woff) format("woff");
  unicode-range: U+0-10FFFF;
}
@font-face {
  font-family: "Merriweather";
  font-style: normal;
  font-weight: 400;
  font-display: fallback;
  src: url(../fonts/Merriweather-normal-400.woff) format("woff");
  unicode-range: U+0-10FFFF;
}
@font-face {
  font-family: "Merriweather";
  font-style: normal;
  font-weight: 700;
  font-display: fallback;
  src: url(../fonts/Merriweather-normal-700.woff) format("woff");
  unicode-range: U+0-10FFFF;
}
@font-face {
  font-family: "Merriweather";
  font-style: normal;
  font-weight: 900;
  font-display: fallback;
  src: url(../fonts/Merriweather-normal-900.woff) format("woff");
  unicode-range: U+0-10FFFF;
}
.editor-style__counterup {
  font-size: 1.90625rem;
  font-weight: 600;
  color: #000000;
}

.editor-style__wordmark {
  background: #000000;
  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: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
          box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  -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: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
          box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
.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__button-center p > .btn {
  position: relative;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.ccm-cookie-declaration .ccm-cookie-declaration--intro, .ccm-cookie-declaration .ccm-cookie-declaration--change-consent {
  margin-bottom: 30px;
}
.ccm-cookie-declaration .ccm-cookie-declaration--embedding {
  margin-bottom: 30px;
}
.ccm-cookie-declaration h2 {
  font-family: "Merriweather", serif;
  font-size: 3.85rem;
  font-weight: 900;
  color: #000000;
  line-height: 1.2;
  margin-bottom: 10px;
}
.ccm-cookie-declaration h3 {
  font-family: "Merriweather", serif;
  font-size: 2rem;
  font-weight: 900;
  color: #000000;
  line-height: 1.2;
  margin-bottom: 10px;
}
.ccm-cookie-declaration h4 {
  font-family: "Merriweather", serif;
  font-size: 1.25rem;
  font-weight: 900;
  color: #000000;
  line-height: 1.2;
  margin-bottom: 10px;
}
.ccm-cookie-declaration a {
  color: #000000;
}
.ccm-cookie-declaration a:hover, .ccm-cookie-declaration a:focus {
  color: #FFFFFF;
}
.ccm-cookie-declaration .ccm-cookie-declaration--change-consent a {
  color: #000000;
  background-color: #000000;
  border: 1px solid #000000;
  border-radius: 0;
  margin-top: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  display: inline-block;
  font-family: "Merriweather", serif;
  padding: 9px 15px 12px 15px;
  font-weight: 900;
  font-size: 1rem;
  text-decoration: none;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  font-style: italic;
  background: transparent;
  text-transform: uppercase;
}
.ccm-cookie-declaration .ccm-cookie-declaration--change-consent a:after {
  content: none;
}
.ccm-cookie-declaration .ccm-cookie-declaration--change-consent a:before {
  content: none;
}
.ccm-cookie-declaration .ccm-cookie-declaration--change-consent a:hover, .ccm-cookie-declaration .ccm-cookie-declaration--change-consent a:focus, .ccm-cookie-declaration .ccm-cookie-declaration--change-consent a:active, .ccm-cookie-declaration .ccm-cookie-declaration--change-consent a.active {
  color: #000;
  background-color: black;
  border: 1px solid #000000;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  background: transparent;
  margin-top: 0;
}
.ccm-cookie-declaration table {
  background-color: transparent;
}
.ccm-cookie-declaration th {
  text-align: left;
}
.ccm-cookie-declaration .ccm-cookie-declaration--embedding-assets-table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 21px;
}
.ccm-cookie-declaration .ccm-cookie-declaration--embedding-assets-table > thead > tr > th, .ccm-cookie-declaration .ccm-cookie-declaration--embedding-assets-table > thead > tr > td {
  padding: 6px;
  line-height: 1.5;
  vertical-align: top;
  border-top: 1px solid #e5e5e5;
}
.ccm-cookie-declaration .ccm-cookie-declaration--embedding-assets-table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #e5e5e5;
}
.ccm-cookie-declaration .ccm-cookie-declaration--embedding-assets-table > tbody > tr > th, .ccm-cookie-declaration .ccm-cookie-declaration--embedding-assets-table > tbody > tr > td {
  padding: 6px;
  line-height: 1.5;
  vertical-align: top;
  border-top: 1px solid #e5e5e5;
}
.ccm-cookie-declaration .ccm-cookie-declaration--embedding-assets-table > tfoot > tr > td {
  padding: 6px;
  line-height: 1.5;
  vertical-align: top;
  border-top: 1px solid #e5e5e5;
}
.ccm-cookie-declaration .ccm-cookie-declaration--embedding-assets-table > caption + thead > tr:first-child > th, .ccm-cookie-declaration .ccm-cookie-declaration--embedding-assets-table > caption + thead > tr:first-child > td {
  border-top: 0;
}
.ccm-cookie-declaration .ccm-cookie-declaration--embedding-assets-table > colgroup + thead > tr:first-child > th, .ccm-cookie-declaration .ccm-cookie-declaration--embedding-assets-table > colgroup + thead > tr:first-child > td {
  border-top: 0;
}
.ccm-cookie-declaration .ccm-cookie-declaration--embedding-assets-table > thead:first-child > tr:first-child > th, .ccm-cookie-declaration .ccm-cookie-declaration--embedding-assets-table > thead:first-child > tr:first-child > td {
  border-top: 0;
}
.ccm-cookie-declaration .ccm-cookie-declaration--table-wrapper.ccm--visible-mobile .ccm-cookie-declaration--embedding-asset--title {
  font-size: 1.625rem;
  font-weight: 600;
  margin-bottom: 5px;
}
.ccm-cookie-declaration .ccm-cookie-declaration--table-wrapper.ccm--visible-mobile .ccm-cookie-declaration--embedding-assets-list {
  margin-bottom: 10px;
}
.ccm-cookie-declaration .ccm-cookie-declaration--table-wrapper.ccm--visible-mobile .ccm-cookie-declaration--embedding-assets-list td {
  border-top: 1px solid #e5e5e5;
}
.ccm-cookie-declaration .ccm-cookie-declaration--table-wrapper.ccm--visible-mobile .ccm-cookie-declaration--embedding-assets-list tr:first-child td {
  border-top: 3px solid #e5e5e5;
}

.dark-ui body .ccm-cookie-declaration .ccm-cookie-declaration--change-consent a {
  color: #000000;
  background-color: #000000;
  border: 1px solid #000000;
  border-radius: 0;
  margin-top: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  display: inline-block;
  font-family: "Merriweather", serif;
  padding: 9px 15px 12px 15px;
  font-weight: 900;
  font-size: 1rem;
  text-decoration: none;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  font-style: italic;
  background: transparent;
  text-transform: uppercase;
}
.dark-ui body .ccm-cookie-declaration .ccm-cookie-declaration--change-consent a:after {
  content: none;
}
.dark-ui body .ccm-cookie-declaration .ccm-cookie-declaration--change-consent a:before {
  content: none;
}
.dark-ui body .ccm-cookie-declaration .ccm-cookie-declaration--change-consent a:hover, .dark-ui body .ccm-cookie-declaration .ccm-cookie-declaration--change-consent a:focus, .dark-ui body .ccm-cookie-declaration .ccm-cookie-declaration--change-consent a:active, .dark-ui body .ccm-cookie-declaration .ccm-cookie-declaration--change-consent a.active {
  color: #000;
  background-color: black;
  border: 1px solid #000000;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  margin-top: 0;
  background: transparent;
}
.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: "\f105";
  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: #000000;
  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: black;
  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: #FFFFFF;
  border: 1px solid #FFF;
  color: #444;
  border-radius: 0;
  opacity: 0.1;
}
.pagination > li.disabled > span:hover, .pagination > li.disabled > span:focus {
  background-color: #FFFFFF;
  border: 1px solid #FFF;
  color: #444;
  opacity: 0.1;
}
.pagination > li.active > span {
  background-color: #FFFFFF;
  border: 1px solid #FFFFFF;
  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: #e6e6e6;
  color: #444;
  -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: #FFFFFF;
  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;
}

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

@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__teaser-contact.variant-01 .module-content-block .thumbnail, .module-style__teaser-contact .module-content-block .thumbnail {
  margin: 0;
}
.module-style__teaser-contact.variant-01 .module-content-block .thumbnail img, .module-style__teaser-contact .module-content-block .thumbnail img {
  width: 100%;
  max-width: 300px;
  border-radius: 100%;
}
.module-style__teaser-contact.variant-01 .module-content-block .thumbnail .caption, .module-style__teaser-contact .module-content-block .thumbnail .caption {
  text-align: center;
}
.module-style__teaser-contact.variant-01 .module-content-block .text-wrapper .amphiicon, .module-style__teaser-contact .module-content-block .text-wrapper .amphiicon {
  position: relative;
  top: 5px;
  background: #000000;
  border-radius: 100%;
  text-align: center;
  width: 35px;
  height: 35px;
}
.module-style__teaser-contact.variant-01 .module-content-block .text-wrapper .amphiicon:before, .module-style__teaser-contact .module-content-block .text-wrapper .amphiicon:before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
}
.module-style__teaser-contact.variant-01 .module-content-block > .row.hidden-xs, .module-style__teaser-contact .module-content-block > .row.hidden-xs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.module-style__teaser-contact.variant-01 .module-content-block > .row.visible-xs > [class*=col-], .module-style__teaser-contact .module-content-block > .row.visible-xs > [class*=col-] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.module-style__teaser-contact.variant-01.Text_Link_TextImageLeft .module-content-block [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageLeft .module-content-block [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.variant-01.Text_TextImageLeft .module-content-block [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageLeft .module-content-block [class*=col-] > .text-wrapper > p {
  position: relative;
  padding-left: 45px;
  margin-bottom: 15px;
}
.module-style__teaser-contact.variant-01.Text_Link_TextImageLeft .module-content-block [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageLeft .module-content-block [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.variant-01.Text_TextImageLeft .module-content-block [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageLeft .module-content-block [class*=col-] > .text-wrapper > p > .amphiicon {
  position: absolute;
  top: -3px;
  left: 0;
}
.module-style__teaser-contact.variant-01.Text_Link_TextImageLeft .module-content-block [class*=col-] > p, .module-style__teaser-contact.Text_Link_TextImageLeft .module-content-block [class*=col-] > p, .module-style__teaser-contact.variant-01.Text_TextImageLeft .module-content-block [class*=col-] > p, .module-style__teaser-contact.Text_TextImageLeft .module-content-block [class*=col-] > p {
  margin: 0;
}
.module-style__teaser-contact.variant-01.Text_Link_TextImageLeft .module-content-block > .row.hidden-xs [class*=col-], .module-style__teaser-contact.Text_Link_TextImageLeft .module-content-block > .row.hidden-xs [class*=col-], .module-style__teaser-contact.variant-01.Text_TextImageLeft .module-content-block > .row.hidden-xs [class*=col-], .module-style__teaser-contact.Text_TextImageLeft .module-content-block > .row.hidden-xs [class*=col-] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.module-style__teaser-contact.variant-01.Text_Link_TextImageLeft .module-content-block > .row.hidden-xs [class*=col-]:first-child, .module-style__teaser-contact.Text_Link_TextImageLeft .module-content-block > .row.hidden-xs [class*=col-]:first-child, .module-style__teaser-contact.variant-01.Text_TextImageLeft .module-content-block > .row.hidden-xs [class*=col-]:first-child, .module-style__teaser-contact.Text_TextImageLeft .module-content-block > .row.hidden-xs [class*=col-]:first-child {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-right: 30px;
}
.module-style__teaser-contact.variant-01.Text_Link_TextImageLeft .module-content-block > .row.hidden-xs [class*=col-]:last-child, .module-style__teaser-contact.Text_Link_TextImageLeft .module-content-block > .row.hidden-xs [class*=col-]:last-child, .module-style__teaser-contact.variant-01.Text_TextImageLeft .module-content-block > .row.hidden-xs [class*=col-]:last-child, .module-style__teaser-contact.Text_TextImageLeft .module-content-block > .row.hidden-xs [class*=col-]:last-child {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-left: 30px;
}
.module-style__teaser-contact.variant-01.Text_Link_TextImageRight .module-content-block [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageRight .module-content-block [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.variant-01.Text_TextImageRight .module-content-block [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageRight .module-content-block [class*=col-] > .text-wrapper > p {
  position: relative;
  padding-right: 45px;
  margin-bottom: 15px;
  text-align: right;
}
.module-style__teaser-contact.variant-01.Text_Link_TextImageRight .module-content-block [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageRight .module-content-block [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.variant-01.Text_TextImageRight .module-content-block [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageRight .module-content-block [class*=col-] > .text-wrapper > p > .amphiicon {
  position: absolute;
  top: -3px;
  right: 0;
}
.module-style__teaser-contact.variant-01.Text_Link_TextImageRight .module-content-block [class*=col-] > p, .module-style__teaser-contact.Text_Link_TextImageRight .module-content-block [class*=col-] > p, .module-style__teaser-contact.variant-01.Text_TextImageRight .module-content-block [class*=col-] > p, .module-style__teaser-contact.Text_TextImageRight .module-content-block [class*=col-] > p {
  margin: 0;
}
.module-style__teaser-contact.variant-01.Text_Link_TextImageRight .module-content-block > .row.hidden-xs [class*=col-], .module-style__teaser-contact.Text_Link_TextImageRight .module-content-block > .row.hidden-xs [class*=col-], .module-style__teaser-contact.variant-01.Text_TextImageRight .module-content-block > .row.hidden-xs [class*=col-], .module-style__teaser-contact.Text_TextImageRight .module-content-block > .row.hidden-xs [class*=col-] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.module-style__teaser-contact.variant-01.Text_Link_TextImageRight .module-content-block > .row.hidden-xs [class*=col-]:first-child, .module-style__teaser-contact.Text_Link_TextImageRight .module-content-block > .row.hidden-xs [class*=col-]:first-child, .module-style__teaser-contact.variant-01.Text_TextImageRight .module-content-block > .row.hidden-xs [class*=col-]:first-child, .module-style__teaser-contact.Text_TextImageRight .module-content-block > .row.hidden-xs [class*=col-]:first-child {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-right: 30px;
}
.module-style__teaser-contact.variant-01.Text_Link_TextImageRight .module-content-block > .row.hidden-xs [class*=col-]:last-child, .module-style__teaser-contact.Text_Link_TextImageRight .module-content-block > .row.hidden-xs [class*=col-]:last-child, .module-style__teaser-contact.variant-01.Text_TextImageRight .module-content-block > .row.hidden-xs [class*=col-]:last-child, .module-style__teaser-contact.Text_TextImageRight .module-content-block > .row.hidden-xs [class*=col-]:last-child {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-left: 30px;
}
.module-style__teaser-contact.variant-01.Text_Link_TextImageRight .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageRight .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.variant-01.Text_TextImageRight .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageRight .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p {
  padding-left: 45px;
  padding-right: 0;
  text-align: left;
}
.module-style__teaser-contact.variant-01.Text_Link_TextImageRight .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageRight .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.variant-01.Text_TextImageRight .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageRight .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon {
  left: 0;
  right: auto;
}
.module-style__teaser-contact.variant-01.Text_Link_TextImageCenter .module-content-block [class*=col-], .module-style__teaser-contact.Text_Link_TextImageCenter .module-content-block [class*=col-] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.module-style__teaser-contact.variant-01.Text_Link_TextImageCenter .module-content-block [class*=col-] .thumbnail, .module-style__teaser-contact.Text_Link_TextImageCenter .module-content-block [class*=col-] .thumbnail {
  margin-bottom: 21px;
}
.module-style__teaser-contact.variant-01.Text_Link_TextImageCenter .module-content-block [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageCenter .module-content-block [class*=col-] > .text-wrapper > p {
  position: relative;
  padding-left: 45px;
  margin-bottom: 15px;
}
.module-style__teaser-contact.variant-01.Text_Link_TextImageCenter .module-content-block [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageCenter .module-content-block [class*=col-] > .text-wrapper > p > .amphiicon {
  position: absolute;
  top: -3px;
  left: 0;
}
.module-style__teaser-contact.variant-01.Text_Link_TextImageCenter .module-content-block [class*=col-] > p, .module-style__teaser-contact.Text_Link_TextImageCenter .module-content-block [class*=col-] > p {
  margin: 0;
}
.module-style__teaser-contact.variant-01.Text_Link_TextImageTwo .module-content-block, .module-style__teaser-contact.Text_Link_TextImageTwo .module-content-block, .module-style__teaser-contact.variant-01.Text_TextImageTwo .module-content-block, .module-style__teaser-contact.Text_TextImageTwo .module-content-block, .module-style__teaser-contact.variant-01.Text_Link_TextImageThree .module-content-block, .module-style__teaser-contact.Text_Link_TextImageThree .module-content-block, .module-style__teaser-contact.variant-01.Text_TextImageThree .module-content-block, .module-style__teaser-contact.Text_TextImageThree .module-content-block, .module-style__teaser-contact.variant-01.Text_Link_TextImageFour .module-content-block, .module-style__teaser-contact.Text_Link_TextImageFour .module-content-block, .module-style__teaser-contact.variant-01.Text_TextImageFour .module-content-block, .module-style__teaser-contact.Text_TextImageFour .module-content-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.module-style__teaser-contact.variant-01.Text_Link_TextImageTwo .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageTwo .module-content-block .thumbnail, .module-style__teaser-contact.variant-01.Text_TextImageTwo .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageTwo .module-content-block .thumbnail, .module-style__teaser-contact.variant-01.Text_Link_TextImageThree .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageThree .module-content-block .thumbnail, .module-style__teaser-contact.variant-01.Text_TextImageThree .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageThree .module-content-block .thumbnail, .module-style__teaser-contact.variant-01.Text_Link_TextImageFour .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageFour .module-content-block .thumbnail, .module-style__teaser-contact.variant-01.Text_TextImageFour .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageFour .module-content-block .thumbnail {
  margin-bottom: 21px;
}
.module-style__teaser-contact.variant-01.Text_Link_TextImageTwo .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_Link_TextImageTwo .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.variant-01.Text_TextImageTwo .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_TextImageTwo .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.variant-01.Text_Link_TextImageThree .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_Link_TextImageThree .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.variant-01.Text_TextImageThree .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_TextImageThree .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.variant-01.Text_Link_TextImageFour .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_Link_TextImageFour .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.variant-01.Text_TextImageFour .module-content-block > .headline-wrapper .headline3, .module-style__teaser-contact.Text_TextImageFour .module-content-block > .headline-wrapper .headline3 {
  margin-bottom: 21px;
}
.module-style__teaser-contact.variant-01.Text_Link_TextImageTwo .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageTwo .module-content-block > .text-wrapper > p, .module-style__teaser-contact.variant-01.Text_TextImageTwo .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageTwo .module-content-block > .text-wrapper > p, .module-style__teaser-contact.variant-01.Text_Link_TextImageThree .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageThree .module-content-block > .text-wrapper > p, .module-style__teaser-contact.variant-01.Text_TextImageThree .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageThree .module-content-block > .text-wrapper > p, .module-style__teaser-contact.variant-01.Text_Link_TextImageFour .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageFour .module-content-block > .text-wrapper > p, .module-style__teaser-contact.variant-01.Text_TextImageFour .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageFour .module-content-block > .text-wrapper > p {
  position: relative;
  padding-left: 45px;
  margin-bottom: 15px;
}
.module-style__teaser-contact.variant-01.Text_Link_TextImageTwo .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageTwo .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.variant-01.Text_TextImageTwo .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageTwo .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.variant-01.Text_Link_TextImageThree .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageThree .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.variant-01.Text_TextImageThree .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageThree .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.variant-01.Text_Link_TextImageFour .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageFour .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.variant-01.Text_TextImageFour .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageFour .module-content-block > .text-wrapper > p > .amphiicon {
  position: absolute;
  top: -3px;
  left: 0;
}
.module-style__teaser-contact.variant-01.Text_Link_TextImageTwo .module-content-block > p, .module-style__teaser-contact.Text_Link_TextImageTwo .module-content-block > p, .module-style__teaser-contact.variant-01.Text_TextImageTwo .module-content-block > p, .module-style__teaser-contact.Text_TextImageTwo .module-content-block > p, .module-style__teaser-contact.variant-01.Text_Link_TextImageThree .module-content-block > p, .module-style__teaser-contact.Text_Link_TextImageThree .module-content-block > p, .module-style__teaser-contact.variant-01.Text_TextImageThree .module-content-block > p, .module-style__teaser-contact.Text_TextImageThree .module-content-block > p, .module-style__teaser-contact.variant-01.Text_Link_TextImageFour .module-content-block > p, .module-style__teaser-contact.Text_Link_TextImageFour .module-content-block > p, .module-style__teaser-contact.variant-01.Text_TextImageFour .module-content-block > p, .module-style__teaser-contact.Text_TextImageFour .module-content-block > p {
  margin: 0;
}

@media (max-width: 767px) {
  .module-style__teaser-contact.variant-01.Text_Link_TextImageLeft .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageLeft .module-content-block .thumbnail, .module-style__teaser-contact.variant-01.Text_TextImageLeft .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageLeft .module-content-block .thumbnail, .module-style__teaser-contact.variant-01.Text_Link_TextImageRight .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageRight .module-content-block .thumbnail, .module-style__teaser-contact.variant-01.Text_TextImageRight .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageRight .module-content-block .thumbnail, .module-style__teaser-contact.variant-01.Text_Link_TextImageTwo .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageTwo .module-content-block .thumbnail, .module-style__teaser-contact.variant-01.Text_TextImageTwo .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageTwo .module-content-block .thumbnail, .module-style__teaser-contact.variant-01.Text_Link_TextImageThree .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageThree .module-content-block .thumbnail, .module-style__teaser-contact.variant-01.Text_TextImageThree .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageThree .module-content-block .thumbnail, .module-style__teaser-contact.variant-01.Text_Link_TextImageFour .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageFour .module-content-block .thumbnail, .module-style__teaser-contact.variant-01.Text_TextImageFour .module-content-block .thumbnail, .module-style__teaser-contact.Text_TextImageFour .module-content-block .thumbnail, .module-style__teaser-contact.variant-01.Text_Link_TextImageCenter .module-content-block .thumbnail, .module-style__teaser-contact.Text_Link_TextImageCenter .module-content-block .thumbnail {
    margin-bottom: 21px;
  }
  .module-style__teaser-contact.variant-01.Text_Link_TextImageLeft .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageLeft .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.variant-01.Text_TextImageLeft .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageLeft .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.variant-01.Text_Link_TextImageRight .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageRight .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.variant-01.Text_TextImageRight .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageRight .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.variant-01.Text_Link_TextImageTwo .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageTwo .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.variant-01.Text_TextImageTwo .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageTwo .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.variant-01.Text_Link_TextImageThree .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageThree .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.variant-01.Text_TextImageThree .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageThree .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.variant-01.Text_Link_TextImageFour .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageFour .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.variant-01.Text_TextImageFour .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageFour .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.variant-01.Text_Link_TextImageCenter .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageCenter .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p {
    padding-left: 40px;
  }
  .module-style__teaser-contact.variant-01.Text_Link_TextImageLeft .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageLeft .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.variant-01.Text_TextImageLeft .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageLeft .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.variant-01.Text_Link_TextImageRight .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageRight .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.variant-01.Text_TextImageRight .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageRight .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.variant-01.Text_Link_TextImageTwo .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageTwo .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.variant-01.Text_TextImageTwo .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageTwo .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.variant-01.Text_Link_TextImageThree .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageThree .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.variant-01.Text_TextImageThree .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageThree .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.variant-01.Text_Link_TextImageFour .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageFour .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.variant-01.Text_TextImageFour .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageFour .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.variant-01.Text_Link_TextImageCenter .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageCenter .module-content-block > .row.visible-xs [class*=col-] > .text-wrapper > p > .amphiicon {
    width: 30px;
    height: 30px;
  }
  .module-style__teaser-contact.variant-01.Text_Link_TextImageLeft .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageLeft .module-content-block > .text-wrapper > p, .module-style__teaser-contact.variant-01.Text_TextImageLeft .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageLeft .module-content-block > .text-wrapper > p, .module-style__teaser-contact.variant-01.Text_Link_TextImageRight .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageRight .module-content-block > .text-wrapper > p, .module-style__teaser-contact.variant-01.Text_TextImageRight .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageRight .module-content-block > .text-wrapper > p, .module-style__teaser-contact.variant-01.Text_Link_TextImageTwo .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageTwo .module-content-block > .text-wrapper > p, .module-style__teaser-contact.variant-01.Text_TextImageTwo .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageTwo .module-content-block > .text-wrapper > p, .module-style__teaser-contact.variant-01.Text_Link_TextImageThree .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageThree .module-content-block > .text-wrapper > p, .module-style__teaser-contact.variant-01.Text_TextImageThree .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageThree .module-content-block > .text-wrapper > p, .module-style__teaser-contact.variant-01.Text_Link_TextImageFour .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageFour .module-content-block > .text-wrapper > p, .module-style__teaser-contact.variant-01.Text_TextImageFour .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_TextImageFour .module-content-block > .text-wrapper > p, .module-style__teaser-contact.variant-01.Text_Link_TextImageCenter .module-content-block > .text-wrapper > p, .module-style__teaser-contact.Text_Link_TextImageCenter .module-content-block > .text-wrapper > p {
    padding-left: 40px;
  }
  .module-style__teaser-contact.variant-01.Text_Link_TextImageLeft .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageLeft .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.variant-01.Text_TextImageLeft .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageLeft .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.variant-01.Text_Link_TextImageRight .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageRight .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.variant-01.Text_TextImageRight .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageRight .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.variant-01.Text_Link_TextImageTwo .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageTwo .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.variant-01.Text_TextImageTwo .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageTwo .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.variant-01.Text_Link_TextImageThree .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageThree .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.variant-01.Text_TextImageThree .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageThree .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.variant-01.Text_Link_TextImageFour .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageFour .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.variant-01.Text_TextImageFour .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_TextImageFour .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.variant-01.Text_Link_TextImageCenter .module-content-block > .text-wrapper > p > .amphiicon, .module-style__teaser-contact.Text_Link_TextImageCenter .module-content-block > .text-wrapper > p > .amphiicon {
    width: 30px;
    height: 30px;
  }
}
.module-style__company-history.variant-01 .module-content-block > .row, .module-style__company-history .module-content-block > .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.module-style__company-history.variant-01 .module-content-block > .row > div, .module-style__company-history .module-content-block > .row > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.module-style__company-history.variant-01 .module-content-block > .row > div:first-child, .module-style__company-history .module-content-block > .row > div:first-child {
  padding-right: 30px;
}
.module-style__company-history.variant-01 .module-content-block > .row > div:last-child:after, .module-style__company-history .module-content-block > .row > div:last-child:after {
  content: "";
  position: absolute;
  left: -2px;
  bottom: -30px;
  width: 2px;
  height: 30px;
  border-radius: 40px;
  background: #000000;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #FFF), color-stop(0%, rgba(255, 255, 255, 0)));
  background-image: linear-gradient(#FFF 50%, rgba(255, 255, 255, 0) 0%);
  background-position: right;
  background-size: 2px 6px;
  background-repeat: repeat-y;
}
.module-style__company-history.variant-01 .module-content-block > .row > div .thumbnail, .module-style__company-history .module-content-block > .row > div .thumbnail {
  margin: 0;
}
.module-style__company-history.variant-01 .module-content-block > .row > div .headline-wrapper .headline1, .module-style__company-history .module-content-block > .row > div .headline-wrapper .headline1 {
  position: relative;
}
.module-style__company-history.variant-01 .module-content-block > .row > div .headline-wrapper .headline1:before, .module-style__company-history .module-content-block > .row > div .headline-wrapper .headline1:before {
  content: "";
  width: 22px;
  height: 22px;
  border: 2px solid #000000;
  background: #000000;
  position: absolute;
  border-radius: 40px;
  left: -42px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-animation: pulse 2s infinite;
          animation: pulse 2s infinite;
  z-index: 400;
}
.module-style__company-history.variant-01 .module-content-block > .row > div .headline-wrapper .headline2, .module-style__company-history .module-content-block > .row > div .headline-wrapper .headline2 {
  position: relative;
}
.module-style__company-history.variant-01 .module-content-block > .row > div .headline-wrapper .headline2:before, .module-style__company-history .module-content-block > .row > div .headline-wrapper .headline2:before {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid #000000;
  background: #000000;
  position: absolute;
  border-radius: 40px;
  left: -40px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-animation: pulse 2s infinite;
          animation: pulse 2s infinite;
  z-index: 400;
}
.module-style__company-history.variant-01 .module-content-block > .row > div .headline-wrapper + .headline-wrapper .headline2:before, .module-style__company-history .module-content-block > .row > div .headline-wrapper + .headline-wrapper .headline2:before, .module-style__company-history.variant-01 .module-content-block > .row > div .headline-wrapper + .headline-wrapper .headline2:after, .module-style__company-history .module-content-block > .row > div .headline-wrapper + .headline-wrapper .headline2:after {
  display: none;
}
.module-style__company-history.variant-01 .module-content-block > .row > div:first-child, .module-style__company-history .module-content-block > .row > div:first-child {
  padding-right: 30px;
}
.module-style__company-history.variant-01 .module-content-block > .row > div:last-child, .module-style__company-history .module-content-block > .row > div:last-child {
  border-left: 2px solid #000000;
  padding-left: 30px;
  padding-top: 30px;
}
.module-style__company-history.variant-01 .module-content-block > .row > div:last-child > *, .module-style__company-history .module-content-block > .row > div:last-child > * {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}
.module-style__company-history.variant-01:last-child, .module-style__company-history:last-child {
  margin-bottom: 60px;
}
.module-style__company-history.variant-01.Text_Link_TextImageRight .module-content-block > .row > div .text-wrapper, .module-style__company-history.Text_Link_TextImageRight .module-content-block > .row > div .text-wrapper, .module-style__company-history.variant-01.Text_TextImageRight .module-content-block > .row > div .text-wrapper, .module-style__company-history.Text_TextImageRight .module-content-block > .row > div .text-wrapper {
  text-align: right;
}
.module-style__company-history.variant-01.Text_Link_TextImageRight .module-content-block > .row > div .headline-wrapper, .module-style__company-history.Text_Link_TextImageRight .module-content-block > .row > div .headline-wrapper, .module-style__company-history.variant-01.Text_TextImageRight .module-content-block > .row > div .headline-wrapper, .module-style__company-history.Text_TextImageRight .module-content-block > .row > div .headline-wrapper {
  text-align: right;
}
.module-style__company-history.variant-01.Text_Link_TextImageRight .module-content-block > .row > div .headline-wrapper .headline1:before, .module-style__company-history.Text_Link_TextImageRight .module-content-block > .row > div .headline-wrapper .headline1:before, .module-style__company-history.variant-01.Text_TextImageRight .module-content-block > .row > div .headline-wrapper .headline1:before, .module-style__company-history.Text_TextImageRight .module-content-block > .row > div .headline-wrapper .headline1:before {
  right: -42px;
  left: auto;
}
.module-style__company-history.variant-01.Text_Link_TextImageRight .module-content-block > .row > div .headline-wrapper .headline2:before, .module-style__company-history.Text_Link_TextImageRight .module-content-block > .row > div .headline-wrapper .headline2:before, .module-style__company-history.variant-01.Text_TextImageRight .module-content-block > .row > div .headline-wrapper .headline2:before, .module-style__company-history.Text_TextImageRight .module-content-block > .row > div .headline-wrapper .headline2:before {
  right: -40px;
  left: auto;
}
.module-style__company-history.variant-01.Text_Link_TextImageRight .module-content-block > .row > div:first-child, .module-style__company-history.Text_Link_TextImageRight .module-content-block > .row > div:first-child, .module-style__company-history.variant-01.Text_TextImageRight .module-content-block > .row > div:first-child, .module-style__company-history.Text_TextImageRight .module-content-block > .row > div:first-child {
  padding-top: 30px;
}
.module-style__company-history.variant-01.Text_Link_TextImageRight .module-content-block > .row > div:last-child, .module-style__company-history.Text_Link_TextImageRight .module-content-block > .row > div:last-child, .module-style__company-history.variant-01.Text_TextImageRight .module-content-block > .row > div:last-child, .module-style__company-history.Text_TextImageRight .module-content-block > .row > div:last-child {
  padding-top: 0;
}
.module-style__company-history.variant-01.Text_Link_TextImageRight .module-content-block > .row > div:last-child > *, .module-style__company-history.Text_Link_TextImageRight .module-content-block > .row > div:last-child > *, .module-style__company-history.variant-01.Text_TextImageRight .module-content-block > .row > div:last-child > *, .module-style__company-history.Text_TextImageRight .module-content-block > .row > div:last-child > * {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.3);
            box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.3);
  }
  70% {
    -webkit-box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
            box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
            box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

@keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.3);
            box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.3);
  }
  70% {
    -webkit-box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
            box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
            box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}
@media (max-width: 767px) {
  .module-style__company-history.variant-01, .module-style__company-history {
    margin-bottom: 0;
  }
  .module-style__company-history.variant-01 .module-content-block > .row > div .thumbnail, .module-style__company-history .module-content-block > .row > div .thumbnail {
    margin-bottom: 10px;
  }
  .module-style__company-history.variant-01 .module-content-block > .row > div:last-child, .module-style__company-history .module-content-block > .row > div:last-child {
    width: calc(100% - 25px);
    margin-left: 25px;
    padding-left: 25px;
    padding-right: 15px;
  }
  .module-style__company-history.variant-01 .module-content-block > .row > div .headline-wrapper .headline1:before, .module-style__company-history .module-content-block > .row > div .headline-wrapper .headline1:before {
    right: auto;
    left: -37px;
  }
  .module-style__company-history.variant-01 .module-content-block > .row > div .headline-wrapper .headline2:before, .module-style__company-history .module-content-block > .row > div .headline-wrapper .headline2:before {
    left: -35px;
  }
  .module-style__company-history.variant-01:last-child, .module-style__company-history:last-child {
    margin-bottom: 30px;
  }
  .module-style__company-history.variant-01.Text_Link_TextImageRight .module-content-block > .row > div .text-wrapper, .module-style__company-history.Text_Link_TextImageRight .module-content-block > .row > div .text-wrapper, .module-style__company-history.variant-01.Text_TextImageRight .module-content-block > .row > div .text-wrapper, .module-style__company-history.Text_TextImageRight .module-content-block > .row > div .text-wrapper {
    text-align: left;
  }
  .module-style__company-history.variant-01.Text_Link_TextImageRight .module-content-block > .row > div .headline-wrapper, .module-style__company-history.Text_Link_TextImageRight .module-content-block > .row > div .headline-wrapper, .module-style__company-history.variant-01.Text_TextImageRight .module-content-block > .row > div .headline-wrapper, .module-style__company-history.Text_TextImageRight .module-content-block > .row > div .headline-wrapper {
    text-align: left;
  }
  .module-style__company-history.variant-01.Text_Link_TextImageRight .module-content-block > .row > div .headline-wrapper .headline1:before, .module-style__company-history.Text_Link_TextImageRight .module-content-block > .row > div .headline-wrapper .headline1:before, .module-style__company-history.variant-01.Text_TextImageRight .module-content-block > .row > div .headline-wrapper .headline1:before, .module-style__company-history.Text_TextImageRight .module-content-block > .row > div .headline-wrapper .headline1:before {
    right: auto;
    left: -37px;
  }
  .module-style__company-history.variant-01.Text_Link_TextImageRight .module-content-block > .row > div .headline-wrapper .headline2:before, .module-style__company-history.Text_Link_TextImageRight .module-content-block > .row > div .headline-wrapper .headline2:before, .module-style__company-history.variant-01.Text_TextImageRight .module-content-block > .row > div .headline-wrapper .headline2:before, .module-style__company-history.Text_TextImageRight .module-content-block > .row > div .headline-wrapper .headline2:before {
    right: auto;
    left: -35px;
  }
  .module-style__company-history.variant-01.Text_Link_TextImageRight .module-content-block > .row > div:first-child, .module-style__company-history.Text_Link_TextImageRight .module-content-block > .row > div:first-child, .module-style__company-history.variant-01.Text_TextImageRight .module-content-block > .row > div:first-child, .module-style__company-history.Text_TextImageRight .module-content-block > .row > div:first-child {
    padding-top: 0;
  }
  .module-style__company-history.variant-01.Text_Link_TextImageRight .module-content-block > .row > div:last-child, .module-style__company-history.Text_Link_TextImageRight .module-content-block > .row > div:last-child, .module-style__company-history.variant-01.Text_TextImageRight .module-content-block > .row > div:last-child, .module-style__company-history.Text_TextImageRight .module-content-block > .row > div:last-child {
    padding-top: 30px;
  }
  .module-style__company-history.variant-01.Text_Link_TextImageRight .module-content-block > .row > div:last-child > *, .module-style__company-history.Text_Link_TextImageRight .module-content-block > .row > div:last-child > *, .module-style__company-history.variant-01.Text_TextImageRight .module-content-block > .row > div:last-child > *, .module-style__company-history.Text_TextImageRight .module-content-block > .row > div:last-child > * {
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }
}
.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:not(.btn) {
  color: #fff;
}
.module-style__text-white a:not(.btn):visited, .module-style__text-white a:not(.btn):focus, .module-style__text-white a:not(.btn):active, .module-style__text-white a:not(.btn):hover {
  opacity: 0.8;
  color: #fff;
}
.module-style__text-white .reservation-general-description div.checkbox {
  background: rgba(0, 0, 0, 0.2);
  border: 0;
}
.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:not(.btn), .module-style__text-white .module-content-block .headline2 a:not(.btn), .module-style__text-white .module-content-block .headline3 a:not(.btn), .module-style__text-white .module-content-block .headline4 a:not(.btn), .module-style__text-white .module-content-block .text-wrapper a:not(.btn), .module-style__text-white .gallery-carousel-caption .headline1 a:not(.btn), .module-style__text-white .gallery-carousel-caption .headline2 a:not(.btn), .module-style__text-white .gallery-carousel-caption .headline3 a:not(.btn), .module-style__text-white .gallery-carousel-caption .headline4 a:not(.btn), .module-style__text-white .gallery-carousel-caption .text-wrapper a:not(.btn), .module-style__text-white * .headline1 a:not(.btn), .module-style__text-white * .headline2 a:not(.btn), .module-style__text-white * .headline3 a:not(.btn), .module-style__text-white * .headline4 a:not(.btn), .module-style__text-white * .text-wrapper a:not(.btn) {
  color: #fff;
}
.module-style__text-white .module-content-block .headline1 a:not(.btn):visited, .module-style__text-white .module-content-block .headline1 a:not(.btn):focus, .module-style__text-white .module-content-block .headline1 a:not(.btn):active, .module-style__text-white .module-content-block .headline1 a:not(.btn):hover, .module-style__text-white .module-content-block .headline2 a:not(.btn):visited, .module-style__text-white .module-content-block .headline2 a:not(.btn):focus, .module-style__text-white .module-content-block .headline2 a:not(.btn):active, .module-style__text-white .module-content-block .headline2 a:not(.btn):hover, .module-style__text-white .module-content-block .headline3 a:not(.btn):visited, .module-style__text-white .module-content-block .headline3 a:not(.btn):focus, .module-style__text-white .module-content-block .headline3 a:not(.btn):active, .module-style__text-white .module-content-block .headline3 a:not(.btn):hover, .module-style__text-white .module-content-block .headline4 a:not(.btn):visited, .module-style__text-white .module-content-block .headline4 a:not(.btn):focus, .module-style__text-white .module-content-block .headline4 a:not(.btn):active, .module-style__text-white .module-content-block .headline4 a:not(.btn):hover, .module-style__text-white .module-content-block .text-wrapper a:not(.btn):visited, .module-style__text-white .module-content-block .text-wrapper a:not(.btn):focus, .module-style__text-white .module-content-block .text-wrapper a:not(.btn):active, .module-style__text-white .module-content-block .text-wrapper a:not(.btn):hover, .module-style__text-white .gallery-carousel-caption .headline1 a:not(.btn):visited, .module-style__text-white .gallery-carousel-caption .headline1 a:not(.btn):focus, .module-style__text-white .gallery-carousel-caption .headline1 a:not(.btn):active, .module-style__text-white .gallery-carousel-caption .headline1 a:not(.btn):hover, .module-style__text-white .gallery-carousel-caption .headline2 a:not(.btn):visited, .module-style__text-white .gallery-carousel-caption .headline2 a:not(.btn):focus, .module-style__text-white .gallery-carousel-caption .headline2 a:not(.btn):active, .module-style__text-white .gallery-carousel-caption .headline2 a:not(.btn):hover, .module-style__text-white .gallery-carousel-caption .headline3 a:not(.btn):visited, .module-style__text-white .gallery-carousel-caption .headline3 a:not(.btn):focus, .module-style__text-white .gallery-carousel-caption .headline3 a:not(.btn):active, .module-style__text-white .gallery-carousel-caption .headline3 a:not(.btn):hover, .module-style__text-white .gallery-carousel-caption .headline4 a:not(.btn):visited, .module-style__text-white .gallery-carousel-caption .headline4 a:not(.btn):focus, .module-style__text-white .gallery-carousel-caption .headline4 a:not(.btn):active, .module-style__text-white .gallery-carousel-caption .headline4 a:not(.btn):hover, .module-style__text-white .gallery-carousel-caption .text-wrapper a:not(.btn):visited, .module-style__text-white .gallery-carousel-caption .text-wrapper a:not(.btn):focus, .module-style__text-white .gallery-carousel-caption .text-wrapper a:not(.btn):active, .module-style__text-white .gallery-carousel-caption .text-wrapper a:not(.btn):hover, .module-style__text-white * .headline1 a:not(.btn):visited, .module-style__text-white * .headline1 a:not(.btn):focus, .module-style__text-white * .headline1 a:not(.btn):active, .module-style__text-white * .headline1 a:not(.btn):hover, .module-style__text-white * .headline2 a:not(.btn):visited, .module-style__text-white * .headline2 a:not(.btn):focus, .module-style__text-white * .headline2 a:not(.btn):active, .module-style__text-white * .headline2 a:not(.btn):hover, .module-style__text-white * .headline3 a:not(.btn):visited, .module-style__text-white * .headline3 a:not(.btn):focus, .module-style__text-white * .headline3 a:not(.btn):active, .module-style__text-white * .headline3 a:not(.btn):hover, .module-style__text-white * .headline4 a:not(.btn):visited, .module-style__text-white * .headline4 a:not(.btn):focus, .module-style__text-white * .headline4 a:not(.btn):active, .module-style__text-white * .headline4 a:not(.btn):hover, .module-style__text-white * .text-wrapper a:not(.btn):visited, .module-style__text-white * .text-wrapper a:not(.btn):focus, .module-style__text-white * .text-wrapper a:not(.btn):active, .module-style__text-white * .text-wrapper a:not(.btn):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:not(.btn) {
  color: #fff;
}
.footer .module-style__text-white a:not(.btn):visited, .footer .module-style__text-white a:not(.btn):focus, .footer .module-style__text-white a:not(.btn):active, .footer .module-style__text-white a:not(.btn):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;
}
@media (max-width: 767px) {
  .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: 1 !important;
    -webkit-animation-name: none !important;
            animation-name: none !important;
  }
}

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

.module-style__vertical-center .module-content-block > .row.hidden-xs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.module-style__vertical-center .module-content-block > .row.hidden-xs .thumbnail {
  margin: 0;
}
.module-style__vertical-center .module-content-block > .row.hidden-xs .row-top-collage .thumbnail {
  margin-bottom: 21px;
}

.dark-ui body {
  background: #444;
  color: #fff;
}
.dark-ui body .header {
  background: #444;
}
.dark-ui body .header .top-nav .navigation > li ul {
  background: #444;
}
.dark-ui body .hamburger-inner, .dark-ui body .hamburger-inner::before, .dark-ui body .hamburger-inner::after {
  background: #fff;
}
.dark-ui body .slider-addon-bottom__breadcrumb {
  background: #444;
}
.dark-ui body .content .content_sidebar_nav .navigation > li span > a {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  padding: 10px 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  letter-spacing: 0.2px;
  line-height: 1.4;
}
.dark-ui body .content .content_sidebar_nav .navigation > li span > a:before {
  content: "\f105";
  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;
}
.dark-ui body .content .content_sidebar_nav .navigation > li span > a:after {
  content: none;
}
.dark-ui body .content .content_sidebar_nav .navigation > li.active > span > a {
  color: #000000;
}
.dark-ui body .content .content_sidebar_nav .navigation > li:hover > span > a, .dark-ui body .content .content_sidebar_nav .navigation > li.hover > span > a {
  color: #000000;
}
.dark-ui body .content .content_sidebar_nav .navigation > li:hover.active > span > a, .dark-ui body .content .content_sidebar_nav .navigation > li.hover.active > span > a {
  color: #000000;
}
.dark-ui body .content .content_sidebar_nav .navigation > li ul li span > a {
  font-weight: 400;
  padding-left: 30px;
  color: #fff;
}
.dark-ui body .content .content_sidebar_nav .navigation > li ul li.active > span > a {
  color: #000000;
}
.dark-ui body .content .content_sidebar_nav .navigation > li ul li:hover > span > a, .dark-ui body .content .content_sidebar_nav .navigation > li ul li.hover > span > a {
  color: #000000;
}
.dark-ui body .content .content_sidebar_nav .navigation > li ul li:hover.active > span > a, .dark-ui body .content .content_sidebar_nav .navigation > li ul li.hover.active > span > a {
  color: #000000;
}
.dark-ui body .content .content_sidebar_nav .navigation > li ul li ul li span > a {
  padding-left: 45px;
  color: #fff;
}
.dark-ui body .content .content_sidebar_nav .navigation > li ul li ul li.active > span > a {
  color: #000000;
}
.dark-ui body .content .content_sidebar_nav .navigation > li ul li ul li:hover > span > a, .dark-ui body .content .content_sidebar_nav .navigation > li ul li ul li.hover > span > a {
  color: #000000;
}
.dark-ui body .content .content_sidebar_nav .navigation > li ul li ul li:hover.active > span > a, .dark-ui body .content .content_sidebar_nav .navigation > li ul li ul li.hover.active > span > a {
  color: #000000;
}
.dark-ui body .content .content_sidebar_nav .navigation > li ul li ul li ul li span > a {
  padding-left: 60px;
  color: #fff;
}
.dark-ui body .content .content_sidebar_nav .navigation > li ul li ul li ul li.active > span > a {
  color: #000000;
}
.dark-ui body .content .content_sidebar_nav .navigation > li ul li ul li ul li:hover > span > a, .dark-ui body .content .content_sidebar_nav .navigation > li ul li ul li ul li.hover > span > a {
  color: #000000;
}
.dark-ui body .content .content_sidebar_nav .navigation > li ul li ul li ul li:hover.active > span > a, .dark-ui body .content .content_sidebar_nav .navigation > li ul li ul li ul li.hover.active > span > a {
  color: #000000;
}
.dark-ui body .mobile-nav,
.dark-ui body .mobile-nav.type-collapse {
  background: #444;
}
.dark-ui body .mobile-nav *,
.dark-ui body .mobile-nav.type-collapse * {
  border-color: #6a6a6a;
}
.dark-ui body .mobile-nav .level-1,
.dark-ui body .mobile-nav.type-collapse .level-1 {
  background: #444;
}
.dark-ui body .mobile-nav .level-1 > li a,
.dark-ui body .mobile-nav.type-collapse .level-1 > li a {
  font-family: "Merriweather", serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  text-transform: none;
  padding: 10px 50px 10px 15px;
  line-height: 1.4;
}
.dark-ui body .mobile-nav .level-1 > li.active > a,
.dark-ui body .mobile-nav.type-collapse .level-1 > li.active > a {
  color: #000000;
}
.dark-ui body .mobile-nav .level-1 > li span.dropdown-toggle,
.dark-ui body .mobile-nav.type-collapse .level-1 > li span.dropdown-toggle {
  background-color: #444;
  border-left-color: #6a6a6a;
  color: #fff;
}
.dark-ui body .mobile-nav .level-1 > li.dropdown-entry.opened,
.dark-ui body .mobile-nav.type-collapse .level-1 > li.dropdown-entry.opened {
  background-color: #444;
}
.dark-ui body .mobile-nav .level-1 > li.dropdown-entry.opened span.dropdown-toggle,
.dark-ui body .mobile-nav.type-collapse .level-1 > li.dropdown-entry.opened span.dropdown-toggle {
  background-color: #444;
  border-left-color: #6a6a6a;
  color: #fff;
}
.dark-ui body .mobile-nav .level-1 > li ul li.dropdown-entry.opened,
.dark-ui body .mobile-nav.type-collapse .level-1 > li ul li.dropdown-entry.opened {
  background-color: #444;
}
.dark-ui body .mobile-nav .level-1 > li ul li a,
.dark-ui body .mobile-nav.type-collapse .level-1 > li ul li a {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  padding: 10px 50px 10px 15px;
  border-bottom: none;
  letter-spacing: 0.2px;
  line-height: 1.4;
}
.dark-ui body .mobile-nav .level-1 > li ul li a:before,
.dark-ui body .mobile-nav.type-collapse .level-1 > li ul li a:before {
  content: "\f105";
  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;
}
.dark-ui body .mobile-nav .level-1 > li ul li a:after,
.dark-ui body .mobile-nav.type-collapse .level-1 > li ul li a:after {
  content: none;
}
.dark-ui body .mobile-nav .level-1 > li ul li.active > a,
.dark-ui body .mobile-nav.type-collapse .level-1 > li ul li.active > a {
  color: #000000;
}
.dark-ui body .mobile-nav .level-1 > li ul li ul li a,
.dark-ui body .mobile-nav.type-collapse .level-1 > li ul li ul li a {
  font-weight: 400;
  padding-left: 30px;
  padding: 10px 50px 10px 30px;
  color: #fff;
}
.dark-ui body .mobile-nav .level-1 > li ul li ul li.active > a,
.dark-ui body .mobile-nav.type-collapse .level-1 > li ul li ul li.active > a {
  color: #000000;
}
.dark-ui body .mobile-nav .level-1 > li ul li ul li ul li a,
.dark-ui body .mobile-nav.type-collapse .level-1 > li ul li ul li ul li a {
  padding-left: 45px;
  padding: 10px 50px 10px 45px;
  color: #fff;
}
.dark-ui body .mobile-nav .level-1 > li ul li ul li ul li.active > a,
.dark-ui body .mobile-nav.type-collapse .level-1 > li ul li ul li ul li.active > a {
  color: #000000;
}
.dark-ui body .mobile-nav .level-1 > li ul li ul li ul li ul li a,
.dark-ui body .mobile-nav.type-collapse .level-1 > li ul li ul li ul li ul li a {
  padding-left: 60px;
  padding: 10px 50px 10px 60px;
  color: #fff;
}
.dark-ui body .mobile-nav .level-1 > li ul li ul li ul li ul li.active > a,
.dark-ui body .mobile-nav.type-collapse .level-1 > li ul li ul li ul li ul li.active > a {
  color: #000000;
}
.dark-ui body .footer-addon-bottom {
  background: #444;
  color: #fff;
}
.dark-ui body .footer-addon-bottom .footer-addon-bottom_inner .text-wrapper a {
  color: #000000;
}
.dark-ui body .footer-addon-bottom .footer-addon-bottom_inner .text-wrapper a:hover, .dark-ui body .footer-addon-bottom .footer-addon-bottom_inner .text-wrapper a:focus, .dark-ui body .footer-addon-bottom .footer-addon-bottom_inner .text-wrapper a:active {
  color: #FFFFFF;
}
.dark-ui body a:not(.btn) {
  color: #000000;
}
.dark-ui body a:not(.btn):hover, .dark-ui body a:not(.btn):focus {
  color: #FFFFFF;
}
.dark-ui body .headline1 {
  color: #fff;
}
.dark-ui body .headline2 {
  color: #fff;
}
.dark-ui body .headline3 {
  color: #fff;
}
.dark-ui body .headline4 {
  color: #fff;
}
.dark-ui body .headline5 {
  color: #fff;
}
.dark-ui body .headline6 {
  color: #fff;
}
.dark-ui body .module-style__box-white .headline1 {
  color: #444;
}
.dark-ui body .module-style__box-white .headline2 {
  color: #444;
}
.dark-ui body .module-style__box-white .headline3 {
  color: #444;
}
.dark-ui body .module-style__box-white .headline4 {
  color: #444;
}
.dark-ui body .module-style__box-white .headline5 {
  color: #444;
}
.dark-ui body .module-style__box-white .headline6 {
  color: #444;
}
.dark-ui body .module-style__box-white .text-wrapper {
  color: #444;
}
.dark-ui body .thumbnail .caption {
  color: #fff;
}
.dark-ui body .thumbnail .caption p {
  color: #fff;
}
.dark-ui body .Special_ChangingContents .category-elements > .content-on-image .category-element-inner .category-image:before {
  background-color: rgba(0, 0, 0, 0.5);
}
.dark-ui body .Special_ChangingContents .category-elements > .content-on-image .category-element-inner:hover .category-image:before {
  background-color: rgba(0, 0, 0, 0.4);
}
.dark-ui body .Content_Gallery .slider-text-below-image.amphi-slideshow .owl-carousel .owl-stage-outer .owl-stage .owl-item .header-img .gallery-carousel-caption {
  color: #fff;
}
.dark-ui body .pagination > li > a {
  background-color: #000000;
  border: 1px solid #000000;
  color: #fff;
}
.dark-ui body .pagination > li.active > span {
  background-color: #fff;
  border: 1px solid #fff;
  color: #444;
}
.dark-ui body .Form_Reservation .reservation-general-description div.checkbox {
  background: transparent;
  border: none;
  padding: 0 15px;
}
.dark-ui body .Files_Files .filetypeicon {
  background: #fff;
  padding: 8px;
  border-radius: 0;
}
.dark-ui body .Special_Faqs .faq-question a:hover {
  background: rgba(255, 255, 255, 0.3);
}
.dark-ui body .Special_Faqs .faq-question.active a {
  background: rgba(255, 255, 255, 0.3);
}
.dark-ui body .Special_Faqs .faq-question.active a:hover {
  background: rgba(255, 255, 255, 0.3);
}
.dark-ui body .table-hover > tbody > tr:hover {
  background-color: rgba(255, 255, 255, 0.3);
}
.dark-ui body .table > thead > tr > td.info, .dark-ui body .table > thead > tr > th.info, .dark-ui body .table > tbody > tr > td.info, .dark-ui body .table > tbody > tr > th.info, .dark-ui body .table > tfoot > tr > td.info, .dark-ui body .table > tfoot > tr > th.info {
  background-color: rgba(255, 255, 255, 0.3);
}
.dark-ui body .table > thead > tr.info > td, .dark-ui body .table > thead > tr.info > th, .dark-ui body .table > tbody > tr.info > td, .dark-ui body .table > tbody > tr.info > th, .dark-ui body .table > tfoot > tr.info > td, .dark-ui body .table > tfoot > tr.info > th {
  background-color: rgba(255, 255, 255, 0.3);
}
.dark-ui body .table-striped > tbody > tr:nth-child(odd) {
  background-color: rgba(255, 255, 255, 0.3);
}
.dark-ui body .shariff li a {
  color: #fff;
}
.dark-ui body .shariff li a:hover {
  color: #fff;
}

.dark-ui body .header .top-nav .navigation > li span > a {
  font-family: "Merriweather", serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  padding: 10px 15px;
  line-height: 1.4;
}
.dark-ui body .header .top-nav .navigation > li.active > span > a {
  color: #000000;
}
.dark-ui body .header .top-nav .navigation > li:hover > span > a, .dark-ui body .header .top-nav .navigation > li.hover > span > a {
  color: #000000;
}
.dark-ui body .header .top-nav .navigation > li:hover.active > span > a, .dark-ui body .header .top-nav .navigation > li.hover.active > span > a {
  color: #000000;
}
.dark-ui body .header .top-nav .navigation > li ul > li span > a {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  padding: 10px 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  letter-spacing: 0.2px;
  line-height: 1.4;
  white-space: nowrap;
  text-transform: uppercase;
}
.dark-ui body .header .top-nav .navigation > li ul > li span > a:before {
  content: "\f105";
  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;
}
.dark-ui body .header .top-nav .navigation > li ul > li span > a:after {
  content: none;
}
.dark-ui body .header .top-nav .navigation > li ul > li.active > span > a {
  color: #000000;
}
.dark-ui body .header .top-nav .navigation > li ul > li:hover > span > a, .dark-ui body .header .top-nav .navigation > li ul > li.hover > span > a {
  color: #000000;
}
.dark-ui body .header .top-nav .navigation > li ul > li:hover.active > span > a, .dark-ui body .header .top-nav .navigation > li ul > li.hover.active > span > a {
  color: #000000;
}
.dark-ui body .header .top-nav .navigation > li ul > li:last-child > span > a {
  border-bottom: 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: #000000;
  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;
}

html {
  scroll-padding-top: auto;
}

.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: #000000;
  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 #000000;
}
.content .amphi-slideshow .owl-dots .owl-dot.active span {
  background-color: #000000;
  border: 2px solid #000000;
}
.content .content_sidebar_nav {
  margin-bottom: 25px;
}
.content .content_sidebar_nav .navigation > li span > a {
  font-size: 1rem;
  font-weight: 600;
  color: #000000;
  padding: 10px 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  letter-spacing: 0.2px;
  line-height: 1.4;
}
.content .content_sidebar_nav .navigation > li span > a:before {
  content: "\f105";
  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: #000000;
}
.content .content_sidebar_nav .navigation > li:hover > span > a, .content .content_sidebar_nav .navigation > li.hover > span > a {
  color: #000000;
}
.content .content_sidebar_nav .navigation > li:hover.active > span > a, .content .content_sidebar_nav .navigation > li.hover.active > span > a {
  color: #000000;
}
.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: #000000;
}
.content .content_sidebar_nav .navigation > li ul li:hover > span > a, .content .content_sidebar_nav .navigation > li ul li.hover > span > a {
  color: #000000;
}
.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: #000000;
}
.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: #000000;
}
.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: #000000;
}
.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: #000000;
}
.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: #000000;
}
.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: #000000;
}
.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: #000000;
}

#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;
  padding: 20px 0;
}
.footer-addon-top__breadcrumb .breadcrumb_inner .breadcrumb_icon {
  display: inline-block;
  margin-right: 5px;
  color: #444;
}
.footer-addon-top__breadcrumb .breadcrumb_inner .breadcrumb_icon a {
  color: #444;
}
.footer-addon-top__breadcrumb .breadcrumb_inner .breadcrumb_icon a:hover {
  color: #444;
  opacity: 0.7;
}
.footer-addon-top__breadcrumb .breadcrumb_inner .breadcrumb_icon:empty {
  display: none;
}
.footer-addon-top__breadcrumb .breadcrumb_inner .breadcrumb_text {
  margin-right: 5px;
  color: #444;
  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: 0;
}
.footer-addon-top__breadcrumb .breadcrumb_inner .breadcrumbs .breadcrumb > li a {
  color: #444;
}
.footer-addon-top__breadcrumb .breadcrumb_inner .breadcrumbs .breadcrumb > li a:hover {
  color: #444;
  opacity: 0.7;
}
.footer-addon-top__breadcrumb .breadcrumb_inner .breadcrumbs .breadcrumb > li + li:before {
  color: #444;
}
.footer-addon-top__breadcrumb .breadcrumb_inner .breadcrumbs .breadcrumb > li.active a {
  font-weight: 700;
}

.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.984375rem;
  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: #000000;
}
.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: #FFFFFF;
}

@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: #FFFFFF;
  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: #FFFFFF;
  border: 1px solid #fff;
}
.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: #e6e6e6;
  border: 1px solid #fff;
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 9px 15px 12px 15px;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
@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: #000000;
  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: #000000;
  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: #000000;
}

/* HEADER */
.header {
  background: #fff;
  -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: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
          box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}
.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: #000000;
  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: "Merriweather", serif;
  font-size: 1rem;
  font-weight: 900;
  color: #000000;
  text-transform: uppercase;
  padding: 10px 15px;
  line-height: 1.4;
  font-style: italic;
  letter-spacing: 0.055rem;
}
.header .top-nav .navigation > li.active > span > a {
  color: #9a9a9a;
}
.header .top-nav .navigation > li:hover > span > a, .header .top-nav .navigation > li.hover > span > a {
  color: #9a9a9a;
}
.header .top-nav .navigation > li:hover.active > span > a, .header .top-nav .navigation > li.hover.active > span > a {
  color: #9a9a9a;
}
.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: none;
}
.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: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
          box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  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.85rem;
  font-weight: 900;
  color: #000000;
  padding: 10px 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  letter-spacing: 0.2px;
  line-height: 1.4;
  white-space: nowrap;
  text-transform: uppercase;
  font-family: "Merriweather", serif;
  font-style: italic;
  -webkit-transition: padding 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: padding 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.header .top-nav .navigation > li ul li span > a:after {
  content: none;
}
.header .top-nav .navigation > li ul li span > a:before {
  content: none;
}
.header .top-nav .navigation > li ul li.active > span > a {
  color: #000000;
  padding: 10px 15px 10px 20px;
  -webkit-transition: padding 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: padding 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.header .top-nav .navigation > li ul li:hover > span > a, .header .top-nav .navigation > li ul li.hover > span > a {
  color: #000000;
  padding: 10px 15px 10px 20px;
  -webkit-transition: padding 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: padding 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.header .top-nav .navigation > li ul li:hover.active > span > a, .header .top-nav .navigation > li ul li.hover.active > span > a {
  color: #000000;
  padding: 10px 15px 10px 20px;
  -webkit-transition: padding 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: padding 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.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: #fff;
}
.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: #fff;
}
.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: #fff;
}
.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: #fff;
}
.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: #fff;
}
.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: #fff;
}
.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: #FFFFFF;
  color: #444;
  -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: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
          box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}
.quicklinks-mobile__icons ul li a:hover .amphiicon {
  background-color: #000000;
}

.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: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
          box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  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: #FFFFFF;
  color: #444;
  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: #444;
  -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: #444;
  background: #FFFFFF;
  -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: #444;
}
.quicklinks .quicklinks_item.quicklinks_box .quicklinks_box_content .text-wrapper a {
  color: #FFFFFF;
}
.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: #d9d9d9;
}
.quicklinks .quicklinks_item.quicklinks_icons {
  height: 52px;
}
.quicklinks .quicklinks_item.quicklinks_icons .quicklinks_icons_label {
  width: 45px;
  text-align: center;
  color: #444;
  background: #FFFFFF;
  -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: #444;
  background: #FFFFFF;
  -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: #444;
  -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: #444;
  -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: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
          box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
.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: #444;
  background: #bfbfbf;
}
.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: #444;
}
.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: #444;
  background: #d9d9d9;
}
.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: #444;
}
.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: #444;
}
.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: #444;
  background: #bfbfbf;
}
.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: #444;
  background: #d9d9d9;
}

#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: black;
  color: #fff;
  padding: 5px 15px;
  font-size: 0.8rem;
  cursor: pointer;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
          box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}
.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: "InfoText", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #000000;
  text-transform: uppercase;
  padding: 10px 15px;
  line-height: 1.4;
}
.seo-navigation__top-right .seo-navigation_wrapper .seoNavigation-nav > li > span > a:hover {
  color: black;
}
.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: #000000;
  border-radius: 40px;
  padding-top: 2px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
          box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  border: 1px solid #999;
  cursor: pointer;
  z-index: 900;
}
.seo-navigation__top-right .seo-navigation_close-icon:hover {
  color: #1a1a1a;
}

/* 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;
  color: #444;
}
.slider-addon-bottom__breadcrumb .breadcrumb_inner .breadcrumb_icon a {
  color: #444;
}
.slider-addon-bottom__breadcrumb .breadcrumb_inner .breadcrumb_icon a:hover {
  color: #444;
  opacity: 0.7;
}
.slider-addon-bottom__breadcrumb .breadcrumb_inner .breadcrumb_icon:empty {
  display: none;
}
.slider-addon-bottom__breadcrumb .breadcrumb_inner .breadcrumb_text {
  margin-right: 5px;
  color: #444;
  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 a {
  color: #444;
}
.slider-addon-bottom__breadcrumb .breadcrumb_inner .breadcrumbs .breadcrumb > li a:hover {
  color: #444;
  opacity: 0.7;
}
.slider-addon-bottom__breadcrumb .breadcrumb_inner .breadcrumbs .breadcrumb > li + li:before {
  color: #444;
}
.slider-addon-bottom__breadcrumb .breadcrumb_inner .breadcrumbs .breadcrumb > li.active a {
  font-weight: 700;
}

/* SLIDER */
.slider {
  position: relative;
  background-color: #FFFFFF;
  /* Pagespeed 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_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: 3.85rem;
}
.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: 2rem;
}
.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.25rem;
}
.slider.slider_big .single-header .header-img.video-img, .slider.slider_big .amphi-slideshow .header-img.video-img, .slider.slider_big .amphi-no-slideshow .header-img.video-img {
  overflow: hidden;
}
.slider.slider_big .single-header .header-img.video-img .video-wrapper video, .slider.slider_big .amphi-slideshow .header-img.video-img .video-wrapper video, .slider.slider_big .amphi-no-slideshow .header-img.video-img .video-wrapper video {
  left: 50%;
  min-height: 100%;
  min-width: 100%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.slider.slider_small {
  min-height: 50vh;
}
.slider.slider_small .single-header, .slider.slider_small .amphi-slideshow, .slider.slider_small .amphi-no-slideshow {
  min-height: 50vh;
}
.slider.slider_small .single-header .header-img, .slider.slider_small .amphi-slideshow .header-img, .slider.slider_small .amphi-no-slideshow .header-img {
  min-height: 50vh;
}
.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: 3.85rem;
}
.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: 2rem;
}
.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.25rem;
}
.slider.slider_small .single-header .header-img, .slider.slider_small .amphi-slideshow .header-img, .slider.slider_small .amphi-no-slideshow .header-img {
  overflow: hidden;
}
.slider.slider_small .single-header .header-img .video-wrapper video, .slider.slider_small .amphi-slideshow .header-img .video-wrapper video, .slider.slider_small .amphi-no-slideshow .header-img .video-wrapper video {
  left: 50%;
  min-height: 100%;
  min-width: 100%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.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 .caption-wrapper .carousel-caption .btn {
  background: #000000;
  border-color: #000000;
  color: #FFFFFF;
}
.slider .header-img .caption-wrapper .carousel-caption .btn:hover, .slider .header-img .caption-wrapper .carousel-caption .btn:focus, .slider .header-img .caption-wrapper .carousel-caption .btn:active, .slider .header-img .caption-wrapper .carousel-caption .btn.active {
  background: #000000;
  border-color: #000000;
  color: #FFFFFF;
}
.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.25)), to(rgba(0, 0, 0, 0.25)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.25) 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;
}

#editMode .slider .amphi-no-slideshow .headerEditLink {
  margin-left: 0;
  position: absolute;
  left: 15px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transform-origin: 50% 50% 0;
          transform-origin: 50% 50% 0;
}

@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: 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: 50vh;
  }
  .slider.slider_small .single-header, .slider.slider_small .amphi-slideshow, .slider.slider_small .amphi-no-slideshow {
    min-height: 50vh;
  }
  .slider.slider_small .single-header .header-img, .slider.slider_small .amphi-slideshow .header-img, .slider.slider_small .amphi-no-slideshow .header-img {
    min-height: 50vh;
  }
}
@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: 50vh;
  }
  .slider.slider_small .single-header, .slider.slider_small .amphi-slideshow, .slider.slider_small .amphi-no-slideshow {
    min-height: 50vh;
  }
  .slider.slider_small .single-header .header-img, .slider.slider_small .amphi-slideshow .header-img, .slider.slider_small .amphi-no-slideshow .header-img {
    min-height: 50vh;
  }
}
@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: 50vh;
  }
  .slider.slider_small .single-header, .slider.slider_small .amphi-slideshow, .slider.slider_small .amphi-no-slideshow {
    min-height: 50vh;
  }
  .slider.slider_small .single-header .header-img, .slider.slider_small .amphi-slideshow .header-img, .slider.slider_small .amphi-no-slideshow .header-img {
    min-height: 50vh;
  }
}
@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;
}

/* ==================================================================================== BREAKPOINT SM INCLUDE ======= */
/* ============================================================================= BREAKPOINT MD-Custom INCLUDE ======= */
/* ==================================================================================== BREAKPOINT MD INCLUDE ======= */
/* ================================================================================== BREAKPOINT LG INCLUDE ======= */
/* ================================================================================== BREAKPOINT XL INCLUDE ======= */
/* ================================================================================== BREAKPOINT XXL INCLUDE ======= */
/* ================================================================================== BREAKPOINT XXXL INCLUDE ======= */
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
  .slider .header-img .caption-wrapper {
    width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 900px;
  }
  .slider .header-img .caption-wrapper {
    width: 870px;
  }
}
@media (min-width: 1062px) {
  .container {
    width: 970px;
  }
  .slider .header-img .caption-wrapper {
    width: 940px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1100px;
  }
  .slider .header-img .caption-wrapper {
    width: 1070px;
  }
}
@media (min-width: 1270px) {
  .container {
    width: 1170px;
  }
  .slider .header-img .caption-wrapper {
    width: 1140px;
  }
}
@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;
  }
}
/* ================================================================================= BREAKPOINT XXXXL INCLUDE ======= */
/* ================================================================================ BREAKPOINT XXXXXL INCLUDE ======= */
/* BUTTONS */
a.btn-default, .btn-default,
a.btn-primary, .btn-primary,
a.btn-custom, .btn-custom {
  color: #000000;
  background-color: #000000;
  border: 1px solid #000000;
  border-radius: 0;
  margin-top: 18px;
  -webkit-box-shadow: none;
          box-shadow: none;
  display: inline-block;
  font-family: "Merriweather", serif;
  padding: 9px 15px 12px 15px;
  font-weight: 900;
  font-size: 1rem;
  text-decoration: none;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  font-style: italic;
  background: transparent;
  text-transform: uppercase;
}
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:before, .btn-default:before,
a.btn-primary:before, .btn-primary:before,
a.btn-custom:before, .btn-custom:before {
  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: #000;
  background-color: black;
  border: 1px solid #000000;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  background: transparent;
}
/* 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: "\f104";
  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;
}
/* SUCHE BUTTONS */
/* ICON BUTTONS */
a.btn-icon:before, a.btn-icon:after, .btn-icon:before, .btn-icon:after {
  display: none;
}

/* HEADLINE */
.headline1 {
  font-size: 3.85rem;
  font-family: "Merriweather", serif;
  line-height: 1.2;
  margin: 0 0 10px 0;
  font-weight: 900;
  color: #000000;
}

.headline2 {
  font-size: 2rem;
  font-family: "Merriweather", serif;
  line-height: 1.2;
  margin-bottom: 10px;
  font-weight: 900;
  color: #000000;
}

.headline3 {
  font-size: 1.25rem;
  font-family: "Merriweather", serif;
  line-height: 1.2;
  margin-bottom: 10px;
  font-weight: 900;
  color: #000000;
}

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

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

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

/* LINKS */
a {
  color: #000000;
  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: #FFFFFF;
  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: "Merriweather", serif;
  font-size: 1rem;
  font-weight: 900;
  color: #000000;
  text-transform: uppercase;
  padding: 10px 50px 10px 15px;
  line-height: 1.4;
  font-style: italic;
  letter-spacing: 0.055rem;
}
.mobile-nav .level-1 > li.active > a,
.mobile-nav.type-collapse .level-1 > li.active > a {
  color: #000000;
}
.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.4;
}
.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.4;
}
.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: 0.9rem;
  font-weight: 900;
  color: #000000;
  padding: 10px 15px 10px 30px;
  border-bottom: none;
  letter-spacing: 0.2px;
  line-height: 1.4;
  font-family: "Merriweather", serif;
  font-style: italic;
  text-transform: uppercase;
}
.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 a:before,
.mobile-nav.type-collapse .level-1 > li ul li a:before {
  content: none;
}
.mobile-nav .level-1 > li ul li.active > a,
.mobile-nav.type-collapse .level-1 > li ul li.active > a {
  color: #000000;
}
.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;
  padding: 10px 50px 10px 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: #000000;
}
.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;
  padding: 10px 50px 10px 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: #000000;
}
.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;
  padding: 10px 50px 10px 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: #000000;
}

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

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

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

body {
  font-family: "InfoText", sans-serif;
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 400;
  color: #000000;
  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 .logo-wrapper .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;
}
.header .logo-wrapper .hamburger .hamburger-box {
  height: auto;
}
.header.fixed .header_content {
  font-size: 0.85rem;
}
.header.fixed .logo img {
  max-width: 75%;
}

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

/* ============================================================================================ MEDIA QUERIES ======= */
@media (max-width: 1199px) {
  html {
    font-size: 95%;
  }
}
@media (max-width: 991px) {
  html {
    font-size: 90%;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 80%;
  }
}
/* ==================================================================================================== BASIC ======= */
body {
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
}

.slider .header-img .caption-wrapper .carousel-caption .btn {
  border-color: #fff;
}
.slider .header-img .caption-wrapper .carousel-caption .btn:hover, .slider .header-img .caption-wrapper .carousel-caption .btn:focus {
  border-color: #fff;
}

b, strong {
  font-weight: bold;
}

.container-fluid {
  padding-left: 20px;
  padding-right: 20px;
}

.container {
  padding: 0 20px;
}

.row {
  margin-left: -20px;
  margin-right: -20px;
}

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  padding-left: 20px;
  padding-right: 20px;
}

.module-wrapper {
  margin-bottom: 60px;
}

.headline1, .headline2, .headline3 {
  font-style: italic;
  letter-spacing: 0.055rem;
  text-transform: uppercase;
}

.headline3 {
  margin-bottom: 20px;
}

li {
  list-style-type: disc;
}
li::marker {
  color: #000;
}

a.btn-default:before, .btn-default:before, a.btn-primary:before, .btn-primary:before, a.btn-custom:before, .btn-custom:before {
  content: "";
  position: relative;
  display: inline-block;
  top: -4px;
  width: 50px;
  height: 2px;
  background: #000000;
  margin-right: 10px;
  -webkit-transition: width 0.5s cubic-bezier(0.55, 0, 0.1, 1), margin-right 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: width 0.5s cubic-bezier(0.55, 0, 0.1, 1), margin-right 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
a.btn-default:after, .btn-default:after, a.btn-primary:after, .btn-primary:after, a.btn-custom:after, .btn-custom:after {
  content: "\f178";
  font-family: "FontAwesome";
  font-size: 1rem;
  position: relative;
  display: inline-block;
  top: 6px;
  width: 0;
  background: transparent;
  margin-left: 0;
  overflow: hidden;
  -webkit-transition: width 0.5s cubic-bezier(0.55, 0, 0.1, 1), margin-left 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: width 0.5s cubic-bezier(0.55, 0, 0.1, 1), margin-left 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
a.btn-default:hover:before, .btn-default:hover:before, a.btn-primary:hover:before, .btn-primary:hover:before, a.btn-custom:hover:before, .btn-custom:hover:before {
  width: 0;
  margin-right: 0;
  -webkit-transition: width 0.5s cubic-bezier(0.55, 0, 0.1, 1), margin-right 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: width 0.5s cubic-bezier(0.55, 0, 0.1, 1), margin-right 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
a.btn-default:hover:after, .btn-default:hover:after, a.btn-primary:hover:after, .btn-primary:hover:after, a.btn-custom:hover:after, .btn-custom:hover:after {
  width: 30px;
  margin-left: 10px;
  -webkit-transition: width 0.5s cubic-bezier(0.55, 0, 0.1, 1), margin-left 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: width 0.5s cubic-bezier(0.55, 0, 0.1, 1), margin-left 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}

.thumbnail {
  margin-bottom: 40px;
}
.thumbnail img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  transition: filter 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-filter 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.thumbnail:hover img {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
  transition: filter 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-filter 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.thumbnail > a:hover {
  opacity: 1;
}

hr {
  border-top: 1px solid #000000;
}

.content .text-wrapper a:not(.btn) {
  font-weight: 600;
}
.content .text-wrapper a:not(.btn):hover, .content .text-wrapper a:not(.btn):focus {
  color: #000000;
  text-decoration: underline;
}
.content .text-wrapper a[href^="mailto:"] {
  font-weight: 400;
}

.Text_Link_TextTwo .module-content-block .row.visible-xs > .col-xs-12 {
  margin-bottom: 30px;
}
.Text_Link_TextTwo .module-content-block .row.visible-xs > .col-xs-12:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .Text_Link_TextTwo .module-content-block {
    margin-bottom: 0;
  }
}

.video-container {
  padding-top: 0;
}

/* =================================================================================================== HEADER ======= */
header .header.header__logo-left-nav-right {
  position: fixed;
  left: 0;
  right: 0;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0 1px 2px 0;
          box-shadow: rgba(0, 0, 0, 0.1) 0 1px 2px 0;
}
header .header.header__logo-left-nav-right .logo-wrapper .logo a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
header .header.header__logo-left-nav-right .logo-wrapper .logo img, header .header.header__logo-left-nav-right .logo-wrapper .logo svg {
  max-width: 250px;
}
header .header.header__logo-left-nav-right .logo-wrapper .logo svg {
  height: 100%;
}
header .header.header__logo-left-nav-right .top-nav .hamburger {
  padding-right: 0;
}
header .header.header__logo-left-nav-right .top-nav .navigation li.active > span > a {
  color: #36E7A5;
}
header .header.header__logo-left-nav-right .top-nav .navigation.level-1 {
  position: relative;
  top: 11px;
}
header .header.header__logo-left-nav-right .top-nav .navigation.level-1 > li.last-entry > span > a {
  padding-right: 0;
}
header .header.header__logo-left-nav-right .top-nav .navigation.level-2 > li {
  position: relative;
}
header .header.header__logo-left-nav-right .top-nav .navigation.level-2 > li.active > span > a:before {
  background: #36E7A5;
  -webkit-transition: width 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: width 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
header .header.header__logo-left-nav-right .top-nav .navigation.level-2 > li.active:hover > span > a:before {
  background: #000000;
  -webkit-transition: width 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: width 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
header .header.header__logo-left-nav-right .top-nav .navigation.level-2 > li > span > a:before {
  content: "";
  position: relative;
  display: inline-block;
  top: -4px;
  left: -10px;
  width: 0;
  height: 2px;
  background: #000000;
  -webkit-transition: width 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: width 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
header .header.header__logo-left-nav-right .top-nav .navigation.level-2 > li:hover > span > a:before, header .header.header__logo-left-nav-right .top-nav .navigation.level-2 > li.active > span > a:before {
  width: 15px;
  -webkit-transition: width 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: width 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
header .header.header__logo-left-nav-right .top-nav .navigation.level-2 > li.active > span > a {
  padding: 10px 15px 10px 20px;
}
header .header.header__logo-left-nav-right.fixed .logo-wrapper .logo img, header .header.header__logo-left-nav-right.fixed .logo-wrapper .logo svg {
  max-width: 250px;
}

/* =================================================================================================== SLIDER ======= */
.slider.slider_big .single-header .header-img, .slider.slider_big .amphi-slideshow .header-img, .slider.slider_big .amphi-no-slideshow .header-img, .slider.slider_small .single-header .header-img, .slider.slider_small .amphi-slideshow .header-img, .slider.slider_small .amphi-no-slideshow .header-img {
  overflow: hidden;
}
.slider.slider_big .single-header .header-img.video-img img, .slider.slider_big .amphi-slideshow .header-img.video-img img, .slider.slider_big .amphi-no-slideshow .header-img.video-img img, .slider.slider_small .single-header .header-img.video-img img, .slider.slider_small .amphi-slideshow .header-img.video-img img, .slider.slider_small .amphi-no-slideshow .header-img.video-img img {
  opacity: 0;
}
.slider.slider_big .single-header .header-img .video-wrapper, .slider.slider_big .single-header .header-img img, .slider.slider_big .amphi-slideshow .header-img .video-wrapper, .slider.slider_big .amphi-slideshow .header-img img, .slider.slider_big .amphi-no-slideshow .header-img .video-wrapper, .slider.slider_big .amphi-no-slideshow .header-img img, .slider.slider_small .single-header .header-img .video-wrapper, .slider.slider_small .single-header .header-img img, .slider.slider_small .amphi-slideshow .header-img .video-wrapper, .slider.slider_small .amphi-slideshow .header-img img, .slider.slider_small .amphi-no-slideshow .header-img .video-wrapper, .slider.slider_small .amphi-no-slideshow .header-img img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.slider.slider_big .single-header .header-img .video-wrapper, .slider.slider_big .amphi-slideshow .header-img .video-wrapper, .slider.slider_big .amphi-no-slideshow .header-img .video-wrapper, .slider.slider_small .single-header .header-img .video-wrapper, .slider.slider_small .amphi-slideshow .header-img .video-wrapper, .slider.slider_small .amphi-no-slideshow .header-img .video-wrapper {
  z-index: 10;
}
.slider.slider_big .single-header .header-img .caption-wrapper, .slider.slider_big .amphi-slideshow .header-img .caption-wrapper, .slider.slider_big .amphi-no-slideshow .header-img .caption-wrapper, .slider.slider_small .single-header .header-img .caption-wrapper, .slider.slider_small .amphi-slideshow .header-img .caption-wrapper, .slider.slider_small .amphi-no-slideshow .header-img .caption-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.slider.slider_big .single-header .header-img .caption-wrapper .carousel-caption, .slider.slider_big .amphi-slideshow .header-img .caption-wrapper .carousel-caption, .slider.slider_big .amphi-no-slideshow .header-img .caption-wrapper .carousel-caption, .slider.slider_small .single-header .header-img .caption-wrapper .carousel-caption, .slider.slider_small .amphi-slideshow .header-img .caption-wrapper .carousel-caption, .slider.slider_small .amphi-no-slideshow .header-img .caption-wrapper .carousel-caption {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-shadow: none;
}
.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, .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: 6rem;
  color: #36E7A5;
  text-transform: uppercase;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.slider.slider_big .single-header .header-img .caption-wrapper .carousel-caption .headline1 a, .slider.slider_big .amphi-slideshow .header-img .caption-wrapper .carousel-caption .headline1 a, .slider.slider_big .amphi-no-slideshow .header-img .caption-wrapper .carousel-caption .headline1 a, .slider.slider_small .single-header .header-img .caption-wrapper .carousel-caption .headline1 a, .slider.slider_small .amphi-slideshow .header-img .caption-wrapper .carousel-caption .headline1 a, .slider.slider_small .amphi-no-slideshow .header-img .caption-wrapper .carousel-caption .headline1 a {
  color: #36E7A5;
}
.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, .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 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.slider.slider_big .single-header .header-img .caption-wrapper .carousel-caption .btn, .slider.slider_big .amphi-slideshow .header-img .caption-wrapper .carousel-caption .btn, .slider.slider_big .amphi-no-slideshow .header-img .caption-wrapper .carousel-caption .btn, .slider.slider_small .single-header .header-img .caption-wrapper .carousel-caption .btn, .slider.slider_small .amphi-slideshow .header-img .caption-wrapper .carousel-caption .btn, .slider.slider_small .amphi-no-slideshow .header-img .caption-wrapper .carousel-caption .btn {
  -ms-flex-item-align: center;
      align-self: center;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  background: transparent;
  color: #FFFFFF;
}
.slider.slider_big .single-header .header-img .caption-wrapper .carousel-caption .btn:before, .slider.slider_big .amphi-slideshow .header-img .caption-wrapper .carousel-caption .btn:before, .slider.slider_big .amphi-no-slideshow .header-img .caption-wrapper .carousel-caption .btn:before, .slider.slider_small .single-header .header-img .caption-wrapper .carousel-caption .btn:before, .slider.slider_small .amphi-slideshow .header-img .caption-wrapper .carousel-caption .btn:before, .slider.slider_small .amphi-no-slideshow .header-img .caption-wrapper .carousel-caption .btn:before {
  background: #FFFFFF;
}
.slider.slider_big .single-header .header-img .video-wrapper video, .slider.slider_big .amphi-slideshow .header-img .video-wrapper video, .slider.slider_big .amphi-no-slideshow .header-img .video-wrapper video, .slider.slider_small .single-header .header-img .video-wrapper video, .slider.slider_small .amphi-slideshow .header-img .video-wrapper video, .slider.slider_small .amphi-no-slideshow .header-img .video-wrapper video {
  left: 50%;
  min-height: 100%;
  min-width: 100%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.amphi-slideshow .owl-dots {
  bottom: 15px;
}
.amphi-slideshow .owl-dots .owl-dot > span {
  width: 15px;
  height: 15px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0);
  border: 1px solid #FFFFFF;
  -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);
}
.amphi-slideshow .owl-dots .owl-dot:hover > span {
  background: #FFFFFF;
  -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);
}
.amphi-slideshow .owl-dots .owl-dot.active > span {
  background: #FFFFFF;
  border: 1px solid #FFFFFF;
}
.amphi-slideshow .owl-nav {
  height: 100%;
  top: 0;
  bottom: 0;
  margin: 0;
}
.amphi-slideshow .owl-nav div .owl-prev {
  left: 0;
}

.content .amphi-slideshow .owl-nav div {
  width: 50%;
  height: 100%;
  opacity: 0;
  -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);
}
.content .amphi-slideshow .owl-nav div:hover {
  opacity: 1;
  -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);
}
.content .amphi-slideshow .owl-nav div span {
  width: 22px;
  height: 84px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.content .amphi-slideshow .owl-nav div.owl-prev {
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), color-stop(40%, rgba(0, 0, 0, 0.1)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0) 100%);
  left: 0;
}
.content .amphi-slideshow .owl-nav div.owl-prev span {
  background: url(../layout/references-arrow-prev-white.png);
  background-size: cover;
  left: 50px;
}
.content .amphi-slideshow .owl-nav div.owl-prev span:before {
  display: none;
}
.content .amphi-slideshow .owl-nav div.owl-next {
  background: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), color-stop(40%, rgba(0, 0, 0, 0.1)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0) 100%);
  right: 0;
}
.content .amphi-slideshow .owl-nav div.owl-next span {
  background: url(../layout/references-arrow-next-white.png);
  background-size: cover;
  right: 50px;
}
.content .amphi-slideshow .owl-nav div.owl-next span:before {
  display: none;
}
.content .amphi-slideshow .owl-dots {
  bottom: 15px;
}
.content .amphi-slideshow .owl-dots .owl-dot > span {
  border: 1px solid #FFFFFF;
}
.content .amphi-slideshow .owl-dots .owl-dot.active > span {
  background: #FFFFFF;
  border: 1px solid #FFFFFF;
}

/* ================================================================================================== CONTENT ======= */
main {
  position: relative;
}
main:after {
  content: "";
  display: block;
  background: url(/_media/themes/1/layout/LC_Logo-2013_Gecko_Schwarz.png);
  width: 100px;
  height: 51px;
  position: absolute;
  left: 50%;
  bottom: 25px;
  margin-left: -50px;
  background-size: contain;
  background-repeat: no-repeat;
}
main .content:last-child .content_content-background-inner {
  padding: 100px 0 100px 0;
}

.content:nth-child(even) {
  background-color: transparent;
}
.content .content_content-background-inner {
  padding: 100px 0 40px 0;
}
.content.content__content-four-full-video-section .content_content-background-inner {
  padding: 0;
}
.content.content__content-four-full-video-section .content_content-background-inner .module-wrapper > [class*=col-] {
  padding: 0;
}

.Content_Gallery .single-slide .header-img img.img-responsive {
  width: 100%;
}

/* =================================================================================================== FOOTER ======= */
.footer .footer_background-inner {
  padding: 100px 0 40px 0;
}
.footer .footer_background-inner .headline3 {
  margin-bottom: 25px;
  border-bottom: 1px solid #FFF;
  padding-bottom: 10px;
  text-transform: uppercase;
}
.footer .footer_background-inner a {
  text-decoration: none;
}
.footer .footer_background-inner a.btn-default, .footer .footer_background-inner .btn-default, .footer .footer_background-inner a.btn-primary, .footer .footer_background-inner .btn-primary, .footer .footer_background-inner a.btn-custom, .footer .footer_background-inner .btn-custom {
  background: transparent;
}
.footer .footer_background-inner a.btn-default:before, .footer .footer_background-inner .btn-default:before, .footer .footer_background-inner a.btn-primary:before, .footer .footer_background-inner .btn-primary:before, .footer .footer_background-inner a.btn-custom:before, .footer .footer_background-inner .btn-custom:before {
  background: #FFFFFF;
}
.footer .footer_background-inner ul {
  padding: 0;
}
.footer .footer_background-inner ul li {
  list-style-type: none;
}
.footer .footer_background-inner ul li a {
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.footer-addon-bottom {
  background: #000000;
  color: #FFFFFF;
  font-size: 1rem;
  padding: 0;
}
.footer-addon-bottom .footer-addon-bottom_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 0;
}
.footer-addon-bottom .footer-addon-bottom_inner .text-wrapper a {
  color: #FFFFFF;
  margin: 0 5px;
}
.footer-addon-bottom .footer-addon-bottom_inner .text-wrapper a:hover {
  opacity: 0.8;
}
.footer-addon-bottom .footer-addon-bottom_inner .text-wrapper a:first-child {
  margin-left: 0;
}
.footer-addon-bottom .footer-addon-bottom_inner .footer-addon-bottom_left_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer-addon-bottom .footer-addon-bottom_inner .footer-addon-bottom_left_inner .top-fifty {
  background: #FFFFFF;
  color: #000000;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 55px;
  min-height: 55px;
  line-height: 1;
  padding: 10px 5px 5px 5px;
  margin-right: 15px;
  text-transform: uppercase;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.footer-addon-bottom .footer-addon-bottom_inner .footer-addon-bottom_left_inner .top-fifty > span {
  font-size: 1.25rem;
  font-weight: 600;
}
.footer-addon-bottom .footer-addon-bottom_inner .footer-addon-bottom_left_inner .top-fifty:hover {
  background: #000000;
  color: #FFFFFF;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.footer-addon-bottom .footer-addon-bottom_inner .footer-addon-bottom_right_inner .footer-addon-bottom_social-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer-addon-bottom .footer-addon-bottom_inner .footer-addon-bottom_right_inner .footer-addon-bottom_social-media .social-media-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer-addon-bottom .footer-addon-bottom_inner .footer-addon-bottom_right_inner .footer-addon-bottom_social-media .social-media-icons .amphiicon {
  font-size: 20px;
}
.footer-addon-bottom .footer-addon-bottom_inner .footer-addon-bottom_right_inner .footer-addon-bottom_social-media a:not(.edit-mode-element) {
  color: #FFFFFF;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 20px;
  -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);
}
.footer-addon-bottom .footer-addon-bottom_inner .footer-addon-bottom_right_inner .footer-addon-bottom_social-media a:not(.edit-mode-element):hover {
  color: #36E7A5;
  -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);
}

/* ==================================================================================== BAUSTEINEINSTELLUNGEN ======= */
.module-style__white-separator hr {
  border-top: 1px solid #FFFFFF;
}

.Special_ChangingContents .category-elements > .category-element {
  padding: 20px;
}

.News_News .module-content-block, .News_Press .module-content-block, .Files_Files .module-content-block, .Community_Comment .module-content-block, .moduleTextSearch .module-content-block, .Special_ChangingContents .module-content-block, .Community_Guestbook .module-content-block, .Static_BodyMassIndex .module-content-block {
  padding-bottom: 20px;
}

.module-style__text-white a.btn-default, .module-style__text-white .btn-default, .module-style__text-white a.btn-primary, .module-style__text-white .btn-primary, .module-style__text-white a.btn-custom, .module-style__text-white .btn-custom {
  color: #FFFFFF;
  border-color: #FFFFFF;
}
.module-style__text-white a.btn-default:before, .module-style__text-white .btn-default:before, .module-style__text-white a.btn-primary:before, .module-style__text-white .btn-primary:before, .module-style__text-white a.btn-custom:before, .module-style__text-white .btn-custom:before {
  background: #FFFFFF;
}
.module-style__text-white a.btn-default:after, .module-style__text-white .btn-default:after, .module-style__text-white a.btn-primary:after, .module-style__text-white .btn-primary:after, .module-style__text-white a.btn-custom:after, .module-style__text-white .btn-custom:after {
  background: transparent;
}
.module-style__text-white a.btn-default:hover, .module-style__text-white .btn-default:hover, .module-style__text-white a.btn-primary:hover, .module-style__text-white .btn-primary:hover, .module-style__text-white a.btn-custom:hover, .module-style__text-white .btn-custom:hover {
  color: #FFFFFF;
}

.module-style__individual-news > [class*=col-] > .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.module-style__individual-news .module-content-block {
  position: relative;
  -webkit-transform: scale(1);
          transform: scale(1);
  -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);
}
.module-style__individual-news .module-content-block .row > [class*=col-] .newsDate {
  margin-bottom: 15px;
}
.module-style__individual-news .module-content-block .row > [class*=col-] > p:last-child {
  position: absolute;
  left: 20px;
  top: 0;
  right: 20px;
  bottom: 0;
  opacity: 0;
}
.module-style__individual-news .module-content-block .row > [class*=col-] > p:last-child .btn {
  width: 100%;
  height: 100%;
  margin: 0;
}
.module-style__individual-news .module-content-block .row > [class*=col-] > p:last-child .btn:hover {
  top: 0;
}
.module-style__individual-news .module-content-block:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -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);
}
.module-style__individual-news .module-content-block:hover .thumbnail img {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}

.module-style__smaller-module-wrapper {
  width: 85%;
  margin: 0 auto 60px auto;
  max-width: 1100px;
}

.module-style__smaller-module-wrapper.module-style__smaller-module-wrapper-left-align {
  max-width: 75%;
  margin: 0 -20px 60px -20px;
}

.module-style__smaller-module-wrapper.module-style__smaller-module-wrapper-right-align {
  max-width: 75%;
  margin: 0 -20px 60px calc(25% - 20px);
}

.module-style__headline2-vertical-line .headline2 {
  position: relative;
}
.module-style__headline2-vertical-line .headline2:after {
  content: "";
  width: 180px;
  height: 28px;
  background: url("/_media/themes/1/layout/references-arrow.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  margin: 60px auto 0 auto;
  -webkit-animation: bounce 1s infinite alternate;
          animation: bounce 1s infinite alternate;
}

.module-style__headline2-vertical-line.module-style__text-white .headline2:after {
  background: url("/_media/themes/1/layout/references-arrow-white.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.module-style__headline2-InfoTextBook .headline2 {
  font-family: "InfoTextBook", "sans-serif";
  font-weight: 400;
}

.module-style__box-dark-grey.Special_ChangingContents .category-elements .module-content-block {
  position: relative;
  padding: 25px;
  background: #1a1a1a;
}
.module-style__box-dark-grey.Special_ChangingContents .category-elements .module-content-block .text-wrapper {
  font-size: 0.984375rem;
  color: #FFFFFF;
}
.module-style__box-dark-grey.Special_ChangingContents .category-elements .module-content-block > p {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  opacity: 0;
}
.module-style__box-dark-grey.Special_ChangingContents .category-elements .module-content-block > p a.btn-default, .module-style__box-dark-grey.Special_ChangingContents .category-elements .module-content-block > p .btn-default, .module-style__box-dark-grey.Special_ChangingContents .category-elements .module-content-block > p a.btn-primary, .module-style__box-dark-grey.Special_ChangingContents .category-elements .module-content-block > p .btn-primary, .module-style__box-dark-grey.Special_ChangingContents .category-elements .module-content-block > p a.btn-custom, .module-style__box-dark-grey.Special_ChangingContents .category-elements .module-content-block > p .btn-custom {
  width: 100%;
  height: 100%;
  margin: 0;
}
.module-style__box-dark-grey.Special_ChangingContents .category-elements .module-content-block .js-tilt-glare-inner {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.35))) !important;
  background-image: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.35) 100%) !important;
}

.module-style__key-facts-references.Text_Link_TextImageLeft .module-content-block > .row > [class*=col-]:last-child {
  background: #000000;
  color: #FFFFFF;
  padding: 40px;
}
.module-style__key-facts-references.Text_Link_TextImageLeft .module-content-block > .row > [class*=col-]:last-child .headline-wrapper .headline1, .module-style__key-facts-references.Text_Link_TextImageLeft .module-content-block > .row > [class*=col-]:last-child .headline-wrapper .headline2 {
  color: #FFFFFF;
}
.module-style__key-facts-references.Text_Link_TextImageLeft .module-content-block > .row > [class*=col-]:last-child .text-wrapper a {
  color: #FFFFFF;
}
.module-style__key-facts-references.Text_Link_TextImageLeft .module-content-block > .row > [class*=col-]:last-child .text-wrapper a:hover {
  color: #FFFFFF;
}
.module-style__key-facts-references.Text_Link_TextImageLeft .module-content-block > .row > [class*=col-]:last-child .text-wrapper ul {
  padding-left: 20px;
  margin: 30px 0 10px 0;
}
.module-style__key-facts-references.Text_Link_TextImageLeft .module-content-block > .row > [class*=col-]:last-child .text-wrapper ul li {
  font-size: 1.5rem;
}
.module-style__key-facts-references.Text_Link_TextImageLeft .module-content-block > .row > [class*=col-]:last-child .text-wrapper ul li::marker {
  color: #FFFFFF;
}
.module-style__key-facts-references.Text_Link_TextImageLeft .module-content-block > .row > [class*=col-]:last-child a.btn-default, .module-style__key-facts-references.Text_Link_TextImageLeft .module-content-block > .row > [class*=col-]:last-child .btn-default, .module-style__key-facts-references.Text_Link_TextImageLeft .module-content-block > .row > [class*=col-]:last-child a.btn-primary, .module-style__key-facts-references.Text_Link_TextImageLeft .module-content-block > .row > [class*=col-]:last-child .btn-primary, .module-style__key-facts-references.Text_Link_TextImageLeft .module-content-block > .row > [class*=col-]:last-child a.btn-custom, .module-style__key-facts-references.Text_Link_TextImageLeft .module-content-block > .row > [class*=col-]:last-child .btn-custom {
  color: #FFFFFF;
}
.module-style__key-facts-references.Text_Link_TextImageLeft .module-content-block > .row > [class*=col-]:last-child a.btn-default:before, .module-style__key-facts-references.Text_Link_TextImageLeft .module-content-block > .row > [class*=col-]:last-child .btn-default:before, .module-style__key-facts-references.Text_Link_TextImageLeft .module-content-block > .row > [class*=col-]:last-child a.btn-primary:before, .module-style__key-facts-references.Text_Link_TextImageLeft .module-content-block > .row > [class*=col-]:last-child .btn-primary:before, .module-style__key-facts-references.Text_Link_TextImageLeft .module-content-block > .row > [class*=col-]:last-child a.btn-custom:before, .module-style__key-facts-references.Text_Link_TextImageLeft .module-content-block > .row > [class*=col-]:last-child .btn-custom:before {
  background: #FFFFFF;
}
.module-style__key-facts-references.Text_Link_TextImageLeft .module-content-block > .row > [class*=col-]:last-child a.btn-default:after, .module-style__key-facts-references.Text_Link_TextImageLeft .module-content-block > .row > [class*=col-]:last-child .btn-default:after, .module-style__key-facts-references.Text_Link_TextImageLeft .module-content-block > .row > [class*=col-]:last-child a.btn-primary:after, .module-style__key-facts-references.Text_Link_TextImageLeft .module-content-block > .row > [class*=col-]:last-child .btn-primary:after, .module-style__key-facts-references.Text_Link_TextImageLeft .module-content-block > .row > [class*=col-]:last-child a.btn-custom:after, .module-style__key-facts-references.Text_Link_TextImageLeft .module-content-block > .row > [class*=col-]:last-child .btn-custom:after {
  background: transparent;
}
.module-style__key-facts-references.Text_Link_TextImageLeft .module-content-block > .row > [class*=col-]:last-child a.btn-default:hover, .module-style__key-facts-references.Text_Link_TextImageLeft .module-content-block > .row > [class*=col-]:last-child .btn-default:hover, .module-style__key-facts-references.Text_Link_TextImageLeft .module-content-block > .row > [class*=col-]:last-child a.btn-primary:hover, .module-style__key-facts-references.Text_Link_TextImageLeft .module-content-block > .row > [class*=col-]:last-child .btn-primary:hover, .module-style__key-facts-references.Text_Link_TextImageLeft .module-content-block > .row > [class*=col-]:last-child a.btn-custom:hover, .module-style__key-facts-references.Text_Link_TextImageLeft .module-content-block > .row > [class*=col-]:last-child .btn-custom:hover {
  color: #FFFFFF;
}
.module-style__key-facts-references.Text_Link_TextImageRight .module-content-block > .row > [class*=col-]:first-child {
  background: #000000;
  color: #FFFFFF;
  padding: 40px;
}
.module-style__key-facts-references.Text_Link_TextImageRight .module-content-block > .row > [class*=col-]:first-child .headline-wrapper .headline1, .module-style__key-facts-references.Text_Link_TextImageRight .module-content-block > .row > [class*=col-]:first-child .headline-wrapper .headline2 {
  color: #FFFFFF;
}
.module-style__key-facts-references.Text_Link_TextImageRight .module-content-block > .row > [class*=col-]:first-child .text-wrapper a {
  color: #FFFFFF;
}
.module-style__key-facts-references.Text_Link_TextImageRight .module-content-block > .row > [class*=col-]:first-child .text-wrapper a:hover {
  color: #FFFFFF;
}
.module-style__key-facts-references.Text_Link_TextImageRight .module-content-block > .row > [class*=col-]:first-child .text-wrapper ul {
  padding-left: 20px;
  margin: 30px 0 10px 0;
}
.module-style__key-facts-references.Text_Link_TextImageRight .module-content-block > .row > [class*=col-]:first-child .text-wrapper ul li {
  font-size: 1.5rem;
}
.module-style__key-facts-references.Text_Link_TextImageRight .module-content-block > .row > [class*=col-]:first-child .text-wrapper ul li::marker {
  color: #FFFFFF;
}
.module-style__key-facts-references.Text_Link_TextImageRight .module-content-block > .row > [class*=col-]:first-child a.btn-default, .module-style__key-facts-references.Text_Link_TextImageRight .module-content-block > .row > [class*=col-]:first-child .btn-default, .module-style__key-facts-references.Text_Link_TextImageRight .module-content-block > .row > [class*=col-]:first-child a.btn-primary, .module-style__key-facts-references.Text_Link_TextImageRight .module-content-block > .row > [class*=col-]:first-child .btn-primary, .module-style__key-facts-references.Text_Link_TextImageRight .module-content-block > .row > [class*=col-]:first-child a.btn-custom, .module-style__key-facts-references.Text_Link_TextImageRight .module-content-block > .row > [class*=col-]:first-child .btn-custom {
  color: #FFFFFF;
}
.module-style__key-facts-references.Text_Link_TextImageRight .module-content-block > .row > [class*=col-]:first-child a.btn-default:before, .module-style__key-facts-references.Text_Link_TextImageRight .module-content-block > .row > [class*=col-]:first-child .btn-default:before, .module-style__key-facts-references.Text_Link_TextImageRight .module-content-block > .row > [class*=col-]:first-child a.btn-primary:before, .module-style__key-facts-references.Text_Link_TextImageRight .module-content-block > .row > [class*=col-]:first-child .btn-primary:before, .module-style__key-facts-references.Text_Link_TextImageRight .module-content-block > .row > [class*=col-]:first-child a.btn-custom:before, .module-style__key-facts-references.Text_Link_TextImageRight .module-content-block > .row > [class*=col-]:first-child .btn-custom:before {
  background: #FFFFFF;
}
.module-style__key-facts-references.Text_Link_TextImageRight .module-content-block > .row > [class*=col-]:first-child a.btn-default:after, .module-style__key-facts-references.Text_Link_TextImageRight .module-content-block > .row > [class*=col-]:first-child .btn-default:after, .module-style__key-facts-references.Text_Link_TextImageRight .module-content-block > .row > [class*=col-]:first-child a.btn-primary:after, .module-style__key-facts-references.Text_Link_TextImageRight .module-content-block > .row > [class*=col-]:first-child .btn-primary:after, .module-style__key-facts-references.Text_Link_TextImageRight .module-content-block > .row > [class*=col-]:first-child a.btn-custom:after, .module-style__key-facts-references.Text_Link_TextImageRight .module-content-block > .row > [class*=col-]:first-child .btn-custom:after {
  background: transparent;
}
.module-style__key-facts-references.Text_Link_TextImageRight .module-content-block > .row > [class*=col-]:first-child a.btn-default:hover, .module-style__key-facts-references.Text_Link_TextImageRight .module-content-block > .row > [class*=col-]:first-child .btn-default:hover, .module-style__key-facts-references.Text_Link_TextImageRight .module-content-block > .row > [class*=col-]:first-child a.btn-primary:hover, .module-style__key-facts-references.Text_Link_TextImageRight .module-content-block > .row > [class*=col-]:first-child .btn-primary:hover, .module-style__key-facts-references.Text_Link_TextImageRight .module-content-block > .row > [class*=col-]:first-child a.btn-custom:hover, .module-style__key-facts-references.Text_Link_TextImageRight .module-content-block > .row > [class*=col-]:first-child .btn-custom:hover {
  color: #FFFFFF;
}
.module-style__key-facts-references.Text_Link_TextImageTwo.key-facts-references-right > [class*=col-] > .row > [class*=col-]:last-child {
  background: #000000;
  color: #FFFFFF;
  padding: 40px;
}
.module-style__key-facts-references.Text_Link_TextImageTwo.key-facts-references-right > [class*=col-] > .row > [class*=col-]:last-child .module-content-block .headline-wrapper .headline3 {
  font-size: 2rem;
  color: #FFFFFF;
}
.module-style__key-facts-references.Text_Link_TextImageTwo.key-facts-references-right > [class*=col-] > .row > [class*=col-]:last-child .module-content-block .text-wrapper a {
  color: #FFFFFF;
}
.module-style__key-facts-references.Text_Link_TextImageTwo.key-facts-references-right > [class*=col-] > .row > [class*=col-]:last-child .module-content-block .text-wrapper a:hover {
  color: #FFFFFF;
}
.module-style__key-facts-references.Text_Link_TextImageTwo.key-facts-references-right > [class*=col-] > .row > [class*=col-]:last-child .module-content-block .text-wrapper ul {
  padding-left: 20px;
  margin: 30px 0 10px 0;
}
.module-style__key-facts-references.Text_Link_TextImageTwo.key-facts-references-right > [class*=col-] > .row > [class*=col-]:last-child .module-content-block .text-wrapper ul li {
  font-size: 1.5rem;
}
.module-style__key-facts-references.Text_Link_TextImageTwo.key-facts-references-right > [class*=col-] > .row > [class*=col-]:last-child .module-content-block .text-wrapper ul li::marker {
  color: #FFFFFF;
}
.module-style__key-facts-references.Text_Link_TextImageTwo.key-facts-references-right > [class*=col-] > .row > [class*=col-]:last-child .module-content-block a.btn-default, .module-style__key-facts-references.Text_Link_TextImageTwo.key-facts-references-right > [class*=col-] > .row > [class*=col-]:last-child .module-content-block .btn-default, .module-style__key-facts-references.Text_Link_TextImageTwo.key-facts-references-right > [class*=col-] > .row > [class*=col-]:last-child .module-content-block a.btn-primary, .module-style__key-facts-references.Text_Link_TextImageTwo.key-facts-references-right > [class*=col-] > .row > [class*=col-]:last-child .module-content-block .btn-primary, .module-style__key-facts-references.Text_Link_TextImageTwo.key-facts-references-right > [class*=col-] > .row > [class*=col-]:last-child .module-content-block a.btn-custom, .module-style__key-facts-references.Text_Link_TextImageTwo.key-facts-references-right > [class*=col-] > .row > [class*=col-]:last-child .module-content-block .btn-custom {
  color: #FFFFFF;
}
.module-style__key-facts-references.Text_Link_TextImageTwo.key-facts-references-right > [class*=col-] > .row > [class*=col-]:last-child .module-content-block a.btn-default:before, .module-style__key-facts-references.Text_Link_TextImageTwo.key-facts-references-right > [class*=col-] > .row > [class*=col-]:last-child .module-content-block .btn-default:before, .module-style__key-facts-references.Text_Link_TextImageTwo.key-facts-references-right > [class*=col-] > .row > [class*=col-]:last-child .module-content-block a.btn-primary:before, .module-style__key-facts-references.Text_Link_TextImageTwo.key-facts-references-right > [class*=col-] > .row > [class*=col-]:last-child .module-content-block .btn-primary:before, .module-style__key-facts-references.Text_Link_TextImageTwo.key-facts-references-right > [class*=col-] > .row > [class*=col-]:last-child .module-content-block a.btn-custom:before, .module-style__key-facts-references.Text_Link_TextImageTwo.key-facts-references-right > [class*=col-] > .row > [class*=col-]:last-child .module-content-block .btn-custom:before {
  background: #FFFFFF;
}
.module-style__key-facts-references.Text_Link_TextImageTwo.key-facts-references-right > [class*=col-] > .row > [class*=col-]:last-child .module-content-block a.btn-default:after, .module-style__key-facts-references.Text_Link_TextImageTwo.key-facts-references-right > [class*=col-] > .row > [class*=col-]:last-child .module-content-block .btn-default:after, .module-style__key-facts-references.Text_Link_TextImageTwo.key-facts-references-right > [class*=col-] > .row > [class*=col-]:last-child .module-content-block a.btn-primary:after, .module-style__key-facts-references.Text_Link_TextImageTwo.key-facts-references-right > [class*=col-] > .row > [class*=col-]:last-child .module-content-block .btn-primary:after, .module-style__key-facts-references.Text_Link_TextImageTwo.key-facts-references-right > [class*=col-] > .row > [class*=col-]:last-child .module-content-block a.btn-custom:after, .module-style__key-facts-references.Text_Link_TextImageTwo.key-facts-references-right > [class*=col-] > .row > [class*=col-]:last-child .module-content-block .btn-custom:after {
  background: transparent;
}
.module-style__key-facts-references.Text_Link_TextImageTwo.key-facts-references-right > [class*=col-] > .row > [class*=col-]:last-child .module-content-block a.btn-default:hover, .module-style__key-facts-references.Text_Link_TextImageTwo.key-facts-references-right > [class*=col-] > .row > [class*=col-]:last-child .module-content-block .btn-default:hover, .module-style__key-facts-references.Text_Link_TextImageTwo.key-facts-references-right > [class*=col-] > .row > [class*=col-]:last-child .module-content-block a.btn-primary:hover, .module-style__key-facts-references.Text_Link_TextImageTwo.key-facts-references-right > [class*=col-] > .row > [class*=col-]:last-child .module-content-block .btn-primary:hover, .module-style__key-facts-references.Text_Link_TextImageTwo.key-facts-references-right > [class*=col-] > .row > [class*=col-]:last-child .module-content-block a.btn-custom:hover, .module-style__key-facts-references.Text_Link_TextImageTwo.key-facts-references-right > [class*=col-] > .row > [class*=col-]:last-child .module-content-block .btn-custom:hover {
  color: #FFFFFF;
}
.module-style__key-facts-references.Text_Link_TextImageTwo.key-facts-references-left > [class*=col-] > .row > [class*=col-]:first-child {
  background: #000000;
  color: #FFFFFF;
  padding: 40px;
}
.module-style__key-facts-references.Text_Link_TextImageTwo.key-facts-references-left > [class*=col-] > .row > [class*=col-]:first-child .module-content-block .headline-wrapper .headline3 {
  font-size: 2rem;
  color: #FFFFFF;
}
.module-style__key-facts-references.Text_Link_TextImageTwo.key-facts-references-left > [class*=col-] > .row > [class*=col-]:first-child .module-content-block .text-wrapper a {
  color: #FFFFFF;
}
.module-style__key-facts-references.Text_Link_TextImageTwo.key-facts-references-left > [class*=col-] > .row > [class*=col-]:first-child .module-content-block .text-wrapper a:hover {
  color: #FFFFFF;
}
.module-style__key-facts-references.Text_Link_TextImageTwo.key-facts-references-left > [class*=col-] > .row > [class*=col-]:first-child .module-content-block .text-wrapper ul {
  padding-left: 20px;
  margin: 30px 0 10px 0;
}
.module-style__key-facts-references.Text_Link_TextImageTwo.key-facts-references-left > [class*=col-] > .row > [class*=col-]:first-child .module-content-block .text-wrapper ul li {
  font-size: 1.5rem;
}
.module-style__key-facts-references.Text_Link_TextImageTwo.key-facts-references-left > [class*=col-] > .row > [class*=col-]:first-child .module-content-block .text-wrapper ul li::marker {
  color: #FFFFFF;
}
.module-style__key-facts-references.Text_Link_TextImageTwo.key-facts-references-left > [class*=col-] > .row > [class*=col-]:first-child .module-content-block a.btn-default, .module-style__key-facts-references.Text_Link_TextImageTwo.key-facts-references-left > [class*=col-] > .row > [class*=col-]:first-child .module-content-block .btn-default, .module-style__key-facts-references.Text_Link_TextImageTwo.key-facts-references-left > [class*=col-] > .row > [class*=col-]:first-child .module-content-block a.btn-primary, .module-style__key-facts-references.Text_Link_TextImageTwo.key-facts-references-left > [class*=col-] > .row > [class*=col-]:first-child .module-content-block .btn-primary, .module-style__key-facts-references.Text_Link_TextImageTwo.key-facts-references-left > [class*=col-] > .row > [class*=col-]:first-child .module-content-block a.btn-custom, .module-style__key-facts-references.Text_Link_TextImageTwo.key-facts-references-left > [class*=col-] > .row > [class*=col-]:first-child .module-content-block .btn-custom {
  color: #FFFFFF;
}
.module-style__key-facts-references.Text_Link_TextImageTwo.key-facts-references-left > [class*=col-] > .row > [class*=col-]:first-child .module-content-block a.btn-default:before, .module-style__key-facts-references.Text_Link_TextImageTwo.key-facts-references-left > [class*=col-] > .row > [class*=col-]:first-child .module-content-block .btn-default:before, .module-style__key-facts-references.Text_Link_TextImageTwo.key-facts-references-left > [class*=col-] > .row > [class*=col-]:first-child .module-content-block a.btn-primary:before, .module-style__key-facts-references.Text_Link_TextImageTwo.key-facts-references-left > [class*=col-] > .row > [class*=col-]:first-child .module-content-block .btn-primary:before, .module-style__key-facts-references.Text_Link_TextImageTwo.key-facts-references-left > [class*=col-] > .row > [class*=col-]:first-child .module-content-block a.btn-custom:before, .module-style__key-facts-references.Text_Link_TextImageTwo.key-facts-references-left > [class*=col-] > .row > [class*=col-]:first-child .module-content-block .btn-custom:before {
  background: #FFFFFF;
}
.module-style__key-facts-references.Text_Link_TextImageTwo.key-facts-references-left > [class*=col-] > .row > [class*=col-]:first-child .module-content-block a.btn-default:after, .module-style__key-facts-references.Text_Link_TextImageTwo.key-facts-references-left > [class*=col-] > .row > [class*=col-]:first-child .module-content-block .btn-default:after, .module-style__key-facts-references.Text_Link_TextImageTwo.key-facts-references-left > [class*=col-] > .row > [class*=col-]:first-child .module-content-block a.btn-primary:after, .module-style__key-facts-references.Text_Link_TextImageTwo.key-facts-references-left > [class*=col-] > .row > [class*=col-]:first-child .module-content-block .btn-primary:after, .module-style__key-facts-references.Text_Link_TextImageTwo.key-facts-references-left > [class*=col-] > .row > [class*=col-]:first-child .module-content-block a.btn-custom:after, .module-style__key-facts-references.Text_Link_TextImageTwo.key-facts-references-left > [class*=col-] > .row > [class*=col-]:first-child .module-content-block .btn-custom:after {
  background: transparent;
}
.module-style__key-facts-references.Text_Link_TextImageTwo.key-facts-references-left > [class*=col-] > .row > [class*=col-]:first-child .module-content-block a.btn-default:hover, .module-style__key-facts-references.Text_Link_TextImageTwo.key-facts-references-left > [class*=col-] > .row > [class*=col-]:first-child .module-content-block .btn-default:hover, .module-style__key-facts-references.Text_Link_TextImageTwo.key-facts-references-left > [class*=col-] > .row > [class*=col-]:first-child .module-content-block a.btn-primary:hover, .module-style__key-facts-references.Text_Link_TextImageTwo.key-facts-references-left > [class*=col-] > .row > [class*=col-]:first-child .module-content-block .btn-primary:hover, .module-style__key-facts-references.Text_Link_TextImageTwo.key-facts-references-left > [class*=col-] > .row > [class*=col-]:first-child .module-content-block a.btn-custom:hover, .module-style__key-facts-references.Text_Link_TextImageTwo.key-facts-references-left > [class*=col-] > .row > [class*=col-]:first-child .module-content-block .btn-custom:hover {
  color: #FFFFFF;
}

.module-style__no-bwFilter-images .thumbnail img {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}

.module-style__slider-overlayer .amphi-slideshow .header-img:after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.02);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.module-style__references-slider .amphi-slideshow .header-img .gallery-carousel-caption {
  width: 50%;
  height: 100%;
  right: 0;
  left: auto;
  text-shadow: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  bottom: 0;
  padding: 20% 50px 60px 50px;
}
.module-style__references-slider .amphi-slideshow .header-img .gallery-carousel-caption:before {
  display: none;
}
.module-style__references-slider .amphi-slideshow .header-img .gallery-carousel-caption .headline-wrapper {
  max-width: 750px;
}
.module-style__references-slider .amphi-slideshow .header-img .gallery-carousel-caption .headline-wrapper .headline1 {
  font-size: 2.75vw;
}
.module-style__references-slider .amphi-slideshow .header-img .gallery-carousel-caption .text-wrapper {
  width: 100%;
  max-width: 700px;
}
.module-style__references-slider .amphi-slideshow .header-img .gallery-carousel-caption .text-wrapper > p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.module-style__references-slider .amphi-slideshow .owl-dots {
  width: 50%;
  right: 0;
}

.module-style__teaser-manager-references.Special_ChangingContents .filter-elements {
  margin-bottom: 25px;
}
.module-style__teaser-manager-references.Special_ChangingContents .filter-elements fieldset > .form-group {
  width: 50%;
  margin: 0;
}
.module-style__teaser-manager-references.Special_ChangingContents .filter-elements fieldset > .form-group label {
  font-weight: 400;
  color: #FFF;
  margin-bottom: 10px;
}
.module-style__teaser-manager-references.Special_ChangingContents .filter-elements fieldset > .form-group select {
  height: 45px;
  width: 100%;
  background: #1a1a1a;
  color: #FFF;
  font-family: "InfoText", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  padding: 0 50px 0 10px;
  line-height: 45px;
  border: 1px solid #FFF;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  -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);
}
.module-style__teaser-manager-references.Special_ChangingContents .filter-elements fieldset > .form-group select option {
  line-height: 2;
  padding: 50px 10px;
}
.module-style__teaser-manager-references.Special_ChangingContents .filter-elements fieldset > .form-group select::-ms-expand {
  display: none;
}
.module-style__teaser-manager-references.Special_ChangingContents .filter-elements fieldset > .form-group select:hover {
  background: #1a1a1a;
  -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);
}
.module-style__teaser-manager-references.Special_ChangingContents .filter-elements fieldset > .form-group > [class*=col-]:not(label) {
  position: relative;
}
.module-style__teaser-manager-references.Special_ChangingContents .filter-elements fieldset > .form-group > [class*=col-]:not(label):after {
  content: "\f107";
  font-family: "FontAwesome";
  width: 50px;
  height: 43px;
  position: absolute;
  right: 21px;
  bottom: 1px;
  pointer-events: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #FFF;
  font-size: 2rem;
}
.module-style__teaser-manager-references.Special_ChangingContents .category-elements .category-element .module-content-block {
  position: relative;
}
.module-style__teaser-manager-references.Special_ChangingContents .category-elements .category-element .module-content-block .thumbnail {
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}
.module-style__teaser-manager-references.Special_ChangingContents .category-elements .category-element .module-content-block .thumbnail:before {
  content: "";
  position: absolute;
  left: -10px;
  top: -10px;
  right: -10px;
  bottom: -10px;
  background: #000000;
  opacity: 0;
  z-index: 10;
  -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);
}
.module-style__teaser-manager-references.Special_ChangingContents .category-elements .category-element .module-content-block .text-on-image {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 15px;
  opacity: 0;
  z-index: 10;
  -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);
}
.module-style__teaser-manager-references.Special_ChangingContents .category-elements .category-element .module-content-block .text-on-image .headline-wrapper {
  width: 100%;
}
.module-style__teaser-manager-references.Special_ChangingContents .category-elements .category-element .module-content-block .text-on-image .headline-wrapper .headline2 {
  font-size: 1.25rem;
  color: #FFF;
  display: -webkit-box;
  width: 100%;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}
.module-style__teaser-manager-references.Special_ChangingContents .category-elements .category-element .module-content-block .text-on-image > p {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  opacity: 0;
}
.module-style__teaser-manager-references.Special_ChangingContents .category-elements .category-element .module-content-block .text-on-image > p > .btn {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
}
.module-style__teaser-manager-references.Special_ChangingContents .category-elements .category-element:hover .module-content-block .thumbnail:before {
  opacity: 0.8;
  -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);
}
.module-style__teaser-manager-references.Special_ChangingContents .category-elements .category-element:hover .module-content-block .text-on-image {
  opacity: 1;
  -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);
}

.module-style__teaser-manager-social-media.Special_ChangingContents .category-elements .category-element {
  padding: 0;
}
.module-style__teaser-manager-social-media.Special_ChangingContents .category-elements .category-element .category-element-inner {
  position: relative;
  overflow: hidden;
}
.module-style__teaser-manager-social-media.Special_ChangingContents .category-elements .category-element .category-element-inner .category-image {
  position: relative;
  width: 100%;
  min-height: 300px;
  padding-bottom: 100%;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: -webkit-filter 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: -webkit-filter 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: filter 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: filter 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-filter 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.module-style__teaser-manager-social-media.Special_ChangingContents .category-elements .category-element .category-element-inner .category-image:before {
  display: none;
}
.module-style__teaser-manager-social-media.Special_ChangingContents .category-elements .category-element .category-element-inner .category-image .module-content-block {
  position: absolute;
  min-height: auto;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  opacity: 0;
  -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);
}
.module-style__teaser-manager-social-media.Special_ChangingContents .category-elements .category-element .category-element-inner .category-image .module-content-block > p {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: 0;
}
.module-style__teaser-manager-social-media.Special_ChangingContents .category-elements .category-element .category-element-inner .category-image .module-content-block a.btn {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: 0;
}
.module-style__teaser-manager-social-media.Special_ChangingContents .category-elements .category-element:hover .category-element-inner .category-image {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
  -webkit-transition: -webkit-filter 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: -webkit-filter 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: filter 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: filter 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-filter 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}

.Community_SocialMedia_Feed .feed-entry {
  border: none;
  padding: 0 0 15px 0;
  border-bottom: 1px solid #000;
  margin-bottom: 30px;
}
.Community_SocialMedia_Feed .feed-entry > .row:nth-child(2) {
  display: none;
}
.Community_SocialMedia_Feed .feed-entry .profile-info {
  margin-bottom: 0;
}
.Community_SocialMedia_Feed .feed-entry .profile-info .avatar {
  display: none;
}
.Community_SocialMedia_Feed .feed-entry .profile-info .namedate {
  padding: 0;
}
.Community_SocialMedia_Feed .feed-entry .profile-info .namedate .fullname {
  display: none;
}
.Community_SocialMedia_Feed .feed-entry .profile-info .datetime {
  font-size: 1rem;
  font-weight: 600;
  color: #000000;
}
.Community_SocialMedia_Feed .feed-entry .feed-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 30px;
  height: 30px;
  right: 13px;
  top: -7px;
  color: #36E7A5;
}
.Community_SocialMedia_Feed .feed-entry .feed-icon:hover {
  color: #000000;
}
.Community_SocialMedia_Feed .feed-entry img, .Community_SocialMedia_Feed .feed-entry video {
  margin: 15px 0;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transition: -webkit-filter 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: -webkit-filter 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: filter 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: filter 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-filter 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.Community_SocialMedia_Feed .feed-entry .post-content {
  background: #FFFFFF;
  border: none;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
}
.Community_SocialMedia_Feed .feed-entry:hover img, .Community_SocialMedia_Feed .feed-entry:hover video {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
  -webkit-transition: -webkit-filter 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: -webkit-filter 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: filter 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: filter 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-filter 0.5s cubic-bezier(0.55, 0, 0.1, 1);
}
.Community_SocialMedia_Feed a {
  color: #000000;
}
.Community_SocialMedia_Feed a:hover {
  color: #36E7A5;
}

.module-style__teaser-icon-keyfacts .thumbnail {
  margin-bottom: 0;
}
.module-style__teaser-icon-keyfacts .thumbnail img {
  max-width: 130px;
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}
.module-style__teaser-icon-keyfacts .text-wrapper > p:first-child {
  font-family: "Merriweather", serif;
  font-size: 7.25rem;
  font-weight: 900;
  color: #000000;
  font-style: italic;
  line-height: 1;
  margin-bottom: 20px;
}
.module-style__teaser-icon-keyfacts .text-wrapper > p:not(:first-child) {
  line-height: 1.25;
  color: #000000;
}
.module-style__teaser-icon-keyfacts .text-wrapper .editor-style__counterup {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

.module-style__bigger-text .module-content-block .text-wrapper > p {
  font-size: 1.5rem;
}
.module-style__bigger-text .module-content-block .btn {
  font-size: 1.5rem;
}
.module-style__bigger-text .module-content-block .btn:before {
  top: -6px;
}
.module-style__bigger-text .module-content-block .btn:after {
  top: 4px;
}

.module-style__bigger-list-styles .module-content-block .text-wrapper > ul > li {
  font-size: 1.5rem;
}

.module-style__list-icon .text-wrapper ul li {
  position: relative;
  padding-left: 20px;
}
.module-style__list-icon .text-wrapper ul li:before {
  position: absolute;
  top: 6px;
  left: 0;
}

/* ========================================================================== TEMPLATE UNTERSEITE OHNE SLIDER ======= */
.template-unterseite.template-no-slider header .header.header__logo-left-nav-right {
  position: sticky;
}

/* ====================================================================================== TEMPLATE REFERENZEN ======= */
.template-referenzen .module-wrapper {
  width: 1370px;
}
.template-referenzen .module-wrapper.module-style__references-full-size-module-wrapper {
  width: auto;
  margin-left: -20px;
  margin-right: -20px;
}
.template-referenzen .module-wrapper.module-style__references-full-size-module-wrapper > [class*=col-] {
  padding: 0;
}
.template-referenzen .thumbnail img {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}
.template-referenzen .slider.slider_big .single-header .header-img, .template-referenzen .slider.slider_big .amphi-slideshow .header-img, .template-referenzen .slider.slider_big .amphi-no-slideshow .header-img {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}
.template-referenzen .slider.slider_small .single-header .header-img, .template-referenzen .slider.slider_small .amphi-slideshow .header-img, .template-referenzen .slider.slider_small .amphi-no-slideshow .header-img {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}
.template-referenzen .slider.slider_small .single-header .header-img .video-wrapper, .template-referenzen .slider.slider_small .single-header .header-img img, .template-referenzen .slider.slider_small .amphi-slideshow .header-img .video-wrapper, .template-referenzen .slider.slider_small .amphi-slideshow .header-img img, .template-referenzen .slider.slider_small .amphi-no-slideshow .header-img .video-wrapper, .template-referenzen .slider.slider_small .amphi-no-slideshow .header-img img {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}
.template-referenzen .slider.slider_small .single-header .header-img .caption-wrapper .carousel-caption .headline1, .template-referenzen .slider.slider_small .amphi-slideshow .header-img .caption-wrapper .carousel-caption .headline1, .template-referenzen .slider.slider_small .amphi-no-slideshow .header-img .caption-wrapper .carousel-caption .headline1 {
  font-size: 4rem;
  color: #FFFFFF;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.template-referenzen .slider.slider_small .single-header .header-img .caption-wrapper .carousel-caption .headline1 a, .template-referenzen .slider.slider_small .amphi-slideshow .header-img .caption-wrapper .carousel-caption .headline1 a, .template-referenzen .slider.slider_small .amphi-no-slideshow .header-img .caption-wrapper .carousel-caption .headline1 a {
  color: #FFFFFF;
}
.template-referenzen .slider.slider_small .single-header .header-img .caption-wrapper .carousel-caption .headline2, .template-referenzen .slider.slider_small .amphi-slideshow .header-img .caption-wrapper .carousel-caption .headline2, .template-referenzen .slider.slider_small .amphi-no-slideshow .header-img .caption-wrapper .carousel-caption .headline2 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.template-referenzen .slider.slider_small .single-header .header-img .caption-wrapper .carousel-caption .btn, .template-referenzen .slider.slider_small .amphi-slideshow .header-img .caption-wrapper .carousel-caption .btn, .template-referenzen .slider.slider_small .amphi-no-slideshow .header-img .caption-wrapper .carousel-caption .btn {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  color: #FFFFFF;
}
.template-referenzen .slider.slider_small .single-header .header-img .caption-wrapper .carousel-caption .btn:before, .template-referenzen .slider.slider_small .amphi-slideshow .header-img .caption-wrapper .carousel-caption .btn:before, .template-referenzen .slider.slider_small .amphi-no-slideshow .header-img .caption-wrapper .carousel-caption .btn:before {
  background: #FFFFFF;
}

/* ================================================================================================ KEYFRAMES ======= */
@keyframes bounce {
  from {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  to {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
}
@-webkit-keyframes bounce {
  from {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  to {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
}
/* =================================================================================================== COOKIE ======= */
#cookieConfirmation .btn {
  padding: 5px 10px;
}

/* ================================================================================================= EDITMODE ======= */
#editMode .slider.slider_small .headerEditLink {
  bottom: calc(50% - 100px);
}

/* ============================================================================================ MEDIA QUERIES ======= */
@media (min-width: 768px) {
  .template-referenzen .module-wrapper {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1200px) {
  .template-referenzen .module-wrapper.module-style__references-full-size-module-wrapper .amphi-slideshow .owl-nav .owl-prev {
    left: 0;
  }
  .template-referenzen .module-wrapper.module-style__references-full-size-module-wrapper .amphi-slideshow .owl-nav .owl-next {
    right: 0;
  }
}
@media (max-width: 1469px) {
  .header .top-nav .navigation > li span > a {
    padding: 10px 12px;
  }
  .template-referenzen .module-wrapper {
    width: 1270px;
  }
}
@media (max-width: 1369px) {
  .header .top-nav .navigation > li span > a {
    font-size: 0.95rem;
    padding: 10px;
  }
  .template-referenzen .module-wrapper {
    width: 1170px;
  }
}
@media (max-width: 1269px) {
  .header .top-nav .navigation > li span > a {
    font-size: 0.9rem;
    padding: 10px 8px;
  }
  .template-referenzen .module-wrapper {
    width: 1100px;
  }
}
@media (max-width: 1199px) {
  .header .top-nav .navigation > li > span > a {
    font-size: 0.85rem;
    padding: 10px 6px;
  }
  .header .top-nav .navigation > li ul li span > a {
    font-size: 0.8rem;
  }
  .template-referenzen .module-wrapper {
    width: 970px;
  }
  .module-style__list-icon .text-wrapper ul li:before {
    top: 4px;
  }
}
@media (max-width: 1061px) {
  .header .top-nav .navigation > li > span > a {
    font-size: 0.785rem;
    padding: 10px 5px;
  }
  .header .top-nav .navigation > li ul li span > a {
    font-size: 0.75rem;
  }
  .template-referenzen .module-wrapper {
    width: 900px;
  }
}
@media (max-width: 991px) {
  .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
  .container {
    padding: 0 15px;
  }
  .row {
    margin-left: -15px;
    margin-right: -15px;
  }
  .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
    padding-left: 15px;
    padding-right: 15px;
  }
  .module-wrapper {
    margin-bottom: 30px;
  }
  .headline1 {
    font-size: 3.5rem;
  }
  header .header.header__logo-left-nav-right {
    padding: 20px 0;
  }
  header .header.header__logo-left-nav-right .logo-wrapper .logo img, header .header.header__logo-left-nav-right .logo-wrapper .logo svg {
    max-width: 200px;
  }
  header .header.header__logo-left-nav-right.fixed .logo-wrapper .logo img, header .header.header__logo-left-nav-right.fixed .logo-wrapper .logo svg {
    max-width: 200px;
  }
  .slider.slider_big .single-header .header-img.video-img img, .slider.slider_big .amphi-slideshow .header-img.video-img img, .slider.slider_big .amphi-no-slideshow .header-img.video-img img {
    opacity: 1;
  }
  .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: 4rem;
  }
  .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: 2rem;
  }
  .content .content_content-background-inner {
    padding: 40px 0 10px 0;
  }
  .footer .footer_background-inner {
    padding: 60px 0 10px 0;
  }
  .footer-addon-bottom .footer-addon-bottom_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding: 25px 0;
  }
  .footer-addon-bottom .footer-addon-bottom_inner .footer-addon-bottom_left_inner .top-fifty {
    display: none;
  }
  .footer-addon-bottom .footer-addon-bottom_inner .footer-addon-bottom_left_inner .text-wrapper {
    text-align: center;
  }
  .footer-addon-bottom .footer-addon-bottom_inner .footer-addon-bottom_left_inner .text-wrapper a:first-child {
    margin-left: 5px;
  }
  .footer-addon-bottom .footer-addon-bottom_inner .footer-addon-bottom_right_inner {
    margin-bottom: 25px;
  }
  .footer-addon-bottom .footer-addon-bottom_inner .footer-addon-bottom_right_inner .footer-addon-bottom_social-media .social-media-icons .amphiicon {
    font-size: 18px;
  }
  .module-style__references-slider .amphi-slideshow .header-img .gallery-carousel-caption .headline-wrapper {
    display: none;
  }
  .module-style__smaller-module-wrapper {
    margin: 0 auto 30px auto;
  }
  .module-style__teaser-manager-references.Special_ChangingContents .category-elements .category-element .module-content-block .thumbnail:before {
    opacity: 0;
  }
  .module-style__teaser-manager-references.Special_ChangingContents .category-elements .category-element .module-content-block .text-on-image {
    opacity: 0;
  }
  .module-style__teaser-manager-references.Special_ChangingContents .category-elements .category-element:hover .module-content-block .thumbnail:before {
    opacity: 0;
  }
  .module-style__teaser-manager-references.Special_ChangingContents .category-elements .category-element:hover .module-content-block .text-on-image {
    opacity: 0;
  }
  .module-style__list-icon .text-wrapper ul li:before {
    top: 5px;
  }
  .Special_ChangingContents .category-elements > .category-element {
    padding: 15px;
  }
  .News_News .module-content-block, .News_Press .module-content-block, .Files_Files .module-content-block, .Community_Comment .module-content-block, .moduleTextSearch .module-content-block, .Special_ChangingContents .module-content-block, .Community_Guestbook .module-content-block, .Static_BodyMassIndex .module-content-block {
    padding-bottom: 15px;
  }
  .navigation-responsive-wrapper-top {
    text-align: left;
    padding: 20px 15px;
  }
  .navigation-responsive-wrapper-top img, .navigation-responsive-wrapper-top svg {
    max-width: 200px;
  }
  .template-referenzen .module-wrapper {
    width: 750px;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
  .headline1 {
    font-size: 2.65rem;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .headline1 {
    -webkit-hyphens: none;
        -ms-hyphens: none;
            hyphens: none;
    overflow-wrap: normal;
    word-break: normal;
  }
  .headline1 .hyphenate-long {
    -webkit-hyphens: auto;
        -ms-hyphens: auto;
            hyphens: auto;
    overflow-wrap: break-word;
  }
}
@media (max-width: 767px) {
  .headline2 {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .headline2 {
    -webkit-hyphens: none;
        -ms-hyphens: none;
            hyphens: none;
    overflow-wrap: normal;
    word-break: normal;
  }
}
@media (max-width: 767px) {
  .headline3 {
    font-size: 1.4rem;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .headline3 {
    -webkit-hyphens: none;
        -ms-hyphens: none;
            hyphens: none;
    overflow-wrap: normal;
    word-break: normal;
  }
}
@media (max-width: 767px) {
  .slider.slider_big .single-header .header-img .caption-wrapper, .slider.slider_big .amphi-slideshow .header-img .caption-wrapper, .slider.slider_big .amphi-no-slideshow .header-img .caption-wrapper, .slider.slider_small .single-header .header-img .caption-wrapper, .slider.slider_small .amphi-slideshow .header-img .caption-wrapper, .slider.slider_small .amphi-no-slideshow .header-img .caption-wrapper {
    width: 100%;
    margin: 0;
    padding: 0 15px;
  }
  .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, .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: 3.75rem;
  }
  .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, .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.85rem;
  }
}
@media (max-width: 767px) {
  .module-style__references-slider .amphi-slideshow .header-img .gallery-carousel-caption {
    padding: 25% 20px 60px 20px;
  }
  .module-style__references-slider .amphi-slideshow .header-img .gallery-carousel-caption .text-wrapper > p {
    -webkit-line-clamp: 2;
  }
  .module-style__references-slider .amphi-slideshow .header-img .gallery-carousel-caption .btn {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    opacity: 0;
  }
  .module-style__references-slider .amphi-slideshow .owl-dots .owl-dot > span {
    width: 10px;
    height: 10px;
    margin: 0 4px;
  }
}
@media (max-width: 767px) {
  .module-style__teaser-manager-references.Special_ChangingContents .filter-elements fieldset > .form-group {
    width: 100%;
    margin-bottom: 30px;
  }
  .module-style__teaser-manager-references.Special_ChangingContents .filter-elements fieldset > .form-group:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .module-wrapper.module-spacing-size-large-top {
    padding-top: 25px;
  }
  .module-wrapper.module-spacing-size-large-bottom {
    padding-bottom: 25px;
  }
}
@media (max-width: 767px) {
  .module-style__mobile-no-margin-bottom {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .module-style__hide-module-wrapper-mobile {
    display: none;
  }
}
@media (max-width: 767px) {
  .module-style__list-icon .text-wrapper ul li:before {
    top: 4px;
  }
}
@media (max-width: 767px) {
  .template-referenzen .module-wrapper {
    width: auto;
  }
}
/*# sourceMappingURL=maps/custom.css.map */
