@charset "UTF-8";
/**
 * 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 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
 */
/**
 * 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
 */
/*! 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 */ }

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

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

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

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

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

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

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

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

@font-face {
  font-family: 'Lato';
  font-style: italic;
  font-weight: 300;
  font-display: fallback;
  src: local("Lato Light Italic"), local("Lato-LightItalic"), url(../fonts/Lato-italic-300.woff) format("woff");
  unicode-range: U+0-10FFFF; }

@font-face {
  font-family: 'Lato';
  font-style: italic;
  font-weight: 400;
  font-display: fallback;
  src: local("Lato Italic"), local("Lato-Italic"), url(../fonts/Lato-italic-400.woff) format("woff");
  unicode-range: U+0-10FFFF; }

@font-face {
  font-family: 'Lato';
  font-style: italic;
  font-weight: 700;
  font-display: fallback;
  src: local("Lato Bold Italic"), local("Lato-BoldItalic"), url(../fonts/Lato-italic-700.woff) format("woff");
  unicode-range: U+0-10FFFF; }

@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 300;
  font-display: fallback;
  src: local("Lato Light"), local("Lato-Light"), url(../fonts/Lato-normal-300.woff) format("woff");
  unicode-range: U+0-10FFFF; }

@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  font-display: fallback;
  src: local("Lato Regular"), local("Lato-Regular"), url(../fonts/Lato-normal-400.woff) format("woff");
  unicode-range: U+0-10FFFF; }

@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  font-display: fallback;
  src: local("Lato Bold"), local("Lato-Bold"), url(../fonts/Lato-normal-700.woff) format("woff");
  unicode-range: U+0-10FFFF; }

@font-face {
  font-family: 'Merienda';
  font-style: normal;
  font-weight: 400;
  font-display: fallback;
  src: local("Merienda"), local("Merienda-Regular_0_wt"), url(../fonts/Merienda-normal-400.woff) format("woff");
  unicode-range: U+0-10FFFF; }

@font-face {
  font-family: 'Merienda';
  font-style: normal;
  font-weight: 700;
  font-display: fallback;
  src: local("Merienda Bold"), local("Merienda-Bold"), url(../fonts/Merienda-normal-700.woff) format("woff");
  unicode-range: U+0-10FFFF; }

@font-face {
  font-family: 'Titillium Web';
  font-style: italic;
  font-weight: 300;
  font-display: fallback;
  src: local("Titillium Web Light Italic"), local("TitilliumWeb-LightItalic"), url(../fonts/Titillium_Web-italic-300.woff) format("woff");
  unicode-range: U+0-10FFFF; }

@font-face {
  font-family: 'Titillium Web';
  font-style: italic;
  font-weight: 400;
  font-display: fallback;
  src: local("Titillium Web Italic"), local("TitilliumWeb-Italic"), url(../fonts/Titillium_Web-italic-400.woff) format("woff");
  unicode-range: U+0-10FFFF; }

@font-face {
  font-family: 'Titillium Web';
  font-style: italic;
  font-weight: 600;
  font-display: fallback;
  src: local("Titillium Web SemiBold Italic"), local("TitilliumWeb-SemiBoldItalic"), url(../fonts/Titillium_Web-italic-600.woff) format("woff");
  unicode-range: U+0-10FFFF; }

@font-face {
  font-family: 'Titillium Web';
  font-style: italic;
  font-weight: 700;
  font-display: fallback;
  src: local("Titillium Web Bold Italic"), local("TitilliumWeb-BoldItalic"), url(../fonts/Titillium_Web-italic-700.woff) format("woff");
  unicode-range: U+0-10FFFF; }

@font-face {
  font-family: 'Titillium Web';
  font-style: normal;
  font-weight: 300;
  font-display: fallback;
  src: local("Titillium Web Light"), local("TitilliumWeb-Light"), url(../fonts/Titillium_Web-normal-300.woff) format("woff");
  unicode-range: U+0-10FFFF; }

@font-face {
  font-family: 'Titillium Web';
  font-style: normal;
  font-weight: 400;
  font-display: fallback;
  src: local("Titillium Web Regular"), local("TitilliumWeb-Regular"), url(../fonts/Titillium_Web-normal-400.woff) format("woff");
  unicode-range: U+0-10FFFF; }

@font-face {
  font-family: 'Titillium Web';
  font-style: normal;
  font-weight: 600;
  font-display: fallback;
  src: local("Titillium Web SemiBold"), local("TitilliumWeb-SemiBold"), url(../fonts/Titillium_Web-normal-600.woff) format("woff");
  unicode-range: U+0-10FFFF; }

@font-face {
  font-family: 'Titillium Web';
  font-style: normal;
  font-weight: 700;
  font-display: fallback;
  src: local("Titillium Web Bold"), local("TitilliumWeb-Bold"), url(../fonts/Titillium_Web-normal-700.woff) format("woff");
  unicode-range: U+0-10FFFF; }

@font-face {
  font-family: 'Titillium Web';
  font-style: normal;
  font-weight: 900;
  font-display: fallback;
  src: local("Titillium Web Black"), local("TitilliumWeb-Black"), url(../fonts/Titillium_Web-normal-900.woff) format("woff");
  unicode-range: U+0-10FFFF; }

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

.editor-style__wordmark {
  background: #1b7831;
  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.125rem 0.25rem rgba(0, 0, 0, 0.15);
          box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.15);
  -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 1rem 3rem rgba(0, 0, 0, 0.175);
            box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175); }

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

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

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

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

.default-styles .module-content-block > div:first-child {
  position: relative; }

.default-styles .module-content-block > div:last-child {
  padding: 0 15px; }

.default-styles .headline-wrapper {
  position: absolute;
  bottom: 0;
  background: rgba(255, 255, 255, 0.75);
  left: 0;
  right: 0;
  padding: 15px; }
  .default-styles .headline-wrapper .headline3 {
    margin-bottom: 0; }

.module-style__text-white .module-content-block .headline1, .module-style__text-white .module-content-block .headline2, .module-style__text-white .module-content-block .headline3, .module-style__text-white .module-content-block .headline4, .module-style__text-white .module-content-block .text-wrapper, .module-style__text-white .gallery-carousel-caption .headline1, .module-style__text-white .gallery-carousel-caption .headline2, .module-style__text-white .gallery-carousel-caption .headline3, .module-style__text-white .gallery-carousel-caption .headline4, .module-style__text-white .gallery-carousel-caption .text-wrapper {
  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 {
    color: #fff; }
    .module-style__text-white .module-content-block .headline1 a:hover, .module-style__text-white .module-content-block .headline2 a:hover, .module-style__text-white .module-content-block .headline3 a:hover, .module-style__text-white .module-content-block .headline4 a:hover, .module-style__text-white .module-content-block .text-wrapper a:hover, .module-style__text-white .gallery-carousel-caption .headline1 a:hover, .module-style__text-white .gallery-carousel-caption .headline2 a:hover, .module-style__text-white .gallery-carousel-caption .headline3 a:hover, .module-style__text-white .gallery-carousel-caption .headline4 a:hover, .module-style__text-white .gallery-carousel-caption .text-wrapper a:hover {
      opacity: 0.8; }

.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__truncate-content span.readmore, .module-style__truncate-content span.readless {
  display: block; }

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

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

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

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

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

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1.5px; }
  .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; }

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

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

.navigation-responsive-wrapper-top {
  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-bottom {
  padding: 25px 15px; }
  .navigation-responsive-wrapper-bottom .amphiicon {
    position: inherit;
    top: auto;
    text-align: center;
    padding: 8px 0;
    background: #1b7831;
    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: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: 700; }
  .slider:after {
    content: '';
    display: table;
    z-index: -1; }

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

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

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

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

/* FOOTER ADDON BOTTOM */
.footer-addon-bottom {
  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 */
.footer {
  padding: 0; }
  .footer .footer_background-inner {
    padding: 60px 0 30px 0; }
  .footer a {
    text-decoration: underline; }
    .footer a:hover {
      color: #e70000;
      opacity: 1;
      text-decoration: none; }
  .footer a.btn {
    color: #fff;
    background-color: #e70000;
    border: 1px solid #e70000;
    border-radius: 5px;
    margin-top: 18px;
    -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.15);
            box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.15);
    display: inline-block;
    font-family: "Merienda", cursive;
    padding: 8px 30px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
    transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
    transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1), box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
    transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1), box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1); }
    .footer a.btn: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; }
    .footer a.btn:after {
      content: none; }
    .footer a.btn:hover {
      color: #fff;
      background-color: #b40000;
      border: 1px solid #b40000;
      border-radius: 5px;
      margin-top: 18px;
      -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.15);
              box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.15);
      display: inline-block;
      font-family: "Merienda", cursive;
      padding: 8px 30px;
      font-weight: 700;
      font-size: 1rem;
      text-decoration: none;
      -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
      transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
      transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1), box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
      transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1), box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1); }
      .footer a.btn:hover: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; }
      .footer a.btn:hover:after {
        content: none; }

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

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

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

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

/* 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: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.15);
          box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.15); }
  .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: #1b7831;
      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 {
      -webkit-transition: all 0.5s cubic-bezier(0.55, 0, 0.1, 1);
      transition: all 0.5s cubic-bezier(0.55, 0, 0.1, 1); }
  .header .top-nav .navbar {
    min-height: auto;
    padding: 15px 0; }
  .header .top-nav .main-nav > li {
    display: inline-block; }
    .header .top-nav .main-nav > li span > a {
      font-family: "Lato", sans-serif;
      font-size: 17px;
      font-weight: 600;
      color: #fff;
      text-transform: uppercase;
      padding: 20px 15px;
      line-height: 1.5;
      background: none; }
    .header .top-nav .main-nav > li.active > span > a {
      color: #b7afa1;
      background: #f0e9de; }
    .header .top-nav .main-nav > li:hover > span > a, .header .top-nav .main-nav > li.hover > span > a {
      color: #b7afa1;
      background: #f0e9de; }
    .header .top-nav .main-nav > li:hover.active > span > a, .header .top-nav .main-nav > li.hover.active > span > a {
      color: #b7afa1;
      background: #f0e9de; }
    .header .top-nav .main-nav > li:hover > ul, .header .top-nav .main-nav > 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 .main-nav > li.nav-inactive, .header .top-nav .main-nav > li.navInactive {
      opacity: 1;
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=100)";
      filter: alpha(opacity=100); }
      .header .top-nav .main-nav > li.nav-inactive a, .header .top-nav .main-nav > li.navInactive a {
        opacity: 0.5;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=50)";
        filter: alpha(opacity=50);
        zoom: 1; }
    .header .top-nav .main-nav > li ul {
      position: absolute;
      opacity: 0;
      visibility: hidden;
      background: #fff;
      top: 100%;
      z-index: 850;
      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.125rem 0.25rem rgba(0, 0, 0, 0.15);
              box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.15);
      border-top: none; }
      .header .top-nav .main-nav > li ul.position-right {
        right: 0;
        left: auto; }
      .header .top-nav .main-nav > li ul li {
        display: block; }
        .header .top-nav .main-nav > li ul li span > a {
          font-size: 0.875rem;
          font-weight: 600;
          color: #444;
          padding: 10px 15px;
          border-bottom: 1px solid rgba(0, 0, 0, 0.1);
          letter-spacing: 0.2px;
          line-height: 1.5;
          white-space: nowrap;
          text-transform: uppercase;
          background: transparent; }
          .header .top-nav .main-nav > li ul li span > a:before {
            content: "";
            font: normal normal normal 14px/1 FontAwesome;
            display: inline-block;
            font-style: normal;
            font-weight: normal;
            text-rendering: auto;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            -webkit-transform: translate(0, 0);
                    transform: translate(0, 0);
            margin-right: 10px; }
          .header .top-nav .main-nav > li ul li span > a:after {
            content: none; }
        .header .top-nav .main-nav > li ul li.active > span > a {
          color: #1b7831; }
        .header .top-nav .main-nav > li ul li:hover > span > a, .header .top-nav .main-nav > li ul li.hover > span > a {
          color: #1b7831; }
        .header .top-nav .main-nav > li ul li:hover.active > span > a, .header .top-nav .main-nav > li ul li.hover.active > span > a {
          color: #1b7831; }
        .header .top-nav .main-nav > li ul li:hover > ul, .header .top-nav .main-nav > 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 .main-nav > li ul li:last-child > span > a {
          border-bottom: none; }
        .header .top-nav .main-nav > li ul li > ul {
          z-index: 850;
          min-width: 220px;
          left: 100%;
          top: 0; }

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

#editMode .header .top-nav .main-nav li > span {
  position: relative; }
  #editMode .header .top-nav .main-nav li > span > a.editButton {
    top: 8px;
    left: auto; }
    #editMode .header .top-nav .main-nav li > span > a.editButton:before, #editMode .header .top-nav .main-nav li > span > a.editButton:after {
      content: none; }

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

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

@media screen and (max-width: 1061px) {
  .header .top-nav .main-nav > 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 .main-nav {
      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 .main-nav > 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 .main-nav {
      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 .main-nav {
      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 .main-nav > li > span > a.editButton {
  left: auto; }

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

.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: 750; }
    .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: #e70000;
        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.125rem 0.25rem rgba(0, 0, 0, 0.15);
                box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.15); }
      .quicklinks-mobile__icons ul li a:hover .amphiicon {
        background-color: #1b7831; }

.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.125rem 0.25rem rgba(0, 0, 0, 0.15);
            box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.15);
    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: #00a32f;
        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: #007020;
        -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_icons {
      height: 52px; }
      .quicklinks .quicklinks_item.quicklinks_icons .quicklinks_icons_label {
        width: 45px;
        text-align: center;
        color: #fff;
        background: #e70000;
        -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: #e70000;
        -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 1rem 3rem rgba(0, 0, 0, 0.175);
              box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175); }
      .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: #007020; }
        .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: #005719; }
      .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: #680000; }
      .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: #9b0000; }

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

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

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

/* SLIDER */
.slider {
  position: relative;
  background-color: #e70000;
  /* Pagespeed Block */ }
  .slider.slider_big {
    min-height: 350px; }
    .slider.slider_big .header-img {
      min-height: 350px; }
      .slider.slider_big .header-img .caption-wrapper .carousel-caption .headline1 {
        font-size: 2rem; }
  .slider.slider_small {
    min-height: 150px; }
    .slider.slider_small .header-img {
      min-height: 150px; }
      .slider.slider_small .header-img .caption-wrapper .carousel-caption .headline1 {
        font-size: 2rem; }
  .slider .single-header {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0; }
  .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: 1; }
      .slider .header-img .caption-wrapper .carousel-caption {
        -webkit-transition: none;
        transition: none;
        background: transparent;
        margin: 60px 0;
        padding: 0;
        display: inline-block;
        max-width: 100%;
        word-break: break-word;
        left: unset;
        right: unset;
        top: unset;
        bottom: unset;
        position: static; }
        .slider .header-img .caption-wrapper .carousel-caption .headline1 {
          color: #fff; }
          .slider .header-img .caption-wrapper .carousel-caption .headline1 a {
            color: #fff; }
            .slider .header-img .caption-wrapper .carousel-caption .headline1 a:hover {
              color: #fff; }
        .slider .header-img .caption-wrapper .carousel-caption .headline2 {
          color: #fff; }
          .slider .header-img .caption-wrapper .carousel-caption .headline2 a {
            color: #fff; }
            .slider .header-img .caption-wrapper .carousel-caption .headline2 a:hover {
              color: #fff; }
        .slider .header-img .caption-wrapper .carousel-caption .text-wrapper {
          color: #fff; }
          .slider .header-img .caption-wrapper .carousel-caption .text-wrapper p {
            margin-bottom: 0; }
    .slider .header-img:after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 158, 227, 0.3)), to(rgba(183, 175, 161, 0.1)));
      background: linear-gradient(0deg, rgba(0, 158, 227, 0.3) 0%, rgba(183, 175, 161, 0.1) 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; }

/* EDIT MODE */
body#editMode .slider .single-header {
  position: absolute; }

@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: 400px; }
    .slider.slider_big .header-img {
      min-height: 400px; }
  .slider.slider_small {
    min-height: 200px; }
    .slider.slider_small .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: 400px; }
    .slider.slider_big .header-img {
      min-height: 400px; }
  .slider.slider_small {
    min-height: 300px; }
    .slider.slider_small .header-img {
      min-height: 300px; } }

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

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

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

@media (min-width: 1200px) {
  .slider .header-img .caption-wrapper {
    width: 1070px; }
  .slider .owl-nav {
    display: none; }
  .slider.slider_big {
    min-height: 550px; }
    .slider.slider_big .header-img {
      min-height: 550px; }
  .slider.slider_small {
    min-height: 300px; }
    .slider.slider_small .header-img {
      min-height: 300px; } }

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

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

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

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

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

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

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

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

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

/* BUTTONS */
a.btn-default, .btn-default,
a.btn-primary, .btn-primary,
a.btn-custom, .btn-custom {
  color: #fff;
  background-color: #1b7831;
  border: 1px solid #1b7831;
  border-radius: 5px;
  margin-top: 18px;
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.15);
          box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.15);
  display: inline-block;
  font-family: "Merienda", cursive;
  padding: 8px 30px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  -webkit-transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1), box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1);
  transition: color 0.5s cubic-bezier(0.55, 0, 0.1, 1), background 0.5s cubic-bezier(0.55, 0, 0.1, 1), border 0.5s cubic-bezier(0.55, 0, 0.1, 1), box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1), -webkit-box-shadow 0.5s cubic-bezier(0.55, 0, 0.1, 1); }
  a.btn-default:before, .btn-default:before,
  a.btn-primary:before, .btn-primary:before,
  a.btn-custom:before, .btn-custom:before {
    content: "";
    font: normal normal normal 14px/1 FontAwesome;
    display: inline-block;
    font-style: normal;
    font-weight: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    margin-right: 10px; }
  a.btn-default:after, .btn-default:after,
  a.btn-primary:after, .btn-primary:after,
  a.btn-custom:after, .btn-custom:after {
    content: none; }
  a.btn-default:hover, a.btn-default:focus, a.btn-default:active, a.btn-default.active, .btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active,
  a.btn-primary:hover,
  a.btn-primary:focus,
  a.btn-primary:active,
  a.btn-primary.active, .btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active,
  a.btn-custom:hover,
  a.btn-custom:focus,
  a.btn-custom:active,
  a.btn-custom.active, .btn-custom:hover, .btn-custom:focus, .btn-custom:active, .btn-custom.active {
    color: #fff;
    background-color: #124e20;
    border: 1px solid #124e20;
    -webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
            box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
    -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); }

.search-btn .btn-primary:after {
  content: none; }

/* HEADLINE */
.headline1 {
  font-size: 2rem;
  font-family: "Merienda", cursive;
  line-height: 1.2;
  margin: 0 0 10px 0;
  font-weight: 700;
  color: inherit; }

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

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

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

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

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

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

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

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

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

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

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

/* THUMBNAILS */
.thumbnail {
  padding: 0;
  border: 0; }
  .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 ======= */
.website_wrapper-outer > a.singleContentAreaEdit {
  margin-right: 4px;
  top: 200px;
  position: relative; }

.website_wrapper-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding-top: 60px; }

/* =================================================================================================== HEADER ======= */
.header .hamburger {
  padding: 0 15px; }
  .header .hamburger .hamburger-box {
    min-height: 50px; }

.header .top-nav {
  background: #1b7831; }

/* ==================================================================================================== SLIDER ======= */
/* ================================================================================================== CONTENT ======= */
.content-wrapper {
  background-color: #fff; }

.content {
  background: #fff; }

/* =================================================================================================== FOOTER ======= */
.footer-addon-bottom {
  padding: 30px 0 60px 0;
  color: #fff; }

/* ================================================================================================ EDIT MODE ======= */
body#editMode .adminModuleHeaderBar div b {
  top: -7px; }

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

body#editMode .headerEditLink {
  left: -15px; }

body#editMode .website_wrapper-outer > div > a.singleContentAreaEdit:first-child {
  position: absolute;
  top: 65px; }

/* ============================================================================================ 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 (min-width: 1400px) {
  /* SLIDER */
  .slider .owl-nav div {
    left: 20px; }
    .slider .owl-nav div.owl-next {
      right: 20px; } }

@media (max-width: 1299px) {
  .website_wrapper-inner {
    padding-top: 0; } }

@media (max-width: 1199px) {
  html {
    font-size: 95%; }
  .website_wrapper-inner {
    margin: 0 auto; } }

@media (max-width: 991px) {
  html {
    font-size: 90%; }
  .website_wrapper-inner {
    margin: 0 auto; } }

@media (max-width: 767px) {
  html {
    font-size: 80%; }
  .website_wrapper-inner {
    margin: 0 auto; } }

.header-addon-top > .container {
  width: 100%; }

.header {
  -webkit-box-shadow: none;
          box-shadow: none;
  background-image: url(https://www.blumen-krisam.de/_cache/images/cms/blumenkrisam/.22c6909%E2%80%A6/krisam_background_pattern.png);
  background-attachment: fixed;
  background-repeat: repeat;
  padding-top: 10px; }
  .header .logo-wrapper {
    padding: 0 0 25px 0; }
  .header .logo a {
    position: relative; }
    .header .logo a:before {
      content: "";
      position: absolute;
      right: 390px;
      width: 2000px;
      height: 68px;
      background: #1b7831;
      z-index: -1; }
    .header .logo a:after {
      content: "";
      position: absolute;
      right: -665px;
      width: 725px;
      height: 68px;
      background: #1b7831;
      z-index: -1; }
  .header .top-nav {
    background: #b7afa2; }
  .header.fixed .logo a img {
    max-width: 100%; }

.content {
  background: #fffcf8; }

.quicklinks__icons-right .quicklinks_item {
  right: 50px; }

.quicklinks .quicklinks_item.quicklinks_box .quicklinks_box_label {
  width: 50px;
  padding: 15px 13px;
  border-radius: 0; }

.quicklinks .quicklinks_item.quicklinks_icons {
  height: 50px; }

.quicklinks .quicklinks_item.quicklinks_icons .quicklinks_icons_label {
  width: 50px;
  border-radius: 0; }

.quicklinks_icons_content {
  font-weight: 800; }

li.quicklinks_item.quicklinks_icons:nth-child(3) .quicklinks_icons_label {
  background: #009ee3; }

li.quicklinks_item.quicklinks_icons:nth-child(3) .quicklinks_icons_content {
  background: #007bb0; }

li.quicklinks_item.quicklinks_icons:nth-child(3):hover .quicklinks_icons_label {
  background: #007bb0; }

li.quicklinks_item.quicklinks_icons:nth-child(3):hover .quicklinks_icons_content {
  background: #006997; }

.content_sidebar_teaser .headline3 {
  font-size: 1rem;
  font-family: "Lato", sans-serif; }

.header-addon-bottom__breadcrumb {
  background-color: #fffcf8;
  border-bottom: 1px dashed #e2dac5;
  font-size: 0.9rem; }

nav.content_sidebar_nav {
  background: #b7afa1; }

.content .content_sidebar_nav .main-nav > li span > a {
  background: none;
  font-family: "Lato", sans-serif;
  color: #fff;
  padding: 10px 15px;
  font-size: 15px; }

.content .content_sidebar_nav .main-nav > li.active > span > a {
  color: #b7afa1;
  background: #f0e9de; }

.footer {
  color: #fff; }

.footer-addon-bottom {
  color: #6f6d74;
  padding: 0;
  background: rgba(183, 175, 162, 0.2);
  font-size: 0.85rem; }

.footer h3 {
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 18px;
  border-bottom: 1px dashed #dedede;
  padding-bottom: 10px;
  margin-bottom: 20px; }

.footer-addon-top {
  background: #f1ece8; }

.navbar-toggle {
  top: -6px; }

.quicklinks-mobile__icons ul li a .amphiicon {
  border-radius: 0;
  background-color: #009ee3; }
  .quicklinks-mobile__icons ul li a .amphiicon:hover {
    background-color: #1b7831; }

@media (max-width: 1299px) {
  .website_wrapper-inner {
    padding-top: 60px; }
  .header .logo-wrapper {
    overflow: hidden; } }

@media (max-width: 1269px) {
  .header .top-nav .main-nav > li > span > a {
    padding: 20px 15px; }
  .header .logo a:before, .header .logo a:after {
    height: 63px; } }

@media (max-width: 1199px) {
  .website_wrapper-inner {
    padding-top: 30px; }
  .header .logo a:before, .header .logo a:after {
    height: 55px; } }

@media (max-width: 1061px) {
  .header .logo a:before, .header .logo a:after {
    height: 52px; } }

@media (max-width: 991px) {
  .header .logo a:before, .header .logo a:after {
    height: 58px; } }

@media (max-width: 767px) {
  .header__logo-right-nav-bottom-right .logo-wrapper .logo a img {
    width: 265px; }
  .header .logo a:before, .header .logo a:after {
    display: none; }
  .navbar-toggle {
    top: -4px; }
  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    background-color: #1b7831; }
  .hamburger.hamburger_animation.is-active .hamburger-inner, .hamburger.hamburger_animation.is-active .hamburger-inner::before, .hamburger.hamburger_animation.is-active .hamburger-inner::after {
    background-color: #fff; }
  .subtemplate .quicklinks-mobile {
    margin-top: 15px; } }

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