@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
 */
/* =================================================================================================== SLIDER ======= */
/* =================================================================================================== SLIDER ======= */
/* ===== BIG ===== */
/* ======================================================================================== HEADER BACKGROUND ======= */
/* =============================================================================================== NAVIGATION ======= */
/* =========================================================================================== HAMBURGER MENÜ ======= */
/* =================================================================================================== MODULE ======= */
/* =================================================================================================== SLIDER ======= */
/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

:focus {
  outline: none; }

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

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

p {
  margin: 0 0 10px; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.module-style__match-height-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; }

#scroll-to-top {
  bottom: -30px;
  right: 30px;
  left: auto;
  position: fixed;
  z-index: 900;
  padding: 11px 0;
  opacity: 0;
  visibility: hidden;
  background: #a10d59;
  color: #fff;
  border-radius: 5px;
  width: 50px;
  height: 50px;
  text-align: center;
  cursor: pointer;
  -webkit-box-shadow: 0 0.7px 1.3px rgba(0, 0, 0, 0.05), 0 1.6px 3.2px rgba(0, 0, 0, 0.066), 0 3px 6px rgba(0, 0, 0, 0.062), 0 5.4px 10.7px rgba(0, 0, 0, 0.06), 0 10px 20.1px rgba(0, 0, 0, 0.02), 0 24px 48px rgba(0, 0, 0, 0.014);
          box-shadow: 0 0.7px 1.3px rgba(0, 0, 0, 0.05), 0 1.6px 3.2px rgba(0, 0, 0, 0.066), 0 3px 6px rgba(0, 0, 0, 0.062), 0 5.4px 10.7px rgba(0, 0, 0, 0.06), 0 10px 20.1px rgba(0, 0, 0, 0.02), 0 24px 48px rgba(0, 0, 0, 0.014);
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), bottom 0.5s cubic-bezier(0.55, 0, 0.1, 1), left 0.5s cubic-bezier(0.55, 0, 0.1, 1), right 0.5s cubic-bezier(0.55, 0, 0.1, 1), opacity 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: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), bottom 0.5s cubic-bezier(0.55, 0, 0.1, 1), left 0.5s cubic-bezier(0.55, 0, 0.1, 1), right 0.5s cubic-bezier(0.55, 0, 0.1, 1), opacity 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: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1), bottom 0.5s cubic-bezier(0.55, 0, 0.1, 1), left 0.5s cubic-bezier(0.55, 0, 0.1, 1), right 0.5s cubic-bezier(0.55, 0, 0.1, 1), opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1), visibility 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), box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1), bottom 0.5s cubic-bezier(0.55, 0, 0.1, 1), left 0.5s cubic-bezier(0.55, 0, 0.1, 1), right 0.5s cubic-bezier(0.55, 0, 0.1, 1), opacity 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); }
  #scroll-to-top .amphiicon {
    position: relative; }
    #scroll-to-top .amphiicon:before {
      content: ""; }
  #scroll-to-top:hover {
    background: #72093f;
    color: #fff;
    -webkit-box-shadow: 0 1.8px 12.2px rgba(0, 0, 0, 0.1), 0 4.4px 21.5px rgba(0, 0, 0, 0.072), 0 8.3px 27.6px rgba(0, 0, 0, 0.06), 0 14.7px 30.7px rgba(0, 0, 0, 0.05), 0 27.6px 32.1px rgba(0, 0, 0, 0.04), 0 66px 48px rgba(0, 0, 0, 0.028);
            box-shadow: 0 1.8px 12.2px rgba(0, 0, 0, 0.1), 0 4.4px 21.5px rgba(0, 0, 0, 0.072), 0 8.3px 27.6px rgba(0, 0, 0, 0.06), 0 14.7px 30.7px rgba(0, 0, 0, 0.05), 0 27.6px 32.1px rgba(0, 0, 0, 0.04), 0 66px 48px rgba(0, 0, 0, 0.028);
    -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), bottom 0.5s cubic-bezier(0.55, 0, 0.1, 1), left 0.5s cubic-bezier(0.55, 0, 0.1, 1), right 0.5s cubic-bezier(0.55, 0, 0.1, 1), opacity 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: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), bottom 0.5s cubic-bezier(0.55, 0, 0.1, 1), left 0.5s cubic-bezier(0.55, 0, 0.1, 1), right 0.5s cubic-bezier(0.55, 0, 0.1, 1), opacity 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: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1), bottom 0.5s cubic-bezier(0.55, 0, 0.1, 1), left 0.5s cubic-bezier(0.55, 0, 0.1, 1), right 0.5s cubic-bezier(0.55, 0, 0.1, 1), opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1), visibility 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), box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1), bottom 0.5s cubic-bezier(0.55, 0, 0.1, 1), left 0.5s cubic-bezier(0.55, 0, 0.1, 1), right 0.5s cubic-bezier(0.55, 0, 0.1, 1), opacity 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); }
  #scroll-to-top.active {
    bottom: 30px;
    right: 30px;
    left: auto;
    opacity: 1;
    visibility: visible;
    -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), bottom 0.5s cubic-bezier(0.55, 0, 0.1, 1), left 0.5s cubic-bezier(0.55, 0, 0.1, 1), right 0.5s cubic-bezier(0.55, 0, 0.1, 1), opacity 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: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), bottom 0.5s cubic-bezier(0.55, 0, 0.1, 1), left 0.5s cubic-bezier(0.55, 0, 0.1, 1), right 0.5s cubic-bezier(0.55, 0, 0.1, 1), opacity 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: background 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1), box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1), bottom 0.5s cubic-bezier(0.55, 0, 0.1, 1), left 0.5s cubic-bezier(0.55, 0, 0.1, 1), right 0.5s cubic-bezier(0.55, 0, 0.1, 1), opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1), visibility 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), box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1), bottom 0.5s cubic-bezier(0.55, 0, 0.1, 1), left 0.5s cubic-bezier(0.55, 0, 0.1, 1), right 0.5s cubic-bezier(0.55, 0, 0.1, 1), opacity 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); }

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

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

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

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

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

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

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

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

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

.module-style__list-icon .text-wrapper ul {
  margin: 0;
  padding: 0;
  list-style-type: none; }
  .module-style__list-icon .text-wrapper ul li:after {
    content: none; }
  .module-style__list-icon .text-wrapper ul li:before {
    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: #a10d59;
    color: #fff;
    border-radius: 5px;
    -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: #72093f;
      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: #0b0b0b;
    border: 1px solid #FFF;
    color: #fff;
    border-radius: 5px;
    opacity: 0.1; }
    .pagination > li.disabled > span:hover, .pagination > li.disabled > span:focus {
      background-color: #0b0b0b;
      border: 1px solid #FFF;
      color: #fff;
      opacity: 0.1; }
  .pagination > li.active > span {
    background-color: #0b0b0b;
    border: 1px solid #0b0b0b;
    color: #fff;
    border-radius: 5px;
    -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: 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 > a[rel~="first"], .pagination > li > a[rel~="prev"], .pagination > li > a[rel~="last"], .pagination > li > a[rel~="next"] {
    background-color: #0b0b0b;
    color: #fff;
    border-radius: 5px;
    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; } }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*!
 * 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: #0b0b0b; }

.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: #fff;
    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; }

/*
   * Slider
   */
.hamburger--slider .hamburger-inner, .hamburger_animation .hamburger-inner {
  top: 1.5px; }
  .hamburger--slider .hamburger-inner::before, .hamburger_animation .hamburger-inner::before {
    top: 9px;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    -webkit-transition-timing-function: ease;
            transition-timing-function: ease;
    -webkit-transition-duration: 0.15s;
            transition-duration: 0.15s; }
  .hamburger--slider .hamburger-inner::after, .hamburger_animation .hamburger-inner::after {
    top: 18px; }

.hamburger--slider.is-active .hamburger-inner, .hamburger_animation.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, 9px, 0) rotate(45deg);
          transform: translate3d(0, 9px, 0) rotate(45deg); }
  .hamburger--slider.is-active .hamburger-inner::before, .hamburger_animation.is-active .hamburger-inner::before {
    -webkit-transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
            transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
    opacity: 0; }
  .hamburger--slider.is-active .hamburger-inner::after, .hamburger_animation.is-active .hamburger-inner::after {
    -webkit-transform: translate3d(0, -18px, 0) rotate(-90deg);
            transform: translate3d(0, -18px, 0) rotate(-90deg); }

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

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

header {
  display: contents; }

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

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

.slider {
  overflow: hidden; }

.slider.slider_big .slide .owl-item.active .caption-wrapper .carousel-caption .headline1, .slider.slider_small .slide .owl-item.active .caption-wrapper .carousel-caption .headline1 {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-delay: 1s;
          animation-delay: 1s; }

.slider.slider_big .slide .owl-item.active .caption-wrapper .carousel-caption .headline2, .slider.slider_small .slide .owl-item.active .caption-wrapper .carousel-caption .headline2 {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s; }

.slider.slider_big .slide .owl-item.active .caption-wrapper .carousel-caption .text-wrapper, .slider.slider_small .slide .owl-item.active .caption-wrapper .carousel-caption .text-wrapper {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-delay: 2s;
          animation-delay: 2s; }

.slider.slider_big .slide .owl-item.active .caption-wrapper .carousel-caption .btn, .slider.slider_small .slide .owl-item.active .caption-wrapper .carousel-caption .btn {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s; }

.slider.slider_big .slide .header-img.active .caption-wrapper .carousel-caption .headline1, .slider.slider_small .slide .header-img.active .caption-wrapper .carousel-caption .headline1 {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-delay: 1s;
          animation-delay: 1s; }

.slider.slider_big .slide .header-img.active .caption-wrapper .carousel-caption .headline2, .slider.slider_small .slide .header-img.active .caption-wrapper .carousel-caption .headline2 {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s; }

.slider.slider_big .slide .header-img.active .caption-wrapper .carousel-caption .text-wrapper, .slider.slider_small .slide .header-img.active .caption-wrapper .carousel-caption .text-wrapper {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-delay: 2s;
          animation-delay: 2s; }

.slider.slider_big .slide .header-img.active .caption-wrapper .carousel-caption .btn, .slider.slider_small .slide .header-img.active .caption-wrapper .carousel-caption .btn {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s; }

.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 #fff, 2em 0 0 -1em #fff, -2em 0 0 -1em #fff, -6em 0 0 -1em #fff, -10em 0 0 -1em #fff;
            box-shadow: 6em 0 0 1em #fff, 2em 0 0 -1em #fff, -2em 0 0 -1em #fff, -6em 0 0 -1em #fff, -10em 0 0 -1em #fff; }
  10%, 80% {
    -webkit-box-shadow: 6em 0 0 -1em #fff, 2em 0 0 1em #fff, -2em 0 0 -1em #fff, -6em 0 0 -1em #fff, -10em 0 0 -1em #fff;
            box-shadow: 6em 0 0 -1em #fff, 2em 0 0 1em #fff, -2em 0 0 -1em #fff, -6em 0 0 -1em #fff, -10em 0 0 -1em #fff; }
  20%, 70% {
    -webkit-box-shadow: 6em 0 0 -1em #fff, 2em 0 0 -1em #fff, -2em 0 0 1em #fff, -6em 0 0 -1em #fff, -10em 0 0 -1em #fff;
            box-shadow: 6em 0 0 -1em #fff, 2em 0 0 -1em #fff, -2em 0 0 1em #fff, -6em 0 0 -1em #fff, -10em 0 0 -1em #fff; }
  30%, 60% {
    -webkit-box-shadow: 6em 0 0 -1em #fff, 2em 0 0 -1em #fff, -2em 0 0 -1em #fff, -6em 0 0 1em #fff, -10em 0 0 -1em #fff;
            box-shadow: 6em 0 0 -1em #fff, 2em 0 0 -1em #fff, -2em 0 0 -1em #fff, -6em 0 0 1em #fff, -10em 0 0 -1em #fff; }
  40%, 50% {
    -webkit-box-shadow: 6em 0 0 -1em #fff, 2em 0 0 -1em #fff, -2em 0 0 -1em #fff, -6em 0 0 -1em #fff, -10em 0 0 1em #fff;
            box-shadow: 6em 0 0 -1em #fff, 2em 0 0 -1em #fff, -2em 0 0 -1em #fff, -6em 0 0 -1em #fff, -10em 0 0 1em #fff; } }

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

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

.content {
  position: relative; }
  .content:nth-child(even) {
    background-color: #010101; }
  .content .content_content-background-inner {
    padding: 60px 0 30px 0; }
  .content .amphi-slideshow .owl-nav div span {
    color: #a10d59;
    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 #a10d59; }
    .content .amphi-slideshow .owl-dots .owl-dot.active span {
      background-color: #a10d59;
      border: 2px solid #a10d59; }
  .content .content_sidebar_nav {
    margin-bottom: 25px; }
    .content .content_sidebar_nav .navigation > li span > a {
      font-size: 1.2rem;
      font-weight: 500;
      color: #fff;
      padding: 10px 15px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
      letter-spacing: 0;
      line-height: 1.5;
      white-space: nowrap;
      text-transform: none; }
      .content .content_sidebar_nav .navigation > li span > a:after {
        content: none; }
      .content .content_sidebar_nav .navigation > li span > a:before {
        content: none; }
    .content .content_sidebar_nav .navigation > li.active > span > a {
      color: #a10d59; }
    .content .content_sidebar_nav .navigation > li:hover > span > a, .content .content_sidebar_nav .navigation > li.hover > span > a {
      color: #a10d59; }
    .content .content_sidebar_nav .navigation > li:hover.active > span > a, .content .content_sidebar_nav .navigation > li.hover.active > span > a {
      color: #a10d59; }
    .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 span > a:after {
        content: none; }
      .content .content_sidebar_nav .navigation > li ul li span > a:before {
        content: none; }
    .content .content_sidebar_nav .navigation > li ul li.active > span > a {
      color: #a10d59; }
    .content .content_sidebar_nav .navigation > li ul li:hover > span > a, .content .content_sidebar_nav .navigation > li ul li.hover > span > a {
      color: #a10d59; }
    .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: #a10d59; }
    .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 span > a:after {
        content: none; }
      .content .content_sidebar_nav .navigation > li ul li ul li span > a:before {
        content: none; }
    .content .content_sidebar_nav .navigation > li ul li ul li.active > span > a {
      color: #a10d59; }
    .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: #a10d59; }
    .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: #a10d59; }
    .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 span > a:after {
        content: none; }
      .content .content_sidebar_nav .navigation > li ul li ul li ul li span > a:before {
        content: none; }
    .content .content_sidebar_nav .navigation > li ul li ul li ul li.active > span > a {
      color: #a10d59; }
    .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: #a10d59; }
    .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: #a10d59; }

#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: black;
  font-size: 0.9rem; }
  .footer-addon-top__breadcrumb .breadcrumb_inner .breadcrumb_icon {
    display: inline-block;
    margin-right: 5px; }
    .footer-addon-top__breadcrumb .breadcrumb_inner .breadcrumb_icon:empty {
      display: none; }
  .footer-addon-top__breadcrumb .breadcrumb_inner .breadcrumb_text {
    margin-right: 5px;
    display: inline-block; }
    .footer-addon-top__breadcrumb .breadcrumb_inner .breadcrumb_text:empty {
      display: none; }
  .footer-addon-top__breadcrumb .breadcrumb_inner .breadcrumbs {
    display: inline-block; }
    .footer-addon-top__breadcrumb .breadcrumb_inner .breadcrumbs .breadcrumb {
      background: none;
      margin: 0;
      padding: 20px 0; }
      .footer-addon-top__breadcrumb .breadcrumb_inner .breadcrumbs .breadcrumb > li + li:before {
        color: #fff; }

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

/* FOOTER ADDON BOTTOM */
.footer-addon-bottom {
  background: #0b0b0b;
  color: #fff;
  font-size: 0.98438rem;
  padding: 30px 0; }
  .footer-addon-bottom .footer-addon-bottom_inner {
    padding: 30px 0; }
    .footer-addon-bottom .footer-addon-bottom_inner .text-wrapper p {
      padding: 0;
      margin: 0; }
    .footer-addon-bottom .footer-addon-bottom_inner .text-wrapper a {
      color: #a10d59; }
      .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: #fff; }

@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: #0b0b0b;
      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: #fff;
    background-color: #0b0b0b;
    border: 2px solid #fff;
    background: transparent;
    padding: 10px 15px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    -webkit-box-shadow: none;
            box-shadow: none; }
    .footer a.btn-default:after, .footer .btn-default:after,
    .footer a.btn-primary:after, .footer .btn-primary:after,
    .footer a.btn-custom:after, .footer .btn-custom:after {
      content: none; }
    .footer a.btn-default:before, .footer .btn-default:before,
    .footer a.btn-primary:before, .footer .btn-primary:before,
    .footer a.btn-custom:before, .footer .btn-custom:before {
      content: none; }
    .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: #a10d59;
      background-color: black;
      border: 2px solid #fff;
      background: #fff;
      -webkit-box-shadow: none;
              box-shadow: none; }

@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: #a10d59;
  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: #0b0b0b;
    color: #fff;
    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: black;
  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: #fff; }

/* HEADER */
.header {
  background: transparent;
  -webkit-transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: background 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  -webkit-box-shadow: none;
          box-shadow: none; }
  .header .header_content {
    -webkit-transition: font-size 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1);
    transition: font-size 0.5s cubic-bezier(0.55, 0, 0.1, 1), color 0.5s cubic-bezier(0.55, 0, 0.1, 1); }
    .header .header_content .amphiicon {
      color: #a10d59;
      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: "Roboto Condensed", sans-serif;
      font-size: 1.2rem;
      font-weight: 400;
      color: #fff;
      text-transform: uppercase;
      padding: 10px 15px;
      line-height: 1.5;
      letter-spacing: 1px; }
    .header .top-nav .navigation > li.active > span > a {
      color: #ef3e99; }
    .header .top-nav .navigation > li:hover > span > a, .header .top-nav .navigation > li.hover > span > a {
      color: #ef3e99; }
    .header .top-nav .navigation > li:hover.active > span > a, .header .top-nav .navigation > li.hover.active > span > a {
      color: #ef3e99; }
    .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: 0; }
    .header .top-nav .navigation > li ul {
      position: absolute;
      opacity: 0;
      visibility: hidden;
      background: #fff;
      top: 100%;
      z-index: 800;
      min-width: 250px;
      text-align: left;
      padding: 10px;
      -webkit-transition: opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1);
      transition: opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1);
      left: 0;
      -webkit-box-shadow: 0 0.7px 1.3px rgba(0, 0, 0, 0.05), 0 1.6px 3.2px rgba(0, 0, 0, 0.066), 0 3px 6px rgba(0, 0, 0, 0.062), 0 5.4px 10.7px rgba(0, 0, 0, 0.06), 0 10px 20.1px rgba(0, 0, 0, 0.02), 0 24px 48px rgba(0, 0, 0, 0.014);
              box-shadow: 0 0.7px 1.3px rgba(0, 0, 0, 0.05), 0 1.6px 3.2px rgba(0, 0, 0, 0.066), 0 3px 6px rgba(0, 0, 0, 0.062), 0 5.4px 10.7px rgba(0, 0, 0, 0.06), 0 10px 20.1px rgba(0, 0, 0, 0.02), 0 24px 48px rgba(0, 0, 0, 0.014);
      max-height: 70vh;
      overflow: scroll;
      -ms-overflow-style: none;
      scrollbar-width: none; }
      .header .top-nav .navigation > li ul::-webkit-scrollbar {
        display: none; }
      .header .top-nav .navigation > li ul.position-right {
        right: 0;
        left: auto; }
      .header .top-nav .navigation > li ul li {
        display: block; }
        .header .top-nav .navigation > li ul li span > a {
          font-size: 1.2rem;
          font-weight: 500;
          color: #444;
          padding: 10px 15px;
          border-bottom: 1px solid rgba(0, 0, 0, 0.1);
          letter-spacing: 0;
          line-height: 1.5;
          white-space: nowrap;
          text-transform: none; }
          .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: #a10d59; }
        .header .top-nav .navigation > li ul li:hover > span > a, .header .top-nav .navigation > li ul li.hover > span > a {
          color: #a10d59; }
        .header .top-nav .navigation > li ul li:hover.active > span > a, .header .top-nav .navigation > li ul li.hover.active > span > a {
          color: #a10d59; }
        .header .top-nav .navigation > li ul li:hover > ul, .header .top-nav .navigation > li ul li.hover > ul {
          opacity: 1;
          visibility: visible;
          -webkit-transition: opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1);
          transition: opacity 0.5s cubic-bezier(0.55, 0, 0.1, 1); }
        .header .top-nav .navigation > li ul li:last-child > span > a {
          border-bottom: none; }
        .header .top-nav .navigation > li ul li > ul {
          z-index: 400;
          min-width: 220px;
          left: 100%;
          top: 0; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#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: #890b4c;
    color: #fff;
    padding: 5px 15px;
    font-size: 0.8rem;
    cursor: pointer;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    -webkit-box-shadow: 0 0.7px 1.3px rgba(0, 0, 0, 0.05), 0 1.6px 3.2px rgba(0, 0, 0, 0.066), 0 3px 6px rgba(0, 0, 0, 0.062), 0 5.4px 10.7px rgba(0, 0, 0, 0.06), 0 10px 20.1px rgba(0, 0, 0, 0.02), 0 24px 48px rgba(0, 0, 0, 0.014);
            box-shadow: 0 0.7px 1.3px rgba(0, 0, 0, 0.05), 0 1.6px 3.2px rgba(0, 0, 0, 0.066), 0 3px 6px rgba(0, 0, 0, 0.062), 0 5.4px 10.7px rgba(0, 0, 0, 0.06), 0 10px 20.1px rgba(0, 0, 0, 0.02), 0 24px 48px rgba(0, 0, 0, 0.014); }
  .seo-navigation__top-right .seo-navigation_wrapper {
    position: fixed;
    top: 40px;
    background: #0b0b0b;
    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: 5px;
    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: "Roboto", sans-serif;
          font-size: 1.125rem;
          font-weight: 600;
          color: #fff;
          text-transform: uppercase;
          padding: 10px 15px;
          line-height: 1.5; }
          .seo-navigation__top-right .seo-navigation_wrapper .seoNavigation-nav > li > span > a:hover {
            color: #e6e6e6; }
          .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: #0b0b0b;
    text-align: center;
    color: #fff;
    border-radius: 40px;
    padding-top: 2px;
    -webkit-box-shadow: 0 0.7px 1.3px rgba(0, 0, 0, 0.05), 0 1.6px 3.2px rgba(0, 0, 0, 0.066), 0 3px 6px rgba(0, 0, 0, 0.062), 0 5.4px 10.7px rgba(0, 0, 0, 0.06), 0 10px 20.1px rgba(0, 0, 0, 0.02), 0 24px 48px rgba(0, 0, 0, 0.014);
            box-shadow: 0 0.7px 1.3px rgba(0, 0, 0, 0.05), 0 1.6px 3.2px rgba(0, 0, 0, 0.066), 0 3px 6px rgba(0, 0, 0, 0.062), 0 5.4px 10.7px rgba(0, 0, 0, 0.06), 0 10px 20.1px rgba(0, 0, 0, 0.02), 0 24px 48px rgba(0, 0, 0, 0.014);
    border: 1px solid #999;
    cursor: pointer;
    z-index: 900; }
    .seo-navigation__top-right .seo-navigation_close-icon:hover {
      color: white; }

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

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

/* SLIDER */
.slider {
  position: relative;
  background-color: #0b0b0b;
  /* Pagespeed Block */ }
  .slider.slider_big {
    min-height: 95vh; }
    .slider.slider_big .single-header, .slider.slider_big .amphi-slideshow, .slider.slider_big .amphi-no-slideshow {
      min-height: 95vh; }
      .slider.slider_big .single-header .header-img, .slider.slider_big .amphi-slideshow .header-img, .slider.slider_big .amphi-no-slideshow .header-img {
        min-height: 95vh; }
        .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: 2.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.125rem; }
  .slider.slider_small {
    min-height: 150px; }
    .slider.slider_small .single-header, .slider.slider_small .amphi-slideshow, .slider.slider_small .amphi-no-slideshow {
      min-height: 150px; }
      .slider.slider_small .single-header .header-img, .slider.slider_small .amphi-slideshow .header-img, .slider.slider_small .amphi-no-slideshow .header-img {
        min-height: 150px; }
        .slider.slider_small .single-header .header-img .caption-wrapper .carousel-caption .headline1, .slider.slider_small .amphi-slideshow .header-img .caption-wrapper .carousel-caption .headline1, .slider.slider_small .amphi-no-slideshow .header-img .caption-wrapper .carousel-caption .headline1 {
          font-size: 2.5875rem; }
        .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.6875rem; }
        .slider.slider_small .single-header .header-img .caption-wrapper .carousel-caption .text-wrapper, .slider.slider_small .amphi-slideshow .header-img .caption-wrapper .carousel-caption .text-wrapper, .slider.slider_small .amphi-no-slideshow .header-img .caption-wrapper .carousel-caption .text-wrapper {
          font-size: 1.125rem; }
  .slider .header-img {
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: relative; }
    .slider .header-img .caption-wrapper {
      width: auto;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      margin: 0 15px;
      position: relative;
      z-index: 100; }
      .slider .header-img .caption-wrapper .carousel-caption {
        -webkit-transition: none;
        transition: none;
        background: transparent;
        margin: 60px 0;
        padding: 0;
        display: inline-block;
        max-width: 100%;
        word-break: break-word;
        left: unset;
        right: unset;
        top: unset;
        bottom: unset;
        position: static; }
        .slider .header-img .caption-wrapper .carousel-caption .headline1 {
          color: #fff; }
          .slider .header-img .caption-wrapper .carousel-caption .headline1 a {
            color: #fff; }
            .slider .header-img .caption-wrapper .carousel-caption .headline1 a:hover {
              color: #fff; }
        .slider .header-img .caption-wrapper .carousel-caption .headline2 {
          color: #fff; }
          .slider .header-img .caption-wrapper .carousel-caption .headline2 a {
            color: #fff; }
            .slider .header-img .caption-wrapper .carousel-caption .headline2 a:hover {
              color: #fff; }
        .slider .header-img .caption-wrapper .carousel-caption .text-wrapper {
          color: #fff; }
          .slider .header-img .caption-wrapper .carousel-caption .text-wrapper p {
            margin-bottom: 0; }
        .slider .header-img .caption-wrapper .carousel-caption .btn {
          background: #fff;
          border: 2px solid #fff;
          color: #a10d59;
          padding: 10px 15px;
          font-size: 1rem;
          text-transform: uppercase;
          letter-spacing: 1px;
          font-weight: 700;
          -webkit-box-shadow: none;
                  box-shadow: none; }
          .slider .header-img .caption-wrapper .carousel-caption .btn:after {
            content: none; }
          .slider .header-img .caption-wrapper .carousel-caption .btn:before {
            content: none; }
          .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: transparent;
            border: 2px solid #fff;
            color: #fff;
            -webkit-box-shadow: none;
                    box-shadow: none; }
    .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(161, 13, 89, 0.1)), to(rgba(11, 11, 11, 0.98)));
      background: linear-gradient(0deg, rgba(161, 13, 89, 0.1) 0%, rgba(11, 11, 11, 0.98) 100%); }
  .slider .owl-stage {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .slider .owl-stage:after {
      content: ''; }
  .slider .owl-nav div {
    left: 60px; }
    .slider .owl-nav div.owl-next {
      right: 60px; }
  .slider .amphi-slider .single-header .header-img {
    position: relative; }
  .slider .amphi-slider .header-img {
    position: absolute; }
  .slider .amphi-slider .owl-loaded .header-img {
    position: relative; }
  .slider .amphi-slider .owl-carousel {
    display: block; }

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

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

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

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

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

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

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

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

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

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

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

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

/* BUTTONS */
a.btn-default, .btn-default,
a.btn-primary, .btn-primary,
a.btn-custom, .btn-custom {
  color: #fff;
  background-color: #a10d59;
  border: 2px solid #fff;
  border-radius: 5px;
  margin-top: 18px;
  -webkit-box-shadow: none;
          box-shadow: none;
  display: inline-block;
  font-family: "Roboto Condensed", sans-serif;
  padding: 10px 15px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1), box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1), box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  background: transparent;
  text-transform: uppercase;
  letter-spacing: 1px; }
  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: #a10d59;
    background-color: #72093f;
    border: 2px solid #a10d59;
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
    transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
    transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1), box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
    transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1), box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
    background: transparent;
    border-color: #a10d59; }

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

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

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

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

/* HEADLINE */
.headline1 {
  font-size: 2.5875rem;
  font-family: "Roboto Condensed", sans-serif;
  line-height: 1.2;
  margin: 0 0 10px 0;
  font-weight: 600;
  color: #fff; }

.headline2 {
  font-size: 1.6875rem;
  font-family: "Roboto Condensed", sans-serif;
  line-height: 1.2;
  margin-bottom: 10px;
  font-weight: 200;
  color: #a10d59; }

.headline3 {
  font-size: 1.4625rem;
  font-family: "Roboto Condensed", sans-serif;
  line-height: 1.2;
  margin-bottom: 10px;
  font-weight: 600;
  color: #fff; }

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

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

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

/* LINKS */
a {
  color: #a10d59;
  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: #fff;
    text-decoration: none; }

/* MOBILE NAVIGATION */
.mobile-nav,
.mobile-nav.type-collapse {
  background: #0b0b0b; }
  .mobile-nav .level-1,
  .mobile-nav.type-collapse .level-1 {
    background: #0b0b0b; }
    .mobile-nav .level-1 > li a,
    .mobile-nav.type-collapse .level-1 > li a {
      font-family: "Roboto Condensed", sans-serif;
      font-size: 1.125rem;
      font-weight: 600;
      color: #fff;
      text-transform: none;
      padding: 10px 15px;
      line-height: 1.5; }
    .mobile-nav .level-1 > li.active > a,
    .mobile-nav.type-collapse .level-1 > li.active > a {
      color: #a10d59; }
    .mobile-nav .level-1 > li span.dropdown-toggle,
    .mobile-nav.type-collapse .level-1 > li span.dropdown-toggle {
      background-color: #0b0b0b;
      border-left-color: black;
      color: #fff;
      width: 50px;
      height: 100%;
      padding: 10px 15px;
      line-height: 1.5; }
    .mobile-nav .level-1 > li.dropdown-entry.opened,
    .mobile-nav.type-collapse .level-1 > li.dropdown-entry.opened {
      background-color: #0b0b0b; }
      .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: #0b0b0b;
        border-left-color: black;
        color: #fff;
        width: 50px;
        height: 100%;
        padding: 10px 15px;
        line-height: 1.5; }
    .mobile-nav .level-1 > li ul li.dropdown-entry.opened,
    .mobile-nav.type-collapse .level-1 > li ul li.dropdown-entry.opened {
      background-color: #0b0b0b; }
    .mobile-nav .level-1 > li ul li a,
    .mobile-nav.type-collapse .level-1 > li ul li a {
      font-size: 1.2rem;
      font-weight: 500;
      color: #fff;
      padding: 10px 15px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
      letter-spacing: 0;
      line-height: 1.5;
      white-space: nowrap;
      text-transform: none; }
      .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: #a10d59; }
    .mobile-nav .level-1 > li ul li ul li a,
    .mobile-nav.type-collapse .level-1 > li ul li ul li a {
      font-weight: 400;
      padding-left: 30px; }
      .mobile-nav .level-1 > li ul li ul li a:after,
      .mobile-nav.type-collapse .level-1 > li ul li ul li a:after {
        content: none; }
      .mobile-nav .level-1 > li ul li ul li a:before,
      .mobile-nav.type-collapse .level-1 > li ul li ul li a:before {
        content: none; }
    .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: #a10d59; }
    .mobile-nav .level-1 > li ul li ul li ul li a,
    .mobile-nav.type-collapse .level-1 > li ul li ul li ul li a {
      padding-left: 45px; }
      .mobile-nav .level-1 > li ul li ul li ul li a:after,
      .mobile-nav.type-collapse .level-1 > li ul li ul li ul li a:after {
        content: none; }
      .mobile-nav .level-1 > li ul li ul li ul li a:before,
      .mobile-nav.type-collapse .level-1 > li ul li ul li ul li a:before {
        content: none; }
    .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: #a10d59; }
    .mobile-nav .level-1 > li ul li ul li ul li ul li a,
    .mobile-nav.type-collapse .level-1 > li ul li ul li ul li ul li a {
      padding-left: 60px; }
      .mobile-nav .level-1 > li ul li ul li ul li ul li a:after,
      .mobile-nav.type-collapse .level-1 > li ul li ul li ul li ul li a:after {
        content: none; }
      .mobile-nav .level-1 > li ul li ul li ul li ul li a:before,
      .mobile-nav.type-collapse .level-1 > li ul li ul li ul li ul li a:before {
        content: none; }
    .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: #a10d59; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* roboto-condensed-300 - latin */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/roboto-condensed-v19-latin-300.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../fonts/roboto-condensed-v19-latin-300.eot?#iefix") format("embedded-opentype"), url("../fonts/roboto-condensed-v19-latin-300.woff2") format("woff2"), url("../fonts/roboto-condensed-v19-latin-300.woff") format("woff"), url("../fonts/roboto-condensed-v19-latin-300.ttf") format("truetype"), url("../fonts/roboto-condensed-v19-latin-300.svg#RobotoCondensed") format("svg");
  /* Legacy iOS */ }

/* roboto-condensed-300italic - latin */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/roboto-condensed-v19-latin-300italic.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../fonts/roboto-condensed-v19-latin-300italic.eot?#iefix") format("embedded-opentype"), url("../fonts/roboto-condensed-v19-latin-300italic.woff2") format("woff2"), url("../fonts/roboto-condensed-v19-latin-300italic.woff") format("woff"), url("../fonts/roboto-condensed-v19-latin-300italic.ttf") format("truetype"), url("../fonts/roboto-condensed-v19-latin-300italic.svg#RobotoCondensed") format("svg");
  /* Legacy iOS */ }

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

/* roboto-condensed-italic - latin */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/roboto-condensed-v19-latin-italic.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../fonts/roboto-condensed-v19-latin-italic.eot?#iefix") format("embedded-opentype"), url("../fonts/roboto-condensed-v19-latin-italic.woff2") format("woff2"), url("../fonts/roboto-condensed-v19-latin-italic.woff") format("woff"), url("../fonts/roboto-condensed-v19-latin-italic.ttf") format("truetype"), url("../fonts/roboto-condensed-v19-latin-italic.svg#RobotoCondensed") format("svg");
  /* Legacy iOS */ }

/* roboto-condensed-700 - latin */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/roboto-condensed-v19-latin-700.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../fonts/roboto-condensed-v19-latin-700.eot?#iefix") format("embedded-opentype"), url("../fonts/roboto-condensed-v19-latin-700.woff2") format("woff2"), url("../fonts/roboto-condensed-v19-latin-700.woff") format("woff"), url("../fonts/roboto-condensed-v19-latin-700.ttf") format("truetype"), url("../fonts/roboto-condensed-v19-latin-700.svg#RobotoCondensed") format("svg");
  /* Legacy iOS */ }

/* roboto-condensed-700italic - latin */
@font-face {
  font-family: 'Roboto Condensed';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/roboto-condensed-v19-latin-700italic.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../fonts/roboto-condensed-v19-latin-700italic.eot?#iefix") format("embedded-opentype"), url("../fonts/roboto-condensed-v19-latin-700italic.woff2") format("woff2"), url("../fonts/roboto-condensed-v19-latin-700italic.woff") format("woff"), url("../fonts/roboto-condensed-v19-latin-700italic.ttf") format("truetype"), url("../fonts/roboto-condensed-v19-latin-700italic.svg#RobotoCondensed") format("svg");
  /* Legacy iOS */ }

/* roboto-100italic - latin */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url("../fonts/roboto-v27-latin-100italic.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../fonts/roboto-v27-latin-100italic.eot?#iefix") format("embedded-opentype"), url("../fonts/roboto-v27-latin-100italic.woff2") format("woff2"), url("../fonts/roboto-v27-latin-100italic.woff") format("woff"), url("../fonts/roboto-v27-latin-100italic.ttf") format("truetype"), url("../fonts/roboto-v27-latin-100italic.svg#Roboto") format("svg");
  /* Legacy iOS */ }

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

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

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

/* roboto-italic - latin */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/roboto-v27-latin-italic.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../fonts/roboto-v27-latin-italic.eot?#iefix") format("embedded-opentype"), url("../fonts/roboto-v27-latin-italic.woff2") format("woff2"), url("../fonts/roboto-v27-latin-italic.woff") format("woff"), url("../fonts/roboto-v27-latin-italic.ttf") format("truetype"), url("../fonts/roboto-v27-latin-italic.svg#Roboto") format("svg");
  /* Legacy iOS */ }

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

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

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

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

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

/* roboto-900italic - latin */
@font-face {
  font-family: 'Roboto';
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url("../fonts/roboto-v27-latin-900italic.eot");
  /* IE9 Compat Modes */
  src: local(""), url("../fonts/roboto-v27-latin-900italic.eot?#iefix") format("embedded-opentype"), url("../fonts/roboto-v27-latin-900italic.woff2") format("woff2"), url("../fonts/roboto-v27-latin-900italic.woff") format("woff"), url("../fonts/roboto-v27-latin-900italic.ttf") format("truetype"), url("../fonts/roboto-v27-latin-900italic.svg#Roboto") format("svg");
  /* Legacy iOS */ }

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

/* ==================================================================================================== BASIC ======= */
@media (min-width: 1062px) {
  .container {
    width: 950px; }
  .slider .header-img .caption-wrapper {
    width: 920px; } }

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

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

.slider.slider_big .mouse-icon {
  border: 2px solid #fff; }
  .slider.slider_big .mouse-icon:after {
    background-color: #fff; }
  .slider.slider_big .mouse-icon .wheel {
    background-color: #fff; }

.headline2 {
  text-transform: uppercase; }

.navigation-responsive-wrapper-top {
  background-color: #0b0b0b; }

hr {
  border-color: #2e2e2e; }

/* =================================================================================================== HEADER ======= */
.header {
  background: rgba(11, 11, 11, 0.7);
  top: 30px;
  width: 100%;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.02); }
  .header .logo img, .header .logo svg {
    width: 190px;
    max-width: 190px; }
  .header.fixed {
    background: rgba(11, 11, 11, 0.9);
    top: 30px !important; }
    .header.fixed .logo img, .header.fixed .logo svg {
      width: 130px;
      max-width: 130px; }
  .header .top-nav .navigation > li > ul {
    left: 15px;
    overflow: visible;
    padding: 20px 10px; }
    .header .top-nav .navigation > li > ul:before {
      content: "";
      border-left: 8px solid transparent;
      border-right: 8px solid transparent;
      border-bottom: 10px solid #fff;
      position: absolute;
      top: -10px;
      width: 0;
      height: 0; }
  .header .top-nav .navigation > li span > a:before {
    content: "• ";
    color: rgba(255, 255, 255, 0.2);
    position: absolute;
    left: 7px;
    top: 9px;
    -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), left 0.5s cubic-bezier(0.55, 0, 0.1, 1), right 0.5s cubic-bezier(0.55, 0, 0.1, 1);
    transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), left 0.5s cubic-bezier(0.55, 0, 0.1, 1), right 0.5s cubic-bezier(0.55, 0, 0.1, 1); }
  .header .top-nav .navigation > li span > a:after {
    content: " •";
    color: rgba(255, 255, 255, 0.2);
    position: absolute;
    right: 7px;
    top: 9px;
    -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), left 0.5s cubic-bezier(0.55, 0, 0.1, 1), right 0.5s cubic-bezier(0.55, 0, 0.1, 1);
    transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), left 0.5s cubic-bezier(0.55, 0, 0.1, 1), right 0.5s cubic-bezier(0.55, 0, 0.1, 1); }
  .header .top-nav .navigation > li:hover span > a:before {
    left: 4px;
    color: white;
    -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), left 0.5s cubic-bezier(0.55, 0, 0.1, 1), right 0.5s cubic-bezier(0.55, 0, 0.1, 1);
    transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), left 0.5s cubic-bezier(0.55, 0, 0.1, 1), right 0.5s cubic-bezier(0.55, 0, 0.1, 1); }
  .header .top-nav .navigation > li:hover span > a:after {
    right: 4px;
    color: white;
    -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), left 0.5s cubic-bezier(0.55, 0, 0.1, 1), right 0.5s cubic-bezier(0.55, 0, 0.1, 1);
    transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), left 0.5s cubic-bezier(0.55, 0, 0.1, 1), right 0.5s cubic-bezier(0.55, 0, 0.1, 1); }

/* =================================================================================================== SLIDER ======= */
.slider {
  padding: 0 30px; }
  .slider .owl-dots {
    display: none; }
  .slider .slider_overlayer {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    overflow: hidden;
    text-align: center;
    max-height: 100px; }
  .slider .amphi-slideshow .owl-nav div span {
    font-size: 30px; }

/* ================================================================================================== CONTENT ======= */
html .Special_ChangingContents .category-elements > .content-on-image .category-element-inner .category-image .headline2 {
  color: #fff; }

html .Special_ChangingContents .category-elements > .content-on-image .category-element-inner .category-image a.btn-default, html .Special_ChangingContents .category-elements > .content-on-image .category-element-inner .category-image .btn-default, html .Special_ChangingContents .category-elements > .content-on-image .category-element-inner .category-image a.btn-primary, html .Special_ChangingContents .category-elements > .content-on-image .category-element-inner .category-image .btn-primary, html .Special_ChangingContents .category-elements > .content-on-image .category-element-inner .category-image a.btn-custom, html .Special_ChangingContents .category-elements > .content-on-image .category-element-inner .category-image .btn-custom {
  border-color: #a10d59;
  background: #a10d59;
  color: #fff; }
  html .Special_ChangingContents .category-elements > .content-on-image .category-element-inner .category-image a.btn-default:hover, html .Special_ChangingContents .category-elements > .content-on-image .category-element-inner .category-image .btn-default:hover, html .Special_ChangingContents .category-elements > .content-on-image .category-element-inner .category-image a.btn-primary:hover, html .Special_ChangingContents .category-elements > .content-on-image .category-element-inner .category-image .btn-primary:hover, html .Special_ChangingContents .category-elements > .content-on-image .category-element-inner .category-image a.btn-custom:hover, html .Special_ChangingContents .category-elements > .content-on-image .category-element-inner .category-image .btn-custom:hover {
    border-color: #fff;
    background: #fff;
    color: #a10d59; }

html .Special_ChangingContents .category-elements > .content-on-image .category-element-inner .category-image:before {
  background-color: rgba(0, 0, 0, 0);
  -webkit-transition: background-color 0.35s ease-in-out;
  transition: background-color 0.35s ease-in-out; }

html .Special_ChangingContents .category-elements > .content-on-image .category-element-inner:hover .category-image:before {
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-transition: background-color 0.35s ease-in-out;
  transition: background-color 0.35s ease-in-out; }

/* =================================================================================================== FOOTER ======= */
.footer-addon-bottom {
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase; }

.footer a:hover {
  color: #fff; }

/* ================================================================================================= EDITMODE ======= */
/* ============================================================================================ MEDIA QUERIES ======= */
@media (max-width: 768px) {
  .slider.slider_big .single-header .header-img .caption-wrapper .carousel-caption .headline1, .slider.slider_big .amphi-slideshow .header-img .caption-wrapper .carousel-caption .headline1, .slider.slider_big .amphi-no-slideshow .header-img .caption-wrapper .carousel-caption .headline1 {
    font-size: 2.5rem; }
  .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 {
    padding: 0; }
    .slider .amphi-slideshow .owl-nav {
      display: none; }
  .footer-addon-bottom .text-wrapper p {
    text-align: center !important; } }

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